/* =========================================================
   Corroso — landing page styles · WISE palette
   Light, friendly, clear. Forest green ink (#163300),
   bright lime accent (#9FE870), clean white surfaces.
   Built on Sudsy type tokens; Sudsy color tokens are
   remapped below so inline markup recolors too.
   ========================================================= */

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

:root {
  /* ---- Wise core ---- */
  --forest:    #163300;   /* primary ink + dark panels */
  --forest-2:  #1f4a08;
  --lime:      #9FE870;   /* bright accent */
  --lime-deep: #8AD95C;   /* hover / pressed */
  --cream:     #FFFFFF;   /* page */
  --paper:     #F4F7EF;   /* alt section / inset (soft green-cream) */
  --paper-2:   #EAF0E0;

  /* accent is tweakable (fill color; text on it stays forest) */
  --accent:     var(--lime);
  --accent-rgb: 159, 232, 112;
  --accent-ink: var(--forest);

  /* ---- Remap Sudsy semantic tokens to Wise (covers inline markup) ---- */
  --fg1: #163300;
  --fg2: rgba(22, 51, 0, 0.74);
  --fg3: rgba(22, 51, 0, 0.52);
  --fg-mute: rgba(22, 51, 0, 0.40);
  --stroke-1: rgba(22, 51, 0, 0.10);
  --stroke-2: rgba(22, 51, 0, 0.15);
  --stroke-3: rgba(22, 51, 0, 0.26);
  --void: #FFFFFF;

  /* ---- Soft friendly shadows (no neon glow) ---- */
  --lift-1: 0 1px 2px rgba(22,51,0,.05), 0 2px 8px rgba(22,51,0,.05);
  --lift-2: 0 2px 6px rgba(22,51,0,.06), 0 16px 38px rgba(22,51,0,.08);
  --lift-accent: 0 8px 26px rgba(var(--accent-rgb), .45);

  --neg: #C2502E;   /* muted, friendly negative */
  --shadow-mult: 1;
  --maxw: 1200px;
  scroll-behavior: smooth;
}

html, body { margin: 0; padding: 0; background: var(--cream); }
body {
  background: var(--cream);
  color: var(--forest);
  font-family: var(--font-body);
  overflow-x: hidden;
  position: relative;
}

/* ambient — very subtle on light */
.aurora { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.aurora span { position: absolute; border-radius: 50%; filter: blur(90px); opacity: calc(.4 * var(--shadow-mult)); }
.aurora .a1 { width: 620px; height: 620px; top: -240px; left: -160px;
  background: radial-gradient(circle, rgba(var(--accent-rgb),.5), transparent 66%); }
.aurora .a2 { width: 540px; height: 540px; top: 180px; right: -200px;
  background: radial-gradient(circle, rgba(169,150,255,.28), transparent 66%); }
.aurora .a3 { display: none; }
[data-aesthetic="restrained"] .aurora { display: none; }

/* =========================================================
   Layout primitives
   ========================================================= */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
section { position: relative; z-index: 1; }
.section-pad { padding: clamp(72px, 11vh, 132px) 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--forest-2);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; border-radius: 2px; background: var(--accent);
}

h1.hero-h, h2.sec-h { font-family: var(--font-display); color: var(--forest); }
h1.hero-h { font-size: clamp(40px, 5.6vw, 76px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.02; margin: 0; }
h2.sec-h { font-size: clamp(30px, 3.8vw, 50px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.06; margin: 0; }
.sec-sub {
  font-family: var(--font-body); font-size: clamp(16px, 1.4vw, 19px);
  color: var(--fg2); line-height: 1.55; max-width: 60ch; margin: 18px 0 0;
}

/* highlighted phrase — lime highlighter behind forest text */
.t-liquid {
  color: var(--forest);
  -webkit-text-fill-color: var(--forest);
  background: linear-gradient(180deg, transparent 10%, var(--accent) 10%, var(--accent) 90%, transparent 90%);
  -webkit-background-clip: border-box; background-clip: border-box;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
  padding: 0 .14em; border-radius: 5px;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  font-family: var(--font-body); font-weight: 700; font-size: 15px; letter-spacing: .005em;
  padding: 15px 26px; border-radius: var(--r-pill); border: 1px solid transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-smooth), filter var(--dur-fast) var(--ease-smooth), background var(--dur-base), box-shadow var(--dur-base);
  position: relative;
}
.btn i { font-size: 18px; }
.btn:active { transform: scale(.97); }
.btn.primary {
  background: var(--accent); color: var(--accent-ink);
  box-shadow: var(--lift-1);
}
.btn.primary:hover { background: var(--lime-deep); transform: translateY(-1px); box-shadow: var(--lift-2); }
[data-aesthetic="restrained"] .btn.primary:hover { transform: none; box-shadow: var(--lift-1); }
.btn.ghost {
  background: var(--cream); color: var(--forest);
  border: 1px solid var(--stroke-3);
}
.btn.ghost:hover { background: var(--paper); border-color: var(--forest); }
.btn.sm { padding: 11px 18px; font-size: 13.5px; }
.btn.lg { padding: 18px 32px; font-size: 16.5px; }

/* =========================================================
   Card (was .glass) — clean white card with soft shadow
   ========================================================= */
.glass {
  border-radius: var(--r-4);
  background: var(--cream);
  border: 1px solid var(--stroke-2);
  box-shadow: var(--lift-2);
  position: relative; overflow: hidden;
  transition: transform var(--dur-base) var(--ease-smooth), box-shadow var(--dur-base) var(--ease-smooth);
}
[data-aesthetic="restrained"] .glass { box-shadow: none; border-color: var(--stroke-2); }
.glass.glow { border-color: rgba(var(--accent-rgb), .9); box-shadow: var(--lift-2); }

.badge {
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 6px; border: 1px solid transparent;
}
.badge i { font-size: 13px; }
.badge.accent { background: var(--accent); color: var(--accent-ink); }

/* =========================================================
   Nav
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid var(--stroke-1);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand .wordmark { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.03em; color: var(--forest); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-family: var(--font-body); font-size: 14.5px; font-weight: 500; color: var(--fg2); text-decoration: none; transition: color var(--dur-fast); }
.nav-links a:hover { color: var(--forest); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
@media (max-width: 860px) { .nav-links { display: none; } }

/* =========================================================
   Hero
   ========================================================= */
.hero { padding: clamp(56px, 9vh, 104px) 0 clamp(60px, 8vh, 96px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px 7px 9px; border-radius: var(--r-pill);
  background: var(--paper); border: 1px solid var(--stroke-2);
  font-family: var(--font-body); font-size: 13px; color: var(--fg2); font-weight: 500;
}
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); border: 1.5px solid var(--forest); }
.hero-h { margin-top: 24px; }
.hero-lead { font-family: var(--font-body); font-size: clamp(17px, 1.5vw, 20px); color: var(--fg2); line-height: 1.55; max-width: 52ch; margin: 22px 0 0; }
.hero-cta { display: flex; align-items: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust { margin-top: 26px; display: flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 13.5px; color: var(--fg3); }
.hero-trust i { color: var(--forest); font-size: 17px; }

.connectors { margin-top: 54px; display: flex; align-items: center; gap: 14px 26px; flex-wrap: wrap; }
.connectors .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--fg-mute); }
.connectors .src { font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--fg2); display: inline-flex; align-items: center; gap: 7px; }
.connectors .src i { font-size: 16px; color: var(--forest); }

[data-hero="mock"] .hero-typed { display: none; }
[data-hero="typed"] .hero-mockview { display: none; }
[data-hero="typed"] .hero-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
[data-hero="typed"] .hero-lead { margin-left: auto; margin-right: auto; }
[data-hero="typed"] .hero-cta { justify-content: center; }
[data-hero="typed"] .eyebrow { justify-content: center; }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  [data-hero="mock"] .hero-mockview { margin-top: 8px; }
}

/* =========================================================
   Product mock
   ========================================================= */
.app {
  border-radius: var(--r-4);
  background: var(--cream);
  border: 1px solid var(--stroke-2);
  box-shadow: var(--lift-2);
  overflow: hidden;
}
.app-bar { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-bottom: 1px solid var(--stroke-1); background: var(--paper); }
.app-dots { display: flex; gap: 7px; }
.app-dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--stroke-3); }
.app-bar .ws { font-family: var(--font-body); font-size: 12.5px; color: var(--fg3); font-weight: 500; display: flex; align-items: center; gap: 7px; }
.app-bar .ws b { color: var(--fg2); font-weight: 600; }
.app-bar .ws i { color: var(--forest); }
.app-bar .live { margin-left: auto; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--forest); display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.app-bar .live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); border: 1px solid var(--forest); }
.app-body { display: grid; grid-template-columns: 1.5fr 1fr; gap: 0; }
.doc { padding: 22px 24px; border-right: 1px solid var(--stroke-1); }
.doc .kicker { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-mute); margin-bottom: 10px; }
.doc h4 { font-family: var(--font-display); font-size: 21px; font-weight: 600; letter-spacing: -0.02em; color: var(--forest); margin: 0 0 14px; }
.doc p { font-family: var(--font-body); font-size: 14.5px; line-height: 1.72; color: var(--fg2); margin: 0; }

/* citation chip */
.cite {
  color: var(--forest); font-weight: 600; cursor: pointer;
  background: rgba(var(--accent-rgb), .35);
  border-bottom: 2px solid var(--accent);
  padding: 0 3px 1px; border-radius: 3px; white-space: nowrap;
  transition: background var(--dur-fast);
}
.cite sup { font-family: var(--font-mono); font-size: 9px; margin-left: 1px; opacity: .7; }
.cite:hover { background: var(--accent); }

.evidence { padding: 20px 18px; background: var(--paper); }
.evidence .eh { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg3); margin-bottom: 14px; display: flex; align-items: center; gap: 7px; }
.evidence .eh i { color: var(--forest); font-size: 14px; }
.ev-item { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-top: 1px solid var(--stroke-1); }
.ev-item:first-of-type { border-top: none; }
.ev-ic { flex: none; width: 26px; height: 26px; border-radius: var(--r-1); background: var(--cream); border: 1px solid var(--stroke-2); display: flex; align-items: center; justify-content: center; color: var(--forest); font-size: 14px; }
.ev-tx { min-width: 0; }
.ev-tx .t { font-family: var(--font-body); font-size: 12.5px; font-weight: 600; color: var(--forest); display: flex; align-items: center; gap: 6px; }
.ev-tx .t .chk { color: var(--forest); font-size: 14px; }
.ev-tx .s { font-family: var(--font-body); font-size: 11px; color: var(--fg3); margin-top: 2px; }
.ev-foot { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--stroke-1); font-family: var(--font-mono); font-size: 10.5px; color: var(--fg3); letter-spacing: .02em; }
.ev-foot b { color: var(--forest); }
@media (max-width: 560px) { .app-body { grid-template-columns: 1fr; } .doc { border-right: none; border-bottom: 1px solid var(--stroke-1); } }

.hero-typed { width: 100%; max-width: 880px; margin: 40px auto 0; }

/* =========================================================
   Section header
   ========================================================= */
.sec-head { max-width: 760px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head.center .sec-sub { margin-left: auto; margin-right: auto; }
.sec-head .sec-h { margin-top: 18px; }

/* =========================================================
   Problem — churn stats
   ========================================================= */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 52px; align-items: stretch; }
.stat-card { padding: 34px; display: flex; flex-direction: column; gap: 6px; }
.stat-card .cap { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--fg3); }
.stat-card .big { font-family: var(--font-display); font-weight: 700; font-size: clamp(48px, 6vw, 76px); line-height: 1; letter-spacing: -0.03em; margin: 10px 0 4px; }
.stat-card .desc { font-family: var(--font-body); font-size: 14.5px; color: var(--fg2); line-height: 1.5; }
.stat-card .meter { height: 9px; border-radius: var(--r-pill); background: var(--paper-2); overflow: hidden; margin-top: 18px; }
.stat-card .meter i { display: block; height: 100%; border-radius: var(--r-pill); }
/* bad = muted, white card */
.stat-card.bad { background: var(--cream); }
.stat-card.bad .cap { color: var(--fg-mute); }
.stat-card.bad .big { color: var(--fg-mute); }
.stat-card.bad .meter i { width: 23%; background: rgba(22,51,0,.28); }
/* good = bright lime panel */
.stat-card.good { background: var(--accent); border-color: transparent; }
.stat-card.good .cap { color: rgba(22,51,0,.6); }
.stat-card.good .big { color: var(--forest); }
.stat-card.good .desc { color: rgba(22,51,0,.78); }
.stat-card.good .meter { background: rgba(22,51,0,.14); }
.stat-card.good .meter i { width: 70%; background: var(--forest); }
.problem-note { margin-top: 26px; font-family: var(--font-body); font-size: 14px; color: var(--fg3); display: flex; align-items: center; gap: 9px; }
.problem-note i { color: var(--forest); }
@media (max-width: 720px) { .problem-grid { grid-template-columns: 1fr; } }

/* =========================================================
   How it works
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.step { padding: 30px; display: flex; flex-direction: column; gap: 14px; }
.step .num { font-family: var(--font-mono); font-weight: 700; font-size: 12px; color: var(--forest-2); letter-spacing: .08em; }
.step .ic { width: 54px; height: 54px; border-radius: var(--r-3); background: var(--accent); color: var(--forest); display: flex; align-items: center; justify-content: center; font-size: 26px; }
.step h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: -0.02em; color: var(--forest); margin: 0; }
.step p { font-family: var(--font-body); font-size: 14.5px; color: var(--fg2); line-height: 1.55; margin: 0; }
.step .conn { font-family: var(--font-mono); font-size: 11.5px; color: var(--fg3); display: inline-flex; align-items: center; gap: 7px; margin-top: 2px; flex-wrap: wrap; }
.step .conn i { color: var(--forest); }
.step .conn b { color: var(--fg2); font-weight: 600; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* =========================================================
   Wedge — guess vs cited
   ========================================================= */
.wedge-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 22px; margin-top: 52px; align-items: stretch; }
.guess, .cited { padding: 30px 32px; display: flex; flex-direction: column; }
.wedge-tag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 7px; margin-bottom: 16px; }
.guess { background: var(--paper); border: 1px dashed var(--stroke-3); border-radius: var(--r-4); }
.guess .wedge-tag { color: var(--fg-mute); }
.guess .gx { font-family: var(--font-display); font-size: clamp(20px, 2vw, 25px); font-weight: 500; color: var(--fg3); line-height: 1.42; letter-spacing: -0.01em; }
.guess .gnote { margin-top: auto; padding-top: 20px; font-family: var(--font-body); font-size: 13px; color: var(--fg-mute); display: flex; align-items: center; gap: 8px; }
.cited { background: var(--cream); border: 1px solid rgba(var(--accent-rgb), .9); border-radius: var(--r-4); box-shadow: var(--lift-2); }
.cited .wedge-tag { color: var(--forest); }
.cited .cx { font-family: var(--font-display); font-size: clamp(20px, 2vw, 25px); font-weight: 500; color: var(--forest); line-height: 1.46; letter-spacing: -0.01em; }
.cited .crow { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--stroke-1); display: flex; flex-wrap: wrap; gap: 8px; }
.src-chip { font-family: var(--font-mono); font-size: 11px; color: var(--forest); padding: 6px 11px; border-radius: var(--r-pill); background: var(--paper); border: 1px solid var(--stroke-2); display: inline-flex; align-items: center; gap: 6px; }
.src-chip i { font-size: 13px; color: var(--forest); }
@media (max-width: 820px) { .wedge-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Trust model
   ========================================================= */
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 52px; }
.rule { padding: 28px 30px; display: flex; gap: 18px; align-items: flex-start; }
.rule .ic { flex: none; width: 48px; height: 48px; border-radius: var(--r-2); background: var(--paper); border: 1px solid var(--stroke-2); display: flex; align-items: center; justify-content: center; font-size: 23px; color: var(--forest); }
.rule h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: -0.015em; color: var(--forest); margin: 0 0 6px; }
.rule p { font-family: var(--font-body); font-size: 14px; color: var(--fg2); line-height: 1.55; margin: 0; }
.rule .no { font-family: var(--font-mono); font-size: 12px; color: var(--neg); margin-top: 8px; display: inline-block; }
@media (max-width: 720px) { .trust-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Comparison table
   ========================================================= */
.compare { margin-top: 52px; border-radius: var(--r-4); overflow: hidden; border: 1px solid var(--stroke-2); background: var(--cream); box-shadow: var(--lift-2); }
[data-aesthetic="restrained"] .compare { box-shadow: none; }
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 18px 20px; text-align: left; vertical-align: middle; }
.compare thead th { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--fg3); border-bottom: 1px solid var(--stroke-2); }
.compare thead th:not(:first-child) { text-align: center; }
.compare thead th.us { color: var(--forest); background: rgba(var(--accent-rgb), .22); }
.compare thead th.us .ut { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--forest); display: inline-flex; align-items: center; gap: 8px; justify-content: center; }
.compare tbody td { border-bottom: 1px solid var(--stroke-1); }
.compare tbody tr:last-child td { border-bottom: none; }
.compare td.feat { font-family: var(--font-body); font-size: 14.5px; color: var(--forest); font-weight: 500; }
.compare td.col { font-family: var(--font-body); font-size: 13.5px; color: var(--fg3); text-align: center; }
.compare td.col.us { background: rgba(var(--accent-rgb), .1); }
.compare td.col .yes { color: var(--forest); font-size: 21px; }
.compare td.col .no { color: var(--fg-mute); font-size: 18px; }
.compare td.col .partial { color: var(--neg); font-size: 13px; }
.compare th.us, .compare td.col.us { border-left: 1px solid rgba(var(--accent-rgb), .55); border-right: 1px solid rgba(var(--accent-rgb), .55); }
@media (max-width: 720px) {
  .compare th, .compare td { padding: 13px 10px; }
  .compare td.feat { font-size: 12.5px; }
}

/* =========================================================
   Pricing
   ========================================================= */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 52px; }
.plan { padding: 38px 36px; display: flex; flex-direction: column; }
.plan.feat { border: 2px solid var(--accent); }
.plan .pname { font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--fg3); display: flex; align-items: center; gap: 10px; }
.plan.feat .pname { color: var(--forest); }
.plan.feat .pname::after { content: "recommended"; font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: .06em; padding: 4px 9px; border-radius: var(--r-pill); background: var(--accent); color: var(--forest); }
.plan .price { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.03em; font-size: clamp(44px, 5vw, 60px); color: var(--forest); margin: 16px 0 2px; line-height: 1; }
.plan .price span { font-family: var(--font-body); font-size: 17px; font-weight: 500; color: var(--fg3); letter-spacing: 0; }
.plan .ptag { font-family: var(--font-body); font-size: 14px; color: var(--fg2); }
.plan ul { list-style: none; padding: 0; margin: 26px 0 30px; display: flex; flex-direction: column; gap: 13px; }
.plan li { font-family: var(--font-body); font-size: 14.5px; color: var(--fg2); display: flex; align-items: flex-start; gap: 11px; line-height: 1.45; }
.plan li i { color: var(--forest); font-size: 18px; flex: none; margin-top: 1px; }
.plan .btn { margin-top: auto; width: 100%; }
.plan-note { grid-column: 1 / -1; margin-top: 8px; text-align: center; font-family: var(--font-body); font-size: 13.5px; color: var(--fg3); }
.plan-note b { color: var(--forest); font-weight: 600; }
@media (max-width: 720px) { .price-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Metrics
   ========================================================= */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 52px; }
.metric { padding: 28px 26px; text-align: left; }
.metric .mv { font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 3.4vw, 46px); color: var(--forest); line-height: 1; letter-spacing: -0.03em; }
.metric .ml { font-family: var(--font-body); font-size: 13.5px; color: var(--fg2); margin-top: 12px; line-height: 1.45; }
@media (max-width: 820px) { .metrics { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .metrics { grid-template-columns: 1fr; } }

/* =========================================================
   Final CTA — forest-green panel
   ========================================================= */
.finale { text-align: center; }
.finale-card {
  padding: clamp(48px, 7vw, 84px) 40px; border-radius: var(--r-4);
  background: var(--forest); border: 1px solid var(--forest);
  box-shadow: var(--lift-2); position: relative; overflow: hidden;
}
.finale-card::after {
  content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%;
  right: -160px; bottom: -240px; background: radial-gradient(circle, rgba(var(--accent-rgb),.22), transparent 70%);
  pointer-events: none;
}
.finale-card .seats { font-family: var(--font-mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 9px; position: relative; }
.finale-card .seats i { color: var(--accent); }
.finale-card h2 { margin: 18px auto 0; max-width: 16ch; color: #FFFFFF; position: relative; }
.finale-card p { font-family: var(--font-body); font-size: 17px; color: rgba(255,255,255,.78); max-width: 52ch; margin: 18px auto 0; line-height: 1.55; position: relative; }
.finale-card .hero-cta { justify-content: center; margin-top: 34px; position: relative; }
.finale-card .btn.ghost { background: transparent; color: #FFFFFF; border-color: rgba(255,255,255,.35); }
.finale-card .btn.ghost:hover { background: rgba(255,255,255,.08); border-color: #FFFFFF; }

/* =========================================================
   Footer
   ========================================================= */
.footer { border-top: 1px solid var(--stroke-1); padding: 48px 0 56px; margin-top: clamp(56px,8vh,104px); position: relative; z-index: 1; background: var(--paper); }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer .brand .wordmark { font-size: 20px; }
.footer-tag { font-family: var(--font-body); font-size: 13.5px; color: var(--fg3); margin-top: 12px; max-width: 34ch; line-height: 1.5; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h5 { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-mute); margin: 0 0 14px; }
.footer-col a { display: block; font-family: var(--font-body); font-size: 14px; color: var(--fg2); text-decoration: none; margin-bottom: 10px; transition: color var(--dur-fast); }
.footer-col a:hover { color: var(--forest); }
.footer-base { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--stroke-1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: var(--font-body); font-size: 12.5px; color: var(--fg-mute); }

/* reduced motion */
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; } html { scroll-behavior: auto; } }

/* reveal-on-scroll */
.js-anim .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease-smooth), transform .6s var(--ease-smooth); }
.reveal.in { opacity: 1; transform: none; }
[data-aesthetic="restrained"] .js-anim .reveal { transition: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* logo mark */
.logo-orb { width: 32px; height: 32px; flex: none; }
