:root {
  --color-bg: #FAF8F3;
  --color-surface: #FFFCF7;
  --color-text: #1C1208;
  --color-text-muted: #6B5740;
  --color-text-subtle: #A08870;
  --color-saffron: #F0A500;
  --color-saffron-light: #FFF3CC;
  --color-coral: #FF5C3A;
  --color-coral-dark: #D43E1F;
  --color-sage: #8FAF96;
  --color-sage-light: #EAF0EC;
  --color-border: rgba(28, 18, 8, 0.10);
  --color-border-strong: rgba(28, 18, 8, 0.18);
  --font-display: 'Clash Display', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --shadow-card: 0 2px 12px rgba(28, 18, 8, 0.06), 0 1px 3px rgba(28, 18, 8, 0.04);
  --shadow-card-hover: 0 8px 32px rgba(28, 18, 8, 0.10), 0 2px 8px rgba(28, 18, 8, 0.06);
  --bg: #FAF8F3;
  --card-bg: #F0EDE6;
  --border: rgba(28, 18, 8, 0.12);
  --text: #1C1208;
  --text-secondary: #6B5740;
  --text-muted: #A08870;
  --accent: #D43E1F;
}

body.public-page .card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  position: relative;
}

body.public-page .badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

body.public-page .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-strong);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

body.public-page .btn-ghost:hover {
  border-color: var(--color-coral);
  color: var(--color-coral);
}

body.public-page {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.public-page h1,
body.public-page h2,
body.public-page h3,
body.public-page h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

body.public-page a { color: var(--color-text); }
body.public-page a:hover { color: var(--color-coral); }

body.public-page .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-coral);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
body.public-page .btn-primary:hover {
  background: var(--color-coral-dark);
  transform: translateY(-1px);
}
body.public-page .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--color-border-strong);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
body.public-page .btn-secondary:hover {
  border-color: var(--color-text);
  background: rgba(28, 18, 8, 0.03);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-saffron);
  background: var(--color-saffron-light);
  padding: 4px 12px;
  border-radius: 100px;
}

#main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#main-nav.scrolled {
  border-color: var(--color-border);
  box-shadow: 0 2px 12px rgba(28, 18, 8, 0.05);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--color-text); }
.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--color-coral);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-text);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--color-text); }
.nav-checker-link {
  color: var(--color-saffron) !important;
  font-weight: 600 !important;
}
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--color-text);
  cursor: pointer;
  padding: 8px;
}

#hero {
  padding: 80px 24px 100px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-headline {
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 700;
  margin: 18px 0 20px;
  color: var(--color-text);
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.hero-subhead {
  font-size: 19px;
  color: var(--color-text-muted);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item { font-size: 14px; font-weight: 500; color: var(--color-text-muted); display: flex; align-items: center; gap: 6px; }
.trust-check { color: var(--color-sage); font-weight: 700; }
.hero-card {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.hero-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.hero-card-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 100px;
}
.hero-card-badge.pass { background: #EAFAF1; color: #1E7A45; }
.hero-card-badge.fail { background: #FDECEA; color: #C0392B; }
.hero-card-title { font-weight: 600; font-size: 15px; flex: 1; }
.hero-card-time { font-size: 13px; color: var(--color-text-subtle); }
.hero-card-footer { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.checker-info { display: flex; align-items: center; gap: 10px; }
.checker-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--color-saffron); color: #fff;
  font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.checker-name { font-weight: 600; font-size: 14px; }
.checker-role { font-size: 12px; color: var(--color-text-subtle); }
.hero-card-checks { display: flex; flex-direction: column; gap: 6px; }
.check-row { font-size: 13px; font-weight: 500; }
.pass-row { color: #1E7A45; }
.fail-row { color: #C0392B; }

.why-section {
  background: var(--color-surface);
  padding: 100px 24px;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-headline {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  margin: 16px 0 20px;
  max-width: 640px;
}
.section-subhead {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 540px;
  margin-bottom: 56px;
  line-height: 1.6;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
}
.why-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}
.why-card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.why-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.how-section { padding: 100px 24px; }
.how-steps { display: flex; flex-direction: column; gap: 0; margin-top: 56px; }
.how-step {
  display: grid;
  grid-template-columns: 88px 1fr 260px;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
}
.how-step:last-child { border-bottom: none; }
.step-number {
  width: 72px; height: 72px; border-radius: 20px;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-content h3 { font-size: 26px; font-weight: 600; margin-bottom: 12px; }
.step-content p { font-size: 16px; color: var(--color-text-muted); max-width: 420px; }
.step-visual { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.step-chip {
  font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 100px;
  background: var(--color-text); color: var(--color-bg);
  white-space: nowrap;
}
.step-chip.secondary {
  background: var(--color-surface);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

.api-section { background: var(--color-surface); padding: 100px 24px; }
.api-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.api-code-card {
  background: #1C1208;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border-left: 4px solid var(--color-saffron);
}
.api-code-header {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.api-code-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.api-code-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-left: 8px;
}
.api-code-block {
  margin: 0;
  padding: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  line-height: 1.7;
  color: #FAF8F3;
  white-space: pre-wrap;
  overflow-x: auto;
}
.api-integrations-strip {
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.api-int-label { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 500; }
.api-int-tag {
  font-size: 12px; font-weight: 600;
  background: rgba(240,165,0,0.15);
  color: var(--color-saffron);
  padding: 3px 10px; border-radius: 100px;
}

.proof-section { padding: 100px 24px; }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 56px; }
.proof-quote {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.quote-text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 24px;
}
.quote-author { display: flex; align-items: center; gap: 12px; }
.quote-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 13px; flex-shrink: 0;
}
.quote-name { font-weight: 600; font-size: 14px; }
.quote-company { font-size: 13px; color: var(--color-text-subtle); }
.proof-badge-demo {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px; justify-content: center;
}
.badge-demo-label { font-size: 13px; color: var(--color-text-subtle); font-weight: 500; }
.badge-visual { display: flex; align-items: center; gap: 0; }
.badge-brand {
  background: #555; color: #fff;
  font-size: 13px; padding: 5px 12px;
  border-radius: 4px 0 0 4px;
  font-family: monospace;
}
.badge-status {
  font-size: 13px; padding: 5px 12px;
  border-radius: 0 4px 4px 0;
  font-family: monospace;
}
.badge-status.pass { background: var(--color-sage); color: #fff; }
.badge-embed-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  word-break: break-all;
}

.pricing-section { background: var(--color-surface); padding: 100px 24px; }
.pricing-explainer {
  background: var(--color-saffron-light);
  border: 1px solid rgba(240,165,0,0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 16px;
  color: var(--color-text-muted);
  margin: 32px 0 48px;
  max-width: 680px;
}
.pricing-explainer strong { color: var(--color-text); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pricing-card {
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
}
.pricing-card.popular {
  border-color: var(--color-saffron);
  box-shadow: 0 0 0 4px rgba(240,165,0,0.10);
}
.pricing-popular-label {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--color-saffron); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  padding: 4px 12px; border-radius: 100px; white-space: nowrap;
}
.pricing-credits { font-size: 14px; font-weight: 600; color: var(--color-text-subtle); margin-bottom: 8px; }
.pricing-price { font-family: var(--font-display); font-size: 42px; font-weight: 700; margin-bottom: 4px; }
.pricing-rate { font-size: 14px; color: var(--color-text-subtle); }
.pricing-types { margin-top: 56px; }
.pricing-types h3 { font-size: 22px; font-weight: 600; margin-bottom: 20px; }
.test-type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.test-type-item {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); padding: 14px 18px;
}
.test-type-name { font-size: 15px; font-weight: 500; }
.test-type-credits { font-size: 14px; color: var(--color-text-subtle); font-weight: 500; }
.pricing-faq { margin-top: 40px; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--color-border); }
.faq-item summary {
  font-size: 16px; font-weight: 600; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 20px; color: var(--color-text-subtle); }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { font-size: 15px; color: var(--color-text-muted); margin-top: 14px; line-height: 1.6; }

.checker-section { padding: 100px 24px; border-top: 4px solid var(--color-coral); }
.checker-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.checker-stats { display: flex; gap: 32px; margin: 36px 0 20px; flex-wrap: wrap; }
.checker-stat-value {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 700;
  color: var(--color-coral);
  line-height: 1;
}
.checker-stat-label { font-size: 14px; color: var(--color-text-muted); margin-top: 6px; }
.checker-note { font-size: 15px; color: var(--color-text-subtle); font-style: italic; }

.types-section { background: var(--color-surface); padding: 100px 24px; }
.types-grid-primary { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.type-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  text-decoration: none;
  display: block;
  transition: box-shadow 0.2s, transform 0.2s;
}
.type-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); color: var(--color-text); }
.type-icon { font-size: 32px; margin-bottom: 16px; }
.type-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; color: var(--color-text); }
.type-card p { font-size: 15px; color: var(--color-text-muted); line-height: 1.6; }
.types-grid-secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.type-card-sm {
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 16px;
}
.type-icon-sm { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.type-sm-name { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.type-sm-desc { font-size: 14px; color: var(--color-text-muted); }

.final-cta-section {
  background: var(--color-saffron-light);
  border-top: 1px solid rgba(240,165,0,0.2);
  border-bottom: 1px solid rgba(240,165,0,0.2);
  padding: 120px 24px;
  text-align: center;
}
.final-cta-inner { max-width: 680px; margin: 0 auto; }
.final-cta-headline {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  margin-bottom: 20px;
}
.final-cta-sub { font-size: 18px; color: var(--color-text-muted); margin-bottom: 40px; }
.final-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.agent-setup-section { padding: 100px 24px; background: linear-gradient(135deg, #1C1208 0%, #2A1A0A 50%, #1C1208 100%); }
.agent-setup-card {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.agent-setup-content { color: var(--color-bg); }
.agent-setup-content .section-headline { color: #FAF8F3; }
.agent-setup-content .section-subhead { color: rgba(250,248,243,0.7); }
.agent-setup-steps { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.agent-step {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 18px; border-radius: 10px;
  background: rgba(250,248,243,0.06); border: 1px solid rgba(250,248,243,0.08);
}
.agent-step-num {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--color-coral); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}
.agent-step-text { color: rgba(250,248,243,0.85); font-size: 15px; line-height: 1.5; }
.agent-setup-visual { display: flex; flex-direction: column; gap: 14px; }
.agent-chat-bubble {
  padding: 16px 20px; border-radius: 14px;
  font-size: 15px; line-height: 1.6; position: relative;
}
.agent-chat-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 6px;
}
.agent-chat-bubble.agent-user {
  background: var(--color-coral); color: #fff;
  border-bottom-left-radius: 4px; align-self: flex-start; max-width: 90%;
}
.agent-chat-bubble.agent-user .agent-chat-label { color: rgba(255,255,255,0.7); }
.agent-chat-bubble.agent-ai {
  background: rgba(250,248,243,0.08); color: rgba(250,248,243,0.9);
  border: 1px solid rgba(250,248,243,0.12);
  border-bottom-right-radius: 4px; align-self: flex-end; max-width: 95%;
}
.agent-chat-bubble.agent-ai .agent-chat-label { color: rgba(250,248,243,0.4); }
@media (max-width: 900px) {
  .agent-setup-card { grid-template-columns: 1fr; gap: 40px; }
}

#main-footer { background: var(--color-text); color: var(--color-bg); padding: 80px 24px 0; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250,248,243,0.1);
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-text { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--color-bg); }
.footer-tagline { font-size: 14px; color: rgba(250,248,243,0.5); line-height: 1.7; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-weight: 600; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(250,248,243,0.4); margin-bottom: 4px; }
body.public-page .footer-col a { font-size: 15px; color: rgba(250,248,243,0.65); text-decoration: none; transition: color 0.15s; }
body.public-page .footer-col a:hover { color: var(--color-bg); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding: 24px 0;
  font-size: 13px; color: rgba(250,248,243,0.35);
}

body.public-page input,
body.public-page textarea,
body.public-page select {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1.5px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
}
body.public-page input::placeholder,
body.public-page textarea::placeholder {
  color: var(--color-text-subtle);
}

body.public-page .btn {
  font-family: var(--font-body);
}
body.public-page .btn-primary,
body.public-page .btn.btn-primary {
  background: var(--color-coral);
  color: #fff;
  border: none;
  border-radius: var(--radius-xl);
}
body.public-page .btn-primary:hover,
body.public-page .btn.btn-primary:hover {
  background: var(--color-coral-dark);
}

body.public-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

body.public-page *:focus-visible {
  outline: 2px solid var(--color-saffron);
  outline-offset: 3px;
}

body.public-page .skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  overflow: visible;
  background: var(--color-saffron);
  color: var(--color-text);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 200;
  text-decoration: none;
  box-shadow: var(--shadow-card-hover);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28, 18, 8, 0.4);
  z-index: 99;
}
.mobile-nav-overlay.open { display: block; }

.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 280px;
  height: 100%;
  background: var(--color-bg);
  z-index: 101;
  padding: 24px;
  box-shadow: -8px 0 32px rgba(28,18,8,0.15);
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-nav-drawer.open { display: flex; }
.mobile-nav-drawer a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav-drawer a:last-child { border-bottom: none; }
.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--color-text);
  cursor: pointer;
  margin-bottom: 12px;
}

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .api-inner { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: block; margin-left: auto; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: clamp(36px, 8vw, 52px); }
  .hero-visual { order: 2; }

  .why-grid { grid-template-columns: 1fr; }

  .how-step { grid-template-columns: 64px 1fr; }
  .step-visual { display: none; }

  .api-inner { grid-template-columns: 1fr; gap: 40px; }

  .proof-grid { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr 1fr; }

  .checker-inner { grid-template-columns: 1fr; gap: 40px; }
  .checker-visual { order: 2; }

  .types-grid-primary { grid-template-columns: 1fr; }
  .types-grid-secondary { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }

  .test-type-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .checker-stats { flex-direction: column; gap: 20px; }
}

/* ============================================
   Design overhaul polish — Task 177
   ============================================ */

/* Nav polish: pill logo mark, scroll-aware shadow */
#main-nav { backdrop-filter: saturate(140%) blur(8px); background: rgba(250, 248, 243, 0.92); }
#main-nav.scrolled { box-shadow: 0 4px 20px rgba(28, 18, 8, 0.06); }
.nav-logo-mark { box-shadow: 0 2px 8px rgba(255, 92, 58, 0.3); transition: transform 0.2s; }
.nav-logo:hover .nav-logo-mark { transform: rotate(-4deg) scale(1.05); }
body.public-page .btn-primary { box-shadow: 0 4px 14px rgba(255, 92, 58, 0.28); }
body.public-page .btn-primary:hover { box-shadow: 0 6px 20px rgba(255, 92, 58, 0.38); }

/* Hero polish */
#hero { padding-top: 56px; padding-bottom: 88px; }
.hero-headline { line-height: 1.05; }
.hero-card {
  box-shadow: 0 24px 60px -20px rgba(28, 18, 8, 0.18), 0 8px 24px -8px rgba(28, 18, 8, 0.08);
  transform: rotate(-0.5deg);
  transition: transform 0.3s;
}
.hero-card:hover { transform: rotate(0deg) translateY(-4px); }
.hero-card-checks { gap: 8px; }

/* Live availability indicator — clean, intentional pill */
.live-avail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 16px;
  border-radius: 100px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  box-shadow: 0 1px 3px rgba(28, 18, 8, 0.04);
}
.live-avail .live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #FFAA00;
  flex-shrink: 0;
}
.live-avail .live-dot.online {
  background: #3DD68C;
  box-shadow: 0 0 0 4px rgba(61, 214, 140, 0.18);
  animation: livePulse 2s infinite;
}
.live-avail .live-queue { color: var(--color-text-subtle); }

/* Section spacing rhythm */
.why-section, .how-section, .api-section, .proof-section,
.pricing-section, .checker-section, .types-section { padding-top: 88px; padding-bottom: 88px; }

/* Why cards: more punch */
.why-card { transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s; }
.why-card:hover { border-color: var(--color-border-strong); }
.why-card-icon { box-shadow: inset 0 -2px 0 rgba(0,0,0,0.04); }

/* How steps: stronger numbered tiles */
.step-number { box-shadow: 0 4px 14px rgba(28, 18, 8, 0.06); }

/* Pricing card: polish */
.pricing-card { transition: transform 0.2s, box-shadow 0.2s; }
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }

/* ============================================
   Platform page (.pp-*) — moved out of inline style for elevated visuals
   ============================================ */
.pp-wrap { max-width: 1100px; margin: 0 auto; padding: 56px 20px 40px; font-family: var(--font-body); --pp-accent: var(--color-saffron); }
.pp-hero { display: grid; grid-template-columns: 1fr; gap: 32px; padding: 16px 0 48px; }
@media (min-width: 900px) { .pp-hero { grid-template-columns: 1.3fr 1fr; align-items: center; gap: 56px; } }
.pp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--pp-accent);
  padding: 6px 14px; border-radius: 999px;
  background: color-mix(in srgb, var(--pp-accent) 14%, transparent);
}
.pp-h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.05; font-weight: 700;
  letter-spacing: -0.02em;
  margin: 20px 0 16px;
  white-space: pre-line;
}
.pp-sub { font-size: 18px; line-height: 1.65; color: var(--color-text-muted); margin-bottom: 28px; max-width: 560px; }
.pp-cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.pp-btn-primary {
  background: var(--pp-accent); color: var(--color-text);
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  padding: 14px 26px; border-radius: var(--radius-xl);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--pp-accent) 35%, transparent);
  transition: transform 0.15s, box-shadow 0.2s;
}
.pp-btn-primary:hover { transform: translateY(-2px); color: var(--color-text); box-shadow: 0 10px 24px color-mix(in srgb, var(--pp-accent) 45%, transparent); }
.pp-btn-ghost {
  padding: 14px 24px; border-radius: var(--radius-xl);
  border: 1.5px solid var(--color-border-strong);
  color: var(--color-text); text-decoration: none; font-weight: 600; font-size: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.pp-btn-ghost:hover { border-color: var(--color-text); background: rgba(28,18,8,0.03); color: var(--color-text); }
.pp-trust-line { font-size: 14px; color: var(--color-text-muted); margin-top: 16px; }
.pp-hero-card {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 24px 60px -20px rgba(28, 18, 8, 0.16), 0 6px 18px -6px rgba(28, 18, 8, 0.06);
  position: relative;
}
.pp-hero-card::before {
  content: ""; position: absolute; top: 0; left: 24px; right: 24px; height: 4px;
  background: var(--pp-accent); border-radius: 0 0 4px 4px;
}
.pp-hero-card-glyph { font-size: 48px; line-height: 1; display: inline-block; margin: 8px 0; }
.pp-hero-card-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.01em; }
.pp-hero-card-meta { font-size: 14px; color: var(--color-text-muted); margin-bottom: 18px; }
.pp-hero-card-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.pp-hero-card-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.pp-hero-card-list li::before {
  content: "✓"; color: var(--pp-accent); font-weight: 700; flex-shrink: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: color-mix(in srgb, var(--pp-accent) 14%, transparent);
  display: inline-flex; align-items: center; justify-content: center; font-size: 12px;
  margin-top: 1px;
}

.pp-section { padding: 64px 0; border-top: 1px solid var(--color-border); }
.pp-section-eyebrow {
  display: inline-block;
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--pp-accent);
  padding: 4px 12px; border-radius: 100px;
  background: color-mix(in srgb, var(--pp-accent) 12%, transparent);
  margin-bottom: 14px;
}
.pp-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15; font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.pp-intro { font-size: 17px; color: var(--color-text-muted); max-width: 720px; line-height: 1.65; margin-bottom: 32px; }

.pp-grid-2 { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 700px) { .pp-grid-2 { grid-template-columns: 1fr 1fr; gap: 20px; } }
.pp-card {
  padding: 26px; border-radius: var(--radius-md);
  background: var(--color-surface); border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.pp-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); border-color: var(--color-border-strong); }
.pp-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.pp-card p { font-size: 15px; line-height: 1.6; color: var(--color-text-muted); }

.pp-steps { display: grid; gap: 16px; }
.pp-step {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  align-items: flex-start; padding: 22px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.pp-step-num {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--pp-accent); color: var(--color-text);
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--pp-accent) 30%, transparent);
}
.pp-step h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.01em; }
.pp-step p { font-size: 15px; line-height: 1.6; color: var(--color-text-muted); }

.pp-snippet {
  margin-top: 28px; border-radius: var(--radius-md);
  overflow: hidden; border: 1px solid rgba(28,18,8,0.5);
  background: #1A1208; color: #FAF8F3;
  border-left: 4px solid var(--pp-accent);
}
.pp-snippet-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px; background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
}
.pp-snippet-header span { color: var(--pp-accent); font-weight: 600; }
.pp-snippet-header a {
  color: #FAF8F3; text-decoration: none; font-size: 12px;
  padding: 4px 12px; border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px; transition: background 0.15s;
}
.pp-snippet-header a:hover { background: rgba(255,255,255,0.08); color: #FAF8F3; }
.pp-snippet pre { margin: 0; padding: 20px; overflow-x: auto; font-family: 'JetBrains Mono', monospace; font-size: 13px; line-height: 1.6; color: #FAF8F3; }
.pp-snippet pre code { color: inherit; background: transparent; }
.pp-snippet-caption { font-size: 13px; color: var(--color-text-subtle); margin-top: 12px; font-style: italic; }

.pp-bug-list { display: grid; gap: 14px; grid-template-columns: 1fr; margin-top: 8px; }
@media (min-width: 700px) { .pp-bug-list { grid-template-columns: 1fr 1fr; } }
.pp-bug {
  padding: 18px 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-coral);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.pp-bug::before {
  content: "🐛"; position: absolute; top: 16px; right: 16px;
  font-size: 18px; opacity: 0.5;
}
.pp-bug strong { display: block; font-size: 15px; margin-bottom: 6px; padding-right: 28px; }
.pp-bug span { font-size: 14px; color: var(--color-text-muted); line-height: 1.55; }

.pp-cred-list { display: grid; gap: 12px; margin-top: 24px; padding: 0; list-style: none; }
.pp-cred-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--color-text-muted); }
.pp-cred-list li::before {
  content: "★"; color: var(--pp-accent); font-weight: 700;
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: color-mix(in srgb, var(--pp-accent) 14%, transparent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; margin-top: 1px;
}

.pp-pricing-card {
  padding: 40px 32px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-saffron-light), var(--color-surface));
  border: 2px solid var(--pp-accent);
  text-align: center;
  box-shadow: 0 12px 32px -12px color-mix(in srgb, var(--pp-accent) 30%, transparent);
}
.pp-pricing-card h3 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 30px); margin-bottom: 12px; letter-spacing: -0.01em; }
.pp-pricing-card p { font-size: 16px; color: var(--color-text-muted); line-height: 1.6; max-width: 560px; margin: 0 auto 22px; }

.pp-faq details {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 22px; margin-bottom: 12px;
  transition: border-color 0.15s;
}
.pp-faq details[open] { border-color: var(--color-border-strong); }
.pp-faq summary { cursor: pointer; font-weight: 600; font-size: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.pp-faq summary::-webkit-details-marker { display: none; }
.pp-faq summary::after { content: '+'; color: var(--color-text-subtle); font-size: 22px; line-height: 1; }
.pp-faq details[open] summary::after { content: '−'; }
.pp-faq details p { font-size: 15px; color: var(--color-text-muted); line-height: 1.65; margin-top: 14px; }

.pp-final-cta {
  text-align: center;
  padding: 80px 32px;
  margin-top: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, color-mix(in srgb, var(--pp-accent) 18%, var(--color-bg)), var(--color-saffron-light));
  border: 1px solid color-mix(in srgb, var(--pp-accent) 30%, transparent);
}
.pp-final-cta h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); line-height: 1.15; margin-bottom: 14px; letter-spacing: -0.02em; }
.pp-final-cta p { font-size: 17px; color: var(--color-text-muted); margin-bottom: 28px; max-width: 540px; margin-left: auto; margin-right: auto; }

.pp-cross { font-size: 14px; color: var(--color-text-muted); margin-top: 28px; }
.pp-cross a { color: var(--pp-accent); font-weight: 600; }

.pp-logo-row { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 32px; padding: 8px 0 4px; margin-bottom: 28px; }
.pp-logo-row img { height: 32px; max-width: 140px; width: auto; object-fit: contain; filter: grayscale(1); opacity: 0.7; transition: filter 0.2s, opacity 0.2s; }
.pp-logo-row a:hover img { filter: grayscale(0); opacity: 1; }
.pp-logo-label { font-size: 11px; color: var(--color-text-subtle); letter-spacing: 0.12em; text-transform: uppercase; margin-right: 4px; font-weight: 600; }

.pp-quote-grid { display: grid; gap: 16px; grid-template-columns: 1fr; margin-bottom: 32px; }
@media (min-width: 800px) { .pp-quote-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } }
.pp-quote {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--pp-accent);
  box-shadow: var(--shadow-card);
}
.pp-quote blockquote { font-size: 16px; line-height: 1.6; color: var(--color-text); margin: 0 0 16px; font-style: italic; }
.pp-quote-cite { display: flex; align-items: center; gap: 12px; font-style: normal; }
.pp-quote-avatar { width: 40px; height: 40px; border-radius: 999px; object-fit: cover; flex-shrink: 0; }
.pp-quote-meta { display: flex; flex-direction: column; line-height: 1.3; }
.pp-quote-name { font-weight: 600; font-size: 14px; color: var(--color-text); }
.pp-quote-role { font-size: 13px; color: var(--color-text-subtle); }

/* ============================================
   SEO page polish
   ============================================ */
.seo-wrap { max-width: 880px; margin: 0 auto; padding: 64px 24px 40px; }
.seo-eyebrow {
  display: inline-block;
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-saffron);
  padding: 4px 12px; border-radius: 100px;
  background: var(--color-saffron-light);
  margin-bottom: 16px;
}
.seo-h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.08; font-weight: 700; letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.seo-lead { font-size: 19px; line-height: 1.65; color: var(--color-text-muted); margin-bottom: 40px; }
.seo-section { margin-bottom: 48px; }
.seo-section-title { font-family: var(--font-display); font-size: 26px; font-weight: 600; margin-bottom: 24px; letter-spacing: -0.015em; }
.seo-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 0; margin: 0; list-style: none; }
.seo-step-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.seo-step-num {
  width: 44px; height: 44px; border-radius: 14px;
  background: var(--color-coral); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(255, 92, 58, 0.3);
}
.seo-step-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.seo-step-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.55; }

.seo-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.seo-feature {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 22px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.seo-feature-check {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--color-sage-light); color: #1E7A45;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.seo-feature h3 { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.seo-feature p { font-size: 14px; color: var(--color-text-muted); line-height: 1.55; }

.seo-cta-card {
  background: linear-gradient(135deg, var(--color-saffron-light), var(--color-surface));
  border: 2px solid var(--color-saffron);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: 0 12px 40px -12px rgba(240, 165, 0, 0.3);
}
.seo-cta-card h2 { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.015em; }
.seo-cta-card p { color: var(--color-text-muted); font-size: 16px; margin-bottom: 28px; }
.seo-cta-card .btn-primary { font-size: 16px; padding: 16px 32px; width: 100%; justify-content: center; }
.seo-cta-trust { color: var(--color-text-subtle); font-size: 13px; margin-top: 16px; }

@media (max-width: 720px) {
  .seo-steps { grid-template-columns: 1fr; }
  .seo-features { grid-template-columns: 1fr; }
}

/* Footer polish */
#main-footer { padding-top: 72px; }
.footer-logo .nav-logo-mark { box-shadow: 0 2px 8px rgba(255, 92, 58, 0.4); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }

/* Final CTA section: stronger contrast */
.final-cta-section {
  background: linear-gradient(135deg, var(--color-saffron-light), #FFE9B0);
}

/* Responsive nav fix */
@media (max-width: 900px) {
  .pp-step { grid-template-columns: 48px 1fr; gap: 16px; padding: 18px 20px; }
  .pp-step-num { width: 40px; height: 40px; font-size: 18px; }
  .pp-section { padding: 48px 0; }
  #hero { padding: 40px 24px 64px; }
  .hero-card { transform: none; }
}

@media (max-width: 480px) {
  .pp-wrap { padding: 32px 16px; }
  .pp-pricing-card { padding: 28px 20px; }
  .pp-final-cta { padding: 56px 20px; }
}

/* ============================================
   Subtle motion: scroll-reveal & hover lifts
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Stagger helpers for sibling reveals */
.reveal[data-reveal-delay="1"] { transition-delay: 0.06s; }
.reveal[data-reveal-delay="2"] { transition-delay: 0.12s; }
.reveal[data-reveal-delay="3"] { transition-delay: 0.18s; }
.reveal[data-reveal-delay="4"] { transition-delay: 0.24s; }

/* Hover lifts for cards that didn't have one yet */
.seo-step-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.seo-step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover, 0 12px 28px rgba(28,18,8,0.08));
  border-color: var(--color-border-strong);
}
.seo-feature {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.seo-feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover, 0 10px 24px rgba(28,18,8,0.07));
  border-color: var(--color-border-strong);
}

/* Small lift on platform-page sub-cards */
.pp-step {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pp-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover, 0 12px 28px rgba(28,18,8,0.08));
  border-color: var(--color-border-strong);
}
.pp-quote, .pp-bug, .proof-quote {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pp-quote:hover, .pp-bug:hover, .proof-quote:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover, 0 10px 24px rgba(28,18,8,0.07));
}

/* Supporting visuals */
.supporting-visual {
  display: block;
  margin: 40px auto 0;
  max-width: 880px;
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: 0 24px 60px -20px rgba(28, 18, 8, 0.18),
              0 6px 18px -6px rgba(28, 18, 8, 0.06);
  overflow: hidden;
  background: var(--color-surface);
}
.supporting-visual img {
  display: block;
  width: 100%;
  height: auto;
}
.supporting-visual-caption {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--color-text-subtle);
  margin-top: 12px;
  letter-spacing: 0.02em;
}
.pp-supporting-visual {
  margin-top: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: 0 16px 40px -16px rgba(28, 18, 8, 0.15),
              0 4px 14px -4px rgba(28, 18, 8, 0.05);
  overflow: hidden;
}
.pp-supporting-visual img { display: block; width: 100%; height: auto; }

/* Honor reduced motion: disable reveal animation & hover translates */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .seo-step-card:hover, .seo-feature:hover,
  .pp-step:hover, .pp-quote:hover, .pp-bug:hover, .proof-quote:hover,
  .pp-card:hover, .why-card:hover, .pricing-card:hover, .type-card:hover {
    transform: none !important;
  }
}
