/* ═══════════════════════════════════════════════════════════
   WEFORADS — QUIET PREMIUM
   ═══════════════════════════════════════════════════════════ */

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

:root {
  /* canvas */
  --bg: #050b14;
  --bg-elev: #0a1220;
  --bg-elev-2: #0f1a2c;

  /* text (on dark) — low-saturation off-whites */
  --fg: oklch(0.97 0.008 220);
  --fg-2: oklch(0.82 0.012 220);
  --fg-3: oklch(0.62 0.015 220);
  --fg-4: oklch(0.46 0.018 220);
  --fg-5: oklch(0.32 0.018 220);

  /* hairlines */
  --line: oklch(0.25 0.02 220 / 0.55);
  --line-2: oklch(0.28 0.025 220 / 0.35);
  --line-strong: oklch(0.40 0.03 220 / 0.6);

  /* accent (logo teal, desaturated) */
  --acc: oklch(0.82 0.12 180);
  --acc-hover: oklch(0.88 0.13 180);
  --acc-dim: oklch(0.82 0.12 180 / 0.14);
  --acc-line: oklch(0.82 0.12 180 / 0.32);
  --acc-rgb: 94, 234, 212;

  /* type */
  --f-serif: 'Instrument Serif', 'Times New Roman', serif;
  --f-sans: 'Geist', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --f-mono: 'Geist Mono', ui-monospace, 'SF Mono', monospace;

  /* spacing (8pt) */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  --radius: 10px;
  --radius-lg: 14px;

  --pad-x: clamp(20px, 5vw, 80px);
  --max: 1280px;
}

/* accent variants */
body[data-accent="amber"] {
  --acc: oklch(0.78 0.14 70);
  --acc-hover: oklch(0.84 0.15 70);
  --acc-dim: oklch(0.78 0.14 70 / 0.14);
  --acc-line: oklch(0.78 0.14 70 / 0.32);
  --acc-rgb: 244, 168, 78;
}
body[data-accent="neutral"] {
  --acc: oklch(0.94 0.005 220);
  --acc-hover: oklch(0.98 0.005 220);
  --acc-dim: oklch(0.94 0.005 220 / 0.12);
  --acc-line: oklch(0.94 0.005 220 / 0.32);
  --acc-rgb: 226, 232, 240;
}

/* direction variants */
body[data-direction="bold"] {
  --bg: #020508;
  --bg-elev: #0a1220;
  --line: oklch(0.30 0.03 220 / 0.6);
}
body[data-direction="editorial"] {
  --bg: #0b0f14;
  --bg-elev: #11161d;
}

html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }

.mono { font-family: var(--f-mono); font-feature-settings: 'ss01'; letter-spacing: -0.01em; }
.accent { color: var(--acc); }
.dim { color: var(--fg-4); font-weight: 400; }

/* ═══ NAV ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad-x);
  backdrop-filter: blur(12px);
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, padding .3s;
}
.nav.stuck { border-bottom-color: var(--line); padding-top: 14px; padding-bottom: 14px; }

.nav-logo {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-sans);
  font-size: 16px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-mark { width: 26px; height: 26px; color: var(--acc); object-fit: contain; }
.nav-wordmark { height: 34px; width: auto; display: block; object-fit: contain; }

.nav-links {
  display: flex; gap: 4px; list-style: none; padding: 0; margin: 0;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 13.5px; font-weight: 450;
  color: var(--fg-2);
  border-radius: 8px;
  transition: color .18s, background .18s;
}
.nav-links a:hover { color: var(--fg); background: color-mix(in oklab, var(--fg) 5%, transparent); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-login { font-size: 13.5px; color: var(--fg-2); transition: color .18s; }
.nav-login:hover { color: var(--fg); }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 20px;
  font-family: var(--f-sans);
  font-size: 13.5px; font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s, transform .12s;
}
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-primary {
  background: var(--acc); color: #041817;
  font-weight: 600;
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 10px 30px -10px rgba(var(--acc-rgb), 0.35);
}
.btn-primary:hover { background: var(--acc-hover); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--fg);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: color-mix(in oklab, var(--fg) 4%, transparent); border-color: var(--fg-4); }

.btn-arrow { display: inline-block; transition: transform .2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  padding: 148px var(--pad-x) 96px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 85% 25%, rgba(var(--acc-rgb), 0.06), transparent 60%),
    radial-gradient(ellipse 90% 60% at 10% 85%, rgba(var(--acc-rgb), 0.03), transparent 65%);
  pointer-events: none;
}
/* subtle grid — only in 'bold' direction */
body[data-direction="bold"] .hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent 75%);
}

.hero-inner {
  position: relative;
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 760px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
}

/* eyebrow pill */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 10px;
  font-size: 12.5px; font-weight: 450; letter-spacing: -0.005em;
  color: var(--fg-2);
  background: color-mix(in oklab, var(--fg) 4%, transparent);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 32px;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--acc);
  box-shadow: 0 0 0 3px rgba(var(--acc-rgb), 0.16);
  animation: eyePulse 2s ease-in-out infinite;
}
@keyframes eyePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }

/* headline */
.hero-title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: var(--fg);
}
.hero-title em {
  font-style: italic;
  color: var(--fg);
}
body[data-heading="sans"] .hero-title,
body[data-heading="sans"] .section-title {
  font-family: var(--f-sans);
  font-weight: 500;
  letter-spacing: -0.035em;
}
body[data-heading="sans"] .hero-title em,
body[data-heading="sans"] .section-title em {
  font-style: normal; font-weight: 400; color: var(--fg-2);
}
body[data-direction="bold"] .hero-title {
  font-size: clamp(56px, 8vw, 104px);
  font-weight: 500;
  letter-spacing: -0.04em;
  font-family: var(--f-sans);
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-3);
  max-width: 520px;
  line-height: 1.6;
  margin: 0 0 36px;
}

.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-proof {
  display: flex; align-items: center; gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 460px;
}
.proof-avatars { display: flex; }
.proof-av {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, color-mix(in oklab, var(--acc) 20%, var(--bg-elev)), var(--bg-elev));
  border: 2px solid var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 600; letter-spacing: 0;
  color: var(--fg-2);
  margin-left: -8px;
}
.proof-av:first-child { margin-left: 0; }
.proof-text { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--fg-3); }
.proof-text strong { color: var(--fg); font-weight: 500; }
.proof-stars { display: inline-flex; gap: 1px; color: var(--acc); }

/* ═══ HERO DASHBOARD — REFINED ═══ */
.hero-right { display: flex; flex-direction: column; gap: 14px; }

.dash {
  position: relative;
  background: linear-gradient(180deg,
    color-mix(in oklab, var(--bg-elev) 92%, transparent),
    color-mix(in oklab, var(--bg) 96%, transparent));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 1px 0 color-mix(in oklab, var(--fg) 5%, transparent) inset,
    0 40px 80px -30px rgba(0,0,0,0.5),
    0 0 0 1px color-mix(in oklab, var(--fg) 2%, transparent);
}

.dash-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in oklab, var(--bg) 40%, transparent);
}
.dash-head-left { display: flex; align-items: center; gap: 9px; }
.dash-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--acc);
  box-shadow: 0 0 0 4px rgba(var(--acc-rgb), 0.15), 0 0 10px var(--acc);
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.dash-label {
  font-size: 11.5px; font-weight: 500;
  color: var(--fg-2);
  letter-spacing: -0.005em;
}
.dash-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--fg-4);
}
.dash-sep { color: var(--fg-5); }

/* lanes */
.dash-lanes {
  padding: 12px 12px 16px;
  display: flex; flex-direction: column; gap: 3px;
}
.lane {
  display: grid;
  grid-template-columns: 28px 108px 1fr 64px;
  align-items: center; gap: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background .3s ease;
}
.lane:hover { background: color-mix(in oklab, var(--fg) 3%, transparent); }
.lane.winner {
  background: color-mix(in oklab, var(--acc) 10%, transparent);
}

.lane-avatar {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: -0.03em;
  font-family: var(--f-sans);
}
.lane-name {
  font-size: 13px; font-weight: 450;
  color: var(--fg-2);
  letter-spacing: -0.005em;
}
.lane.winner .lane-name { color: var(--fg); font-weight: 500; }

.lane-bar-track {
  position: relative;
  height: 6px;
  background: color-mix(in oklab, var(--fg) 5%, transparent);
  border-radius: 3px;
  overflow: hidden;
}
.lane-bar {
  position: absolute; inset: 0 auto 0 0;
  width: 2%;
  background: var(--lane-color, var(--fg-4));
  border-radius: 3px;
  transition: width .9s cubic-bezier(.16, 1, .3, 1);
}
.lane.winner .lane-bar {
  background: linear-gradient(90deg, var(--lane-color, var(--acc)), var(--acc));
  box-shadow: 0 0 12px rgba(var(--acc-rgb), 0.35);
}

.lane-val {
  font-family: var(--f-mono);
  font-size: 12.5px;
  color: var(--fg-3);
  text-align: right;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.lane.winner .lane-val { color: var(--fg); font-weight: 500; }

/* winner card */
.dash-winner {
  margin: 4px 12px 12px;
  padding: 14px 16px;
  background: color-mix(in oklab, var(--acc) 8%, transparent);
  border: 1px solid var(--acc-line);
  border-radius: 10px;
  opacity: 0; transform: translateY(4px);
  transition: opacity .4s, transform .4s;
}
.dash-winner.show { opacity: 1; transform: translateY(0); }
.dash-winner-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.dash-winner-label {
  font-size: 10.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--fg-4);
  margin-bottom: 4px;
}
.dash-winner-val {
  font-family: var(--f-mono);
  font-size: 26px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.dash-winner-unit { color: var(--fg-4); font-size: 13px; font-weight: 400; margin-left: 3px; }
.dash-winner-bidder { display: flex; align-items: center; gap: 10px; }
.dash-winner-avatar {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #4285F4;
  color: #fff;
  font-size: 13px; font-weight: 700;
  transition: background .3s;
}
.dash-winner-name { font-size: 13.5px; font-weight: 500; color: var(--fg); }
.dash-winner-lift { font-size: 11.5px; color: var(--acc); font-family: var(--f-mono); margin-top: 2px; }

/* foot stats */
.dash-foot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.dash-foot-item {
  padding: 14px 16px;
  border-right: 1px solid var(--line);
}
.dash-foot-item:last-child { border-right: none; }
.dash-foot-label {
  font-size: 10.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--fg-4);
  margin-bottom: 6px;
}
.dash-foot-val {
  font-family: var(--f-mono);
  font-size: 17px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.dash-caption {
  font-size: 12.5px;
  color: var(--fg-4);
  line-height: 1.6;
  padding: 0 4px;
}
.dash-caption .mono { color: var(--fg-3); margin-right: 8px; }

/* ═══ MARQUEE ═══ */
.marquee {
  padding: 48px 0 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee-label {
  text-align: center;
  font-size: 11.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--fg-4);
  margin-bottom: 28px;
}
.marquee-track {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-inner {
  display: inline-flex; align-items: center; gap: 36px;
  padding-right: 36px;
  animation: mqScroll 42s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}
@keyframes mqScroll { to { transform: translateX(-100%); } }
.mq-item {
  font-family: var(--f-sans);
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg-3);
  transition: color .2s;
}
.mq-item:hover { color: var(--fg); }
.mq-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--fg-5); flex-shrink: 0; }

/* ═══ SECTION BASE ═══ */
.section {
  position: relative;
  padding: 128px var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.section-head { margin-bottom: 72px; max-width: 700px; }
.section-eyebrow {
  display: inline-block;
  font-size: 11.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--acc);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(40px, 4.8vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}
.section-title em { font-style: italic; color: var(--fg-3); }
.section-sub {
  font-size: 17px;
  color: var(--fg-3);
  max-width: 620px;
  line-height: 1.6;
  margin: 0;
}

/* ═══ SOLUTIONS ═══ */
.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .sol-grid { grid-template-columns: 1fr; } }

.sol-card {
  position: relative;
  padding: 40px 32px 36px;
  background: var(--bg);
  display: flex; flex-direction: column;
  min-height: 320px;
  overflow: hidden;
  transition: background .3s;
}
.sol-card:hover { background: var(--bg-elev); }
.sol-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--acc), transparent);
  transform: scaleX(0);
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.sol-card:hover::after { transform: scaleX(1); }

.sol-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: color-mix(in oklab, var(--acc) 10%, transparent);
  border: 1px solid var(--acc-line);
  color: var(--acc);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
body[data-icons="emoji"] .sol-icon { background: none; border: none; font-size: 26px; }
.sol-index {
  font-family: var(--f-mono);
  position: absolute; top: 24px; right: 28px;
  font-size: 11px; color: var(--fg-5);
}
.sol-title {
  font-family: var(--f-sans);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--fg);
}
.sol-desc {
  font-size: 14.5px;
  color: var(--fg-3);
  line-height: 1.6;
  margin: 0 0 24px;
  flex-grow: 1;
}
.sol-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500;
  color: var(--acc);
}
.sol-link .arr { transition: transform .2s; }
.sol-card:hover .sol-link .arr { transform: translateX(3px); }

.sol-mini-metric {
  display: flex; align-items: baseline; gap: 6px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.sol-mini-val {
  font-family: var(--f-mono);
  font-size: 22px; font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.sol-mini-label { font-size: 12px; color: var(--fg-4); }

/* ═══ PROCESS ═══ */
.proc-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 960px) { .proc-layout { grid-template-columns: 1fr; } }

.proc-steps { display: flex; flex-direction: column; }
.proc-step {
  position: relative;
  padding: 24px 0 24px 56px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.proc-step:last-child { border-bottom: 1px solid var(--line); }
.proc-num {
  position: absolute;
  left: 0; top: 28px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--acc);
  font-weight: 500;
}
.proc-title {
  font-family: var(--f-sans);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.proc-desc { font-size: 14px; color: var(--fg-3); margin: 0; line-height: 1.55; }
.proc-time {
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--fg-4);
  padding: 4px 10px;
  background: color-mix(in oklab, var(--fg) 4%, transparent);
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
}

.proc-visual {
  position: sticky; top: 100px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-height: 360px;
}
.proc-visual-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--fg-4); margin-bottom: 24px;
}
.proc-flow {
  display: grid; grid-template-rows: repeat(4, 1fr);
  gap: 10px;
}
.flow-node {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color .3s, background .3s;
}
.flow-node.active {
  border-color: var(--acc-line);
  background: color-mix(in oklab, var(--acc) 6%, var(--bg));
}
.flow-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--fg-5);
  flex-shrink: 0;
}
.flow-node.active .flow-dot { background: var(--acc); box-shadow: 0 0 0 4px rgba(var(--acc-rgb), 0.15); }
.flow-label { font-size: 13.5px; font-weight: 450; color: var(--fg-2); flex-grow: 1; }
.flow-node.active .flow-label { color: var(--fg); }
.flow-status {
  font-family: var(--f-mono); font-size: 11px; color: var(--fg-4);
}
.flow-node.active .flow-status { color: var(--acc); }

/* ═══ IMPACT / BIG STATS ═══ */
.impact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  padding: 96px var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 800px) { .impact { grid-template-columns: 1fr; gap: 40px; } }

.impact-item { }
.impact-val {
  font-family: var(--f-serif);
  font-size: clamp(72px, 9vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--fg);
  margin: 0;
  font-weight: 400;
}
body[data-heading="sans"] .impact-val { font-family: var(--f-sans); font-weight: 400; letter-spacing: -0.04em; }
.impact-val sup { font-size: 0.4em; vertical-align: 0.7em; color: var(--fg-3); font-weight: 400; margin-right: 2px; }
.impact-val .unit { font-size: 0.35em; color: var(--fg-3); font-weight: 400; margin-left: 4px; letter-spacing: -0.02em; }

.impact-label {
  font-size: 13.5px; font-weight: 500;
  color: var(--fg);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 10px;
}
.impact-label::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--acc);
}
.impact-desc {
  font-size: 13px;
  color: var(--fg-3);
  margin-top: 8px;
  line-height: 1.55;
}

/* ═══ TESTIMONIAL — editorial ═══ */
.testimonial {
  position: relative;
  padding: 128px var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .testimonial { grid-template-columns: 1fr; gap: 48px; } }

.testi-left { }
.testi-label {
  font-size: 11.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--acc);
  margin-bottom: 20px;
}
.testi-stars {
  display: inline-flex; gap: 2px; color: var(--acc);
  margin-bottom: 20px;
}
.testi-author {
  display: flex; align-items: center; gap: 14px;
  margin-top: 32px;
}
.testi-av {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, color-mix(in oklab, var(--acc) 20%, var(--bg-elev)), var(--bg-elev));
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
  color: var(--fg-2);
}
.testi-name { font-size: 14px; font-weight: 500; }
.testi-role { font-size: 12.5px; color: var(--fg-4); margin-top: 2px; }

.testi-right { }
.testi-quote {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 0;
}
body[data-heading="sans"] .testi-quote {
  font-family: var(--f-sans); font-weight: 400; letter-spacing: -0.025em;
}
.testi-quote em { font-style: italic; color: var(--acc); }

.testi-nav {
  display: flex; gap: 10px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  align-items: center; justify-content: space-between;
}
.testi-nav-dots { display: flex; gap: 6px; }
.testi-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--fg-5); border: none; cursor: pointer; transition: background .2s, width .2s; }
.testi-dot.active { background: var(--acc); width: 20px; border-radius: 3px; }
.testi-arrows { display: flex; gap: 6px; }
.testi-arr {
  width: 36px; height: 36px; border-radius: 50%;
  background: transparent; border: 1px solid var(--line);
  color: var(--fg-2); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: color .2s, border-color .2s;
}
.testi-arr:hover { color: var(--fg); border-color: var(--fg-4); }

/* ═══ WHY ═══ */
.why {
  padding: 128px var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  padding: 32px 28px;
  background: var(--bg);
  transition: background .3s;
}
.why-card:hover { background: var(--bg-elev); }
.why-icon {
  width: 34px; height: 34px;
  color: var(--acc);
  margin-bottom: 24px;
}
body[data-icons="emoji"] .why-icon { font-size: 28px; width: auto; }
.why-title {
  font-family: var(--f-sans);
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.why-desc { font-size: 13.5px; color: var(--fg-3); margin: 0; line-height: 1.6; }

/* ═══ FAQ ═══ */
.faq {
  max-width: 820px;
  margin: 0 auto;
  padding: 128px var(--pad-x);
}
.faq-head { text-align: center; margin-bottom: 56px; }
.faq-head .section-title { margin-left: auto; margin-right: auto; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  padding: 24px 0;
  background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: var(--fg);
  font-family: var(--f-sans);
  font-size: 16px; font-weight: 500;
  letter-spacing: -0.01em;
  text-align: left;
  transition: color .2s;
}
.faq-q:hover { color: var(--acc); }
.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 12px; height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .3s; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 0 28px; font-size: 14.5px; color: var(--fg-3); line-height: 1.65; max-width: 680px; }

/* ═══ CTA ═══ */
.cta {
  position: relative;
  padding: 128px var(--pad-x);
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 50%, rgba(var(--acc-rgb), 0.07), transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  max-width: 680px; margin: 0 auto;
}
.cta-eyebrow {
  display: inline-block;
  font-size: 11.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--acc);
  margin-bottom: 20px;
}
.cta-title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}
body[data-heading="sans"] .cta-title { font-family: var(--f-sans); font-weight: 500; letter-spacing: -0.04em; }
.cta-title em { font-style: italic; color: var(--acc); }
.cta-sub {
  font-size: 17px;
  color: var(--fg-3);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.cta-buttons {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
}

/* ═══ FOOTER ═══ */
.footer {
  border-top: 1px solid var(--line);
  padding: 64px var(--pad-x) 40px;
  max-width: var(--max); margin: 0 auto;
}
.ft-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 800px) { .ft-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
.ft-brand { font-size: 13.5px; color: var(--fg-3); line-height: 1.6; max-width: 320px; }
.ft-brand-logo { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px; color: var(--fg); font-weight: 600; }
.ft-brand-logo svg { color: var(--acc); }
.ft-brand-addr { margin-top: 14px; font-size: 12px; color: var(--fg-4); line-height: 1.7; }
.ft-brand-addr strong { color: var(--fg-2); font-weight: 500; }

.ft-col h6 {
  font-size: 11.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--fg-4);
  margin: 0 0 16px;
}
.ft-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ft-col a { font-size: 13.5px; color: var(--fg-2); transition: color .18s; }
.ft-col a:hover { color: var(--fg); }

.ft-bot {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: var(--fg-4);
  flex-wrap: wrap; gap: 16px;
}
.ft-soc { display: flex; gap: 10px; }
.ft-soc a {
  width: 32px; height: 32px; border-radius: 8px;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg-3);
  transition: color .2s, border-color .2s;
}
.ft-soc a:hover { color: var(--acc); border-color: var(--acc-line); }

/* ═══ TWEAKS PANEL ═══ */
.tweaks-toggle {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  color: var(--fg-2);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
  transition: color .2s, border-color .2s;
}
.tweaks-toggle:hover { color: var(--fg); border-color: var(--acc-line); }

.tweaks {
  position: fixed; bottom: 80px; right: 24px; z-index: 101;
  width: 280px;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: 0 20px 60px -15px rgba(0,0,0,0.7);
  backdrop-filter: blur(20px);
  overflow: hidden;
}
.tweaks[hidden] { display: none; }
.tweaks-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.tweaks-title {
  font-size: 11.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--fg-2);
}
.tweaks-close {
  background: none; border: none;
  color: var(--fg-3); cursor: pointer;
  font-size: 22px; line-height: 1;
  padding: 0; width: 24px; height: 24px;
}
.tweaks-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 16px; }
.tweak-group { }
.tweak-label {
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--fg-4);
  margin-bottom: 8px;
}
.tweak-opts { display: flex; gap: 4px; flex-wrap: wrap; }
.tweak-opts button {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px;
  font-family: var(--f-sans);
  font-size: 12px; font-weight: 450;
  background: transparent;
  color: var(--fg-2);
  border: 1px solid var(--line);
  border-radius: 7px;
  cursor: pointer;
  transition: color .18s, border-color .18s, background .18s;
}
.tweak-opts button:hover { color: var(--fg); border-color: var(--fg-4); }
.tweak-opts button.active {
  background: color-mix(in oklab, var(--acc) 12%, transparent);
  border-color: var(--acc-line);
  color: var(--acc);
}
.tw-swatch { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }

/* ═══ REVEAL ═══ */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.rv.on { opacity: 1; transform: none; }
