/* =============================================================
   Axulu — design system
   Synthboard-inspired: pastel section scenes, heavy display type,
   one bold accent, rounded soft cards.
   ============================================================= */

/* ---- tokens -------------------------------------------------- */
:root {
  /* Palette */
  --bg:           #fafafe;        /* page base, very faint cool */
  --surface:      #ffffff;
  --surface-2:    #f6f5fc;
  --ink:          #0c0a1f;        /* near-black, slight indigo tint */
  --ink-soft:     #45435e;
  --ink-muted:    #7e7c95;
  --ink-faint:    #a8a6bd;
  --line:         rgba(12, 10, 31, 0.08);
  --line-2:       rgba(12, 10, 31, 0.14);

  /* Accent — tweakable. Default amber (warm, evidence-aware) */
  --accent:       #d97706;
  --accent-ink:   #ffffff;
  --accent-soft:  #fef3c7;
  --accent-text:  #b45309;        /* for accent-colored body text */

  /* Section tints — softly gradient pastel backdrops */
  --tint-lavender-a: #f3eefc;
  --tint-lavender-b: #ebe6fa;
  --tint-mint-a:     #ecfdf5;
  --tint-mint-b:     #def7ec;
  --tint-peach-a:    #fff5ec;
  --tint-peach-b:    #ffe9d6;
  --tint-sky-a:      #eef5ff;
  --tint-sky-b:      #dde9fc;
  --tint-pink-a:     #fdf2f8;
  --tint-pink-b:     #fbe6f0;
  --tint-cream-a:    #fdfbf6;
  --tint-cream-b:    #f6f0e4;

  /* Mode colors — for category pills */
  --c-violet:    #6366f1;
  --c-amber:     #f59e0b;
  --c-cyan:      #06b6d4;
  --c-rose:      #ec4899;
  --c-emerald:   #10b981;
  --c-red:       #ef4444;
  --c-orange:    #f97316;
  --c-indigo:    #4f46e5;

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

  --t-display:    clamp(40px, 5.6vw, 86px);
  --t-h1:         clamp(36px, 4.8vw, 68px);
  --t-h2:         clamp(28px, 3.2vw, 44px);
  --t-h3:         clamp(20px, 1.8vw, 26px);
  --t-lead:       clamp(17px, 1.4vw, 21px);
  --t-body:       16px;
  --t-mono:       12px;

  /* Spacing & radii */
  --maxw:         1240px;
  --pad:          clamp(20px, 4vw, 56px);
  --r-sm:         8px;
  --r-md:         14px;
  --r-lg:         20px;
  --r-xl:         32px;

  /* Shadows */
  --sh-card:      0 1px 2px rgba(12,10,31,0.04), 0 8px 28px -12px rgba(12,10,31,0.08);
  --sh-card-lg:   0 2px 4px rgba(12,10,31,0.04), 0 30px 60px -30px rgba(12,10,31,0.18);
  --sh-cta:       0 1px 0 rgba(255,255,255,0.2) inset, 0 8px 20px -8px var(--accent);
}

/* ---- reset --------------------------------------------------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: var(--t-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'cv11', 'ss03', 'ss01';
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ---- utility ------------------------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.wrap-narrow { max-width: 920px; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.mono {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.muted { color: var(--ink-muted); }

/* ---- nav ----------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center;
  height: 68px; gap: 28px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 18px; letter-spacing: -0.015em;
  color: var(--ink);
}
.brand-mark {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  position: relative;
}
.brand-mark svg { width: 28px; height: 28px; }

.nav-center {
  display: flex; gap: 6px;
  margin: 0 auto;
  background: transparent;
}
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 100px;
  font-size: 14.5px; font-weight: 500;
  color: var(--ink-soft); transition: color .15s, background .15s;
}
.nav-link:hover { color: var(--ink); background: rgba(12,10,31,0.04); }
.nav-link svg { width: 12px; height: 12px; opacity: 0.5; }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-burger {
  display: none; width: 40px; height: 40px;
  border: 1px solid var(--line-2); border-radius: 10px;
  background: transparent; padding: 0;
  align-items: center; justify-content: center;
}
.nav-burger svg { width: 18px; height: 18px; }

/* ---- buttons ------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 40px; padding: 0 16px; border-radius: 100px;
  font-family: inherit; font-size: 14px; font-weight: 600;
  border: 1px solid var(--line-2); background: transparent; color: var(--ink);
  transition: background .15s, border-color .15s, transform .08s, box-shadow .15s;
  white-space: nowrap; line-height: 1;
}
.btn:hover { background: rgba(12,10,31,0.04); border-color: var(--ink-faint); }
.btn:active { transform: translateY(1px); }
.btn-ghost { border-color: transparent; }
.btn-ghost:hover { background: rgba(12,10,31,0.04); }
.btn-primary {
  background: var(--accent); color: var(--accent-ink);
  border-color: var(--accent);
  box-shadow: var(--sh-cta);
}
.btn-primary:hover { background: color-mix(in oklab, var(--accent) 88%, black); border-color: transparent; }
.btn-dark {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.btn-dark:hover { background: color-mix(in oklab, var(--ink) 85%, white); border-color: transparent; }
.btn-lg { height: 52px; padding: 0 22px; font-size: 15px; }
.btn .arrow {
  width: 14px; height: 14px;
  transition: transform .15s;
}
.btn:hover .arrow { transform: translateX(2px); }

/* ---- pills --------------------------------------------------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 10px; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--line);
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
  box-shadow: 0 1px 2px rgba(12,10,31,0.03);
}
.pill svg { width: 14px; height: 14px; color: var(--accent); }
.pill-accent {
  background: var(--accent-soft);
  border-color: color-mix(in oklab, var(--accent) 20%, transparent);
  color: var(--accent-text);
}
.pill-accent svg { color: var(--accent); }
.tag {
  display: inline-flex; align-items: center;
  padding: 7px 14px; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--line);
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
}

/* ---- hero ---------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--tint-lavender-a) 0%, var(--bg) 100%);
  padding: clamp(48px, 8vw, 110px) 0 clamp(40px, 6vw, 80px);
  text-align: center;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 8px; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--line);
  font-size: 12.5px; font-weight: 500; color: var(--ink-soft);
  margin-bottom: 28px;
  box-shadow: 0 1px 2px rgba(12,10,31,0.04);
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 22%, transparent);
}
h1.display {
  font-family: var(--font-display);
  font-size: var(--t-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 0 auto 26px;
  color: var(--ink);
  max-width: 18ch;
  text-wrap: balance;
}
h1.display em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, color-mix(in oklab, var(--accent) 65%, #ec4899) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: var(--t-lead);
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 auto 36px;
  text-wrap: pretty;
  line-height: 1.5;
}
.hero-ctas {
  display: inline-flex; gap: 12px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 18px;
}
.hero-foot {
  font-size: 13px; color: var(--ink-muted);
}

/* ---- section system ---------------------------------------- */
section.scene {
  padding: clamp(72px, 9vw, 140px) 0;
  position: relative;
}
section.tint-lavender { background: linear-gradient(180deg, var(--tint-lavender-a), var(--tint-lavender-b)); }
section.tint-mint     { background: linear-gradient(180deg, var(--tint-mint-a), var(--tint-mint-b)); }
section.tint-peach    { background: linear-gradient(180deg, var(--tint-peach-a), var(--tint-peach-b)); }
section.tint-sky      { background: linear-gradient(180deg, var(--tint-sky-a), var(--tint-sky-b)); }
section.tint-pink     { background: linear-gradient(180deg, var(--tint-pink-a), var(--tint-pink-b)); }
section.tint-cream    { background: linear-gradient(180deg, var(--tint-cream-a), var(--tint-cream-b)); }
section.tint-soft     { background: var(--surface-2); }

.scene-head { text-align: center; max-width: 760px; margin: 0 auto clamp(40px, 6vw, 72px); }
.scene-head .pill { margin-bottom: 22px; }
h2.scene-title {
  font-family: var(--font-display);
  font-size: var(--t-h1);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.02;
  color: var(--ink);
  margin: 0 0 18px;
  text-wrap: balance;
}
.scene-sub {
  font-size: var(--t-lead);
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 56ch;
  text-wrap: pretty;
}

/* ---- product theatre cards (signature moment) ------------- */
.theatre {
  display: flex; flex-direction: column;
  gap: clamp(24px, 3vw, 36px);
  max-width: 1180px; margin: 0 auto;
  position: relative;
}
.theatre-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
  padding: clamp(36px, 4.5vw, 64px);
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, #ffffff 0%, var(--tint-bg, var(--tint-lavender-a)) 100%);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--sh-card-lg);
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.theatre-card.tint-mint   { --tint-bg: var(--tint-mint-b); }
.theatre-card.tint-peach  { --tint-bg: var(--tint-peach-b); }
.theatre-card.tint-sky    { --tint-bg: var(--tint-sky-b); }
.theatre-card.tint-cream  { --tint-bg: var(--tint-cream-b); }
.theatre-card.tint-pink   { --tint-bg: var(--tint-pink-b); }

.theatre-meta {
  display: flex; align-items: center; justify-content: space-between;
  position: absolute; top: clamp(24px, 3vw, 36px); left: clamp(36px, 4.5vw, 64px); right: clamp(36px, 4.5vw, 64px);
  pointer-events: none;
}
.theatre-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; color: var(--ink-soft);
}
.theatre-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--ic-bg, color-mix(in oklab, var(--accent) 18%, white));
  color: var(--ic-fg, var(--accent));
  flex-shrink: 0;
}
.theatre-icon svg { width: 18px; height: 18px; }
.theatre-count {
  font-family: var(--font-mono);
  font-size: 14px; font-weight: 600;
  color: var(--ink);
}
.theatre-count em { font-style: normal; color: var(--ink-faint); }

.theatre-left {
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 56px;
  gap: 24px;
}
.theatre-left h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 50px);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.05;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.theatre-left p {
  font-size: 17px; color: var(--ink-soft);
  margin: 0; line-height: 1.55;
  max-width: 46ch;
}
.theatre-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 4px;
}

.theatre-right {
  display: flex; align-items: center; justify-content: center;
  padding-top: 56px;
  position: relative;
}

/* mock UI surfaces inside theatre cards */
.mock {
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(12,10,31,0.03), 0 8px 24px -12px rgba(12,10,31,0.12);
  padding: 20px;
  width: 100%;
  font-size: 13.5px;
}
.mock-head {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.mock-head .badge-live {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent-text);
}
.mock-head .badge-live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 25%, transparent);
}
.mock-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}
.mock-row:last-child { border-bottom: 0; }
.mock-label { color: var(--ink); font-weight: 500; }
.mock-state {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  padding: 4px 10px; border-radius: 100px;
}
.mock-state.green { background: #ecfdf5; color: #047857; }
.mock-state.amber { background: #fffbeb; color: #b45309; }
.mock-state.red   { background: #fef2f2; color: #b91c1c; }
.mock-state.gray  { background: #f3f4f6; color: #4b5563; }

/* ---- mode grid (5 layers of defensibility) ---------------- */
.modes-pill-row { display: flex; justify-content: center; margin-bottom: 36px; }
.modes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}
.mode-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s, box-shadow .2s;
  position: relative;
  min-height: 200px;
}
.mode-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-card);
}
.mode-tier {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
}
.mode-tier.core   { background: #ecfdf5; color: #047857; }
.mode-tier.pro    { background: #fffbeb; color: #b45309; }
.mode-tier.max    { background: #faf5ff; color: #7c3aed; }

.mode-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: grid; place-items: center;
  color: white;
}
.mode-icon svg { width: 20px; height: 20px; }
.mode-card h4 {
  font-size: 17px; font-weight: 700; letter-spacing: -0.015em;
  margin: 0;
}
.mode-tagline {
  font-style: italic; color: var(--ink-muted); font-size: 13px;
  margin: -4px 0 4px;
}
.mode-card p {
  font-size: 13.5px; color: var(--ink-soft); margin: 0;
  line-height: 1.5;
}

/* ---- stats row -------------------------------------------- */
.stats-row {
  display: flex; gap: clamp(36px, 6vw, 72px); justify-content: center;
  flex-wrap: wrap;
  margin-top: clamp(40px, 5vw, 64px);
}
.stat {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-align: center;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  color: var(--c-color, var(--accent));
}
.stat .lbl {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-muted); font-weight: 500;
}

/* ---- experts (Matthew block) ------------------------------ */
.experts-row {
  display: flex; gap: 24px; justify-content: center;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.expert {
  width: clamp(140px, 18vw, 200px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid white;
  box-shadow: var(--sh-card-lg);
  position: relative;
  background: var(--surface-2);
}
.expert img { width: 100%; height: 100%; object-fit: cover; }
.expert.featured { transform: translateY(-12px) scale(1.06); }

/* ---- features 6-grid (More than a checkbox) --------------- */
.feat-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
  max-width: 1180px; margin: 0 auto;
}
.feat-grid .feat-card.large {
  grid-column: span 1;
}
.feat-grid-row-2 {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.feat-card {
  background: linear-gradient(135deg, var(--surface) 0%, var(--card-tint, var(--tint-lavender-a)) 100%);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--sh-card);
  padding: clamp(24px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 18px;
}
.feat-card.tint-mint  { --card-tint: var(--tint-mint-b); }
.feat-card.tint-peach { --card-tint: var(--tint-peach-b); }
.feat-card.tint-sky   { --card-tint: var(--tint-sky-b); }
.feat-card.tint-pink  { --card-tint: var(--tint-pink-b); }
.feat-card.tint-cream { --card-tint: var(--tint-cream-b); }
.feat-card.tint-lavender { --card-tint: var(--tint-lavender-b); }
.feat-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--feat-color, var(--accent));
  display: inline-flex; align-items: center; gap: 8px;
}
.feat-eyebrow svg { width: 14px; height: 14px; }
.feat-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.1;
  margin: 0;
}
.feat-card p {
  font-size: 14.5px; color: var(--ink-soft); margin: 0; line-height: 1.55;
}
.feat-bar {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--line);
  font-size: 12.5px; color: var(--ink-soft); font-weight: 500;
  align-self: flex-start;
}
.feat-bar svg { width: 12px; height: 12px; }

/* ---- pricing ---------------------------------------------- */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; max-width: 1180px; margin: 0 auto;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 16px;
}
.price-card.featured {
  background: linear-gradient(180deg, var(--accent-soft), var(--surface));
  border-color: color-mix(in oklab, var(--accent) 30%, transparent);
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800; letter-spacing: -0.025em;
  margin: 0; line-height: 1.1;
}
.price-card .desc { color: var(--ink-soft); font-size: 14.5px; margin: -4px 0 4px; }
.price-card ul { list-style: none; padding: 0; margin: 4px 0; display: flex; flex-direction: column; gap: 10px; }
.price-card li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--ink);
}
.price-card li svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent); margin-top: 1px; }
.price-card li svg.amber { color: var(--c-amber); }
.price-card li svg.violet { color: var(--c-violet); }
.price-card .btn { width: 100%; justify-content: center; margin-top: auto; }

.enterprise-bar {
  margin: 24px auto 0;
  max-width: 1180px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 26px;
  background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-md);
}
.enterprise-bar a { color: var(--accent-text); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }

/* ---- faq -------------------------------------------------- */
.faq-list {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .15s;
}
.faq-item[open] {
  border-color: color-mix(in oklab, var(--accent) 40%, transparent);
  box-shadow: 0 1px 2px rgba(12,10,31,0.03);
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 18px 22px;
  display: flex; align-items: center; gap: 16px;
  font-size: 15.5px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-item[open] summary { color: var(--accent-text); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .caret {
  margin-left: auto;
  width: 18px; height: 18px;
  transition: transform .2s;
  color: var(--ink-muted);
}
.faq-item[open] .caret { transform: rotate(180deg); color: var(--accent); }
.faq-item-body {
  padding: 0 22px 22px;
  color: var(--ink-soft); font-size: 14.5px;
  line-height: 1.6;
}

/* ---- closer / final CTA ---------------------------------- */
.closer { text-align: center; }
.closer-avatars {
  display: flex; justify-content: center;
  margin-bottom: 26px;
}
.closer-avatars .a {
  width: 56px; height: 56px; border-radius: 50%;
  border: 4px solid var(--surface);
  margin-left: -14px;
  background: var(--surface-2);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(12,10,31,0.1);
}
.closer-avatars .a:first-child { margin-left: 0; }
.closer-avatars .a img { width: 100%; height: 100%; object-fit: cover; }

/* ---- footer ----------------------------------------------- */
footer.foot {
  padding: 80px 0 32px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface-2) 100%);
  border-top: 1px solid var(--line);
}
.foot-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.foot-col h5 {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 600;
  margin: 0 0 16px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.foot-col a {
  font-size: 14px; color: var(--ink-soft);
  transition: color .15s;
}
.foot-col a:hover { color: var(--accent); }
.foot-newsletter {
  max-width: 560px; margin: 0 auto; text-align: center;
  padding-top: 40px; border-top: 1px solid var(--line);
}
.foot-newsletter h3 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800; letter-spacing: -0.025em;
  margin: 8px 0; color: var(--ink);
}
.foot-newsletter p { color: var(--ink-soft); margin: 0 0 24px; font-size: 14.5px; }
.foot-form {
  display: flex; gap: 8px;
  max-width: 480px; margin: 0 auto;
}
.foot-form input {
  flex: 1; height: 46px; padding: 0 16px;
  border-radius: 100px; border: 1px solid var(--line-2);
  background: var(--surface); color: var(--ink);
  font-family: inherit; font-size: 14px;
}
.foot-form input:focus { outline: none; border-color: var(--accent); }
.foot-bottom {
  margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--ink-muted);
}

/* ---- sector tabs ----------------------------------------- */
.sector-tabs {
  display: flex; justify-content: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 32px;
}
.sector-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 100px;
  background: var(--surface); border: 1.5px solid var(--line);
  color: var(--ink-soft); font-size: 14px; font-weight: 500;
  cursor: pointer; transition: border-color .15s, color .15s;
}
.sector-tab svg { width: 16px; height: 16px; }
.sector-tab.active {
  border-color: var(--accent); color: var(--accent-text);
}
.sector-context {
  text-align: center;
  font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 500;
  margin-bottom: 16px;
}
.sector-question {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 700; letter-spacing: -0.015em;
  color: var(--ink); margin: 0 auto 36px;
  font-style: italic;
}
.sector-question::before { content: '“'; color: var(--ink-muted); }
.sector-question::after  { content: '”'; color: var(--ink-muted); }

/* Sector showcase product card (e.g. claim simulation panel) */
.showcase-card {
  max-width: 880px; margin: 0 auto;
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--sh-card-lg);
  overflow: hidden;
}
.showcase-head {
  background: var(--show-bg, linear-gradient(135deg, var(--accent) 0%, color-mix(in oklab, var(--accent) 60%, #ec4899) 100%));
  color: white;
  padding: 22px 28px;
  display: flex; align-items: center; gap: 16px;
}
.showcase-title {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
}
.showcase-meta { font-size: 13px; opacity: 0.85; }
.showcase-score {
  margin-left: auto;
  width: 56px; height: 56px;
  border: 3px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 15px;
  transform: rotate(-45deg);
}
.showcase-score span { transform: rotate(45deg); }
.showcase-body { padding: 24px 28px; display: flex; flex-direction: column; gap: 14px; }
.showcase-section {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px;
  border-radius: 12px;
  background: var(--show-row-bg, #f9f8fd);
  border-left: 3px solid var(--show-row-color, var(--accent));
}
.showcase-section.red    { --show-row-bg: #fef2f2; --show-row-color: var(--c-red); }
.showcase-section.amber  { --show-row-bg: #fffbeb; --show-row-color: var(--c-amber); }
.showcase-section.green  { --show-row-bg: #ecfdf5; --show-row-color: var(--c-emerald); }
.showcase-section.violet { --show-row-bg: #f3eefc; --show-row-color: var(--c-violet); }
.showcase-section h5 {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  margin: 0 0 6px; font-weight: 700;
  color: var(--show-row-color);
}
.showcase-section p {
  font-size: 14px; color: var(--ink); margin: 0; line-height: 1.5;
}

/* ---- responsive ------------------------------------------ */
@media (max-width: 1080px) {
  .modes-grid { grid-template-columns: repeat(3, 1fr); }
  .modes-grid > :nth-child(4) { grid-column: 1 / 2; }
  .modes-grid > :nth-child(5) { grid-column: 2 / 3; }
  .foot-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .nav-center { display: none; }
  .nav-right .btn:not(.btn-primary) { display: none; }
  .nav-burger { display: inline-flex; }

  .theatre-card { grid-template-columns: 1fr; gap: 24px; padding: 24px 22px; }
  .theatre-meta { left: 22px; right: 22px; top: 22px; }
  .theatre-left, .theatre-right { padding-top: 52px; }
  .theatre-left { padding-top: 0; }
  .theatre-right { padding-top: 8px; }

  .modes-grid { grid-template-columns: repeat(2, 1fr); }
  .modes-grid > :nth-child(4),
  .modes-grid > :nth-child(5) { grid-column: auto; }

  .feat-grid { grid-template-columns: 1fr; }
  .feat-grid-row-2 { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-col:first-child { grid-column: 1 / -1; }

  .expert { width: 40vw; max-width: 220px; }
}
@media (max-width: 560px) {
  .modes-grid { grid-template-columns: 1fr; }
  .nav-inner { gap: 12px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 320px; justify-content: center; }
  .stats-row { gap: 28px; }
  .foot-bottom { flex-direction: column; gap: 10px; }
  .foot-form { flex-direction: column; }
  .foot-form input { width: 100%; }
}

/* Accent presets — controlled via [data-accent] on <body>.
   Default (no attribute, or "amber") = the warm amber set in :root above. */
body[data-accent="red"] {
  --accent:      #b91c1c;
  --accent-text: #991b1b;
  --accent-soft: #fee2e2;
}
body[data-accent="burgundy"] {
  --accent:      #881337;
  --accent-text: #6b0f2c;
  --accent-soft: #fdf2f8;
}
body[data-accent="orange"] {
  --accent:      #c2410c;
  --accent-text: #9a3412;
  --accent-soft: #ffedd5;
}
