:root {
  --bg: #0a0a0a;
  --bg-soft: #131312;
  --bg-elevated: #1a1a18;
  --ink: #f4f1ea;
  --ink-muted: #a8a39a;
  --ink-dim: #6b665d;
  --accent: #e8b339;
  --accent-soft: #f5d98a;
  --line: rgba(244, 241, 234, 0.08);
  --line-strong: rgba(244, 241, 234, 0.18);

  /* AI elements */
  --ai: #818cf8;
  --ai-soft: #a5b4fc;
  --ai-glow: rgba(129, 140, 248, 0.12);
  --ai-line: rgba(129, 140, 248, 0.2);
  --terminal-green: #4ade80;
  --terminal-warn: #fb923c;
  --terminal-dim: #52525b;

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;

  --max-w: 1320px;
  --pad: clamp(20px, 4vw, 56px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 2;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  display: inline-block;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--bg);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover { color: var(--ink); }

.nav-signup {
  background: transparent;
  border: none;
  color: var(--ink-muted);
  padding: 8px 6px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: color 0.2s;
}
.nav-signup:hover { color: var(--ink); }

.nav-signin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 100px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.2s;
}
.nav-signin:hover {
  border-color: var(--ink);
  background: var(--surface);
  transform: translateY(-1px);
}
.nav-signin svg { opacity: 0.7; }
.nav-signin.is-authed {
  background: var(--surface);
  border-color: var(--ink);
}
.nav-signin.is-authed .nav-signin-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terminal-green);
  box-shadow: 0 0 6px var(--terminal-green);
}

.nav-cta {
  background: var(--ai);
  color: #fff;
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.nav-cta:hover {
  background: var(--ai-soft);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--ai-glow);
}
.nav-cta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terminal-green);
  box-shadow: 0 0 6px var(--terminal-green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 8px;
}

/* Mobile-only items: hidden on desktop */
.nav-mobile-auth { display: none; }
.nav-mobile-cta  { display: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-signin { display: none; }
  .nav-signup { display: none; }
  .nav-burger { display: block; }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-soft);
    flex-direction: column;
    padding: 20px var(--pad) 28px;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
    z-index: 999;
  }
  .nav-links.open li a {
    display: block;
    padding: 13px 0;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links.open li:last-of-type a { border-bottom: none; }

  /* Mobile auth row */
  .nav-mobile-auth {
    display: flex;
    gap: 10px;
    padding: 20px 0 10px;
    border-top: 1px solid var(--line);
    margin-top: 8px;
  }
  .nav-mobile-signup-btn,
  .nav-mobile-signin-btn {
    flex: 1;
    padding: 11px 16px;
    border-radius: 10px;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s;
    letter-spacing: 0.01em;
  }
  .nav-mobile-signup-btn {
    background: var(--ai);
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(129,140,248,0.3);
  }
  .nav-mobile-signup-btn:hover { background: var(--ai-soft); transform: translateY(-1px); }
  .nav-mobile-signin-btn {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
  }
  .nav-mobile-signin-btn:hover { border-color: var(--ink); background: var(--surface); }

  /* Mobile "Get Free AI Audit" CTA at bottom of menu */
  .nav-mobile-cta {
    display: block;
    padding-top: 10px;
  }
  /* When user is signed in, hide mobile signup/signin, show only signed-in state */
  .nav-mobile-auth.is-authed .nav-mobile-signup-btn { display: none; }
  .nav-mobile-auth.is-authed .nav-mobile-signin-btn {
    flex: 1;
    background: var(--surface);
    border-color: var(--ink);
  }
}

/* ============ HERO ============ */
.hero {
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: -10%;
  width: 70%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(232, 179, 57, 0.10), transparent 60%),
              radial-gradient(circle at 80% 20%, rgba(129, 140, 248, 0.08), transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* AI grid lines in hero */
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(var(--ai-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--ai-line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.18;
  -webkit-mask: radial-gradient(ellipse 80% 80% at 80% 50%, #000 30%, transparent 70%);
  mask: radial-gradient(ellipse 80% 80% at 80% 50%, #000 30%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  border: 1px solid var(--ai-line);
  background: var(--ai-glow);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ai-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.15s forwards;
}
.hero-ai-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terminal-green);
  box-shadow: 0 0 8px var(--terminal-green);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(46px, 8vw, 124px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s forwards;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-variation-settings: "opsz" 144;
}

.hero h1 .line {
  display: block;
}

.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-muted);
  max-width: 580px;
  margin-bottom: 56px;
  line-height: 1.5;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.btn-primary, .btn-secondary {
  padding: 18px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(232, 179, 57, 0.2);
}

/* AI CTA button variant */
.btn-ai {
  background: var(--ai);
  color: #fff;
  padding: 18px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-ai::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-ai:hover::before {
  transform: translateX(100%);
}
.btn-ai:hover {
  background: var(--ai-soft);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px var(--ai-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-secondary:hover {
  border-color: var(--ink);
  background: rgba(255,255,255,0.04);
}

.arrow {
  transition: transform 0.25s;
}
.btn-primary:hover .arrow,
.btn-ai:hover .arrow {
  transform: translateX(4px);
}

/* Hero support line */
.hero-support {
  margin-top: 28px;
  font-size: 14px;
  color: var(--ink-dim);
  max-width: 560px;
  line-height: 1.6;
  font-style: italic;
  font-family: var(--serif);
  opacity: 0;
  animation: fadeUp 0.9s 0.75s forwards;
}

/* Hero social proof */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s forwards;
  flex-wrap: wrap;
}
.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-dim);
  font-family: var(--mono);
  letter-spacing: 0.05em;
}
.hero-proof-item svg { color: var(--terminal-green); }
.hero-proof-sep {
  width: 1px;
  height: 16px;
  background: var(--line-strong);
}

/* Hero side decoration */
.hero-meta {
  position: absolute;
  right: var(--pad);
  bottom: 100px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: right;
  line-height: 2;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero-meta span { color: var(--ink-muted); }
@media (max-width: 980px) { .hero-meta { display: none; } }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  overflow: hidden;
  background: var(--bg-soft);
}

.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  color: var(--ink-muted);
}

.marquee-track span {
  display: flex;
  align-items: center;
  gap: 60px;
}

.marquee-track .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

.marquee-track .ai-tag {
  color: var(--ai-soft);
  font-style: normal;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid var(--ai-line);
  background: var(--ai-glow);
  vertical-align: middle;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTION COMMON ============ */
section {
  padding: 140px 0;
  position: relative;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
@media (max-width: 860px) {
  .section-head { grid-template-columns: 1fr; gap: 28px; }
}

.section-tag {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.section-tag.ai-tag-label {
  color: var(--ai-soft);
}
.section-tag.ai-tag-label::before {
  background: var(--ai-soft);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.section-title em {
  font-style: italic;
  color: var(--accent);
}
.section-title .ai-em {
  font-style: italic;
  color: var(--ai-soft);
}

/* ============ GROWTH ASSESSMENT STRIP ============ */
.assessment-strip {
  padding: 80px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.assessment-strip::before {
  content: '';
  position: absolute;
  top: 0; right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(232, 179, 57, 0.06), transparent 70%);
  pointer-events: none;
}
.assessment-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 860px) {
  .assessment-inner { grid-template-columns: 1fr; gap: 32px; }
}
.assessment-tag {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.assessment-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.assessment-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.assessment-headline em {
  font-style: italic;
  color: var(--accent);
}
.assessment-body {
  color: var(--ink-muted);
  max-width: 540px;
  line-height: 1.6;
  font-size: 16px;
}
.assessment-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
@media (max-width: 860px) {
  .assessment-cta-wrap { align-items: stretch; }
}
.btn-assessment {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 100px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  justify-content: center;
}
.btn-assessment:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(232, 179, 57, 0.18);
}
.assessment-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============ HOW IT WORKS STRIP ============ */
.how {
  padding: 120px 0;
  position: relative;
}
.how-head {
  text-align: center;
  margin-bottom: 60px;
}
.how-head .section-tag {
  justify-content: center;
  display: inline-flex;
  margin-bottom: 18px;
}
.how-head h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.how-head h2 em {
  font-style: italic;
  color: var(--accent);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 860px) {
  .how-grid { grid-template-columns: 1fr; }
}
.how-step {
  position: relative;
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-soft);
  transition: all 0.3s;
}
.how-step:hover {
  border-color: var(--line-strong);
  background: var(--bg-elevated);
  transform: translateY(-4px);
}
.how-step-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.how-step-num::after {
  content: '';
  height: 1px;
  flex: 1;
  background: var(--line);
}
.how-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(232, 179, 57, 0.08);
  border: 1px solid rgba(232, 179, 57, 0.18);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.how-step h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.how-step h3 em {
  font-style: italic;
  color: var(--accent);
}
.how-step p {
  color: var(--ink-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ============ CHAT AUTH STRIP ============ */
.chat-auth-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 18px;
  background: rgba(232, 179, 57, 0.06);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
}
.chat-auth-strip.is-authed {
  background: rgba(74, 222, 128, 0.06);
}
.chat-auth-text { flex: 1; min-width: 0; }
.chat-auth-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.chat-auth-text a:hover { color: var(--accent-soft); }
.chat-auth-text strong { color: var(--ink); font-weight: 600; }
.chat-auth-signout {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink-muted);
  padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.chat-auth-signout:hover { border-color: var(--ink); color: var(--ink); }

.auth-error {
  margin-top: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.08);
  border-radius: 8px;
  color: #fca5a5;
  font-size: 13px;
}

/* ===== Auth modal (Sign in / Sign up) ===== */
.auth-modal { max-width: 460px; }
.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border-radius: 11px;
  padding: 4px;
  gap: 4px;
  margin: 0 0 1.5rem;
}
.auth-tab {
  background: transparent;
  border: none;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink-muted);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.auth-tab:hover { color: var(--ink); }
.auth-tab.is-active {
  background: var(--bg);
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
}
.auth-panel[hidden] { display: none; }
.auth-pw-wrap { position: relative; }
.auth-pw-wrap input { padding-right: 64px !important; }
.auth-pw-toggle {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}
.auth-pw-toggle:hover { color: var(--ink); background: var(--surface); }
.auth-hint {
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--ink-muted);
  letter-spacing: 0;
  text-transform: none;
  margin-left: 4px;
}
.auth-strength {
  margin-top: 8px;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.auth-strength-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: #e74c3c;
  border-radius: 2px;
  transition: width 0.22s ease, background-color 0.22s ease;
}
.auth-strength-label {
  margin-top: 6px;
  font-size: 0.74rem;
  color: var(--ink-muted);
  line-height: 1.4;
}
.auth-foot {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
  text-align: center;
  line-height: 1.55;
}
.auth-foot a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.auth-foot a:hover { color: var(--accent); }
.auth-foot-sep { margin: 0 6px; opacity: 0.5; }
.qa-lead-form input.invalid {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15) !important;
}

/* ============ GROWTH ASSESSMENT MODAL ============ */
.qa-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}
.qa-overlay.open {
  display: flex;
  opacity: 1;
}
.qa-modal {
  width: 100%;
  max-width: 640px;
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.qa-overlay.open .qa-modal { transform: translateY(0); }
@media (max-width: 540px) {
  .qa-modal { padding: 28px 22px; border-radius: 14px; }
}
.qa-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.qa-close:hover { border-color: var(--ink); color: var(--ink); }
.qa-progress-bar {
  height: 3px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 24px;
}
.qa-progress-fill {
  height: 100%;
  background: var(--accent);
  width: 20%;
  transition: width 0.35s;
}
.qa-step-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 14px;
}
.qa-question {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.qa-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.qa-option {
  text-align: left;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 16px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14.5px;
  line-height: 1.45;
  font-family: var(--sans);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 14px;
}
.qa-option:hover {
  border-color: var(--accent);
  background: var(--bg-elevated);
  transform: translateX(4px);
}
.qa-option-marker {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.qa-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--ink-dim);
  font-family: var(--mono);
  letter-spacing: 0.05em;
}
.qa-back {
  background: transparent;
  border: none;
  color: var(--ink-dim);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 0;
}
.qa-back:hover { color: var(--ink); }
.qa-back[disabled] { opacity: 0.3; cursor: not-allowed; }

/* Lead form view */
.qa-lead-sub {
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 22px;
}
.qa-lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.qa-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.qa-field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.qa-optional {
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
  font-size: 10px;
  margin-left: 4px;
  opacity: 0.7;
}
.qa-field input {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 14.5px;
  font-family: var(--sans);
  transition: all 0.2s;
  outline: none;
}
.qa-field input::placeholder { color: var(--ink-dim); }
.qa-field input:focus {
  border-color: var(--accent);
  background: var(--bg-elevated);
  box-shadow: 0 0 0 3px rgba(232, 179, 57, 0.1);
}
.qa-field input.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.qa-lead-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.qa-lead-trust {
  font-size: 12px;
  color: var(--ink-dim);
  text-align: center;
  margin: 4px 0 0;
  font-family: var(--mono);
  letter-spacing: 0.04em;
}
.qa-lead-submit[disabled] {
  opacity: 0.6;
  cursor: wait;
}

/* Result view */
.qa-result-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid rgba(232, 179, 57, 0.25);
  background: rgba(232, 179, 57, 0.06);
  margin-bottom: 16px;
}
.qa-result-headline {
  font-family: var(--serif);
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.qa-result-headline em { font-style: italic; color: var(--accent); }
.qa-result-body {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 22px;
}
.qa-result-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .qa-result-summary { grid-template-columns: 1fr; }
}
.qa-summary-item-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 4px;
}
.qa-summary-item-value {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
.qa-result-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.qa-result-actions .btn-ai,
.qa-result-actions .btn-secondary {
  flex: 1;
  min-width: 200px;
  justify-content: center;
}

/* ============ AI AUDIT SECTION ============ */
.ai-audit {
  background: var(--bg);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.ai-audit::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(var(--ai-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--ai-line) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.12;
  pointer-events: none;
}

.ai-audit::after {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(129, 140, 248, 0.08), transparent 70%);
  pointer-events: none;
}

.audit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 920px) {
  .audit-layout { grid-template-columns: 1fr; }
}

/* Terminal */
.audit-terminal {
  background: #0d0d0f;
  border: 1px solid var(--ai-line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(129, 140, 248, 0.08), 0 40px 80px rgba(0,0,0,0.4);
  position: relative;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--ai-line);
  background: rgba(129, 140, 248, 0.04);
}

.terminal-dots {
  display: flex;
  gap: 7px;
}
.terminal-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.terminal-dots span:nth-child(1) { background: #ff5f57; }
.terminal-dots span:nth-child(2) { background: #febc2e; }
.terminal-dots span:nth-child(3) { background: #28c840; }

.terminal-title {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.08em;
  flex: 1;
  text-align: center;
  margin-right: 56px;
}

.terminal-body {
  padding: 28px 28px 20px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.8;
  min-height: 340px;
  position: relative;
}

.t-line { display: block; }
.t-muted { color: var(--terminal-dim); }
.t-normal { color: var(--ink-muted); }
.t-accent { color: var(--accent); }
.t-warn { color: var(--terminal-warn); }
.t-success { color: var(--terminal-green); }
.t-ai { color: var(--ai-soft); }
.t-dim { color: #3f3f46; }

.t-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--ai-soft);
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Progress bar in terminal */
.t-progress {
  display: inline-block;
  color: var(--ai-soft);
  letter-spacing: -1px;
}

.terminal-cta {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--ai-line);
}

.btn-ai-audit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: var(--ai);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.btn-ai-audit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-ai-audit:hover::before { transform: translateX(100%); }
.btn-ai-audit:hover {
  background: var(--ai-soft);
  box-shadow: 0 12px 32px var(--ai-glow);
  transform: translateY(-2px);
}
.ai-icon {
  font-size: 17px;
  line-height: 1;
}

/* Audit cards */
.audit-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.audit-card {
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.25s;
  cursor: default;
}
.audit-card:hover {
  border-color: var(--ai-line);
  background: var(--bg-elevated);
  transform: translateX(4px);
  box-shadow: -4px 0 0 var(--ai);
}

.audit-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--ai-glow);
  border: 1px solid var(--ai-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ai-soft);
}

.audit-card-info { flex: 1; }

.audit-card-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.audit-card-info p {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.5;
}

.audit-card-badge {
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.badge-free {
  background: rgba(74, 222, 128, 0.1);
  color: var(--terminal-green);
  border: 1px solid rgba(74, 222, 128, 0.2);
}
.badge-ai {
  background: var(--ai-glow);
  color: var(--ai-soft);
  border: 1px solid var(--ai-line);
}

/* AI audit subheadline */
.ai-audit-sub {
  max-width: 720px;
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: -56px 0 64px;
}
@media (max-width: 860px) {
  .ai-audit-sub { margin: -16px 0 40px; }
}

/* Audit offer box (replaces previous note) */
.audit-offer {
  margin-top: 12px;
  padding: 28px;
  border: 1px solid var(--ai-line);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(129, 140, 248, 0.06), rgba(129, 140, 248, 0.02));
  position: relative;
  overflow: hidden;
}
.audit-offer::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(129,140,248,0.12), transparent 60%);
  pointer-events: none;
}
.audit-offer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.audit-offer-badge {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(74, 222, 128, 0.1);
  color: var(--terminal-green);
  border: 1px solid rgba(74, 222, 128, 0.2);
}
.audit-offer-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.audit-offer-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 16px 0 22px;
  padding: 0;
}
.audit-offer-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-muted);
}
.audit-offer-list svg { color: var(--terminal-green); flex-shrink: 0; }
.audit-offer-cta {
  width: 100%;
  justify-content: center;
}
@media (max-width: 540px) {
  .audit-offer-list { grid-template-columns: 1fr; }
}

/* ============ PRICING (AI Audit credit packs) ============ */
.pricing {
  background: var(--bg);
  padding: var(--section-gap) 0;
  border-top: 1px solid var(--line);
}
.pricing .section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.pricing .section-tag { justify-content: center; display: inline-flex; }
.pricing-sub {
  max-width: 580px;
  margin: 1rem auto 0;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.65;
  text-align: center;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1020px;
  margin: 0 auto 2.5rem;
  align-items: stretch;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.18);
}
.pricing-card--featured {
  background: linear-gradient(150deg, #1e1b4b 0%, #312e81 55%, #3730a3 100%);
  border: 1.5px solid rgba(129, 140, 248, 0.5);
  color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 0 0 1px rgba(129,140,248,0.15), 0 28px 56px rgba(99,102,241,0.28);
}
.pricing-card--featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 0 1px rgba(129,140,248,0.3), 0 36px 64px rgba(99,102,241,0.35);
}
.pricing-card-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terminal-green);
  color: #0c1a0c;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(74, 222, 128, 0.35);
}
.pricing-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted, var(--ink-muted));
  margin-bottom: 0.25rem;
}
.pricing-card--featured .pricing-card-label { color: rgba(199,210,254,0.8); }
.pricing-card-volume {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.pricing-card--featured .pricing-card-volume { color: #e0e7ff; }
.pricing-card-price {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0.35rem 0 0.1rem;
}
.pricing-card-price sup {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.6;
  top: -1rem;
  margin-right: 2px;
}
.pricing-card-per {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-bottom: 0.25rem;
}
.pricing-card--featured .pricing-card-per { color: rgba(199,210,254,0.75); }
.pricing-card-save {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--terminal-green);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.pricing-card-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.pricing-card-list li {
  font-size: 0.85rem;
  color: var(--ink-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  line-height: 1.45;
}
.pricing-card--featured .pricing-card-list li { color: rgba(224,231,255,0.88); }
.pricing-card-list li::before {
  content: '✓';
  color: var(--terminal-green);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.btn-featured-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 13px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}
.btn-featured-cta:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.pricing-tiers {
  max-width: 820px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1.5rem;
  align-items: center;
}
.pricing-tiers-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.pricing-tiers-body {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.6;
}
.pricing-tiers-body strong { color: var(--ink); font-weight: 700; }
.pricing-tiers-body a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 600px) {
  .pricing-tiers { grid-template-columns: 1fr; }
}

/* ============ SERVICES ============ */
.services {
  background: var(--bg-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 760px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--bg-soft);
  padding: 56px 48px;
  transition: background 0.3s;
  position: relative;
  cursor: default;
}
.service-card:hover {
  background: var(--bg-elevated);
}
@media (max-width: 480px) {
  .service-card { padding: 40px 28px; }
}

.service-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.15em;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.service-card p {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  font-size: 14px;
  color: var(--ink-muted);
  padding-left: 22px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 1px;
  background: var(--accent);
}

/* AI service card variant */
.service-card.ai-service {
  background: linear-gradient(135deg, var(--bg-soft), rgba(129, 140, 248, 0.04));
  border: 1px solid var(--ai-line);
}
.service-card.ai-service .service-icon { color: var(--ai-soft); }
.service-card.ai-service .service-list li::before { background: var(--ai-soft); }
.service-card.ai-service:hover { background: linear-gradient(135deg, var(--bg-elevated), rgba(129, 140, 248, 0.07)); }

.service-ai-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ai-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--ai-line);
  background: var(--ai-glow);
  margin-left: 10px;
  vertical-align: middle;
}

/* Services as 3 buckets (Audit / Build / Scale) */
.services-buckets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 960px) {
  .services-buckets { grid-template-columns: 1fr; }
}
.bucket {
  padding: 40px 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
}
.bucket:hover {
  border-color: var(--line-strong);
  background: var(--bg-elevated);
  transform: translateY(-4px);
}
.bucket-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bucket-tag::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--accent);
}
.bucket h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.bucket h3 em {
  font-style: italic;
  color: var(--accent);
}
.bucket-lead {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--line);
}
.bucket-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.bucket-list li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.bucket-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 1px;
  background: var(--accent);
}
.services-support {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-muted);
  text-align: center;
  margin-bottom: 28px;
}
.services-cta-wrap {
  display: flex;
  justify-content: center;
}

/* ============ PHILOSOPHY ============ */
.philosophy {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 179, 57, 0.06), transparent 70%);
  pointer-events: none;
}

.philosophy-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.philosophy-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 48px 0;
}
.philosophy-quote em {
  font-style: italic;
  color: var(--accent);
}

.philosophy-body {
  font-size: 18px;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 48px;
}

.mission-block {
  border-top: 1px solid var(--line);
  padding-top: 48px;
  margin-top: 64px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px) {
  .mission-block { grid-template-columns: 1fr; gap: 16px; text-align: center; }
}

.mission-label {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mission-text {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
}

/* ============ STATS ============ */
.stats {
  background: var(--bg-soft);
  padding: 100px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
@media (max-width: 800px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.stat {
  background: var(--bg-soft);
  padding: 48px 32px;
  text-align: left;
}

.stat-num {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 16px;
}
.stat-num em {
  font-style: italic;
  color: var(--accent);
}

.stat-label {
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
  line-height: 1.4;
  max-width: 220px;
}

/* ============ WHO ============ */
.who {
  background: var(--bg);
}

.who-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 760px) { .who-list { grid-template-columns: 1fr; } }

.who-item {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.25s;
}
.who-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.who-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(232, 179, 57, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.who-item p {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
}

/* Who We Help — fit/not-fit split */
.who-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 860px) {
  .who-split { grid-template-columns: 1fr; }
}
.who-col {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-soft);
}
.who-col-fit {
  background: linear-gradient(180deg, rgba(232,179,57,0.05), rgba(232,179,57,0.01));
  border-color: rgba(232, 179, 57, 0.2);
}
.who-col-not {
  background: var(--bg-soft);
  border-color: var(--line);
}
.who-col-head {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}
.who-col-badge {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  display: inline-block;
}
.who-col-badge-fit {
  background: rgba(232, 179, 57, 0.1);
  color: var(--accent);
  border: 1px solid rgba(232, 179, 57, 0.25);
}
.who-col-badge-not {
  background: rgba(244, 241, 234, 0.04);
  color: var(--ink-dim);
  border: 1px solid var(--line-strong);
}
.who-col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.who-col-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.who-col-list li p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.who-col-not .who-col-list li p { color: var(--ink-muted); }
.who-check-fit {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(232, 179, 57, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.who-check-not {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(244, 241, 234, 0.04);
  color: var(--ink-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1px solid var(--line-strong);
}
.who-cta-wrap {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* ============ AI CTA BANNER ============ */
.ai-cta-banner {
  background: var(--bg-soft);
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.ai-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--ai-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--ai-line) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.15;
  pointer-events: none;
}

.ai-cta-banner::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(129, 140, 248, 0.1), transparent 70%);
  pointer-events: none;
}

.ai-cta-inner {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.ai-cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--terminal-green);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding: 6px 14px;
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 100px;
  background: rgba(74, 222, 128, 0.05);
}
.ai-cta-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terminal-green);
  box-shadow: 0 0 8px var(--terminal-green);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.ai-cta-headline {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.ai-cta-headline em {
  font-style: italic;
  color: var(--ai-soft);
}

.ai-cta-body {
  font-size: 18px;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 44px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.ai-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.ai-cta-footnote {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.08em;
}
.ai-cta-footnote span { color: var(--ink-muted); }

/* ============ PARTNERS ============ */
.partners {
  background: var(--bg);
  padding: 80px 0;
}

.partners-track-wrap {
  overflow: hidden;
  margin-top: 48px;
  -webkit-mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.partners-track {
  display: flex;
  gap: 80px;
  animation: scroll 50s linear infinite;
  width: fit-content;
}

.partner {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  color: var(--ink-dim);
  white-space: nowrap;
  transition: color 0.3s;
  cursor: default;
}
.partner:hover { color: var(--accent); }

.partners-heading {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  margin-top: 24px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--ink);
}

/* ============ CONTACT ============ */
.contact {
  background: var(--bg-soft);
  padding: 140px 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
}

.contact-headline {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.contact-headline em {
  font-style: italic;
  color: var(--accent);
}

.contact-body {
  font-size: 17px;
  color: var(--ink-muted);
  margin-bottom: 48px;
  line-height: 1.65;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.contact-info-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: baseline;
}

.contact-info-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-info-value {
  font-size: 15px;
  color: var(--ink);
}
.contact-info-value a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 0.2s;
}
.contact-info-value a:hover { border-color: var(--accent); }

/* Form */
.contact-form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 48px;
}
@media (max-width: 480px) { .contact-form { padding: 32px 24px; } }

.form-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.form-subtitle {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 32px;
  line-height: 1.5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  padding: 14px 16px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 15px;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--sans);
}

.form-submit {
  width: 100%;
  margin-top: 16px;
  padding: 18px;
  background: var(--ai);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--sans);
}
.form-submit:hover {
  background: var(--ai-soft);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px var(--ai-glow);
}

.form-status {
  margin-top: 16px;
  font-size: 14px;
  text-align: center;
  min-height: 22px;
  color: var(--terminal-green);
}

/* ============ OLIVER CHATBOT WIDGET ============ */
.chat-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ai);
  color: #fff;
  border: none;
  padding: 12px 18px 12px 14px;
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 32px rgba(129, 140, 248, 0.4), 0 0 0 1px rgba(255,255,255,0.05);
  transition: all 0.25s;
}
.chat-launcher:hover {
  background: var(--ai-soft);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(129, 140, 248, 0.5);
}
.chat-launcher.hidden { display: none; }

.chat-launcher-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  position: relative;
}
.chat-launcher-avatar::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--terminal-green);
  border: 2px solid var(--ai);
  box-shadow: 0 0 6px var(--terminal-green);
}

@media (max-width: 480px) {
  .chat-launcher {
    right: 16px;
    bottom: 16px;
    padding: 12px 16px 12px 12px;
  }
  .chat-launcher-text { display: none; }
}

/* Chat panel */
.chat-panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 160;
  width: 400px;
  max-width: calc(100vw - 32px);
  height: 620px;
  max-height: calc(100vh - 48px);
  background: var(--bg-soft);
  border: 1px solid var(--ai-line);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(129, 140, 248, 0.12);
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
  animation: chatIn 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.chat-panel.open { display: flex; }

@keyframes chatIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

@media (max-width: 480px) {
  .chat-panel {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
}

.chat-header {
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(129, 140, 248, 0.08), rgba(129, 140, 248, 0.02));
  border-bottom: 1px solid var(--ai-line);
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ai);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  position: relative;
  flex-shrink: 0;
}
.chat-avatar::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--terminal-green);
  border: 2px solid var(--bg-soft);
  box-shadow: 0 0 6px var(--terminal-green);
}

.chat-header-info { flex: 1; min-width: 0; }
.chat-header-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.chat-header-role {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ai-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.chat-header-close {
  background: none;
  border: none;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.chat-header-close:hover { background: var(--line); color: var(--ink); }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 6px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 4px; }

.chat-msg {
  display: flex;
  gap: 10px;
  max-width: 92%;
  animation: msgIn 0.25s ease;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.chat-msg.user { align-self: flex-end; flex-direction: row-reverse; }

.chat-msg-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.55;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
.chat-msg.assistant .chat-msg-bubble {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.chat-msg.user .chat-msg-bubble {
  background: var(--ai);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-msg-bubble p { margin: 0 0 8px; }
.chat-msg-bubble p:last-child { margin-bottom: 0; }
.chat-msg-bubble strong { color: var(--ai-soft); font-weight: 600; }
.chat-msg.user .chat-msg-bubble strong { color: #fff; }
.chat-msg-bubble ul, .chat-msg-bubble ol { margin: 6px 0 8px 18px; padding: 0; }
.chat-msg-bubble li { margin-bottom: 4px; }
.chat-msg-bubble code {
  font-family: var(--mono);
  font-size: 12px;
  background: rgba(129, 140, 248, 0.1);
  color: var(--ai-soft);
  padding: 1px 6px;
  border-radius: 4px;
}
.chat-msg-bubble table {
  border-collapse: collapse;
  width: 100%;
  margin: 8px 0;
  font-size: 12px;
}
.chat-msg-bubble th, .chat-msg-bubble td {
  border: 1px solid var(--line);
  padding: 6px 8px;
  text-align: left;
}
.chat-msg-bubble th { background: var(--bg-soft); color: var(--ai-soft); font-weight: 600; }

.chat-msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
}
.chat-msg.assistant .chat-msg-avatar { background: var(--ai); color: #fff; }
.chat-msg.user .chat-msg-avatar { display: none; }

.chat-typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 12px 14px;
}
.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ai-soft);
  animation: typing 1.2s infinite ease-in-out;
}
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30%           { opacity: 1;   transform: translateY(-3px); }
}

.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 18px 4px;
}
.chat-quick {
  font-family: var(--sans);
  font-size: 12px;
  padding: 7px 12px;
  border-radius: 100px;
  background: transparent;
  border: 1px solid var(--ai-line);
  color: var(--ai-soft);
  cursor: pointer;
  transition: all 0.2s;
}
.chat-quick:hover {
  background: var(--ai-glow);
  border-color: var(--ai-soft);
}

.chat-input-wrap {
  padding: 12px 14px 14px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.chat-input-row {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 6px 6px 6px 12px;
  transition: border-color 0.2s;
}
.chat-input-row:focus-within { border-color: var(--ai-soft); }

.chat-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
  padding: 8px 4px;
  resize: none;
  max-height: 120px;
  outline: none;
}
.chat-input::placeholder { color: var(--ink-dim); }

.chat-send {
  background: var(--ai);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.chat-send:hover:not(:disabled) {
  background: var(--ai-soft);
  transform: translateY(-1px);
}
.chat-send:disabled { opacity: 0.4; cursor: not-allowed; }

.chat-footer {
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-dim);
  letter-spacing: 0.1em;
  margin-top: 8px;
}
.chat-footer span { color: var(--ai-soft); }

/* ============ NAV AI DOT ============ */
.nav-ai-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ai-soft);
  margin-right: 6px;
  vertical-align: 1px;
  box-shadow: 0 0 6px var(--ai-soft);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ============ HERO PILLARS ============ */
.hero-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 36px 0 32px;
  max-width: 880px;
}
@media (max-width: 880px) {
  .hero-pillars { grid-template-columns: 1fr; gap: 10px; max-width: 560px; }
}

.hero-pillar {
  display: flex;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(244, 241, 234, 0.02);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.3s, background 0.3s;
}
.hero-pillar:hover {
  border-color: var(--ai-line);
  background: var(--ai-glow);
}
.hero-pillar-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ai-soft);
  letter-spacing: 0.15em;
  flex-shrink: 0;
  padding-top: 2px;
}
.hero-pillar-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-muted);
}
.hero-pillar-text strong {
  color: var(--ink);
  font-weight: 600;
}

/* ============ WORK / CASE STUDIES ============ */
.work {
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 920px) {
  .work-grid { grid-template-columns: 1fr; gap: 18px; }
}

.work-card {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.work-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.work-card.featured  { grid-column: span 8; }
.work-card.compact   { grid-column: span 4; }
.work-card.half      { grid-column: span 6; }
@media (max-width: 920px) {
  .work-card.featured, .work-card.compact, .work-card.half { grid-column: span 1; }
}

.work-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-elevated);
}
.work-card.featured .work-visual { aspect-ratio: 16 / 9; }
.work-card.compact  .work-visual { aspect-ratio: 4 / 3; }

.work-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244,241,234,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,241,234,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 1;
}

/* Stylized "screenshot" mockups using pure CSS */
.work-mockup {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.work-card:hover .work-mockup { transform: scale(1.04); }

.work-frame {
  position: relative;
  width: 78%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-6deg) rotateX(2deg);
}
.work-frame-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  background: #f1efe9;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.work-frame-bar span {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ddd8cd;
}
.work-frame-body {
  padding: 18px 16px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Variant A — fashion */
.mockup-a .work-frame-body { background: linear-gradient(135deg, #f5e6d3, #e8c8a4); }
.mockup-a .mock-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  color: rgba(40,30,20,0.6);
}
.mockup-a .mock-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: #2a1f12;
  line-height: 1.1;
}
.mockup-a .mock-cta {
  align-self: flex-start;
  background: #2a1f12;
  color: #f5e6d3;
  font-size: 9px;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

/* Variant B — tech/AI dashboard */
.mockup-b .work-frame { transform: perspective(1000px) rotateY(8deg) rotateX(2deg); }
.mockup-b .work-frame-body { background: #0d0d10; padding: 14px; gap: 7px; }
.mockup-b .mock-row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 9px;
}
.mockup-b .mock-label { color: rgba(255,255,255,0.5); }
.mockup-b .mock-val { color: var(--ai-soft); font-weight: 700; }
.mockup-b .mock-bar {
  height: 4px; background: rgba(129,140,248,0.15); border-radius: 100px; overflow: hidden;
}
.mockup-b .mock-bar i {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--ai), var(--ai-soft));
  border-radius: 100px;
}

/* Variant C — beauty */
.mockup-c .work-frame { transform: perspective(1000px) rotateY(-4deg) rotateX(3deg); }
.mockup-c .work-frame-body {
  background: linear-gradient(160deg, #fbe9e7, #f8d4cd);
  align-items: center;
  text-align: center;
}
.mockup-c .mock-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d77d6a, #b85543);
  margin-bottom: 6px;
}
.mockup-c .mock-title {
  font-family: var(--serif); font-style: italic; font-size: 18px;
  color: #6e2b1e;
}
.mockup-c .mock-sub {
  font-family: var(--mono); font-size: 8px;
  letter-spacing: 0.2em; color: rgba(110,43,30,0.6);
}

/* Variant D — minimal mono */
.mockup-d .work-frame { transform: perspective(1000px) rotateY(6deg) rotateX(2deg); }
.mockup-d .work-frame-body {
  background: #faf8f3;
  padding: 22px;
}
.mockup-d .mock-monogram {
  font-family: var(--serif); font-size: 38px; font-weight: 400;
  color: #1a1a18; line-height: 1;
}
.mockup-d .mock-line { height: 1px; background: #1a1a18; width: 28px; margin: 6px 0; }
.mockup-d .mock-label {
  font-family: var(--mono); font-size: 8px;
  letter-spacing: 0.25em; color: rgba(26,26,24,0.6);
}

.work-card-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.work-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.work-card-meta .tag-ai { color: var(--ai-soft); }
.work-card-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  margin: 2px 0 6px;
}
.work-card.compact .work-card-title { font-size: 20px; }
.work-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-muted);
}
.work-metrics {
  display: flex;
  gap: 24px;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.work-metric-val {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.work-metric-val em {
  font-style: normal;
  color: var(--ai-soft);
}
.work-metric-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 6px;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: clamp(80px, 12vw, 140px) 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg-soft) 50%, transparent 100%);
  position: relative;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 920px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

.testimonial-featured {
  grid-column: 1 / -1;
  padding: clamp(32px, 5vw, 56px);
  background: linear-gradient(135deg, var(--ai-glow), transparent);
  border: 1px solid var(--ai-line);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
}
.testimonial-featured::before {
  content: '"';
  position: absolute;
  top: -40px;
  right: 30px;
  font-family: var(--serif);
  font-size: 280px;
  line-height: 1;
  color: var(--ai);
  opacity: 0.08;
  font-style: italic;
}
.testimonial-featured-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.testimonial-featured-quote em {
  color: var(--ai-soft);
  font-style: italic;
}
.testimonial-featured-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 28px 24px;
  transition: transform 0.4s, border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--ai-line);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3), 0 0 30px var(--ai-glow);
}

.t-stars {
  display: flex;
  gap: 2px;
  color: var(--accent);
}
.t-stars svg { fill: currentColor; }

.t-quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  flex: 1;
}
.t-quote::before {
  content: '"';
  font-family: var(--serif);
  color: var(--ai-soft);
  margin-right: 2px;
}
.t-quote::after {
  content: '"';
  font-family: var(--serif);
  color: var(--ai-soft);
  margin-left: 2px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  flex-shrink: 0;
}
.t-avatar.a1 { background: linear-gradient(135deg, #818cf8, #6366f1); }
.t-avatar.a2 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.t-avatar.a3 { background: linear-gradient(135deg, #ec4899, #be185d); }
.t-avatar.a4 { background: linear-gradient(135deg, #10b981, #047857); }
.t-avatar.large { width: 54px; height: 54px; font-size: 20px; }

.t-author-info { min-width: 0; }
.t-author-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.t-author-role {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 2px;
}
.t-author-role strong {
  color: var(--ai-soft);
  font-weight: 500;
}

/* ============ APPROACH (merged philosophy + who) ============ */
.approach-tag-label { color: var(--ai-soft); }

/* ============ REAL IMAGES (work cards + hero + approach) ============ */
.work-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s;
  filter: saturate(0.95);
}
.work-card:hover .work-img {
  transform: scale(1.05);
  filter: saturate(1.05);
}

/* Hero image — clean side card on desktop, full backdrop overlay on mobile */
.hero-inner { position: relative; z-index: 3; }

.hero-bg-img {
  display: block;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: var(--pad);
  top: 50%;
  transform: translateY(-50%);
  width: 26vw;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.55), 0 0 0 1px var(--line);
  z-index: 2;
  opacity: 0;
  animation: heroSideIn 1.2s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-bg-img::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,0.45) 100%);
}
@keyframes heroSideIn {
  from { opacity: 0; transform: translateY(-50%) translateX(24px) scale(0.96); }
  to   { opacity: 1; transform: translateY(-50%) translateX(0)    scale(1); }
}

.hero-overlay { display: none; }

/* Mobile / tablet — image becomes full-bleed backdrop with text overlay */
@media (max-width: 1024px) {
  .hero { padding: 140px 0 96px; }
  .hero-bg-img {
    position: absolute;
    inset: 0;
    width: auto; max-width: none;
    aspect-ratio: auto;
    right: 0; top: 0;
    transform: none;
    border-radius: 0;
    box-shadow: none;
    z-index: 0;
    animation: heroBgFade 1.4s 0.2s ease both;
  }
  .hero-bg-img img {
    object-position: center 28%;
    opacity: 0.42;
    filter: contrast(1.05) saturate(0.9);
  }
  .hero-bg-img::after { display: none; }
  .hero-overlay {
    display: block;
    position: absolute; inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg,
      rgba(10,10,10,0.45) 0%,
      rgba(10,10,10,0.7)  55%,
      rgba(10,10,10,0.95) 88%,
      var(--bg) 100%);
  }
  @keyframes heroBgFade {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
}

/* Approach image — wide banner variant for philosophy section */
.approach-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.approach-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.1) contrast(1.05);
}
.approach-image-banner {
  max-width: 720px;
  margin: 48px auto 56px;
  aspect-ratio: 16 / 9;
  position: relative;
}
.approach-image-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.45) 100%);
}
@media (max-width: 720px) {
  .approach-image-banner {
    margin: 36px auto 40px;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
  }
}

/* AI Audit side visual — square card matching column rhythm */
.audit-side-visual {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-top: 8px;
  border: 1px solid var(--ai-line);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 40px var(--ai-glow);
  position: relative;
}
.audit-side-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 30% 30%, transparent 0%, rgba(10,10,10,0.4) 100%);
}
.audit-side-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Picture element must not break absolute-positioned children */
.work-visual picture,
.approach-image picture,
.hero-bg-img picture { display: contents; }

/* Hero text legibility over the new backdrop image */
.hero h1,
.hero-sub,
.hero-pillars,
.hero-actions,
.hero-eyebrow,
.hero-proof {
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.hero-pillar { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }

/* Services subtle bg image */
.services-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  mix-blend-mode: screen;
}
.services { position: relative; }
.services > * { position: relative; z-index: 1; }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 60px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}

.footer-brand {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 14px;
  color: var(--ink-muted);
  max-width: 300px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ai-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid var(--ai-line);
  background: var(--ai-glow);
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }

.footer-support {
  margin-top: 24px;
  margin-bottom: 32px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(232, 179, 57, 0.03);
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.5;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--ink-dim);
  font-family: var(--mono);
  letter-spacing: 0.05em;
}

.socials {
  display: flex;
  gap: 12px;
}
.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  transition: all 0.2s;
}
.socials a:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s, transform 0.9s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============ COMPREHENSIVE MOBILE OPTIMISATION ============ */

/* --- Pricing grid: full width on small phones --- */
@media (max-width: 480px) {
  .pricing-grid { max-width: 100%; }
  .pricing-card { padding: 1.5rem 1.25rem; }
  .pricing-card--featured { transform: none; } /* no vertical offset on small screens */
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .pricing-tiers { padding: 1rem 1.25rem; font-size: 0.82rem; }
}

/* --- Auth modal: full-screen sheet on phones --- */
@media (max-width: 540px) {
  .qa-overlay { padding: 0; align-items: flex-end; }
  .auth-modal {
    border-radius: 20px 20px 0 0 !important;
    max-height: 92vh;
    overflow-y: auto;
    padding: 24px 20px 32px !important;
  }
  .auth-tabs { margin-bottom: 1.25rem; }
}

/* --- Growth assessment modal: full-screen sheet on phones --- */
@media (max-width: 540px) {
  #qaOverlay { padding: 0; align-items: flex-end; }
  #qaOverlay .qa-modal {
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
    padding: 24px 20px 32px;
  }
}

/* --- Chat auth strip: compact on small phones --- */
@media (max-width: 380px) {
  .chat-auth-strip { font-size: 11px; padding: 7px 12px; }
  .chat-auth-signout { font-size: 10px; padding: 4px 8px; }
}

/* --- Chat panel: ensure input visible above keyboard on iOS --- */
@media (max-width: 480px) {
  .chat-panel {
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
}

/* --- Hero heading: scale down on very small screens --- */
@media (max-width: 400px) {
  .hero h1 { font-size: clamp(2rem, 10vw, 3.5rem); }
  .hero-sub { font-size: 0.9rem; }
}

/* --- Contact form: single column on phones --- */
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr !important; }
}

/* --- Section headings: reduce size on small screens --- */
@media (max-width: 480px) {
  .section-title { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .ai-cta-headline { font-size: clamp(1.4rem, 5.5vw, 2rem); }
}

/* --- How-it-works steps: single column on phones --- */
@media (max-width: 480px) {
  .how-grid { grid-template-columns: 1fr !important; }
}

/* --- Footer top: stack on very small screens --- */
@media (max-width: 400px) {
  .footer-top { grid-template-columns: 1fr !important; }
  .footer-col + .footer-col { margin-top: 24px; }
}

/* --- Assessment strip: stack buttons on phones --- */
@media (max-width: 480px) {
  .assessment-inner { flex-direction: column; gap: 1.5rem; }
  .assessment-cta-wrap { width: 100%; }
  .btn-assessment { width: 100%; justify-content: center; }
}

/* --- Nav mobile: tighter spacing --- */
@media (max-width: 360px) {
  .nav-inner { padding: 0 16px; }
  .nav-mobile-signup-btn,
  .nav-mobile-signin-btn { font-size: 0.82rem; padding: 10px 10px; }
}


/* =================================================================
   =================================================================
   v2 — REDESIGN  (scoped under html.v2 — index.html only)
   "Quiet Intelligence" — Anthropic × Linear × Vietnamese craft
   Chunk A: tokens · reset · base typography · primitives
   =================================================================
   ================================================================= */

/* -----------------------------------------------------------------
   A.1  Tokens — palette, type scale, easings, layout
   ----------------------------------------------------------------- */
html.v2 {
  /* === Palette (Option A — "Quiet Intelligence") === */
  --v2-paper:        #F5F2EC;
  --v2-paper-2:      #EDE9E0;   /* slightly deeper paper */
  --v2-paper-3:      #E3DFD2;   /* card / divider tone */
  --v2-ink:          #0A0A0B;
  --v2-ink-2:        #1A1A1D;
  --v2-ink-3:        #6B6B70;
  --v2-ink-4:        #B8B5AE;
  --v2-line:         rgba(10, 10, 11, 0.08);
  --v2-line-2:       rgba(10, 10, 11, 0.16);
  --v2-line-faint:   rgba(10, 10, 11, 0.04);

  /* Dark inversions (AI Audit + Closing CTA only) */
  --v2-night:        #0A0A0B;
  --v2-night-2:      #131318;
  --v2-on-night:     #F5F2EC;
  --v2-on-night-2:   #B8B5AE;
  --v2-on-night-3:   #6B6B70;
  --v2-line-night:   rgba(245, 242, 236, 0.10);
  --v2-line-night-2: rgba(245, 242, 236, 0.20);

  /* Accents — used sparingly */
  --v2-accent:       #FF5B2E;                   /* terracotta */
  --v2-accent-2:     #E64C20;                   /* hover */
  --v2-accent-soft:  rgba(255, 91, 46, 0.10);
  --v2-accent-line:  rgba(255, 91, 46, 0.32);

  /* AI-only secondary accent */
  --v2-ai:           #3DD9D6;                   /* electric cyan */
  --v2-ai-soft:      rgba(61, 217, 214, 0.12);
  --v2-ai-line:      rgba(61, 217, 214, 0.32);

  /* === Motion === */
  --v2-ease-out:     cubic-bezier(0.22, 1, 0.36, 1);   /* ease-out-quart */
  --v2-ease-expo:    cubic-bezier(0.16, 1, 0.3, 1);
  --v2-ease-io:      cubic-bezier(0.76, 0, 0.24, 1);
  --v2-dur-fast:     200ms;
  --v2-dur:          400ms;
  --v2-dur-slow:     800ms;

  /* === Layout === */
  --v2-max:          1320px;
  --v2-max-narrow:   880px;
  --v2-max-read:     720px;
  --v2-pad:          clamp(20px, 4vw, 56px);
  --v2-nav-h:        72px;
  --v2-sec-y:        clamp(80px, 12vw, 180px);  /* section vertical pad */

  /* === Type scale (fluid) === */
  --v2-fs-mega:      clamp(64px, 11vw, 168px);
  --v2-fs-display:   clamp(56px, 9vw, 132px);
  --v2-fs-h1:        clamp(44px, 7.2vw, 104px);
  --v2-fs-h2:        clamp(36px, 5.4vw, 76px);
  --v2-fs-h3:        clamp(24px, 3.2vw, 40px);
  --v2-fs-h4:        clamp(18px, 1.6vw, 22px);
  --v2-fs-lead:      clamp(18px, 1.4vw, 21px);
  --v2-fs-body:      16px;
  --v2-fs-sm:        14px;
  --v2-fs-xs:        12px;
  --v2-fs-tag:       11px;
}

/* -----------------------------------------------------------------
   A.2  Reset / base
   ----------------------------------------------------------------- */
html.v2 {
  scroll-padding-top: calc(var(--v2-nav-h) + 12px);
  scrollbar-width: thin;
  scrollbar-color: rgba(10, 10, 11, 0.25) transparent;
}

html.v2 body {
  background: var(--v2-paper);
  color: var(--v2-ink);
  font-family: var(--sans);
  font-size: var(--v2-fs-body);
  line-height: 1.55;
  font-weight: 400;
  font-feature-settings: "kern", "liga", "ss01", "cv11";
  font-variant-numeric: lining-nums proportional-nums;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Replace dark grain overlay with a subtle warm-paper grain */
html.v2 body::before {
  opacity: 0.035;
  mix-blend-mode: multiply;
}

/* Selection */
html.v2 ::selection {
  background: var(--v2-accent);
  color: var(--v2-paper);
}
html.v2 ::-moz-selection {
  background: var(--v2-accent);
  color: var(--v2-paper);
}

/* Scrollbar (WebKit) */
html.v2::-webkit-scrollbar       { width: 8px; height: 8px; }
html.v2::-webkit-scrollbar-track { background: transparent; }
html.v2::-webkit-scrollbar-thumb {
  background: rgba(10, 10, 11, 0.22);
  border-radius: 4px;
  transition: background 200ms;
}
html.v2::-webkit-scrollbar-thumb:hover { background: var(--v2-accent); }

/* Focus — accessible, on-brand */
html.v2 :focus-visible {
  outline: 2px solid var(--v2-accent);
  outline-offset: 4px;
  border-radius: 2px;
}
html.v2 :focus:not(:focus-visible) { outline: none; }

/* Images / media */
html.v2 img,
html.v2 svg,
html.v2 picture { max-width: 100%; }

/* -----------------------------------------------------------------
   A.3  Typography baseline
   ----------------------------------------------------------------- */
html.v2 h1,
html.v2 h2,
html.v2 h3,
html.v2 h4,
html.v2 h5 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--v2-ink);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "kern", "liga", "ss01";
  font-optical-sizing: auto;
}

html.v2 h1 {
  font-size: var(--v2-fs-h1);
  font-variation-settings: "opsz" 144;
  line-height: 1.0;
}
html.v2 h2 {
  font-size: var(--v2-fs-h2);
  font-variation-settings: "opsz" 96;
  line-height: 1.04;
}
html.v2 h3 {
  font-size: var(--v2-fs-h3);
  font-variation-settings: "opsz" 48;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
html.v2 h4 {
  font-size: var(--v2-fs-h4);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

/* Italic emphasis inside display headings — distinct Fraunces italic */
html.v2 h1 em,
html.v2 h2 em,
html.v2 h3 em,
html.v2 .section-title em,
html.v2 .ai-em {
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--v2-ink);
}

/* Body text */
html.v2 p {
  font-family: var(--sans);
  font-size: var(--v2-fs-body);
  line-height: 1.6;
  color: var(--v2-ink-2);
  letter-spacing: -0.005em;
}

html.v2 .lead,
html.v2 .hero-sub,
html.v2 .pricing-sub,
html.v2 .ai-audit-sub,
html.v2 .ai-cta-body,
html.v2 .contact-body {
  font-size: var(--v2-fs-lead);
  line-height: 1.55;
  color: var(--v2-ink-2);
}

html.v2 a { color: inherit; text-decoration: none; }
html.v2 strong { font-weight: 600; color: var(--v2-ink); }
html.v2 em { font-style: italic; }

/* Tabular numerals for data */
html.v2 .stat-num,
html.v2 .work-metric-val,
html.v2 .pricing-card-price,
html.v2 .pricing-card-per,
html.v2 .pricing-card-save,
html.v2 .how-step-num {
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: -0.02em;
}

/* -----------------------------------------------------------------
   A.4  Primitives — container, section, hairlines, tags
   ----------------------------------------------------------------- */
html.v2 .container {
  max-width: var(--v2-max);
  margin: 0 auto;
  padding: 0 var(--v2-pad);
  position: relative;
  z-index: 2;
}

html.v2 section {
  padding: var(--v2-sec-y) 0;
  position: relative;
  background: var(--v2-paper);
  border: none;
}

/* Hairline divider between consecutive sections */
html.v2 section + section::before {
  content: '';
  position: absolute;
  inset: 0 var(--v2-pad) auto var(--v2-pad);
  height: 1px;
  background: var(--v2-line);
  z-index: 1;
}

/* Editorial section tag — mono rule + caps */
html.v2 .section-tag,
html.v2 .assessment-tag,
html.v2 .ai-tag-label,
html.v2 .ai-cta-tag,
html.v2 .bucket-tag,
html.v2 .pricing-card-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: var(--v2-fs-tag);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin-bottom: clamp(24px, 3.2vw, 40px);
  line-height: 1;
}
html.v2 .section-tag::before,
html.v2 .assessment-tag::before,
html.v2 .ai-tag-label::before,
html.v2 .ai-cta-tag::before,
html.v2 .bucket-tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  flex: 0 0 auto;
  opacity: 0.6;
}

/* Section head — common spacing */
html.v2 .section-head { margin-bottom: clamp(48px, 6vw, 80px); }
html.v2 .section-title {
  font-size: var(--v2-fs-h2);
  color: var(--v2-ink);
  max-width: 18ch;
}

/* Reveal initial state (kept compatible with chunk D motion layer) */
html.v2 .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--v2-ease-out), transform 800ms var(--v2-ease-out);
  will-change: opacity, transform;
}
html.v2 .reveal.is-in,
html.v2 .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------------------------------------------
   A.5  Reduced motion
   ----------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html.v2 *,
  html.v2 *::before,
  html.v2 *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  html.v2 .reveal { opacity: 1; transform: none; }
}

/* Safety net: never let reveal hide content past 1.6s after load */
html.v2 .reveal { animation: v2RevealSafety 0s linear 1600ms forwards; }
@keyframes v2RevealSafety { to { opacity: 1; transform: translateY(0); } }

/* =================================================================
   Chunk B — NAV
   Transparent over hero · hairline + blur after scroll
   ================================================================= */
html.v2 .nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background var(--v2-dur) var(--v2-ease-out),
              border-color var(--v2-dur) var(--v2-ease-out),
              padding var(--v2-dur) var(--v2-ease-out),
              backdrop-filter var(--v2-dur) var(--v2-ease-out);
}

/* Scrolled state — class toggled by JS in Chunk D */
html.v2 .nav.is-scrolled {
  background: rgba(245, 242, 236, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: var(--v2-line);
  padding: 12px 0;
}

html.v2 .nav-inner {
  max-width: var(--v2-max);
  margin: 0 auto;
  padding: 0 var(--v2-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

/* === Logo === */
html.v2 .logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--v2-ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-variation-settings: "opsz" 36;
}

/* Logo mark — angular rotating glyph (CSS-only) */
html.v2 .logo-mark {
  width: 22px;
  height: 22px;
  border-radius: 0;
  background: none;
  position: relative;
  display: inline-block;
  flex: 0 0 22px;
}
html.v2 .logo-mark::after { display: none; }
html.v2 .logo-mark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 L21 7 L21 17 L12 22 L3 17 L3 7 Z' fill='none' stroke='%230A0A0B' stroke-width='1.6' stroke-linejoin='round'/%3E%3Cpath d='M12 7 L17 9.5 L17 14.5 L12 17 L7 14.5 L7 9.5 Z' fill='%23FF5B2E'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation: v2LogoSpin 12s linear infinite;
  transform-origin: 50% 50%;
}

/* === Nav links === */
html.v2 .nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
html.v2 .nav-links a {
  position: relative;
  color: var(--v2-ink-3);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 6px 0;
  transition: color var(--v2-dur-fast) var(--v2-ease-out);
}
html.v2 .nav-links a:hover { color: var(--v2-ink); }

/* Active-section indicator — thin animated underline (driven by JS in chunk D) */
html.v2 .nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--v2-ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--v2-ease-out);
}
html.v2 .nav-links a.is-active { color: var(--v2-ink); }
html.v2 .nav-links a.is-active::after { transform: scaleX(1); }

/* AI Audit nav item gets the cyan dot */
html.v2 .nav-ai-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--v2-ai);
  margin-right: 8px;
  box-shadow: 0 0 0 0 var(--v2-ai);
  animation: v2BadgePulse 2.6s var(--v2-ease-io) infinite;
  vertical-align: middle;
}

/* === Sign in / Sign up buttons === */
html.v2 .nav-signup {
  background: transparent;
  border: none;
  color: var(--v2-ink-3);
  padding: 6px 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: color var(--v2-dur-fast);
}
html.v2 .nav-signup:hover { color: var(--v2-ink); }

html.v2 .nav-signin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--v2-line-2);
  color: var(--v2-ink);
  padding: 8px 14px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: all var(--v2-dur-fast) var(--v2-ease-out);
}
html.v2 .nav-signin:hover {
  border-color: var(--v2-ink);
  transform: translateY(-1px);
  background: var(--v2-paper);
}
html.v2 .nav-signin svg { opacity: 0.55; }
html.v2 .nav-signin.is-authed {
  background: var(--v2-paper-2);
  border-color: var(--v2-ink);
}

/* === Primary nav CTA === */
html.v2 .nav-cta {
  position: relative;
  background: var(--v2-ink);
  color: var(--v2-paper);
  padding: 11px 22px;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.005em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--v2-ink);
  transition: background var(--v2-dur-fast) var(--v2-ease-out),
              color var(--v2-dur-fast) var(--v2-ease-out),
              transform var(--v2-dur-fast) var(--v2-ease-out),
              border-color var(--v2-dur-fast) var(--v2-ease-out);
  overflow: visible;
  will-change: transform;
}
html.v2 .nav-cta:hover {
  background: var(--v2-accent);
  border-color: var(--v2-accent);
  color: var(--v2-paper);
}
html.v2 .nav-cta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--v2-ai);
  box-shadow: 0 0 6px var(--v2-ai);
  animation: v2BadgePulse 2.4s var(--v2-ease-io) infinite;
}

/* === Burger === */
html.v2 .nav-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--v2-line-2);
  color: var(--v2-ink);
  width: 40px;
  height: 40px;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--v2-dur-fast);
}
html.v2 .nav-burger:hover { border-color: var(--v2-ink); }

/* === Mobile nav (≤1023px) === */
@media (max-width: 1099px) {
  html.v2 .nav-burger { display: inline-flex; }
  html.v2 .nav-cta { display: none; }
  html.v2 .nav-signup,
  html.v2 .nav-signin { display: none; }

  html.v2 .nav-links {
    position: fixed;
    inset: 0;
    background: var(--v2-paper);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 96px var(--v2-pad) 40px;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 320ms var(--v2-ease-out);
    z-index: 99;
  }
  html.v2 .nav-links.open {
    opacity: 1;
    pointer-events: auto;
  }
  html.v2 .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--v2-line);
    opacity: 0;
  }
  html.v2 .nav-links.open li {
    animation: v2NavLinkIn 480ms var(--v2-ease-out) forwards;
  }
  html.v2 .nav-links.open li:nth-child(1) { animation-delay: 60ms; }
  html.v2 .nav-links.open li:nth-child(2) { animation-delay: 120ms; }
  html.v2 .nav-links.open li:nth-child(3) { animation-delay: 180ms; }
  html.v2 .nav-links.open li:nth-child(4) { animation-delay: 240ms; }
  html.v2 .nav-links.open li:nth-child(5) { animation-delay: 300ms; }
  html.v2 .nav-links.open li:nth-child(6) { animation-delay: 360ms; }
  html.v2 .nav-links.open li:nth-child(7) { animation-delay: 420ms; }
  html.v2 .nav-links.open li:nth-child(8) { animation-delay: 480ms; }
  html.v2 .nav-links.open li:nth-child(9) { animation-delay: 540ms; }

  html.v2 .nav-links li a {
    display: block;
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--v2-ink);
    padding: 18px 0;
  }
  html.v2 .nav-links li a::after { display: none; }

  html.v2 .nav-mobile-auth {
    display: flex !important;
    gap: 12px;
    border-bottom: none !important;
    padding-top: 24px;
  }
  html.v2 .nav-mobile-cta {
    display: block !important;
    border-bottom: none !important;
    margin-top: 16px;
  }
}

/* =================================================================
   Chunk B — HERO
   Editorial type-led layout · light paper · layered backgrounds
   ================================================================= */
html.v2 .hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--v2-nav-h) + 56px) 0 96px;
  background: var(--v2-paper);
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}

/* Disable legacy hero bg layers — we rebuild from scratch */
html.v2 .hero-bg,
html.v2 .hero-grid,
html.v2 .hero-overlay { display: none; }

/* Layer 1 — drifting radial behind text (terracotta + cyan, low opacity) */
html.v2 .hero::before {
  content: '';
  position: absolute;
  inset: -20% -20%;
  background:
    radial-gradient(ellipse 50% 40% at 30% 40%, rgba(255, 91, 46, 0.10), transparent 60%),
    radial-gradient(ellipse 40% 35% at 70% 70%, rgba(61, 217, 214, 0.07), transparent 60%);
  animation: v2HeroDrift 40s linear infinite;
  z-index: -1;
  pointer-events: none;
}

/* Layer 2 — fine grain via SVG feTurbulence */
html.v2 .hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: multiply;
  z-index: -1;
  pointer-events: none;
}

/* Moodboard image hidden — pure type-led editorial hero */
html.v2 .hero-bg-img { display: none !important; }

/* Hero inner — left-aligned editorial column, sized to balance the image */
html.v2 .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  width: 100%;
}
@media (min-width: 1100px) {
  html.v2 .hero-inner {
    /* Type-led hero: anchor text to container-left, generous right whitespace */
    max-width: 920px;
    margin-left: max(var(--v2-pad), calc(50vw - 660px));
    margin-right: auto;
  }
}

/* AI badge — pill with breathing dot + ring */
html.v2 .hero-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 14px;
  border-radius: 100px;
  background: rgba(245, 242, 236, 0.6);
  border: 1px solid var(--v2-line-2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--mono);
  font-size: var(--v2-fs-tag);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--v2-ink-2);
  margin-bottom: 28px;
}
html.v2 .hero-ai-badge-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--v2-ai);
  box-shadow: 0 0 0 0 var(--v2-ai);
  flex: 0 0 auto;
}
html.v2 .hero-ai-badge-dot::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid var(--v2-ai);
  animation: v2BadgeRing 2.4s var(--v2-ease-out) infinite;
}

/* Eyebrow — editorial caption */
html.v2 .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: var(--v2-fs-tag);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
  margin-bottom: 32px;
  background: transparent;
  border: none;
  padding: 0;
}
html.v2 .hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--v2-ink-3);
  flex: 0 0 auto;
  opacity: 0.6;
}

/* H1 — massive Fraunces · per-line clip-path reveal */
html.v2 .hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 6.6vw, 104px);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-optical-sizing: auto;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--v2-ink);
  margin: 0 0 32px;
  max-width: 15ch;
  text-wrap: balance;
}

html.v2 .hero h1 .line {
  display: block;
  clip-path: inset(0 0 100% 0);
  animation: v2LineReveal 1100ms var(--v2-ease-out) forwards;
  will-change: clip-path;
}
html.v2 .hero h1 .line:nth-child(1) { animation-delay: 80ms;  }
html.v2 .hero h1 .line:nth-child(2) { animation-delay: 220ms; }
html.v2 .hero h1 .line:nth-child(3) { animation-delay: 360ms; }

/* The italic emphasis on "global sellers." — drawn underline */
html.v2 .hero h1 em {
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--v2-ink);
  position: relative;
  display: inline-block;
  padding-bottom: 0.04em;
}
html.v2 .hero h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.02em;
  height: 2px;
  background: var(--v2-accent);
  transform: scaleX(0);
  transform-origin: left center;
  animation: v2UnderlineDraw 1200ms var(--v2-ease-out) 1500ms forwards;
}

/* Hero sub — generous lead */
html.v2 .hero-sub {
  font-family: var(--sans);
  font-size: var(--v2-fs-lead);
  line-height: 1.5;
  color: var(--v2-ink-2);
  max-width: 56ch;
  margin: 0 0 40px;
  letter-spacing: -0.005em;
}
html.v2 .hero-sub strong {
  color: var(--v2-ink);
  font-weight: 600;
}

/* Hero actions — primary + secondary */
html.v2 .hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

html.v2 .btn-ai,
html.v2 .btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--v2-ink);
  color: var(--v2-paper);
  border: 1px solid var(--v2-ink);
  padding: 14px 26px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.005em;
  text-decoration: none;
  cursor: pointer;
  overflow: visible;
  will-change: transform;
  transition: background var(--v2-dur-fast) var(--v2-ease-out),
              border-color var(--v2-dur-fast) var(--v2-ease-out),
              color var(--v2-dur-fast) var(--v2-ease-out),
              transform var(--v2-dur-fast) var(--v2-ease-out);
}
html.v2 .btn-ai::before { display: none; }
html.v2 .btn-ai:hover,
html.v2 .btn-primary:hover {
  background: var(--v2-accent);
  border-color: var(--v2-accent);
  color: var(--v2-paper);
  transform: translateY(-1px);
}

html.v2 .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--v2-ink);
  border: 1px solid var(--v2-line-2);
  padding: 14px 24px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.005em;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--v2-dur-fast) var(--v2-ease-out);
}
html.v2 .btn-secondary:hover {
  border-color: var(--v2-ink);
  background: var(--v2-paper-2);
  transform: translateY(-1px);
}

html.v2 .btn-ai .ai-icon {
  color: var(--v2-ai);
  font-size: 14px;
}
html.v2 .arrow {
  display: inline-block;
  transition: transform var(--v2-dur-fast) var(--v2-ease-out);
}
html.v2 .btn-ai:hover .arrow,
html.v2 .btn-primary:hover .arrow,
html.v2 .btn-secondary:hover .arrow { transform: translateX(3px); }

/* Hero proof bar */
html.v2 .hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}
html.v2 .hero-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: var(--v2-fs-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--v2-ink-3);
}
html.v2 .hero-proof-item svg { color: var(--v2-accent); }
html.v2 .hero-proof-sep {
  width: 1px;
  height: 12px;
  background: var(--v2-line-2);
}

/* Hero support note */
html.v2 .hero-support {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
  color: var(--v2-ink-3);
  max-width: 56ch;
  margin: 0;
}

/* Hero meta — editorial caption bottom right */
html.v2 .hero-meta {
  position: absolute;
  bottom: 32px;
  right: var(--v2-pad);
  z-index: 3;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
  text-align: right;
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
html.v2 .hero-meta span { color: var(--v2-ink-2); }

@media (max-width: 720px) {
  html.v2 .hero-meta {
    position: static;
    text-align: left;
    margin-top: 40px;
    padding: 0 var(--v2-pad);
  }
}

/* Scroll indicator — repurpose .hero-bg as bottom-center vertical line + dot */
html.v2 .hero-bg {
  display: block !important;
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, transparent 0%, var(--v2-line-2) 30%, var(--v2-line-2) 100%);
  z-index: 3;
  pointer-events: none;
  transition: opacity 400ms var(--v2-ease-out);
}
html.v2 .hero-bg::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 4px;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--v2-ink);
  animation: v2ScrollDot 2.4s var(--v2-ease-io) infinite;
  will-change: transform, opacity;
}
html.v2 body.has-scrolled .hero-bg { opacity: 0; }
@media (max-width: 720px) {
  html.v2 .hero-bg { display: none !important; }
}

/* Tighter mobile rhythm */
@media (max-width: 720px) {
  html.v2 .hero { padding: calc(var(--v2-nav-h) + 32px) 0 64px; min-height: auto; }
  html.v2 .hero h1 { max-width: none; }
  html.v2 .hero-actions { width: 100%; }
  html.v2 .hero-actions .btn-ai,
  html.v2 .hero-actions .btn-secondary { width: 100%; justify-content: center; }
}

/* =================================================================
   Chunk C — MARQUEE
   ================================================================= */
html.v2 .marquee {
  background: var(--v2-paper);
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  padding: 28px 0;
  overflow: hidden;
}
html.v2 .marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: v2Marquee 48s linear infinite;
  will-change: transform;
}
html.v2 .marquee-track:hover { animation-play-state: paused; }

html.v2 .marquee-track > span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  font-variation-settings: "opsz" 96, "SOFT" 100;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--v2-ink-2);
  padding-right: 0;
}

html.v2 .marquee-track .dot {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin: 0 24px;
  background: none;
  border-radius: 0;
  vertical-align: middle;
  position: relative;
}
html.v2 .marquee-track .dot::before {
  content: '✦';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: normal;
  font-size: 0.7em;
  color: var(--v2-ink-3);
  animation: v2Sparkle 24s linear infinite;
}

html.v2 .marquee-track .ai-tag {
  color: var(--v2-accent);
  font-style: italic;
  position: relative;
  padding: 0 6px;
}

/* =================================================================
   Chunk C — ASSESSMENT STRIP
   ================================================================= */
html.v2 .assessment-strip {
  padding: clamp(72px, 9vw, 128px) 0;
  background: var(--v2-paper);
}
html.v2 .assessment-strip::before { display: none; }

html.v2 .assessment-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
  padding: 0;
  background: none;
  border: none;
}
@media (max-width: 880px) {
  html.v2 .assessment-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }
}

html.v2 .assessment-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--v2-ink);
  font-weight: 400;
  font-variation-settings: "opsz" 72;
  margin: 0 0 20px;
  max-width: 20ch;
}
html.v2 .assessment-headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--v2-ink);
}
html.v2 .assessment-body {
  font-family: var(--sans);
  font-size: var(--v2-fs-lead);
  line-height: 1.55;
  color: var(--v2-ink-2);
  max-width: 56ch;
  margin: 0;
}

html.v2 .assessment-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
html.v2 .btn-assessment {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--v2-ink);
  color: var(--v2-paper);
  border: 1px solid var(--v2-ink);
  padding: 14px 26px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--v2-dur-fast) var(--v2-ease-out);
}
html.v2 .btn-assessment:hover {
  background: var(--v2-accent);
  border-color: var(--v2-accent);
  transform: translateY(-1px);
}
html.v2 .btn-assessment .arrow {
  transition: transform var(--v2-dur-fast) var(--v2-ease-out);
}
html.v2 .btn-assessment:hover .arrow { transform: translateX(3px); }

html.v2 .assessment-meta {
  font-family: var(--mono);
  font-size: var(--v2-fs-xs);
  color: var(--v2-ink-3);
  letter-spacing: 0.05em;
}

/* =================================================================
   Chunk C — HOW IT WORKS
   Vertical stacked · oversized numbers bleed off left edge
   ================================================================= */
html.v2 .how {
  background: var(--v2-paper);
}
html.v2 .how-head {
  margin-bottom: clamp(48px, 7vw, 96px);
  background: none;
  padding: 0;
}
html.v2 .how-head h2 {
  font-size: var(--v2-fs-h2);
  color: var(--v2-ink);
  max-width: 22ch;
}
html.v2 .how-head h2 em {
  font-style: italic;
  font-weight: 500;
}

html.v2 .how-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: none;
  grid-template-columns: none !important;
}

html.v2 .how-step {
  position: relative;
  background: none !important;
  border: none !important;
  border-top: 1px solid var(--v2-line) !important;
  padding: clamp(48px, 6vw, 80px) 0 clamp(48px, 6vw, 80px) clamp(0px, 8vw, 120px);
  min-height: clamp(220px, 26vw, 320px);
  display: grid;
  grid-template-columns: 1fr minmax(0, 1.4fr);
  gap: clamp(24px, 4vw, 80px);
  align-items: center;
  overflow: hidden;
  transition: background var(--v2-dur) var(--v2-ease-out);
}
html.v2 .how-step:last-child {
  border-bottom: 1px solid var(--v2-line) !important;
}
html.v2 .how-step:hover {
  background: var(--v2-paper-2) !important;
  transform: none !important;
}

/* Hide the original "STEP 01" tag; the oversized number is rendered via
   the .how-grid counter below as a ::before on each step. */
html.v2 .how-grid { counter-reset: v2step; }
html.v2 .how-step-num {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
/* Oversized number watermark — bleeds off left edge */
html.v2 .how-step { counter-increment: v2step; }
html.v2 .how-step::after {
  content: counter(v2step, decimal-leading-zero);
  position: absolute;
  top: 50%;
  left: clamp(-12px, -0.6vw, -4px);
  transform: translateY(-50%);
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  font-size: clamp(140px, 22vw, 340px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--v2-ink);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
  font-variant-numeric: lining-nums tabular-nums;
}

html.v2 .how-step-icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--v2-line-2);
  background: var(--v2-paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--v2-ink);
  margin-bottom: 0;
}
html.v2 .how-step-icon svg { stroke-width: 1.5; }

html.v2 .how-step > h3 {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 400;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 0 -68px;
  color: var(--v2-ink);
  grid-column: 1;
  align-self: center;
  padding-left: 68px;
}
html.v2 .how-step h3 em {
  font-style: italic;
  font-weight: 500;
}

html.v2 .how-step > p {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-size: var(--v2-fs-lead);
  line-height: 1.55;
  color: var(--v2-ink-2);
  margin: 0;
  max-width: 48ch;
  grid-column: 2;
}

@media (max-width: 760px) {
  html.v2 .how-step {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding-left: 0;
  }
  html.v2 .how-step > h3 { margin-left: 0; padding-left: 0; grid-column: 1; }
  html.v2 .how-step > p  { grid-column: 1; }
  html.v2 .how-step-num { font-size: clamp(120px, 36vw, 200px); opacity: 0.05; left: -8px; }
}

/* =================================================================
   Chunk C — AI AUDIT (DARK INTERLUDE)
   ================================================================= */
html.v2 .ai-audit {
  background: var(--v2-night);
  color: var(--v2-on-night);
  border: none;
  position: relative;
  overflow: hidden;
}
html.v2 .ai-audit::before {
  content: '';
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 40% 30% at 80% 30%, rgba(61, 217, 214, 0.08), transparent 60%),
    radial-gradient(ellipse 30% 25% at 15% 70%, rgba(255, 91, 46, 0.05), transparent 60%);
  z-index: 0;
  pointer-events: none;
}
html.v2 .ai-audit::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 242, 236, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 242, 236, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: -1px -1px;
  z-index: 0;
  pointer-events: none;
}

html.v2 .ai-audit .container { position: relative; z-index: 2; }
html.v2 .ai-audit .section-tag,
html.v2 .ai-audit .ai-tag-label {
  color: var(--v2-on-night-2);
  font-size: 12px;
}
html.v2 .ai-audit .section-tag::before,
html.v2 .ai-audit .ai-tag-label::before {
  background: var(--v2-on-night-2);
  width: 48px;
  opacity: 0.6;
}
html.v2 .ai-audit .section-title {
  color: var(--v2-on-night);
  max-width: 22ch;
}
html.v2 .ai-audit .section-title em,
html.v2 .ai-audit .ai-em {
  color: var(--v2-ai);
  font-style: italic;
  font-weight: 500;
}
html.v2 .ai-audit-sub {
  color: var(--v2-on-night-2);
  max-width: 64ch;
  margin-bottom: clamp(48px, 6vw, 72px);
}

html.v2 .audit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  margin-top: 0;
}
@media (max-width: 960px) {
  html.v2 .audit-layout { grid-template-columns: 1fr; }
}

/* Terminal — keep dark, refresh borders */
html.v2 .audit-terminal {
  background: var(--v2-night-2);
  border: 1px solid var(--v2-line-night);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px -32px rgba(0, 0, 0, 0.6);
}
html.v2 .terminal-header {
  background: rgba(245, 242, 236, 0.025);
  border-bottom: 1px solid var(--v2-line-night);
  padding: 12px 16px;
}
html.v2 .terminal-title {
  color: var(--v2-on-night-3);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
}
html.v2 .terminal-body {
  background: transparent;
  color: var(--v2-on-night);
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.65;
  padding: 20px;
  min-height: 360px;
  max-height: 480px;
}
html.v2 .t-muted { color: var(--v2-on-night-3); }
html.v2 .t-dim { color: rgba(245, 242, 236, 0.2); }
html.v2 .terminal-cta {
  border-top: 1px solid var(--v2-line-night);
  padding: 16px;
}
html.v2 .btn-ai-audit {
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--v2-on-night);
  color: var(--v2-night);
  border: 1px solid var(--v2-on-night);
  padding: 14px 22px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--v2-dur-fast) var(--v2-ease-out);
}
html.v2 .btn-ai-audit:hover {
  background: var(--v2-ai);
  border-color: var(--v2-ai);
  color: var(--v2-night);
}
html.v2 .btn-ai-audit .ai-icon { color: var(--v2-ai); }
html.v2 .btn-ai-audit:hover .ai-icon { color: var(--v2-night); }

/* Audit cards on right */
html.v2 .audit-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
}
html.v2 .audit-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-top: 1px solid var(--v2-line-night);
  background: transparent;
  border-radius: 0;
  transition: all var(--v2-dur-fast) var(--v2-ease-out);
}
html.v2 .audit-card:first-child { border-top: none; }
html.v2 .audit-card:hover {
  background: rgba(245, 242, 236, 0.02);
  padding-left: 12px;
}
html.v2 .audit-card-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(61, 217, 214, 0.1);
  border: 1px solid var(--v2-ai-line);
  color: var(--v2-ai);
  display: flex;
  align-items: center;
  justify-content: center;
}
html.v2 .audit-card-info h4 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--v2-on-night);
  margin: 0 0 4px;
  letter-spacing: -0.005em;
}
html.v2 .audit-card-info p {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--v2-on-night-2);
  margin: 0;
}
html.v2 .audit-card-badge {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 100px;
  border: 1px solid;
  height: fit-content;
}
html.v2 .badge-ai {
  color: var(--v2-ai);
  border-color: var(--v2-ai-line);
  background: rgba(61, 217, 214, 0.05);
}
html.v2 .badge-free {
  color: var(--v2-accent);
  border-color: var(--v2-accent-line);
  background: rgba(255, 91, 46, 0.05);
}

/* Audit offer block */
html.v2 .audit-offer {
  margin-top: 24px;
  padding: 28px;
  border: 1px solid var(--v2-line-night);
  border-radius: 12px;
  background: rgba(245, 242, 236, 0.02);
  display: grid;
  gap: 16px;
}
html.v2 .audit-offer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
html.v2 .audit-offer-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--v2-on-night);
  margin: 0;
  letter-spacing: -0.02em;
}
html.v2 .audit-offer-badge {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--v2-ai);
  padding: 6px 10px;
  border: 1px solid var(--v2-ai-line);
  border-radius: 100px;
  background: rgba(61, 217, 214, 0.05);
}
html.v2 .audit-offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
html.v2 .audit-offer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--v2-on-night-2);
}
html.v2 .audit-offer-list li svg { color: var(--v2-ai); }
html.v2 .audit-offer-cta { width: 100%; justify-content: center; }
html.v2 .audit-offer .btn-ai {
  background: var(--v2-ai);
  color: var(--v2-night);
  border-color: var(--v2-ai);
}
html.v2 .audit-offer .btn-ai:hover {
  background: var(--v2-on-night);
  color: var(--v2-night);
  border-color: var(--v2-on-night);
}
html.v2 .audit-offer .btn-ai .ai-icon { color: var(--v2-night); }

/* =================================================================
   Chunk C — PRICING
   Ultra-minimal cards · hairline borders · big Fraunces prices
   ================================================================= */
html.v2 .pricing { background: var(--v2-paper); }
html.v2 .pricing .section-head { text-align: center; }
html.v2 .pricing .section-head .section-tag { justify-content: center; }
html.v2 .pricing .section-title {
  margin: 0 auto;
  max-width: 22ch;
}
html.v2 .pricing-sub {
  margin: 16px auto 0;
  max-width: 64ch;
  text-align: center;
  color: var(--v2-ink-2);
}

html.v2 .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(48px, 6vw, 80px);
  border: 1px solid var(--v2-line);
  border-radius: 4px;
  background: var(--v2-paper);
}
@media (max-width: 920px) {
  html.v2 .pricing-grid { grid-template-columns: 1fr; }
}

html.v2 .pricing-card {
  position: relative;
  padding: clamp(32px, 4vw, 48px);
  background: transparent;
  border: none;
  border-right: 1px solid var(--v2-line);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background var(--v2-dur) var(--v2-ease-out);
}
html.v2 .pricing-card:last-child { border-right: none; }
@media (max-width: 920px) {
  html.v2 .pricing-card { border-right: none; border-bottom: 1px solid var(--v2-line); }
  html.v2 .pricing-card:last-child { border-bottom: none; }
}
html.v2 .pricing-card:hover { background: var(--v2-paper-2); }

html.v2 .pricing-card--featured {
  background: var(--v2-paper);
  box-shadow: inset 0 0 0 2px var(--v2-accent);
  z-index: 2;
}
html.v2 .pricing-card--featured:hover { background: var(--v2-paper-2); }

html.v2 .pricing-card-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--v2-accent);
  color: var(--v2-paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 0;
  font-weight: 500;
}

html.v2 .pricing-card-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}
html.v2 .pricing-card-label::before { display: none; }

html.v2 .pricing-card-volume {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--v2-ink-2);
}

html.v2 .pricing-card-price {
  font-family: var(--serif);
  font-size: clamp(64px, 7vw, 96px);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--v2-ink);
  margin: 8px 0 4px;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
html.v2 .pricing-card-price sup {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 500;
  vertical-align: top;
  margin-top: 8px;
  color: var(--v2-ink-3);
}

html.v2 .pricing-card-per {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--v2-ink-3);
  margin: 0;
}
html.v2 .pricing-card-save {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  background: rgba(255, 91, 46, 0.08);
  color: var(--v2-accent);
  border-radius: 100px;
  width: fit-content;
}

html.v2 .pricing-card-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-grow: 1;
}
html.v2 .pricing-card-list li {
  position: relative;
  padding: 12px 0 12px 22px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--v2-ink-2);
  border-bottom: 1px solid var(--v2-line);
}
html.v2 .pricing-card-list li:last-child { border-bottom: none; }
html.v2 .pricing-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 1px;
  background: var(--v2-ink);
}

html.v2 .pricing-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
}
html.v2 .btn-featured-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--v2-ink);
  color: var(--v2-paper);
  border: 1px solid var(--v2-ink);
  padding: 14px 24px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  width: 100%;
  transition: all var(--v2-dur-fast) var(--v2-ease-out);
}
html.v2 .btn-featured-cta:hover {
  background: var(--v2-accent);
  border-color: var(--v2-accent);
  transform: translateY(-1px);
}

html.v2 .pricing-tiers {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--v2-paper-2);
  border: 1px solid var(--v2-line);
  border-radius: 4px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 720px) {
  html.v2 .pricing-tiers { grid-template-columns: 1fr; gap: 12px; }
}
html.v2 .pricing-tiers-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
}
html.v2 .pricing-tiers-body {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--v2-ink-2);
  line-height: 1.55;
}
html.v2 .pricing-tiers-body a {
  color: var(--v2-ink);
  border-bottom: 1px solid var(--v2-accent);
}

/* =================================================================
   Chunk C — SERVICES
   ================================================================= */
html.v2 .services {
  background: var(--v2-paper);
  position: relative;
  overflow: hidden;
}
html.v2 .services-bg-img { display: none; }

html.v2 .services-buckets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--v2-line);
}
@media (max-width: 920px) {
  html.v2 .services-buckets { grid-template-columns: 1fr; }
}

html.v2 .bucket {
  position: relative;
  padding: clamp(36px, 4vw, 56px) clamp(20px, 3vw, 36px);
  background: transparent;
  border-right: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  transition: background var(--v2-dur) var(--v2-ease-out);
}
html.v2 .bucket:last-child { border-right: none; }
@media (max-width: 920px) {
  html.v2 .bucket { border-right: none; }
}
html.v2 .bucket:hover { background: var(--v2-paper-2); }

html.v2 .bucket-tag {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 0 8px;
}
html.v2 .bucket-tag::before { display: none; }

/* Oversized letter watermark — A · B · C derived from bucket-tag */
html.v2 .bucket::after {
  content: '';
  position: absolute;
  font-family: var(--serif);
  font-size: clamp(160px, 18vw, 280px);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  color: var(--v2-ink);
  opacity: 0.04;
  top: -0.18em;
  right: -0.06em;
  line-height: 0.9;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}
html.v2 .bucket:nth-child(1)::after { content: 'A'; }
html.v2 .bucket:nth-child(2)::after { content: 'B'; }
html.v2 .bucket:nth-child(3)::after { content: 'C'; }

html.v2 .bucket > h3 {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 400;
  font-variation-settings: "opsz" 72;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--v2-ink);
  margin: 0;
  max-width: 18ch;
}
html.v2 .bucket > h3 em {
  font-style: italic;
  font-weight: 500;
}

html.v2 .bucket-lead {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--v2-ink-2);
  margin: 0;
}

html.v2 .bucket-list {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
html.v2 .bucket-list li {
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--v2-ink-2);
  border-top: 1px solid var(--v2-line);
  display: flex;
  align-items: center;
  gap: 10px;
}
html.v2 .bucket-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--v2-ink-4);
  flex: 0 0 auto;
}

html.v2 .services-support {
  margin: clamp(40px, 5vw, 64px) auto 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--v2-ink-3);
}
html.v2 .services-cta-wrap {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

/* =================================================================
   Chunk C — WORK / CASE STUDIES
   ================================================================= */
html.v2 .work { background: var(--v2-paper); }

html.v2 .work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(24px, 3vw, 56px);
  margin-top: clamp(48px, 6vw, 80px);
}
@media (max-width: 760px) {
  html.v2 .work-grid { grid-template-columns: 1fr; }
}

html.v2 .work-card {
  position: relative;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
html.v2 .work-card.featured { grid-column: span 8; }
html.v2 .work-card.compact  { grid-column: span 4; }
html.v2 .work-card.half     { grid-column: span 6; }
@media (max-width: 760px) {
  html.v2 .work-card.featured,
  html.v2 .work-card.compact,
  html.v2 .work-card.half { grid-column: span 1; }
}

html.v2 .work-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 4px;
  background: var(--v2-paper-2);
  border: 1px solid var(--v2-line);
  cursor: pointer;
}
html.v2 .work-card.featured .work-visual { aspect-ratio: 16 / 8; }

html.v2 .work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--v2-ease-out), filter 400ms var(--v2-ease-out);
  filter: saturate(0.94);
}
html.v2 .work-visual:hover .work-img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

/* Metadata slides up on hover */
html.v2 .work-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 11, 0.45));
  opacity: 0;
  transition: opacity var(--v2-dur) var(--v2-ease-out);
  pointer-events: none;
}
html.v2 .work-visual:hover::after { opacity: 1; }

html.v2 .work-card-body {
  padding: 0;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
html.v2 .work-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
}
html.v2 .work-card-meta > span:first-child { color: var(--v2-ink-2); }
html.v2 .work-card-meta .tag-ai {
  color: var(--v2-ai);
  letter-spacing: 0.05em;
}

html.v2 .work-card-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 400;
  font-variation-settings: "opsz" 72;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--v2-ink);
  margin: 0;
  max-width: 28ch;
}
html.v2 .work-card.featured .work-card-title {
  font-size: clamp(28px, 3.4vw, 48px);
  max-width: 24ch;
}

html.v2 .work-card-desc {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--v2-ink-2);
  margin: 0;
  max-width: 60ch;
}

html.v2 .work-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 48px);
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--v2-line);
}
html.v2 .work-metric-val {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 400;
  font-variation-settings: "opsz" 96;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--v2-ink);
}
html.v2 .work-metric-val em {
  font-style: italic;
  font-weight: 500;
  color: var(--v2-ink);
}
html.v2 .work-metric-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
  margin-top: 6px;
}

/* =================================================================
   Chunk C — PHILOSOPHY
   Pure editorial · centered · oversized opening quote
   ================================================================= */
html.v2 .philosophy {
  background: var(--v2-paper);
  position: relative;
}
html.v2 .philosophy-inner {
  max-width: var(--v2-max-read);
  margin: 0 auto;
  text-align: center;
  position: relative;
}
html.v2 .philosophy .section-tag {
  justify-content: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

html.v2 .approach-image-banner {
  max-width: 100%;
  margin: 0 0 clamp(48px, 6vw, 80px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  filter: saturate(0.92);
}
html.v2 .approach-image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

html.v2 .philosophy-quote {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 400;
  font-variation-settings: "opsz" 96, "SOFT" 100;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--v2-ink);
  margin: 0 auto 40px;
  max-width: 22ch;
  padding-top: 0.2em;
}
html.v2 .philosophy-quote::before {
  content: '“';
  position: absolute;
  top: -0.6em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-style: normal;
  font-size: clamp(160px, 22vw, 280px);
  font-weight: 300;
  color: var(--v2-ink);
  opacity: 0.06;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}
html.v2 .philosophy-quote em {
  color: var(--v2-accent);
  font-style: italic;
  font-weight: 500;
}

html.v2 .philosophy-body {
  font-family: var(--sans);
  font-size: var(--v2-fs-lead);
  line-height: 1.7;
  color: var(--v2-ink-2);
  max-width: 56ch;
  margin: 0 auto 48px;
}

html.v2 .mission-block {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid var(--v2-line);
  border-radius: 4px;
  background: var(--v2-paper-2);
  text-align: left;
  max-width: 720px;
}
html.v2 .mission-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
}
html.v2 .mission-text {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--v2-ink-2);
}

/* =================================================================
   Chunk C — STATS
   Big Fraunces · hairline dividers
   ================================================================= */
html.v2 .stats {
  background: var(--v2-paper);
  padding-top: clamp(60px, 8vw, 120px);
  padding-bottom: clamp(60px, 8vw, 120px);
}
html.v2 .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
}
@media (max-width: 760px) { html.v2 .stats-grid { grid-template-columns: repeat(2, 1fr); } }

html.v2 .stat {
  padding: clamp(28px, 4vw, 56px) clamp(16px, 2vw, 28px);
  border-right: 1px solid var(--v2-line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
html.v2 .stat:last-child { border-right: none; }
@media (max-width: 760px) {
  html.v2 .stat:nth-child(2) { border-right: none; }
  html.v2 .stat:nth-child(-n+2) { border-bottom: 1px solid var(--v2-line); }
}

html.v2 .stat-num {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 132px);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--v2-ink);
  font-variant-numeric: lining-nums tabular-nums;
}
html.v2 .stat-num em {
  font-style: italic;
  font-weight: 400;
  color: var(--v2-ink);
}
html.v2 .stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
}

/* =================================================================
   Chunk C — TESTIMONIALS
   ================================================================= */
html.v2 .testimonials { background: var(--v2-paper); }
html.v2 .testimonials-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
  margin-top: clamp(48px, 6vw, 80px);
}
@media (max-width: 1100px) {
  html.v2 .testimonials-grid { grid-template-columns: 1fr 1fr; }
  html.v2 .testimonial-featured { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  html.v2 .testimonials-grid {
    grid-template-columns: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    grid-auto-flow: column;
    grid-auto-columns: 88%;
    scroll-padding: var(--v2-pad);
    padding: 0 var(--v2-pad);
    margin-left: calc(-1 * var(--v2-pad));
    margin-right: calc(-1 * var(--v2-pad));
  }
  html.v2 .testimonial-card,
  html.v2 .testimonial-featured { scroll-snap-align: start; }
}

html.v2 .testimonial-featured,
html.v2 .testimonial-card {
  position: relative;
  padding: clamp(24px, 3vw, 36px);
  background: transparent;
  border: 1px solid var(--v2-line);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--v2-dur) var(--v2-ease-out), background var(--v2-dur) var(--v2-ease-out);
}
html.v2 .testimonial-featured:hover,
html.v2 .testimonial-card:hover {
  border-color: var(--v2-ink);
  background: var(--v2-paper-2);
}

html.v2 .testimonial-featured-quote,
html.v2 .t-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 20px);
  font-variation-settings: "opsz" 48, "SOFT" 100;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--v2-ink-2);
  margin: 0;
  flex-grow: 1;
}
html.v2 .testimonial-featured-quote {
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--v2-ink);
  line-height: 1.3;
}
html.v2 .testimonial-featured-quote em,
html.v2 .t-quote em {
  font-style: italic;
  color: var(--v2-accent);
  font-weight: 500;
}

html.v2 .t-stars { display: none; }

html.v2 .testimonial-featured-author,
html.v2 .t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--v2-line);
}
html.v2 .t-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--v2-paper-3);
  color: var(--v2-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  border: 1px solid var(--v2-line-2);
}
html.v2 .t-avatar.large { width: 44px; height: 44px; font-size: 18px; }
html.v2 .t-author-name {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--v2-ink);
}
html.v2 .t-author-role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
}
html.v2 .t-author-role strong {
  color: var(--v2-ink-2);
  font-weight: 500;
}

/* =================================================================
   Chunk C — WHO WE HELP (fit / not fit)
   ================================================================= */
html.v2 .who { background: var(--v2-paper); }
html.v2 .who-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  margin-top: clamp(48px, 6vw, 72px);
}
@media (max-width: 760px) {
  html.v2 .who-split { grid-template-columns: 1fr; }
}

html.v2 .who-col {
  padding: clamp(28px, 3vw, 40px);
  background: var(--v2-paper);
  border: 1px solid var(--v2-line);
  border-radius: 4px;
}
html.v2 .who-col-not { background: var(--v2-paper-2); }

html.v2 .who-col-head { margin-bottom: 20px; }
html.v2 .who-col-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 100px;
  border: 1px solid;
}
html.v2 .who-col-badge-fit {
  color: var(--v2-accent);
  border-color: var(--v2-accent-line);
  background: rgba(255, 91, 46, 0.04);
}
html.v2 .who-col-badge-not {
  color: var(--v2-ink-3);
  border-color: var(--v2-line-2);
  background: transparent;
}

html.v2 .who-col-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
html.v2 .who-col-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--v2-line);
}
html.v2 .who-col-list li:first-child { border-top: none; padding-top: 0; }
html.v2 .who-col-list li p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--v2-ink-2);
  margin: 0;
}
html.v2 .who-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 1px;
}
html.v2 .who-check-fit {
  background: rgba(255, 91, 46, 0.1);
  color: var(--v2-accent);
}
html.v2 .who-check-not {
  background: rgba(10, 10, 11, 0.04);
  color: var(--v2-ink-3);
}

html.v2 .who-cta-wrap {
  margin-top: clamp(40px, 5vw, 64px);
  display: flex;
  justify-content: center;
}

/* =================================================================
   Chunk C — PARTNERS / CATEGORIES MARQUEE
   ================================================================= */
html.v2 .partners {
  background: var(--v2-paper);
  padding-top: clamp(60px, 8vw, 120px);
  padding-bottom: clamp(60px, 8vw, 120px);
}
html.v2 .partners-heading {
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 400;
  font-variation-settings: "opsz" 72;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--v2-ink-2);
  max-width: 56ch;
  margin: 16px auto clamp(40px, 5vw, 64px);
}

html.v2 .partners-track-wrap {
  position: relative;
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
}
html.v2 .partners-track-wrap::before,
html.v2 .partners-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
html.v2 .partners-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--v2-paper), transparent);
}
html.v2 .partners-track-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--v2-paper), transparent);
}

html.v2 .partners-track {
  display: flex;
  gap: 48px;
  animation: v2Marquee 60s linear infinite;
  white-space: nowrap;
  width: max-content;
}

html.v2 .partner {
  flex: 0 0 auto;
  background: transparent;
  border: none;
  padding: 8px 0;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
  position: relative;
  filter: none;
  transition: color var(--v2-dur-fast);
}
html.v2 .partner:hover { color: var(--v2-ink); }

/* =================================================================
   Chunk C — AI CTA BANNER (DARK INTERLUDE)
   ================================================================= */
html.v2 .ai-cta-banner {
  background: var(--v2-night);
  color: var(--v2-on-night);
  position: relative;
  overflow: hidden;
  text-align: center;
}
html.v2 .ai-cta-banner::before {
  content: '';
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 40% 30% at 50% 30%, rgba(255, 91, 46, 0.10), transparent 60%),
    radial-gradient(ellipse 30% 25% at 70% 70%, rgba(61, 217, 214, 0.06), transparent 60%);
  animation: v2HeroDrift 50s linear infinite reverse;
  z-index: 0;
  pointer-events: none;
}
html.v2 .ai-cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
  opacity: 0.045;
  mix-blend-mode: screen;
  z-index: 0;
  pointer-events: none;
}

html.v2 .ai-cta-banner .container { position: relative; z-index: 2; }
html.v2 .ai-cta-inner {
  max-width: var(--v2-max-narrow);
  margin: 0 auto;
}
html.v2 .ai-cta-tag {
  color: var(--v2-on-night-2);
  justify-content: center;
  margin-bottom: 32px;
}
html.v2 .ai-cta-tag::before { background: var(--v2-on-night-2); }

html.v2 .ai-cta-headline {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--v2-on-night);
  margin: 0 0 24px;
}
html.v2 .ai-cta-headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--v2-accent);
}
html.v2 .ai-cta-body {
  font-family: var(--sans);
  font-size: var(--v2-fs-lead);
  line-height: 1.55;
  color: var(--v2-on-night-2);
  max-width: 56ch;
  margin: 0 auto 40px;
}
html.v2 .ai-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
html.v2 .ai-cta-banner .btn-ai {
  background: var(--v2-on-night);
  color: var(--v2-night);
  border-color: var(--v2-on-night);
}
html.v2 .ai-cta-banner .btn-ai:hover {
  background: var(--v2-accent);
  border-color: var(--v2-accent);
  color: var(--v2-paper);
}
html.v2 .ai-cta-banner .btn-secondary {
  background: transparent;
  color: var(--v2-on-night);
  border-color: var(--v2-line-night-2);
}
html.v2 .ai-cta-banner .btn-secondary:hover {
  border-color: var(--v2-on-night);
  background: rgba(245, 242, 236, 0.04);
}
html.v2 .ai-cta-footnote {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--v2-on-night-3);
}
html.v2 .ai-cta-footnote span { color: var(--v2-on-night-2); }

/* =================================================================
   Chunk C — CONTACT
   ================================================================= */
html.v2 .contact { background: var(--v2-paper); }
html.v2 .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 880px) {
  html.v2 .contact-grid { grid-template-columns: 1fr; }
}

html.v2 .contact-headline {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--v2-ink);
  margin: 0 0 20px;
  max-width: 14ch;
}
html.v2 .contact-headline em {
  font-style: italic;
  font-weight: 500;
}
html.v2 .contact-body {
  font-family: var(--sans);
  font-size: var(--v2-fs-lead);
  line-height: 1.55;
  color: var(--v2-ink-2);
  max-width: 56ch;
  margin: 0 0 40px;
}

html.v2 .contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--v2-line);
}
html.v2 .contact-info-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--v2-line);
  align-items: baseline;
}
html.v2 .contact-info-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
}
html.v2 .contact-info-value {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--v2-ink);
}
html.v2 .contact-info-value a {
  color: var(--v2-ink);
  border-bottom: 1px solid var(--v2-line-2);
  transition: border-color var(--v2-dur-fast);
}
html.v2 .contact-info-value a:hover { border-color: var(--v2-accent); }

/* Form */
html.v2 .contact-form {
  padding: clamp(28px, 3vw, 40px);
  background: var(--v2-paper-2);
  border: 1px solid var(--v2-line);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
html.v2 .form-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 400;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--v2-ink);
}
html.v2 .form-subtitle {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
  color: var(--v2-ink-3);
  margin-bottom: 8px;
}
html.v2 .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 520px) {
  html.v2 .form-row { grid-template-columns: 1fr; }
}
html.v2 .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
html.v2 .form-field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
}
html.v2 .form-field input,
html.v2 .form-field select,
html.v2 .form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--v2-line-2);
  padding: 8px 0 10px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--v2-ink);
  border-radius: 0;
  outline: none;
  transition: border-color var(--v2-dur-fast) var(--v2-ease-out);
  width: 100%;
}
html.v2 .form-field textarea { min-height: 96px; resize: vertical; }
html.v2 .form-field input:focus,
html.v2 .form-field select:focus,
html.v2 .form-field textarea:focus {
  border-color: var(--v2-accent);
  outline: none;
}
html.v2 .form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1 L6 6 L11 1' fill='none' stroke='%236B6B70' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 12px;
  padding-right: 24px;
}
html.v2 .form-submit {
  margin-top: 8px;
  background: var(--v2-ink);
  color: var(--v2-paper);
  border: 1px solid var(--v2-ink);
  padding: 14px 24px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--v2-dur-fast) var(--v2-ease-out);
}
html.v2 .form-submit:hover {
  background: var(--v2-accent);
  border-color: var(--v2-accent);
  transform: translateY(-1px);
}
html.v2 .form-status {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--v2-ink-3);
}

/* =================================================================
   Chunk C — FOOTER
   ================================================================= */
html.v2 .footer {
  background: var(--v2-paper);
  border-top: 1px solid var(--v2-line);
  padding: clamp(56px, 7vw, 96px) 0 0;
  position: relative;
  overflow: hidden;
}
html.v2 .footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  margin-bottom: clamp(48px, 6vw, 80px);
}
@media (max-width: 880px) {
  html.v2 .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  html.v2 .footer-top { grid-template-columns: 1fr; }
}

html.v2 .footer-brand {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--v2-ink);
  margin-bottom: 12px;
}
html.v2 .footer-tagline {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--v2-ink-3);
  max-width: 36ch;
  margin: 0 0 16px;
}
html.v2 .footer-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--v2-ink-2);
  padding: 6px 12px;
  border: 1px solid var(--v2-line-2);
  border-radius: 100px;
}
html.v2 .footer-ai-badge > span {
  background: var(--v2-ai) !important;
  box-shadow: 0 0 6px var(--v2-ai) !important;
}

html.v2 .footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
  margin: 0 0 16px;
}
html.v2 .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
html.v2 .footer-col li a {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--v2-ink-2);
  text-decoration: none;
  transition: color var(--v2-dur-fast);
}
html.v2 .footer-col li a:hover { color: var(--v2-accent); }

html.v2 .footer-support {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--v2-ink-3);
  text-align: center;
  margin: 0 auto 24px;
  max-width: 64ch;
}

html.v2 .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--v2-line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--v2-ink-3);
}
@media (max-width: 540px) {
  html.v2 .footer-bottom { flex-direction: column; gap: 16px; }
}
html.v2 .footer-bottom .socials {
  display: flex;
  gap: 14px;
  align-items: center;
}
html.v2 .footer-bottom .socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--v2-line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--v2-ink-2);
  transition: all var(--v2-dur-fast) var(--v2-ease-out);
}
html.v2 .footer-bottom .socials a:hover {
  border-color: var(--v2-ink);
  color: var(--v2-ink);
  transform: translateY(-1px);
}

/* Massive Fraunces wordmark across bottom */
html.v2 .footer::after {
  content: 'Omegason';
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  font-size: clamp(120px, 22vw, 320px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--v2-ink);
  opacity: 0.06;
  text-align: center;
  margin: clamp(24px, 4vw, 64px) 0 -0.18em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
}

/* =================================================================
   Chunk C — CHATBOT (full rebuild)
   Paper surface · ink text · cyan AI accent · terracotta user
   Re-skinned 2026-05-22 to match the cream/editorial homepage theme.
   ================================================================= */

/* Panel container */
html.v2 .chat-panel {
  background: var(--v2-paper);
  border: 1px solid var(--v2-line-2);
  border-radius: 14px;
  box-shadow: 0 32px 80px -20px rgba(10, 10, 11, 0.22),
              0 0 0 1px var(--v2-line-faint);
  overflow: hidden;
}

/* Header */
html.v2 .chat-header {
  background: var(--v2-paper-2);
  border-bottom: 1px solid var(--v2-line);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
html.v2 .chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--v2-ai);
  color: var(--v2-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  position: relative;
  box-shadow: 0 0 0 3px rgba(61, 217, 214, 0.18);
}
html.v2 .chat-avatar::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4ADE80;
  border: 2px solid var(--v2-paper);
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.6);
}

html.v2 .chat-header-info { flex: 1; min-width: 0; }
html.v2 .chat-header-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--v2-ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
html.v2 .chat-header-role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
  margin-top: 2px;
}
html.v2 .chat-header-role::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  margin-right: 6px;
  vertical-align: 1px;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.55);
}

html.v2 .chat-header-close {
  width: 32px;
  height: 32px;
  border-radius: 100px;
  background: transparent;
  border: 1px solid var(--v2-line);
  color: var(--v2-ink-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--v2-dur-fast) var(--v2-ease-out);
}
html.v2 .chat-header-close:hover {
  border-color: var(--v2-ink);
  color: var(--v2-ink);
  background: var(--v2-paper-3);
}

/* Auth strip */
html.v2 .chat-auth-strip {
  padding: 10px 16px;
  background: var(--v2-accent-soft);
  border-bottom: 1px solid var(--v2-line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--v2-ink-3);
  display: flex;
  align-items: center;
  gap: 12px;
}
html.v2 .chat-auth-strip.is-authed { background: var(--v2-ai-soft); }
html.v2 .chat-auth-text a {
  color: var(--v2-accent);
  border-bottom: 1px solid var(--v2-accent-line);
  text-decoration: none;
  transition: color var(--v2-dur-fast);
}
html.v2 .chat-auth-text a:hover { color: var(--v2-ink); border-bottom-color: var(--v2-ink); }
html.v2 .chat-auth-text strong { color: var(--v2-ink); font-weight: 500; }
html.v2 .chat-auth-signout {
  background: transparent;
  border: 1px solid var(--v2-line-2);
  color: var(--v2-ink-3);
  padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all var(--v2-dur-fast);
}
html.v2 .chat-auth-signout:hover {
  border-color: var(--v2-ink);
  color: var(--v2-ink);
}

/* Messages area */
html.v2 .chat-messages {
  background: transparent;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
}

/* Each message wrapper */
html.v2 .chat-msg {
  display: flex;
  gap: 10px;
  max-width: 88%;
  align-items: flex-end;
}
html.v2 .chat-msg.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

/* Bot avatar (the small "O" next to assistant messages) */
html.v2 .chat-msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
}
html.v2 .chat-msg.assistant .chat-msg-avatar {
  background: var(--v2-ai-soft);
  color: var(--v2-ai);
  border: 1px solid var(--v2-ai-line);
}
html.v2 .chat-msg.user .chat-msg-avatar { display: none; }

/* Bubbles */
html.v2 .chat-msg-bubble {
  padding: 12px 14px;
  border-radius: 14px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
html.v2 .chat-msg.assistant .chat-msg-bubble {
  background: var(--v2-paper-2);
  border: 1px solid var(--v2-line);
  color: var(--v2-ink);
  border-bottom-left-radius: 4px;
}
html.v2 .chat-msg.user .chat-msg-bubble {
  background: var(--v2-accent);
  border: 1px solid var(--v2-accent);
  color: var(--v2-paper);
  border-bottom-right-radius: 4px;
}

/* Strong / code inside bubbles */
html.v2 .chat-msg.assistant .chat-msg-bubble strong { color: var(--v2-ink); font-weight: 600; }
html.v2 .chat-msg.user .chat-msg-bubble strong { color: var(--v2-paper); font-weight: 600; }
html.v2 .chat-msg-bubble code {
  font-family: var(--mono);
  font-size: 12px;
  background: var(--v2-ai-soft);
  color: var(--v2-ink);
  padding: 1px 6px;
  border-radius: 3px;
  border: 1px solid var(--v2-ai-line);
}
html.v2 .chat-msg.user .chat-msg-bubble code {
  background: rgba(245, 242, 236, 0.22);
  color: var(--v2-paper);
  border-color: rgba(245, 242, 236, 0.28);
}
html.v2 .chat-msg.assistant .chat-msg-bubble a {
  color: var(--v2-accent);
  border-bottom: 1px solid var(--v2-accent-line);
  text-decoration: none;
  transition: border-color var(--v2-dur-fast);
}
html.v2 .chat-msg.assistant .chat-msg-bubble a:hover { border-bottom-color: var(--v2-accent); }
html.v2 .chat-msg.user .chat-msg-bubble a {
  color: var(--v2-paper);
  border-bottom: 1px solid rgba(245, 242, 236, 0.5);
}
html.v2 .chat-msg-bubble ul,
html.v2 .chat-msg-bubble ol { margin: 6px 0 8px 18px; padding: 0; }
html.v2 .chat-msg-bubble li { margin-bottom: 4px; }
html.v2 .chat-msg-bubble table {
  border-collapse: collapse;
  width: 100%;
  margin: 8px 0;
  font-size: 12px;
}
html.v2 .chat-msg-bubble th,
html.v2 .chat-msg-bubble td {
  border: 1px solid var(--v2-line);
  padding: 6px 8px;
  text-align: left;
}
html.v2 .chat-msg-bubble th {
  background: var(--v2-paper-3);
  color: var(--v2-ink-2);
  font-weight: 500;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Typing indicator */
html.v2 .chat-typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 14px 16px;
  background: var(--v2-paper-2);
  border: 1px solid var(--v2-line);
  border-bottom-left-radius: 4px;
}
html.v2 .chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--v2-ink-3);
  opacity: 0.5;
  animation: v2TypingDot 1.2s infinite ease-in-out;
}
html.v2 .chat-typing span:nth-child(2) { animation-delay: 0.16s; }
html.v2 .chat-typing span:nth-child(3) { animation-delay: 0.32s; }

/* Quick reply chips */
html.v2 .chat-quick-replies {
  padding: 0 16px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
html.v2 .chat-quick {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--v2-ink);
  background: var(--v2-paper);
  border: 1px solid var(--v2-line-2);
  padding: 6px 12px;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--v2-dur-fast) var(--v2-ease-out);
}
html.v2 .chat-quick:hover {
  border-color: var(--v2-ink);
  background: var(--v2-paper-3);
  color: var(--v2-ink);
}

/* Input area */
html.v2 .chat-input-wrap {
  padding: 12px 12px 10px;
  border-top: 1px solid var(--v2-line);
  background: var(--v2-paper-2);
}
html.v2 .chat-input-row {
  background: var(--v2-paper);
  border: 1px solid var(--v2-line-2);
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  padding: 4px;
  transition: border-color var(--v2-dur-fast) var(--v2-ease-out);
}
html.v2 .chat-input-row:focus-within {
  border-color: var(--v2-ink);
  background: var(--v2-paper);
}
html.v2 .chat-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--v2-ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  padding: 8px 10px;
  outline: none;
  resize: none;
  max-height: 120px;
  min-height: 36px;
}
html.v2 .chat-input::placeholder {
  color: var(--v2-ink-4);
}
html.v2 .chat-send {
  background: var(--v2-ink);
  color: var(--v2-paper);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
  transition: all var(--v2-dur-fast) var(--v2-ease-out);
}
html.v2 .chat-send:hover {
  background: var(--v2-accent);
  transform: translateY(-1px);
}
html.v2 .chat-send:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

html.v2 .chat-footer {
  margin-top: 8px;
  padding: 0 4px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--v2-ink-3);
  text-align: center;
}
html.v2 .chat-footer span {
  color: var(--v2-ink);
  font-weight: 500;
}

/* Scrollbar inside chat-messages */
html.v2 .chat-messages::-webkit-scrollbar { width: 6px; }
html.v2 .chat-messages::-webkit-scrollbar-track { background: transparent; }
html.v2 .chat-messages::-webkit-scrollbar-thumb {
  background: var(--v2-line-2);
  border-radius: 3px;
}
html.v2 .chat-messages::-webkit-scrollbar-thumb:hover { background: var(--v2-ink-3); }

/* =================================================================
   Chunk C — CHATBOT LAUNCHER (brand refresh)
   ================================================================= */
html.v2 .chat-launcher {
  background: var(--v2-ink);
  color: var(--v2-paper);
  border: 1px solid var(--v2-ink);
  border-radius: 100px;
  padding: 12px 18px 12px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 16px 40px -16px rgba(10, 10, 11, 0.4);
  transition: transform var(--v2-dur-fast) var(--v2-ease-out),
              background var(--v2-dur-fast),
              border-color var(--v2-dur-fast);
}
html.v2 .chat-launcher:hover {
  background: var(--v2-accent);
  border-color: var(--v2-accent);
  transform: translateY(-2px);
}
html.v2 .chat-launcher-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--v2-ai);
  color: var(--v2-night);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Light modal touch-up (qa modal + auth modal stays dark — that's the deliberate accent of the design) */
html.v2 .qa-overlay {
  background: rgba(10, 10, 11, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
html.v2 .qa-modal {
  background: var(--v2-paper);
  color: var(--v2-ink);
  border: 1px solid var(--v2-line);
  border-radius: 6px;
}
html.v2 .qa-close {
  border-color: var(--v2-line-2);
  color: var(--v2-ink-3);
}
html.v2 .qa-close:hover { border-color: var(--v2-ink); color: var(--v2-ink); }
html.v2 .qa-progress-bar { background: var(--v2-line); }
html.v2 .qa-progress-fill { background: var(--v2-accent); }
html.v2 .qa-step-meta { color: var(--v2-ink-3); font-family: var(--mono); }
html.v2 .qa-question {
  color: var(--v2-ink);
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 96;
  letter-spacing: -0.02em;
}
html.v2 .qa-question em { color: var(--v2-accent) !important; font-style: italic; font-weight: 500; }
html.v2 .qa-option {
  background: var(--v2-paper);
  border-color: var(--v2-line-2);
  color: var(--v2-ink);
}
html.v2 .qa-option:hover {
  border-color: var(--v2-ink);
  background: var(--v2-paper-2);
}
html.v2 .qa-back { color: var(--v2-ink-3); }
html.v2 .qa-back:hover { color: var(--v2-ink); }
html.v2 .qa-foot { color: var(--v2-ink-3); }
html.v2 .qa-lead-sub { color: var(--v2-ink-2); }
html.v2 .qa-field label { color: var(--v2-ink-3); font-family: var(--mono); letter-spacing: 0.1em; text-transform: uppercase; font-size: 11px; }
html.v2 .qa-field input {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--v2-line-2);
  border-radius: 0;
  color: var(--v2-ink);
  padding: 8px 0;
}
html.v2 .qa-field input:focus { border-color: var(--v2-accent); outline: none; }
html.v2 .qa-result-tag { color: var(--v2-accent); }
html.v2 .qa-result-headline { color: var(--v2-ink); font-family: var(--serif); }
html.v2 .qa-result-headline em { color: var(--v2-accent) !important; }
html.v2 .qa-result-body { color: var(--v2-ink-2); }
html.v2 .qa-result-summary { border-color: var(--v2-line); background: var(--v2-paper-2); }
html.v2 .qa-summary-item-label { color: var(--v2-ink-3); }
html.v2 .qa-summary-item-value { color: var(--v2-ink); }
html.v2 .auth-modal { background: var(--v2-paper); }
html.v2 .auth-tabs { border-bottom-color: var(--v2-line); }
html.v2 .auth-tab { color: var(--v2-ink-3); }
html.v2 .auth-tab:hover { color: var(--v2-ink); }
html.v2 .auth-tab.is-active {
  color: var(--v2-ink);
  border-bottom-color: var(--v2-accent);
}
html.v2 .auth-pw-toggle { color: var(--v2-ink-3); }
html.v2 .auth-pw-toggle:hover { color: var(--v2-ink); background: var(--v2-paper-2); }
html.v2 .auth-foot { color: var(--v2-ink-3); }
html.v2 .auth-foot a { color: var(--v2-ink); border-bottom-color: var(--v2-line-2); }
html.v2 .auth-foot a:hover { color: var(--v2-accent); }
html.v2 .auth-strength { background: var(--v2-line); }
html.v2 .auth-strength-label { color: var(--v2-ink-3); }
html.v2 .auth-hint { color: var(--v2-ink-3); }

/* =================================================================
   Chunk D — MOTION LAYER (nav themes · cursor · helpers)
   ================================================================= */

/* Nav state when scrolled over a dark section */
html.v2 .nav.nav--on-dark .logo {
  color: var(--v2-on-night);
}
html.v2 .nav.nav--on-dark .nav-links a {
  color: var(--v2-on-night-2);
}
html.v2 .nav.nav--on-dark .nav-links a:hover,
html.v2 .nav.nav--on-dark .nav-links a.is-active {
  color: var(--v2-on-night);
}
html.v2 .nav.nav--on-dark .nav-links a::after {
  background: var(--v2-on-night);
}
html.v2 .nav.nav--on-dark .nav-signup {
  color: var(--v2-on-night-2);
}
html.v2 .nav.nav--on-dark .nav-signup:hover { color: var(--v2-on-night); }
html.v2 .nav.nav--on-dark .nav-signin {
  border-color: var(--v2-line-night-2);
  color: var(--v2-on-night);
}
html.v2 .nav.nav--on-dark .nav-signin:hover {
  border-color: var(--v2-on-night);
  background: rgba(245, 242, 236, 0.05);
}
html.v2 .nav.nav--on-dark .nav-cta {
  background: var(--v2-on-night);
  color: var(--v2-night);
  border-color: var(--v2-on-night);
}
html.v2 .nav.nav--on-dark .nav-cta:hover {
  background: var(--v2-accent);
  border-color: var(--v2-accent);
  color: var(--v2-paper);
}
html.v2 .nav.nav--on-dark .nav-burger {
  border-color: var(--v2-line-night-2);
  color: var(--v2-on-night);
}

/* Logo mark inverts stroke color on dark nav */
html.v2 .nav.nav--on-dark .logo-mark::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 L21 7 L21 17 L12 22 L3 17 L3 7 Z' fill='none' stroke='%23F5F2EC' stroke-width='1.6' stroke-linejoin='round'/%3E%3Cpath d='M12 7 L17 9.5 L17 14.5 L12 17 L7 14.5 L7 9.5 Z' fill='%23FF5B2E'/%3E%3C/svg%3E");
}

/* Scrolled + on-dark = darkened blur */
html.v2 .nav.is-scrolled.nav--on-dark {
  background: rgba(10, 10, 11, 0.7);
  border-bottom-color: var(--v2-line-night);
}

/* Active nav indicator already styled in Chunk B — confirm scope */
html.v2 .nav-links a.is-active::after { transform: scaleX(1); }

/* Magnetic / cursor target — extra hint for hot zones */
html.v2 [data-magnetic] {
  will-change: transform;
  transition: transform 320ms var(--v2-ease-out);
}

/* === Cursor follower (desktop · fine pointer only) === */
html.v2 .v2-cursor-dot,
html.v2 .v2-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1000;
  border-radius: 50%;
  mix-blend-mode: difference;
  will-change: transform;
  opacity: 0;
  transition: opacity 200ms var(--v2-ease-out),
              width 240ms var(--v2-ease-out),
              height 240ms var(--v2-ease-out),
              margin 240ms var(--v2-ease-out),
              background 200ms,
              border-color 200ms;
}
html.v2 .v2-cursor-dot.is-on,
html.v2 .v2-cursor-ring.is-on { opacity: 1; }

html.v2 .v2-cursor-dot {
  width: 6px;
  height: 6px;
  background: #F5F2EC;
  margin: -3px 0 0 -3px;
}
html.v2 .v2-cursor-ring {
  width: 30px;
  height: 30px;
  border: 1px solid #F5F2EC;
  margin: -15px 0 0 -15px;
  background: transparent;
}
html.v2 .v2-cursor-ring.is-hot {
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  background: rgba(245, 242, 236, 0.06);
}
html.v2 .v2-cursor-dot.is-hot {
  width: 4px; height: 4px;
  margin: -2px 0 0 -2px;
}

@media (max-width: 1099px), (pointer: coarse), (hover: none) {
  html.v2 .v2-cursor-dot,
  html.v2 .v2-cursor-ring { display: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  html.v2 .v2-cursor-dot,
  html.v2 .v2-cursor-ring { display: none !important; }
  html.v2 [data-magnetic] { transform: none !important; }
}

/* =================================================================
   Chunk E — RESPONSIVE PASS
   Surgical fixes for tablet (≤960) · mobile (≤720) · small (≤480)
   ================================================================= */

/* ---------- HERO ---------- */
@media (max-width: 1099px) {
  html.v2 .hero {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    text-align: left;
  }
  html.v2 .hero-meta {
    position: relative;
    text-align: left;
    margin-top: 32px;
    padding: 0 var(--v2-pad);
    bottom: auto;
    right: auto;
  }
  html.v2 .hero h1 { max-width: 16ch; }
}
@media (max-width: 720px) {
  html.v2 .hero-ai-badge { font-size: 10px; padding: 6px 12px 6px 10px; }
  html.v2 .hero h1 {
    font-size: clamp(40px, 11vw, 56px);
    letter-spacing: -0.03em;
  }
  html.v2 .hero-sub  { font-size: 17px; margin-bottom: 32px; }
  html.v2 .hero-eyebrow { font-size: 10px; margin-bottom: 24px; }
  html.v2 .hero-proof { gap: 12px; }
  html.v2 .hero-proof-sep { display: none; }
  html.v2 .hero-proof-item { font-size: 11px; width: 100%; }
}

/* ---------- MARQUEE ---------- */
@media (max-width: 720px) {
  html.v2 .marquee { padding: 20px 0; }
  html.v2 .marquee-track > span { font-size: 22px; }
  html.v2 .marquee-track .dot { margin: 0 16px; }
}

/* ---------- HOW IT WORKS ---------- */
@media (max-width: 760px) {
  html.v2 .how-step {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto;
    padding: 32px 0 !important;
    min-height: 0;
  }
  html.v2 .how-step-icon { grid-column: 1; }
  html.v2 .how-step > h3 {
    grid-column: 1;
    margin-left: 0;
    padding-left: 0;
    font-size: clamp(32px, 9vw, 44px);
  }
  html.v2 .how-step > p {
    grid-column: 1;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  html.v2 .how-step-num { font-size: clamp(96px, 30vw, 140px) !important; }
}

/* ---------- AI AUDIT ---------- */
@media (max-width: 960px) {
  html.v2 .audit-layout { gap: 32px; }
  html.v2 .terminal-body { min-height: 240px; max-height: 360px; }
}
@media (max-width: 480px) {
  html.v2 .terminal-body { font-size: 11.5px; padding: 14px; }
  html.v2 .audit-card { grid-template-columns: auto 1fr; }
  html.v2 .audit-card-badge { grid-column: 2; justify-self: end; margin-top: 4px; }
}

/* ---------- PRICING ---------- */
@media (max-width: 920px) {
  html.v2 .pricing-card { padding: 32px 24px; }
  html.v2 .pricing-card--featured { box-shadow: inset 0 0 0 1px var(--v2-accent); }
}
@media (max-width: 480px) {
  html.v2 .pricing-card-price { font-size: 64px; }
  html.v2 .pricing-tiers { padding: 18px 20px; font-size: 13px; }
}

/* ---------- SERVICES ---------- */
@media (max-width: 920px) {
  html.v2 .bucket {
    border-right: none;
    border-bottom: 1px solid var(--v2-line);
    padding: 32px 0;
  }
  html.v2 .bucket:last-child { border-bottom: none; }
}

/* ---------- WORK ---------- */
@media (max-width: 760px) {
  html.v2 .work-card.featured { grid-column: 1; }
  html.v2 .work-card.featured .work-card-title { font-size: clamp(24px, 6vw, 32px); }
  html.v2 .work-metrics { gap: 18px; }
  html.v2 .work-metric-val { font-size: clamp(24px, 7vw, 32px); }
}

/* ---------- PHILOSOPHY ---------- */
@media (max-width: 720px) {
  html.v2 .philosophy-quote { font-size: clamp(22px, 6.5vw, 30px); padding-top: 0; }
  html.v2 .philosophy-quote::before { font-size: clamp(140px, 36vw, 180px); top: -0.45em; }
  html.v2 .approach-image-banner { margin-bottom: 40px; }
}

/* ---------- STATS ---------- */
@media (max-width: 760px) {
  html.v2 .stat-num { font-size: clamp(44px, 13vw, 64px); }
  html.v2 .stat { padding: 24px 16px; gap: 6px; }
}

/* ---------- TESTIMONIALS ---------- */
@media (max-width: 640px) {
  html.v2 .testimonials-grid { gap: 0; }
  html.v2 .testimonials-grid > * { padding: 20px; }
  html.v2 .testimonial-featured-quote { font-size: 20px; }
  html.v2 .t-quote { font-size: 15px; }
}

/* ---------- WHO ---------- */
@media (max-width: 760px) {
  html.v2 .who-col { padding: 24px 20px; }
  html.v2 .who-col-list li p { font-size: 13.5px; }
}

/* ---------- PARTNERS ---------- */
@media (max-width: 720px) {
  html.v2 .partners-track { gap: 32px; }
  html.v2 .partner { font-size: 11.5px; letter-spacing: 0.12em; }
  html.v2 .partners-heading { font-size: clamp(18px, 4.6vw, 24px); }
}

/* ---------- AI CTA BANNER ---------- */
@media (max-width: 720px) {
  html.v2 .ai-cta-headline { font-size: clamp(32px, 8vw, 48px); }
  html.v2 .ai-cta-actions { flex-direction: column; gap: 12px; }
  html.v2 .ai-cta-actions > * { width: 100%; justify-content: center; }
}

/* ---------- CONTACT ---------- */
@media (max-width: 880px) {
  html.v2 .contact-headline { font-size: clamp(28px, 7vw, 44px); }
  html.v2 .contact-form { padding: 24px 20px; }
}
@media (max-width: 480px) {
  html.v2 .contact-info-row { grid-template-columns: 72px 1fr; gap: 12px; }
  html.v2 .form-row { grid-template-columns: 1fr; }
}

/* ---------- FOOTER ---------- */
@media (max-width: 720px) {
  html.v2 .footer { padding-top: 56px; }
  html.v2 .footer-tagline { font-size: 13px; }
  html.v2 .footer-col h4 { margin-bottom: 12px; }
  html.v2 .footer-col li a { font-size: 13px; }
  html.v2 .footer::after {
    font-size: clamp(72px, 30vw, 140px);
    margin-top: 32px;
  }
}

/* ---------- CHATBOT LAUNCHER ---------- */
@media (max-width: 480px) {
  html.v2 .chat-launcher {
    padding: 10px 12px 10px 10px;
    font-size: 12px;
    right: 16px;
    bottom: 16px;
  }
  html.v2 .chat-launcher-avatar { width: 20px; height: 20px; font-size: 11px; }
}

/* ---------- SECTION PADDING tightening on mobile ---------- */
@media (max-width: 720px) {
  html.v2 section {
    padding: clamp(64px, 14vw, 96px) 0;
  }
  html.v2 .section-head { margin-bottom: 40px; }
  html.v2 .section-title {
    font-size: clamp(28px, 8vw, 42px);
    max-width: none;
  }
}

/* ---------- HORIZONTAL OVERFLOW SAFETY ---------- */
html.v2 body { max-width: 100%; }
html.v2 .footer::after { max-width: 100vw; }

/* =================================================================
   Chunk F — REDUCED MOTION + A11Y
   ================================================================= */

/* Skip-to-content link (visible only on focus) */
html.v2 .v2-skip {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 200;
  background: var(--v2-ink);
  color: var(--v2-paper);
  padding: 10px 16px;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform 200ms var(--v2-ease-out);
}
html.v2 .v2-skip:focus,
html.v2 .v2-skip:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--v2-accent);
  outline-offset: 2px;
}

/* Polish focus rings on dark interludes (cyan instead of terracotta for contrast) */
html.v2 .ai-audit :focus-visible,
html.v2 .ai-cta-banner :focus-visible,
html.v2 .chat-panel :focus-visible,
html.v2 .nav.nav--on-dark :focus-visible {
  outline-color: var(--v2-ai);
  outline-offset: 3px;
}

/* Reduced-motion — snap final keyframe states immediately */
@media (prefers-reduced-motion: reduce) {
  html.v2 .hero h1 .line {
    clip-path: none !important;
    animation: none !important;
  }
  html.v2 .hero h1 em::after {
    transform: scaleX(1) !important;
    animation: none !important;
  }
  html.v2 .marquee-track,
  html.v2 .partners-track {
    animation: none !important;
    transform: none !important;
  }
  html.v2 .hero::before,
  html.v2 .ai-cta-banner::before,
  html.v2 .logo-mark::before,
  html.v2 .hero-ai-badge-dot::after,
  html.v2 .nav-ai-dot,
  html.v2 .nav-cta-dot,
  html.v2 .chat-typing span,
  html.v2 .marquee-track .dot::before {
    animation: none !important;
  }
  html.v2 .hero-bg,
  html.v2 .hero-bg::after { display: none !important; }
  html.v2, html.v2 body { scroll-behavior: auto !important; }
}

/* Visually hidden helper for screen-reader text */
html.v2 .v2-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hidden attribute strictly respected */
html.v2 [hidden] { display: none !important; }

/* =================================================================
   ============== NEW CONTENT — Shopify CRO sections ==============
   pain · what · entry-offer · how-new · offer-stack · cases · fit
   ================================================================= */

/* ---------- PAIN / PROBLEM ---------- */
html.v2 .pain { background: var(--v2-paper); }
html.v2 .pain-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 880px) {
  html.v2 .pain-inner { grid-template-columns: 1fr; gap: 48px; }
}
html.v2 .pain-body-text {
  font-family: var(--sans);
  font-size: var(--v2-fs-lead);
  line-height: 1.65;
  color: var(--v2-ink-2);
  margin: 0 0 18px;
  max-width: 56ch;
}
html.v2 .pain-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
html.v2 .pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--v2-ink-2);
}
html.v2 .pain-list li::before {
  content: '—';
  flex: 0 0 auto;
  color: var(--v2-ink-4);
  font-family: var(--mono);
  margin-top: 1px;
}
html.v2 .pain-body-emphasis {
  margin-top: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  font-variation-settings: "opsz" 72, "SOFT" 100;
  line-height: 1.25;
  color: var(--v2-ink);
  font-weight: 500;
}

html.v2 .pain-fix-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v2-accent);
  margin-bottom: 20px;
}
html.v2 .pain-fix-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--v2-line);
}
html.v2 .pain-fix-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--v2-line);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--v2-ink);
  font-weight: 500;
  transition: padding-left var(--v2-dur) var(--v2-ease-out);
}
html.v2 .pain-fix-item:hover { padding-left: 8px; }
html.v2 .pain-fix-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--v2-ink-3);
}

/* ---------- WHAT WE DO ---------- */
html.v2 .what { background: var(--v2-paper); }
html.v2 .what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--v2-line);
}
@media (max-width: 920px) {
  html.v2 .what-grid { grid-template-columns: 1fr; }
}
html.v2 .what-card {
  position: relative;
  padding: clamp(32px, 4vw, 48px);
  background: transparent;
  border-right: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background var(--v2-dur) var(--v2-ease-out);
}
html.v2 .what-card:last-child { border-right: none; }
@media (max-width: 920px) {
  html.v2 .what-card { border-right: none; }
}
html.v2 .what-card:hover { background: var(--v2-paper-2); }

html.v2 .what-card-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--v2-ink-3);
}
html.v2 .what-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 91, 46, 0.08);
  border: 1px solid var(--v2-accent-line);
  color: var(--v2-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
html.v2 .what-card h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 400;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--v2-ink);
  margin: 0;
}
html.v2 .what-card p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--v2-ink-2);
  margin: 0;
}

html.v2 .what-note {
  margin-top: 40px;
  padding: 22px 28px;
  background: var(--v2-paper-2);
  border: 1px solid var(--v2-line);
  border-left: 3px solid var(--v2-accent);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--v2-ink-2);
  max-width: 720px;
  border-radius: 0 4px 4px 0;
}
html.v2 .what-note strong {
  color: var(--v2-ink);
  font-weight: 600;
}

/* ---------- ENTRY OFFER ---------- */
html.v2 .entry-offer {
  background: var(--v2-paper-2);
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
}
html.v2 .entry-offer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 880px) {
  html.v2 .entry-offer-inner { grid-template-columns: 1fr; gap: 48px; }
}
html.v2 .entry-offer-left .section-tag { color: var(--v2-accent); }
html.v2 .entry-offer-left .section-tag::before { background: var(--v2-accent); opacity: 0.7; }
html.v2 .entry-offer-lead {
  font-family: var(--sans);
  font-size: var(--v2-fs-lead);
  line-height: 1.65;
  color: var(--v2-ink-2);
  margin: 0 0 32px;
  max-width: 52ch;
}

html.v2 .entry-offer-included {
  margin-top: 28px;
}
html.v2 .entry-offer-included-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
  margin-bottom: 16px;
}
html.v2 .entry-offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
html.v2 .entry-offer-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--v2-ink);
}
html.v2 .entry-offer-list li svg {
  color: var(--v2-accent);
  flex: 0 0 auto;
}

html.v2 .entry-offer-right {
  background: var(--v2-paper);
  border: 1px solid var(--v2-line);
  border-radius: 6px;
  padding: clamp(32px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 30px 60px -40px rgba(10, 10, 11, 0.18);
}
html.v2 .entry-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 91, 46, 0.06);
  border: 1px solid var(--v2-accent-line);
  color: var(--v2-accent);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  width: fit-content;
}
html.v2 .entry-offer-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--v2-accent);
  animation: v2BadgePulse 2.4s var(--v2-ease-io) infinite;
}
html.v2 .entry-offer-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
html.v2 .entry-offer-price-free {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  color: var(--v2-ink);
  letter-spacing: -0.04em;
  line-height: 0.95;
}
html.v2 .entry-offer-price-note {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--v2-ink-3);
  letter-spacing: 0.04em;
}
html.v2 .entry-offer-desc {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--v2-ink-2);
  margin: 0;
}
html.v2 .entry-offer-microcopy {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.55;
  color: var(--v2-ink-3);
  letter-spacing: 0.02em;
  margin: 0;
}
html.v2 .entry-offer-right .btn-ai {
  width: 100%;
  justify-content: center;
}

/* ---------- HOW IT WORKS (3 steps with connector line) ---------- */
html.v2 .how-new { background: var(--v2-paper); }
html.v2 .how-new-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
  position: relative;
  margin-top: clamp(48px, 6vw, 80px);
}
html.v2 .how-new-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 32px);
  right: calc(16.66% + 32px);
  height: 1px;
  background: linear-gradient(90deg, var(--v2-accent) 0%, var(--v2-ai) 50%, var(--v2-accent) 100%);
  opacity: 0.35;
  z-index: 0;
}
@media (max-width: 880px) {
  html.v2 .how-new-steps { grid-template-columns: 1fr; gap: 40px; }
  html.v2 .how-new-steps::before { display: none; }
}
html.v2 .how-new-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  z-index: 1;
}
html.v2 .how-step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--v2-paper);
  border: 1px solid var(--v2-line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--v2-ink-2);
  margin-bottom: 6px;
}
html.v2 .how-new-step:first-child .how-step-circle {
  border-color: var(--v2-accent);
  color: var(--v2-accent);
  background: rgba(255, 91, 46, 0.05);
}
html.v2 .how-new-step h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 400;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--v2-ink);
  margin: 0;
}
html.v2 .how-new-step h3 em {
  font-style: italic;
  font-weight: 500;
  color: var(--v2-ink);
}
html.v2 .how-new-step p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--v2-ink-2);
  margin: 0;
  max-width: 38ch;
}

/* ---------- OFFER STACK ---------- */
html.v2 .offer-stack {
  background: var(--v2-paper-2);
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
}
html.v2 .offer-stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(48px, 6vw, 80px);
  margin-bottom: 16px;
}
html.v2 .offer-stack-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: calc(66.66% + 8px);
}
@media (max-width: 1024px) {
  html.v2 .offer-stack-grid { grid-template-columns: 1fr 1fr; }
  html.v2 .offer-stack-row2 { max-width: 100%; }
}
@media (max-width: 640px) {
  html.v2 .offer-stack-grid,
  html.v2 .offer-stack-row2 { grid-template-columns: 1fr; }
}

html.v2 .offer-card {
  position: relative;
  background: var(--v2-paper);
  border: 1px solid var(--v2-line);
  border-radius: 6px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--v2-dur) var(--v2-ease-out),
              transform var(--v2-dur) var(--v2-ease-out),
              box-shadow var(--v2-dur) var(--v2-ease-out);
}
html.v2 .offer-card:hover {
  border-color: var(--v2-ink);
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -40px rgba(10, 10, 11, 0.18);
}
html.v2 .offer-card.is-featured {
  border-color: var(--v2-accent);
  box-shadow: inset 0 0 0 1px var(--v2-accent);
}
html.v2 .offer-card.is-featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -11px;
  left: 24px;
  background: var(--v2-accent);
  color: var(--v2-paper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 0;
}
html.v2 .offer-card-tier {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
  font-weight: 500;
}
html.v2 .offer-card-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.02em;
  color: var(--v2-ink);
  line-height: 1.2;
}
html.v2 .offer-card-desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--v2-ink-2);
  margin: 0;
  flex-grow: 1;
}
html.v2 .offer-card-price {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--v2-accent);
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--v2-line);
}
html.v2 .offer-card.offer-card-free .offer-card-price { color: var(--v2-ai); }

/* ---------- CASE STUDIES ---------- */
html.v2 .cases { background: var(--v2-paper); }
html.v2 .cases-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(40px, 5vw, 64px);
  flex-wrap: wrap;
}
html.v2 .cases-intro {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--v2-ink-3);
  max-width: 36ch;
  margin: 0;
}
html.v2 .cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--v2-line);
}
@media (max-width: 880px) {
  html.v2 .cases-grid { grid-template-columns: 1fr; }
}
html.v2 .case-card {
  background: transparent;
  border-right: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background var(--v2-dur) var(--v2-ease-out);
}
html.v2 .case-card:last-child { border-right: none; }
@media (max-width: 880px) {
  html.v2 .case-card { border-right: none; }
}
html.v2 .case-card:hover { background: var(--v2-paper-2); }

html.v2 .case-category {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
  margin-bottom: 4px;
}
html.v2 .case-card h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 400;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--v2-ink);
  margin: 0;
}
html.v2 .case-desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--v2-ink-2);
  margin: 0;
  flex-grow: 1;
}
html.v2 .case-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--v2-line);
}
html.v2 .case-metric {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
html.v2 .case-metric-val {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.01em;
  color: var(--v2-ink);
  font-variant-numeric: lining-nums tabular-nums;
}
html.v2 .case-metric-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
}

/* ---------- FIT / NOT FIT ---------- */
html.v2 .fit { background: var(--v2-paper); }
html.v2 .fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(48px, 6vw, 72px);
}
@media (max-width: 760px) {
  html.v2 .fit-grid { grid-template-columns: 1fr; }
}
html.v2 .fit-col {
  padding: clamp(28px, 3vw, 40px);
  background: var(--v2-paper);
  border: 1px solid var(--v2-line);
  border-radius: 6px;
}
html.v2 .fit-col-no { background: var(--v2-paper-2); }

html.v2 .fit-col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
html.v2 .fit-col-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
html.v2 .fit-col-dot-yes { background: var(--v2-accent); box-shadow: 0 0 0 3px rgba(255, 91, 46, 0.12); }
html.v2 .fit-col-dot-no  { background: var(--v2-ink-4); }
html.v2 .fit-col-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--v2-ink-2);
}

html.v2 .fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
html.v2 .fit-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--v2-line);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--v2-ink-2);
}
html.v2 .fit-item:first-child { border-top: none; padding-top: 4px; }
html.v2 .fit-item-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 1px;
}
html.v2 .fit-item-icon.yes {
  background: rgba(255, 91, 46, 0.1);
  color: var(--v2-accent);
}
html.v2 .fit-item-icon.no {
  background: rgba(10, 10, 11, 0.05);
  color: var(--v2-ink-3);
}

/* ---------- New contact form microcopy ---------- */
html.v2 .form-microcopy {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--v2-ink-3);
  margin: 12px 0 0;
}

