/* =========================================================
   Unstuck — Landing
   Palette: warm off-white base (#EEF0EA) · deep forest accent
   Type:    Cabinet Grotesk display · Satoshi text · JetBrains mono
   ========================================================= */

:root {
  /* Light theme (applied when [data-theme="light"]) */
  --bg: #EEF0EA;
  --bg-2: #F5F6F1;
  --surface: #FAFBF7;
  --ink: #14160F;
  --ink-2: #2A2D24;
  --muted: #5C6256;
  --line: rgba(20, 22, 15, 0.10);
  --line-2: rgba(20, 22, 15, 0.06);
  --nav-bg: rgba(238, 240, 234, 0.72);
  --shadow-soft: 0 24px 60px -28px rgba(20, 22, 15, .18), 0 2px 6px -2px rgba(20, 22, 15, .04);
  --grain-blend: multiply;
  --grain-opacity: .35;

  /* Brand-fixed (do not flip with theme) */
  --accent: #2F4A3A;       /* deep forest */
  --accent-ink: #EEF0EA;
  --panel-bg: #14160F;     /* always-dark interlude panel */
  --panel-fg: #EEF0EA;
  --warn: #B8482A;
  --radius: 22px;
  --radius-lg: 32px;
  --radius-sm: 12px;
  --container: 1280px;
  --shadow-soft: 0 24px 60px -28px rgba(20, 22, 15, .18), 0 2px 6px -2px rgba(20, 22, 15, .04);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Cabinet Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Satoshi", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

/* Dark theme — default */
[data-theme="dark"] {
  --bg: #111308;
  --bg-2: #181B10;
  --surface: #1E2117;
  --ink: #EEF0EA;
  --ink-2: #C9CDC1;
  --muted: #8A9082;
  --line: rgba(238, 240, 234, 0.10);
  --line-2: rgba(238, 240, 234, 0.05);
  --nav-bg: rgba(17, 19, 8, 0.72);
  --shadow-soft: 0 28px 64px -28px rgba(0, 0, 0, .55), 0 2px 8px -3px rgba(0, 0, 0, .4);
  --grain-blend: overlay;
  --grain-opacity: .25;

  --accent: #7FB096;       /* lifted forest for dark contrast */
  --accent-ink: #0E1108;
}

html { background: var(--bg); color-scheme: light dark; }
[data-theme="dark"] { color-scheme: dark; }
[data-theme="light"] { color-scheme: light; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background .35s var(--ease), color .35s var(--ease);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* Background grain — fixed, off the scroll container, GPU-friendly */
.grain {
  position: fixed; inset: 0; z-index: 60;
  pointer-events: none;
  opacity: var(--grain-opacity);
  mix-blend-mode: var(--grain-blend);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.10 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* =========================================================
   Layout primitives
   ========================================================= */
.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 140px) clamp(20px, 4vw, 48px);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 880px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.kicker.light { color: rgba(238,240,234,.72); }

.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
}
.h2.light { color: var(--accent-ink); }
.h2 em { font-style: italic; color: var(--muted); font-weight: 500; }
.h2.light em { color: rgba(238,240,234,.65); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.985); }
.btn.big { padding: 16px 24px; font-size: 15.5px; }

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 10px 24px -14px rgba(47,74,58,.55);
}
.btn-primary:hover { background: #26402F; }

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--bg-2); border-color: rgba(20,22,15,.18); }

.btn-link {
  padding: 12px 6px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}
.btn-link:hover { border-color: var(--ink); }

.btn-on-dark {
  background: rgba(238,240,234,.08);
  color: #EEF0EA;
  border: 1px solid rgba(238,240,234,.18);
}
.btn-on-dark:hover { background: rgba(238,240,234,.14); }

/* Coming-soon state */
.btn.is-soon { cursor: not-allowed; }
.btn.is-soon:active { transform: none; }
.btn.is-soon:hover { filter: brightness(1.02); }

.soon-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 8px;
  margin-left: 4px;
  border-radius: 999px;
  background: rgba(238, 240, 234, 0.16);
  color: rgba(238, 240, 234, 0.92);
  border: 1px solid rgba(238, 240, 234, 0.18);
  white-space: nowrap;
}
.soon-pill.on-light {
  background: rgba(20, 22, 15, 0.08);
  color: rgba(20, 22, 15, 0.78);
  border-color: rgba(20, 22, 15, 0.12);
}

/* =========================================================
   Nav
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--line-2);
  transition: background .35s var(--ease), border-color .35s var(--ease);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.nav-cta { display: inline-flex; align-items: center; gap: 10px; }

/* Theme toggle */
.theme-toggle {
  position: relative;
  width: 38px; height: 38px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.theme-toggle:hover { background: var(--bg-2); border-color: var(--ink-2); }
.theme-toggle:active { transform: scale(.94); }
.theme-toggle svg {
  position: absolute;
  transition: transform .55s var(--ease), opacity .35s var(--ease);
}
[data-theme="dark"] .theme-toggle .ic-sun  { transform: translateY(0)    rotate(0);   opacity: 1; }
[data-theme="dark"] .theme-toggle .ic-moon { transform: translateY(20px) rotate(-40deg); opacity: 0; }
[data-theme="light"] .theme-toggle .ic-sun  { transform: translateY(-20px) rotate(40deg); opacity: 0; }
[data-theme="light"] .theme-toggle .ic-moon { transform: translateY(0)    rotate(0);   opacity: 1; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.015em;
}
.brand span { color: var(--ink); }
.nav-links {
  display: flex;
  gap: 28px;
  justify-self: center;
  font-size: 14.5px;
  color: var(--ink-2);
}
.nav-links a { position: relative; padding: 6px 2px; }
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: auto auto; justify-content: space-between; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 96px) clamp(20px, 4vw, 48px) clamp(48px, 8vw, 120px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 12.5px;
  font-family: var(--font-mono);
  color: var(--ink-2);
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(47,74,58,.55);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47,74,58,.55); }
  50%      { box-shadow: 0 0 0 8px rgba(47,74,58,0); }
}

.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 7.6vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 22px 0 22px;
  color: var(--ink);
}
.display em {
  font-style: italic;
  font-weight: 500;
  color: var(--muted);
}

.lede {
  font-size: clamp(16.5px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 0 32px;
}

.hero-cta {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-meta {
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.hero-meta li { display: flex; flex-direction: column; gap: 4px; }
.hero-meta strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -0.02em;
}
.hero-meta span { font-size: 13px; color: var(--muted); line-height: 1.4; }
@media (max-width: 520px) {
  .hero-meta { grid-template-columns: 1fr; gap: 14px; }
}

/* Hero visual — phone mock */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}
.orb-1 {
  width: 320px; height: 320px;
  background: radial-gradient(circle at 30% 30%, rgba(47,74,58,.45), transparent 60%);
  top: -10%; right: -8%;
  animation: float 14s ease-in-out infinite;
}
.orb-2 {
  width: 260px; height: 260px;
  background: radial-gradient(circle at 60% 60%, rgba(184,72,42,.22), transparent 60%);
  bottom: -8%; left: -10%;
  animation: float 18s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(20px, -16px); }
}

.phone {
  position: relative;
  width: min(360px, 92%);
  aspect-ratio: 9 / 19.5;
  border-radius: 46px;
  background: linear-gradient(180deg, #1d1f18 0%, #0f1109 100%);
  padding: 12px;
  box-shadow:
    0 50px 80px -30px rgba(20,22,15,.45),
    0 18px 30px -16px rgba(20,22,15,.25),
    inset 0 1px 0 rgba(255,255,255,.06);
  z-index: 1;
}
.phone-notch {
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px;
  background: #08090a;
  border-radius: 999px;
  z-index: 3;
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  background: var(--bg);
  border-radius: 36px;
  padding: 56px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.screen-time {
  position: absolute;
  top: 22px; left: 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}

.check-card, .chat-card, .tool-card {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.check-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.check-label { font-family: var(--font-mono); font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.check-q { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; margin-top: 2px; }

.streak-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(47,74,58,.08);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10.5px;
  padding: 5px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.streak-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2.4s ease-in-out infinite; }

.mood-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.mood {
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.mood:hover { border-color: var(--ink-2); }
.mood-active {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -8px rgba(47,74,58,.6);
}
.mood-labels { display: flex; justify-content: space-between; padding-top: 8px; font-size: 10.5px; color: var(--muted); font-family: var(--font-mono); }

.chat-tabs { display: flex; gap: 4px; padding: 3px; background: var(--bg); border-radius: 999px; margin-bottom: 12px; }
.chat-tab { flex: 1; text-align: center; padding: 6px 0; font-size: 11.5px; font-weight: 500; color: var(--muted); border-radius: 999px; }
.chat-tab.is-active { background: var(--surface); color: var(--ink); box-shadow: 0 1px 2px rgba(20,22,15,.06); }

.chat-msg { font-size: 12.5px; line-height: 1.45; padding: 8px 12px; border-radius: 14px; max-width: 85%; }
.chat-msg.you { background: var(--accent); color: var(--accent-ink); align-self: flex-end; border-bottom-right-radius: 6px; margin-left: auto; }
.chat-msg.ai { background: var(--bg); color: var(--ink); border-bottom-left-radius: 6px; }

.chat-typing { display: inline-flex; gap: 4px; padding: 6px 10px; background: var(--bg); border-radius: 14px; width: fit-content; margin-top: 4px; }
.chat-typing span { width: 5px; height: 5px; background: var(--muted); border-radius: 50%; animation: typing 1.4s ease-in-out infinite; }
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: .35; }
  30%           { transform: translateY(-4px); opacity: 1; }
}

.tool-row { display: flex; align-items: center; gap: 12px; }
.tool-ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(47,74,58,.08);
  color: var(--accent);
  display: grid; place-items: center;
}
.tool-text { flex: 1; }
.tool-name { font-weight: 500; font-size: 13.5px; }
.tool-meta { font-size: 11px; color: var(--muted); font-family: var(--font-mono); }
.tool-go {
  font-size: 12px; font-weight: 500;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--ink); color: var(--bg);
}

/* =========================================================
   Marquee
   ========================================================= */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(16px, 1.6vw, 20px);
  letter-spacing: -0.01em;
  color: var(--ink-2);
  animation: scroll-x 35s linear infinite;
  width: max-content;
}
.marquee-track .sep { color: var(--accent); }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   Zig-zag features
   ========================================================= */
.zig {
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 8vw, 110px);
}
.zig-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}
.zig-row.reverse .zig-text { order: 2; }
.zig-row.reverse .zig-card { order: 1; }
@media (max-width: 860px) {
  .zig-row, .zig-row.reverse { grid-template-columns: 1fr; gap: 32px; }
  .zig-row.reverse .zig-text, .zig-row.reverse .zig-card { order: initial; }
}

.zig-text .num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--accent);
  letter-spacing: .12em;
  display: inline-block;
  margin-bottom: 14px;
}
.zig-text h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  line-height: 1.05;
}
.zig-text p {
  margin: 0 0 18px;
  color: var(--ink-2);
  max-width: 50ch;
  font-size: 16.5px;
}
.bullets {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.bullets li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-2);
  font-size: 15px;
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 1px;
  background: var(--accent);
}
.bullets strong { color: var(--ink); font-weight: 700; }

.zig-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-soft);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.zig-card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}

/* mini chart */
.mini-chart { color: var(--accent); height: 160px; }
.mini-chart svg { height: 100%; width: 100%; }
.mini-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
}
.kbd {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-right: 4px;
  background: var(--bg);
  color: var(--ink-2);
}
.trend { color: var(--accent); }

/* chat mock */
.chat-mock { gap: 10px; }
.chat-mock { display: flex; flex-direction: column; gap: 10px; }
.bub { font-size: 14px; padding: 10px 14px; border-radius: 16px; max-width: 80%; line-height: 1.45; }
.bub.you { background: var(--accent); color: var(--accent-ink); align-self: flex-end; border-bottom-right-radius: 6px; }
.bub.ai { background: var(--bg); color: var(--ink); border-bottom-left-radius: 6px; border: 1px solid var(--line-2); }

/* vault mock */
.vault-mock { gap: 10px; }
.vault-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 14px;
  background: var(--bg);
}
.vault-row + .vault-row { margin-top: 8px; }
.vault-row .lock { color: var(--accent); }
.vault-row .when { font-family: var(--font-mono); font-size: 11.5px; color: var(--muted); }
.vault-foot {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  border-top: 1px solid var(--line-2);
  padding-top: 12px;
}

/* tools mock */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.t-cell {
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 14px;
  padding: 14px;
  display: flex; flex-direction: column; gap: 4px;
  min-height: 84px;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.t-cell:hover { transform: translateY(-2px); border-color: rgba(20,22,15,.18); }
.t-cell.hot { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.t-time { font-family: var(--font-mono); font-size: 11px; opacity: .7; }
.t-name { font-family: var(--font-display); font-weight: 500; font-size: 16px; letter-spacing: -.01em; }
@media (max-width: 480px) {
  .tool-grid { grid-template-columns: repeat(2, 1fr); }
}

/* safety mock */
.safety-mock { gap: 10px; display: flex; flex-direction: column; }
.safety-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.safety-line + .safety-line { margin-top: 8px; }
.safety-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 8px;
  background: var(--surface);
  border-radius: 6px;
  border: 1px solid var(--line-2);
}
.safety-name { font-weight: 500; font-size: 15px; }
.safety-go { font-size: 12.5px; font-weight: 500; padding: 6px 12px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); }

/* =========================================================
   Privacy
   ========================================================= */
.privacy {
  background: var(--panel-bg);
  color: var(--panel-fg);
  padding: clamp(80px, 12vw, 160px) clamp(20px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.privacy::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,74,58,.35), transparent 65%);
  top: -200px; right: -200px;
  filter: blur(40px);
  pointer-events: none;
}
.privacy-grid {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.privacy .lede.light { color: rgba(238,240,234,.78); margin-bottom: 28px; max-width: 50ch; }
@media (max-width: 860px) {
  .privacy-grid { grid-template-columns: 1fr; }
}

.privacy-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
}
.privacy-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(238,240,234,.12);
  align-items: start;
}
.privacy-list li:last-child { border-bottom: 1px solid rgba(238,240,234,.12); }
.p-num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: rgba(238,240,234,.55);
  margin-top: 4px;
}
.privacy-list strong { color: var(--panel-fg); font-weight: 700; }
.privacy-list div { color: rgba(238,240,234,.78); font-size: 15px; line-height: 1.55; max-width: 48ch; }

/* =========================================================
   Quote
   ========================================================= */
.quote-section {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 48px);
  text-align: left;
}
.quote-section blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 3.6vw, 42px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 24px;
  color: var(--ink);
}
.quote-section blockquote em { color: var(--accent); font-style: italic; }
.quote-section figcaption {
  display: flex; flex-direction: column; gap: 2px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  max-width: 360px;
}
.quote-section .who { font-weight: 700; font-size: 15px; }
.quote-section .what { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: -0.015em;
  color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list .chev {
  width: 14px; height: 14px;
  position: relative; flex-shrink: 0;
  transition: transform .45s var(--ease);
}
.faq-list .chev::before, .faq-list .chev::after {
  content: ""; position: absolute; background: var(--ink); left: 50%; top: 50%;
}
.faq-list .chev::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-list .chev::after  { width: 1.5px; height: 14px; transform: translate(-50%, -50%); transition: transform .45s var(--ease); }
.faq-list details[open] .chev::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-list details[open] summary { color: var(--accent); }
.faq-list p {
  margin: 14px 0 0;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 70ch;
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
  margin: 0 clamp(20px, 4vw, 48px) clamp(48px, 8vw, 80px);
}
.cta-inner {
  max-width: var(--container);
  margin: 0 auto;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: var(--radius-lg);
  padding: clamp(56px, 8vw, 96px) clamp(28px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 300px at 90% 10%, rgba(238,240,234,.10), transparent 60%),
    radial-gradient(600px 220px at 5% 90%, rgba(184,72,42,.18), transparent 60%);
  pointer-events: none;
}
.cta-inner > * { position: relative; }
.cta-inner .h2 {
  color: var(--accent-ink);
  max-width: 18ch;
  margin: 0 0 14px;
}
.cta-inner p {
  margin: 0 0 32px;
  color: rgba(238,240,234,.78);
  font-size: 17px;
}
.cta-buttons {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.cta-buttons .btn-primary {
  background: #EEF0EA; color: #14160F;
  box-shadow: inset 0 1px 0 rgba(0,0,0,.05);
}
.cta-buttons .btn-primary:hover { background: #fff; }
.cta-foot {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: rgba(238,240,234,.65);
  border-top: 1px solid rgba(238,240,234,.18);
  padding-top: 18px;
}
.cta-foot a { color: #EEF0EA; border-bottom: 1px solid rgba(238,240,234,.3); }
.cta-foot a:hover { border-color: #EEF0EA; }

/* =========================================================
   Footer
   ========================================================= */
.foot {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.foot-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px clamp(20px, 4vw, 48px) 32px;
  display: grid;
  gap: 40px;
}
.foot-brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
}
.foot-brand span { color: var(--ink); }
.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.foot-cols > div { display: flex; flex-direction: column; gap: 10px; }
.foot-h {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.foot-cols a { font-size: 14.5px; color: var(--ink-2); }
.foot-cols a:hover { color: var(--ink); }
.foot-meta {
  display: flex; justify-content: space-between; gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
}
@media (max-width: 640px) {
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .foot-meta { flex-direction: column; }
}

/* =========================================================
   Reveal-on-scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

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