/* ─────────────────────────────────────────────────────────────
   PHANTOM-LEX MARKETING — DESIGN SYSTEM
   Brand : Petrol Teal  #0f766e   ·  Label : Gold #b8943a
───────────────────────────────────────────────────────────── */

:root {
  /* Brand */
  --brand:          #0f766e;
  --brand-hover:    #0a5e57;
  --brand-deep:     #064e47;
  --brand-light:    #f0faf9;
  --brand-border:   #99d6d0;
  --brand-tint:     rgba(15,118,110,.08);
  --brand-glow:     rgba(15,118,110,.18);

  --gold:           #b8943a;
  --gold-light:     #f5ead4;
  --gold-border:    #d4af6a;
  --gold-tint:      rgba(184,148,58,.10);

  /* Surfaces */
  --bg:             #f9f7f4;
  --bg-alt:         #f2efe9;
  --surface:        #ffffff;
  --surface-2:      #f5f3ef;
  --border:         #e5e0d8;
  --border-2:       #d8d2c6;
  --border-dark:    #c8bfb0;

  /* Text */
  --ink:            #0f0e0c;
  --ink-2:          #2c2a26;
  --body:           #4a4640;
  --muted:          #8c8278;
  --muted-2:        #a59a8c;

  /* Semantic */
  --success:        #15803d;
  --success-bg:     #f0fdf4;
  --alert:          #b45309;
  --alert-bg:       #fffbeb;
  --critical:       #b91c1c;
  --critical-bg:    #fef2f2;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15,14,12,.06), 0 1px 2px rgba(15,14,12,.04);
  --shadow-md: 0 4px 12px rgba(15,14,12,.08), 0 2px 4px rgba(15,14,12,.04);
  --shadow-lg: 0 12px 32px rgba(15,14,12,.10), 0 4px 8px rgba(15,14,12,.06);
  --shadow-glow: 0 0 60px var(--brand-glow);

  /* Type */
  --font-display: 'EB Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Easing */
  --ease: cubic-bezier(.2,.7,.2,1);
}

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

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

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

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: transparent; border: 0; cursor: pointer; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; position: relative; }
.section-sm { padding: 4rem 0; }

.section-header {
  text-align: center;
  margin: 0 auto 4.5rem;
  max-width: 720px;
}
.section-header .label { display:inline-block; margin-bottom: 1rem; }
.section-header .headline-section { margin-bottom: 1.25rem; }
.section-sub { color: var(--body); }

/* ─── Typography ─────────────────────────────────────────── */
.headline-hero {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.headline-hero em { font-style: italic; color: var(--brand); }

.headline-section {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.headline-section em { font-style: italic; color: var(--brand); }

.label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.body-large {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--body);
}
.inline-link {
  color: var(--brand);
  border-bottom: 1px solid var(--brand-border);
  transition: border-color .15s;
}
.inline-link:hover { border-bottom-color: var(--brand); }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s var(--ease);
  white-space: nowrap;
  letter-spacing: 0.005em;
  position: relative;
  overflow: hidden;
}
.btn .arrow { transition: transform .2s var(--ease); display: inline-block; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 1px 0 rgba(255,255,255,.15) inset, 0 4px 12px rgba(15,118,110,.18);
}
.btn-primary:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,.15) inset, 0 6px 18px rgba(15,118,110,.28);
}
.btn-outline {
  background: transparent;
  color: var(--ink-2);
  border-color: var(--border-dark);
}
.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-light);
}
.play-icon { font-size: 0.55rem; color: var(--brand); }

/* ═══════════ HEADER ═══════════ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 247, 244, .85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
header.is-scrolled {
  background: rgba(249, 247, 244, .96);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}
.logo { display: flex; align-items: center; gap: 0.625rem; }
.logo-sigil {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, 0 2px 6px rgba(15,118,110,.25);
}
.logo-text {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--ink);
  font-weight: 500;
}
nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
nav a {
  font-size: 0.875rem;
  color: var(--body);
  transition: color .15s;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  position: relative;
}
nav a:hover, nav a.active { color: var(--ink); }
nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -1px;
  height: 1px;
  background: var(--brand);
}
nav a.login-link { color: var(--muted); }

/* ═══════════ HERO ═══════════ */
.hero {
  padding: 7rem 0 6rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(15,118,110,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,118,110,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 80% 30%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 80% 30%, black 0%, transparent 70%);
}
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.hero-bg-orb--1 {
  width: 480px; height: 480px;
  background: var(--brand);
  top: -120px; right: -100px;
  animation: orbDrift 18s var(--ease) infinite alternate;
}
.hero-bg-orb--2 {
  width: 360px; height: 360px;
  background: var(--gold);
  bottom: -120px; left: 40%;
  opacity: .15;
  animation: orbDrift 22s var(--ease) infinite alternate-reverse;
}
@keyframes orbDrift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-40px, 30px) scale(1.08); }
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-label { margin-bottom: 2rem; color: var(--brand); }
.label-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand);
  position: relative;
  box-shadow: 0 0 0 0 var(--brand-glow);
  animation: labelPulse 2.4s var(--ease) infinite;
}
@keyframes labelPulse {
  0%   { box-shadow: 0 0 0 0 rgba(15,118,110,.55); }
  70%  { box-shadow: 0 0 0 8px rgba(15,118,110,0); }
  100% { box-shadow: 0 0 0 0 rgba(15,118,110,0); }
}
.hero-headline { max-width: 640px; margin-bottom: 1.75rem; }
.reveal-line {
  display: block;
}
.reveal-line > span {
  display: inline-block;
}
.hero-sub {
  max-width: 480px;
  margin-bottom: 2.25rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}
.hero-note {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
}

/* Hero console */
.hero-visual { /* always visible */ }
.hero-console {
  background: var(--ink);
  border-radius: 14px;
  padding: 0;
  box-shadow:
    0 1px 0 rgba(255,255,255,.06) inset,
    0 30px 60px rgba(15,14,12,.18),
    0 12px 24px rgba(15,14,12,.10);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  position: relative;
}
.hero-console::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(15,118,110,.15), transparent 60%);
  pointer-events: none;
}
.hero-console-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.125rem;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
}
.hero-console-dots { display: flex; gap: 6px; }
.hero-console-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.hero-console-dots span:nth-child(1) { background: #e57777; }
.hero-console-dots span:nth-child(2) { background: #d8b66a; }
.hero-console-dots span:nth-child(3) { background: #7ec995; }
.hero-console-title {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,.45);
  letter-spacing: 0.05em;
}
.hero-console-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.15em;
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #7ec995;
  box-shadow: 0 0 8px #7ec995;
  animation: dotBlink 1.6s var(--ease) infinite;
}
@keyframes dotBlink { 50% { opacity: 0.4; } }

.hero-console-body {
  padding: 1.25rem 1.125rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}
.console-row {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0.875rem;
  align-items: baseline;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  font-size: 0.74rem;
  line-height: 1.5;
}
.console-row.is-in { opacity: 1; transform: translateY(0); }
.console-time {
  color: rgba(255,255,255,.35);
  font-size: 0.68rem;
}
.console-tag {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  white-space: nowrap;
}
.tag-alpha { color: #5eead4; background: rgba(15,118,110,.18); border: 1px solid rgba(15,118,110,.3); }
.tag-beta  { color: #ecc878; background: rgba(184,148,58,.18); border: 1px solid rgba(184,148,58,.3); }
.tag-lex   { color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); }
.tag-system { color: rgba(255,255,255,.5); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.console-msg { color: rgba(255,255,255,.85); }
.console-msg b { color: #fff; font-weight: 500; }
.impact-up { color: #7ec995 !important; }
.cursor-blink { animation: blink 1s steps(2) infinite; color: var(--brand); }
@keyframes blink { 50% { opacity: 0; } }

.hero-console-foot {
  display: flex;
  gap: 1.25rem;
  padding: 0.875rem 1.125rem;
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 0.7rem;
  color: rgba(255,255,255,.45);
}
.foot-stat b {
  color: #fff;
  font-weight: 500;
  margin-right: 0.35rem;
}

/* ═══════════ COMPLIANCE BAR ═══════════ */
.compliance-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}
.compliance-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.compliance-label { margin: 0; color: var(--muted) !important; }
.compliance-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
}
.cb-code {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  padding: 0.22rem 0.5rem;
  background: var(--brand-tint);
  color: var(--brand);
  border-radius: 4px;
  border: 1px solid var(--brand-border);
}
.cb-name { color: var(--muted); }
.cb-sep { color: var(--border-dark); }

/* ═══════════ STATS ═══════════ */
.stats-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 0 2rem;
  border-right: 1px solid var(--border-2);
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; padding-right: 0; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
}
.stat-accent { color: var(--brand); }
.stat-suffix { color: var(--ink); }
.stat-text { display: inline-flex; align-items: baseline; }
.stat-text .slash { color: var(--brand); margin: 0 0.05em; }
.stat-label {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ═══════════ HOW IT WORKS ═══════════ */
.how { background: var(--bg); }
.how-grid {
  display: grid;
  gap: 2.5rem;
  max-width: 920px;
  margin: 0 auto;
}
.how-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: flex-start;
}
.how-step-rail {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.how-step-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brand);
  background: var(--brand-light);
  border: 1px solid var(--brand-border);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 1;
}
.how-step-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, var(--brand-border) 0%, var(--border) 80%, transparent 100%);
  margin: 0.5rem 0;
  min-height: 60px;
}
.how-step-body {
  padding-top: 0.4rem;
  padding-bottom: 1.5rem;
}
.how-step-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.625rem;
  letter-spacing: -0.005em;
}
.how-step-text {
  color: var(--body);
  margin-bottom: 1.25rem;
  max-width: 560px;
  line-height: 1.65;
}
.how-step-visual {
  margin-top: 1.25rem;
}
.how-visual-connect {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  align-items: center;
}
.bureau-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-2);
}
.bureau-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 6px rgba(21,128,61,.5);
}
.bureau-status {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--success);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.how-visual-note {
  margin-left: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.how-visual-teams {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 480px;
}
.mini-team {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.625rem 0.875rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.8125rem;
}
.mini-team-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.mini-team-alpha .mini-team-label { background: var(--brand-tint); color: var(--brand); }
.mini-team-beta .mini-team-label { background: var(--gold-tint); color: var(--gold); }
.mini-team-action { color: var(--body); }

.how-visual-lex { max-width: 460px; }
.mini-chat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mini-bubble {
  padding: 0.625rem 0.875rem;
  border-radius: 10px;
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 80%;
}
.mini-bubble-user {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px 10px 2px 10px;
  align-self: flex-end;
  color: var(--ink-2);
}
.mini-bubble-lex {
  background: var(--brand);
  color: #fff;
  border-radius: 10px 10px 10px 2px;
  align-self: flex-start;
}

/* ═══════════ PROBLEM ═══════════ */
.problem {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.problem-text .label { margin-bottom: 1rem; }
.problem-text .headline-section { margin-bottom: 1rem; }
.problem-text .section-sub { margin-bottom: 2.5rem; max-width: 480px; }
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.problem-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.problem-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--critical-bg);
  border: 1px solid #fecaca;
  color: var(--critical);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 3px;
}
.problem-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.problem-text-body {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--body);
}

.problem-visual {
  position: sticky;
  top: 100px;
}
.case-monitor {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}
.case-monitor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--critical);
  background: var(--critical-bg);
  border: 1px solid #fecaca;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}
.live-pill-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--critical);
  animation: dotBlink 1.4s var(--ease) infinite;
}
.case-block {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.875rem;
}
.case-block:last-of-type { margin-bottom: 1rem; }
.case-block-head {
  background: var(--surface-2);
  padding: 0.625rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.bureau-name {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
}
.case-rows {
  padding: 0 1rem;
}
.case-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.case-row:last-child { border-bottom: none; }
.case-row-main {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
}
.case-row-title {
  font-size: 0.825rem;
  color: var(--ink-2);
  font-weight: 500;
}
.case-row-meta {
  font-size: 0.72rem;
  color: var(--muted);
}
.case-row-meta-mono {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  white-space: nowrap;
}
.progress-mini {
  width: 60px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}
.progress-mini-fill {
  height: 100%;
  background: var(--brand);
  border-radius: 2px;
}
.badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  padding: 0.22rem 0.55rem;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.badge-critical { background: var(--critical-bg); color: var(--critical); border: 1px solid #fecaca; }
.badge-ok       { background: var(--success-bg); color: var(--success); border: 1px solid #bbf7d0; }
.badge-brand    { background: var(--brand-light); color: var(--brand); border: 1px solid var(--brand-border); }
.badge-alert    { background: var(--alert-bg); color: var(--alert); border: 1px solid #fde68a; }

.case-foot {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.case-foot-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand);
  animation: dotBlink 1.6s var(--ease) infinite;
}

/* ═══════════ TEAMS ═══════════ */
.teams { border-bottom: 1px solid var(--border); }
.teams-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.team-alpha:hover { border-color: var(--brand-border); }
.team-beta { background: var(--surface-2); }
.team-beta:hover { border-color: var(--gold-border); }
.team-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 180px; height: 180px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.team-alpha::after { background: var(--brand); }
.team-beta::after { background: var(--gold); }
.team-card:hover::after { opacity: .08; }

.team-card-head {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
}
.team-glyph {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  flex-shrink: 0;
}
.team-alpha .team-glyph {
  background: var(--brand-light);
  color: var(--brand);
  border: 1px solid var(--brand-border);
}
.team-beta .team-glyph {
  background: var(--gold-tint);
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.team-name {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-top: 0.2rem;
}
.team-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--body);
  margin-bottom: 1.75rem;
  max-width: 440px;
}
.agent-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.agent-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 0.875rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: background .2s, border-color .2s;
}
.agent-item:hover { background: var(--surface); border-color: var(--border-dark); }
.team-beta .agent-item { background: var(--surface); }
.team-beta .agent-item:hover { background: var(--bg); }
.agent-glyph {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  flex-shrink: 0;
}
.agent-glyph-brand { background: var(--brand); color: #fff; }
.agent-glyph-gold { background: var(--gold); color: #fff; }
.agent-text { display: flex; flex-direction: column; gap: 0.1rem; flex: 1; }
.agent-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-2);
}
.agent-role {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ═══════════ LEX SECTION ═══════════ */
.lex-section {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.lex-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--brand);
  filter: blur(120px);
  opacity: 0.2;
  pointer-events: none;
}
.lex-section::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: var(--gold);
  filter: blur(120px);
  opacity: 0.08;
  pointer-events: none;
}
.lex-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.lex-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
  margin: 1.25rem 0 1.25rem;
  letter-spacing: -0.01em;
}
.lex-headline em {
  font-style: italic;
  color: #5eead4;
}
.lex-body {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}
.lex-features {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  margin-bottom: 2.25rem;
}
.lex-feature {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}
.lex-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(15,118,110,.2);
  border: 1px solid rgba(15,118,110,.4);
  color: #5eead4;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.lex-feature-title {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.lex-feature-text {
  color: rgba(255,255,255,.55);
  font-size: 0.85rem;
  line-height: 1.5;
}
.lex-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-brand-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--brand);
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
  transition: all .2s var(--ease);
  cursor: pointer;
}
.btn-brand-dark:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
}
.btn-brand-dark .arrow { transition: transform .2s var(--ease); }
.btn-brand-dark:hover .arrow { transform: translateX(3px); }
.lex-cta-note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.4);
}

/* Lex chat visual */
.lex-visual {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.lex-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.02);
}
.lex-chat-head-left { display: flex; align-items: center; gap: 0.75rem; }
.lex-avatar {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  display: grid;
  place-items: center;
}
.lex-chat-head-text { display: flex; flex-direction: column; gap: 0.1rem; }
.lex-chat-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff;
  font-weight: 400;
}
.lex-chat-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,.5);
}
.lex-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #7ec995;
  box-shadow: 0 0 6px #7ec995;
}
.lex-session-id {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(255,255,255,.35);
  letter-spacing: 0.08em;
}
.lex-chat {
  padding: 1.25rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.lex-bubble {
  max-width: 85%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(6px);
  animation: bubbleIn .4s var(--ease) forwards;
}
@keyframes bubbleIn { to { opacity: 1; transform: translateY(0); } }
.lex-bubble-user {
  background: var(--brand);
  color: #fff;
  margin-left: auto;
  border-radius: 12px 12px 3px 12px;
}
.lex-bubble-lex {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px 12px 12px 3px;
}
.lex-bubble-lex b { color: #fff; font-weight: 500; }
.lex-bubble-lex .lex-cite {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.1rem 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  background: rgba(15,118,110,.2);
  color: #5eead4;
  border-radius: 3px;
  letter-spacing: 0.05em;
}
.lex-typing {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px 12px 12px 3px;
  width: fit-content;
  opacity: 0;
  animation: bubbleIn .4s var(--ease) forwards;
}
.lex-typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand);
  animation: typing 1.2s infinite;
}
.lex-typing span:nth-child(2) { animation-delay: 0.2s; }
.lex-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40%           { opacity: 1; transform: scale(1); }
}
.lex-chat-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.07);
}
.lex-input-placeholder {
  font-size: 0.85rem;
  color: rgba(255,255,255,.35);
  font-style: italic;
}
.lex-input-kbd {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  color: rgba(255,255,255,.5);
}

/* ═══════════ AUDIENCE ═══════════ */
.audience {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.audience-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.audience-tab {
  background: transparent;
  text-align: left;
  padding: 1.5rem 1.75rem;
  border: none;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  cursor: pointer;
  position: relative;
  transition: background .2s;
}
.audience-tab:last-child { border-right: none; }
.audience-tab:hover { background: var(--surface); }
.audience-tab::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.audience-tab.is-active { background: var(--surface); }
.audience-tab.is-active::before { transform: scaleX(1); }
.audience-tab-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.audience-tab.is-active .audience-tab-num { color: var(--brand); }
.audience-tab-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ink);
}
.audience-tab-sub {
  font-size: 0.8rem;
  color: var(--muted);
}

.audience-panel-wrap {
  background: var(--surface);
  position: relative;
}
.audience-panel {
  display: none;
  padding: 4rem 0;
  animation: panelIn .5s var(--ease);
}
.audience-panel.is-active { display: block; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.audience-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.audience-panel-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
}
.audience-panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.005em;
}
.audience-panel-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 1.75rem;
  max-width: 480px;
}
.audience-panel-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}
.audience-panel-list li {
  display: flex;
  gap: 0.625rem;
  font-size: 0.92rem;
  color: var(--body);
  align-items: flex-start;
}
.check-mark { color: var(--brand); flex-shrink: 0; font-weight: 500; }
.audience-cta { margin-top: 0.5rem; }

/* Audience visuals */
.audience-panel-visual { display: flex; justify-content: center; }
.aud-score-card,
.aud-portfolio,
.aud-case-file {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  max-width: 460px;
  box-shadow: var(--shadow-md);
}
.aud-score-card .label,
.aud-portfolio .label,
.aud-case-file .label {
  margin-bottom: 1rem;
  color: var(--muted) !important;
}
.aud-score-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}
.aud-score-now { font-size: 3rem; font-weight: 300; color: var(--ink); line-height: 1; }
.aud-score-arrow { font-size: 1.5rem; color: var(--brand); }
.aud-score-next { font-size: 3rem; font-weight: 300; color: var(--brand); line-height: 1; }
.aud-score-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.aud-score-bar {
  height: 8px;
  background: linear-gradient(to right, #ef4444 0%, #f59e0b 25%, #eab308 50%, #84cc16 75%, var(--success) 100%);
  border-radius: 4px;
  margin-bottom: 0.5rem;
  position: relative;
}
.aud-score-bar-fill {
  position: absolute;
  top: -3px;
  left: 78%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand);
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
  animation: scoreSlide 2.5s var(--ease) infinite alternate;
}
@keyframes scoreSlide {
  from { left: 32%; }
  to   { left: 78%; }
}
.aud-score-legend {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.aud-portfolio-row {
  display: grid;
  grid-template-columns: 90px 1fr 40px;
  gap: 0.75rem;
  align-items: center;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border);
}
.aud-portfolio-row:last-of-type { border-bottom: none; margin-bottom: 0.5rem; }
.aud-portfolio-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-2);
}
.aud-portfolio-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  display: block;
}
.aud-portfolio-bar span {
  display: block;
  height: 100%;
  background: var(--brand);
  border-radius: 3px;
}
.aud-portfolio-meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--success);
  text-align: right;
  font-weight: 500;
}
.aud-portfolio-foot {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.case-file-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.case-file-row:last-of-type { border-bottom: none; }
.case-file-date {
  font-family: var(--font-mono);
  color: var(--muted);
  font-size: 0.75rem;
}
.case-file-event { color: var(--ink-2); }
.case-file-row--active .case-file-event {
  color: var(--brand);
  font-weight: 500;
}
.case-file-row--active .case-file-date { color: var(--brand); }
.aud-case-foot {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  letter-spacing: 0.05em;
}

/* ═══════════ PRICING ═══════════ */
.pricing {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-single {
  max-width: 920px;
  margin: 0 auto;
}
.pricing-card--single {
  padding: 3rem;
  margin-bottom: 2.5rem;
}
.pricing-card--single.featured {
  background: linear-gradient(180deg, var(--brand-light) 0%, var(--surface) 30%);
}
.pricing-single-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.pricing-features-col {
  position: relative;
  padding-left: 3rem;
}
.pricing-divider--vert {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  border: none;
  border-left: 1px solid var(--border);
  margin: 0;
}
.pricing-btn--solo {
  margin-top: 1.75rem;
  width: 100%;
  justify-content: center;
}
.pricing-foot-note {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.pricing-promise {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  padding: 2.5rem 2rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.pricing-promise .label { margin-bottom: 1.25rem; }
.pricing-promise-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.95rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.005em;
  margin-bottom: 1rem;
}
.pricing-promise-sig {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.pricing-team-row {
  display: flex;
  justify-content: center;
}
.pricing-team-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 100%;
  flex-wrap: wrap;
}
.pricing-team-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0.35rem 0 0.3rem;
}
.pricing-team-text {
  font-size: 0.875rem;
  color: var(--body);
  max-width: 480px;
  line-height: 1.55;
}
.pricing-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.25rem;
  background: var(--surface);
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border-color: var(--brand);
  background: linear-gradient(180deg, var(--brand-light) 0%, var(--surface) 25%);
  box-shadow: var(--shadow-md);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: var(--brand);
  padding: 0.3rem 0.875rem;
  border-radius: 20px;
  white-space: nowrap;
  font-weight: 500;
}
.pricing-name {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.featured .pricing-name { color: var(--brand); }
.pricing-amount-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
}
.pricing-period {
  font-size: 0.875rem;
  color: var(--muted);
}
.pricing-desc {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0.625rem 0 1.5rem;
  line-height: 1.55;
}
.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex: 1;
}
.pricing-feature {
  display: flex;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--body);
  align-items: flex-start;
}
.pricing-feature--muted { color: var(--muted-2); }
.check {
  color: var(--brand);
  flex-shrink: 0;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 1px;
}
.check--off { color: var(--muted-2); }
.pricing-btn {
  width: 100%;
  justify-content: center;
}

/* ═══════════ FAQ ═══════════ */
.faq {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.faq-header {
  position: sticky;
  top: 100px;
}
.faq-header .label { margin-bottom: 1rem; }
.faq-header .headline-section { margin-bottom: 1rem; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-q {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  transition: color .2s;
  letter-spacing: -0.005em;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--brand); }
.faq-chev {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--brand);
  transition: transform .25s var(--ease);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-tint);
  flex-shrink: 0;
}
.faq-item[open] .faq-chev {
  transform: rotate(45deg);
  background: var(--brand);
  color: #fff;
}
.faq-a {
  padding: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--body);
  max-width: 640px;
}

/* ═══════════ FINAL CTA ═══════════ */
.final-cta {
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--brand-glow) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.final-cta .label { margin-bottom: 1rem; }
.final-cta .headline-section { margin-bottom: 1.25rem; }
.final-cta .body-large { margin-bottom: 2.5rem; }
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.final-note {
  margin-top: 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ═══════════ FOOTER ═══════════ */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.5);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.625rem; }
.footer-logo-text {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}
.footer-links {
  display: flex;
  gap: 1.75rem;
}
.footer-links a {
  font-size: 0.825rem;
  transition: color .15s;
}
.footer-links a:hover { color: rgba(255,255,255,.9); }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,.35);
}

/* ═══════════ REVEAL UTILITIES ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 960px) {
  .section { padding: 5rem 0; }
  .hero { padding: 4rem 0; }
  .hero-grid,
  .problem-grid,
  .lex-inner,
  .teams-grid,
  .audience-panel-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .pricing-single-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pricing-features-col { padding-left: 0; padding-top: 1.5rem; }
  .pricing-divider--vert { position: static; width: 100%; height: 1px; border-left: none; border-top: 1px solid var(--border); }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stat-item { border-right: none; padding: 0; }
  .audience-tabs { grid-template-columns: 1fr; }
  .audience-tab { border-right: none; border-bottom: 1px solid var(--border); }
  .audience-tab:last-child { border-bottom: none; }
  nav { display: none; }
  .problem-visual { position: static; }
  .faq-header { position: static; }
}
