/* ============================================================
   Tether — landing site
   Warm-dark "reading lamp at midnight" aesthetic, mirroring the
   macOS app: charcoal gradient, ivory type, terracotta accent,
   soft serif "Tether." wordmark.
   ============================================================ */

:root {
  /* Palette — lifted from the app's default Terracotta theme */
  --ink-top: #292624;
  --ink-bottom: #1a1816;
  --cream: #ede8db;
  --accent: #d97857;
  --accent-bright: #ed8f6b;
  --accent-deep: #b3593d;
  --sage: #9eb57d;

  --cream-rgb: 237, 232, 219;
  --accent-rgb: 217, 120, 87;
  --ink-rgb: 26, 24, 22;

  --maxw: 1080px;
  --radius: 20px;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--ink-bottom);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* ---------- Atmosphere: gradient + lamp glow + grain ---------- */
.backdrop {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(620px circle at 50% -8%, rgba(var(--accent-rgb), 0.12), transparent 70%),
    radial-gradient(520px circle at 92% 108%, rgba(179, 89, 61, 0.08), transparent 70%),
    linear-gradient(180deg, var(--ink-top), var(--ink-bottom));
}
/* Fine grain so the dark never looks flat/OLED */
.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { position: relative; }

/* ---------- Wordmark ---------- */
.wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--cream);
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
}
.wordmark .dot { color: var(--accent); font-weight: 600; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  background: rgba(var(--ink-rgb), 0.55);
  border-bottom: 1px solid rgba(var(--cream-rgb), 0.07);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav .wordmark { font-size: 23px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14px;
  color: rgba(var(--cream-rgb), 0.6);
  text-decoration: none;
  transition: color 0.18s ease;
}
.nav-links a:hover { color: var(--accent-bright); }
.nav-links a.nav-cta { color: var(--cream); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s ease, background 0.25s ease;
}
.btn-primary {
  color: var(--cream);
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  border-color: rgba(var(--accent-rgb), 0.5);
  box-shadow: 0 8px 22px rgba(var(--accent-rgb), 0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, var(--accent-bright), var(--accent-deep));
  box-shadow: 0 14px 34px rgba(var(--accent-rgb), 0.42);
}
.btn-ghost {
  color: rgba(var(--cream-rgb), 0.85);
  background: rgba(var(--cream-rgb), 0.07);
  border-color: rgba(var(--cream-rgb), 0.13);
}
.btn-ghost:hover { color: var(--cream); background: rgba(var(--cream-rgb), 0.12); transform: translateY(-2px); }
.btn svg { width: 17px; height: 17px; }

/* ---------- Hero ---------- */
.hero { padding: 96px 0 80px; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(var(--accent-rgb), 0.9);
  margin-bottom: 26px;
  padding: 7px 15px;
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.06);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  max-width: 16ch;
  margin: 0 auto 24px;
  background: linear-gradient(180deg, var(--cream), rgba(var(--cream-rgb), 0.72));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1 em { font-style: italic; color: var(--accent); -webkit-text-fill-color: var(--accent); }
.hero p.lede {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(var(--cream-rgb), 0.62);
  max-width: 52ch;
  margin: 0 auto 38px;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 13px; color: rgba(var(--cream-rgb), 0.38); }

/* ---------- Live nudge demo (web rendering of the app's HUD) ----------
   Pinned to the top-right of the viewport so it slides in like a real
   macOS notification the moment the page loads. */
.nudge-stage {
  position: fixed;
  top: 84px;
  right: 24px;
  width: 360px;
  max-width: calc(100vw - 32px);
  z-index: 60;
  perspective: 1200px;
  pointer-events: none;       /* only the card itself is interactive */
}
.nudge-card {
  width: 100%;
  text-align: left;
  background: linear-gradient(180deg, rgba(20, 18, 16, 0.82), rgba(20, 18, 16, 0.72));
  border: 1px solid rgba(var(--cream-rgb), 0.12);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transform-origin: top right;
  will-change: transform, opacity;
  pointer-events: auto;
}
/* Entrance / exit states, driven by JS toggling data-state.
   Slides in from off-screen right, like a notification banner. */
.nudge-card[data-state="hidden"] {
  opacity: 0;
  transform: translateX(110%) scale(0.98);
  pointer-events: none;
}
.nudge-card[data-state="in"] {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition: opacity 0.45s ease, transform 0.6s cubic-bezier(.2,.85,.25,1);
}
.nudge-card[data-state="out"] {
  opacity: 0;
  transform: translateX(110%) scale(0.98);
  transition: opacity 0.34s ease, transform 0.4s cubic-bezier(.4,0,.7,.3);
  pointer-events: none;
}

/* Compact row */
.nudge-compact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
}
.nudge-meta { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.nudge-eyebrow {
  font-size: 9px; font-weight: 600; letter-spacing: 0.2em;
  color: rgba(var(--accent-rgb), 0.95);
}
.nudge-task {
  font-size: 13px; font-weight: 500; color: rgba(var(--cream-rgb), 0.92);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nudge-timer {
  font-size: 21px; font-weight: 300; font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em; color: var(--cream);
}
.nudge-controls { display: flex; gap: 6px; }
.nudge-ico {
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(var(--cream-rgb), 0.07);
  color: rgba(var(--cream-rgb), 0.7);
}
.nudge-ico svg { width: 13px; height: 13px; }

.nudge-divider { height: 1px; background: rgba(var(--cream-rgb), 0.09); margin: 0 16px; }

/* Nudge body */
.nudge-body { padding: 14px 16px 15px; display: flex; flex-direction: column; gap: 11px; }
.nudge-label {
  font-size: 9px; font-weight: 600; letter-spacing: 0.2em;
  color: rgba(var(--accent-rgb), 0.9);
}
.nudge-msg {
  font-size: 13px; line-height: 1.5; color: rgba(var(--cream-rgb), 0.88);
}
.nudge-msg em { font-style: italic; color: var(--accent-bright); }
.nudge-reason {
  font-size: 11px; font-style: italic; line-height: 1.4;
  color: rgba(var(--cream-rgb), 0.42);
}
.nudge-actions { display: flex; gap: 8px; margin-top: 2px; }
.nudge-btn {
  flex: 1; padding: 8px 10px; border-radius: 999px; cursor: pointer;
  font-family: inherit; font-size: 12px; font-weight: 500; letter-spacing: 0.2px;
  color: rgba(var(--cream-rgb), 0.82);
  background: rgba(var(--cream-rgb), 0.08);
  border: 1px solid rgba(var(--cream-rgb), 0.13);
  transition: background 0.15s ease, transform 0.12s ease, color 0.15s ease;
}
.nudge-btn:hover { background: rgba(var(--cream-rgb), 0.14); color: var(--cream); }
.nudge-btn:active { transform: scale(0.97); }
.nudge-btn.primary {
  color: var(--cream);
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  border-color: rgba(var(--accent-rgb), 0.5);
  box-shadow: 0 6px 16px rgba(var(--accent-rgb), 0.3);
}
.nudge-btn.primary:hover {
  background: linear-gradient(180deg, var(--accent-bright), var(--accent-deep));
  color: var(--cream);
}
.nudge-tertiary { display: flex; align-items: center; gap: 9px; }
.nudge-text {
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: inherit; font-size: 11px;
  color: rgba(var(--cream-rgb), 0.5);
  transition: color 0.15s ease;
}
.nudge-text:hover { color: rgba(var(--cream-rgb), 0.82); }
.nudge-sep { color: rgba(var(--cream-rgb), 0.25); font-size: 11px; }

@media (prefers-reduced-motion: reduce) {
  .nudge-card { transition: opacity 0.3s ease !important; }
  .nudge-card[data-state="in"], .nudge-card[data-state="hidden"], .nudge-card[data-state="out"] {
    transform: none;
  }
}
/* On phones, sit just below the nav and span the width comfortably. */
@media (max-width: 640px) {
  .nudge-stage { top: auto; bottom: 16px; right: 12px; left: 12px; width: auto; }
  .nudge-card { transform-origin: bottom center; }
  .nudge-card[data-state="hidden"], .nudge-card[data-state="out"] {
    transform: translateY(140%) scale(0.98);
  }
}

/* ---------- Section headings ---------- */
.section-head { text-align: center; margin-bottom: 52px; }
.section-head .kicker {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(var(--accent-rgb), 0.85); margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(30px, 4vw, 46px); letter-spacing: -0.02em; line-height: 1.1;
}
.section-head p { margin-top: 14px; color: rgba(var(--cream-rgb), 0.55); max-width: 46ch; margin-left: auto; margin-right: auto; }

/* ---------- Features ---------- */
.features { padding: 70px 0; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature {
  background: rgba(var(--cream-rgb), 0.04);
  border: 1px solid rgba(var(--cream-rgb), 0.08);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.feature:hover { transform: translateY(-4px); border-color: rgba(var(--accent-rgb), 0.35); background: rgba(var(--cream-rgb), 0.055); }
.feature .icon {
  width: 44px; height: 44px; border-radius: 13px;
  display: grid; place-items: center;
  background: rgba(var(--accent-rgb), 0.13);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  margin-bottom: 18px;
}
.feature .icon svg { width: 22px; height: 22px; stroke: var(--accent-bright); }
.feature h3 { font-family: var(--font-display); font-weight: 500; font-size: 21px; letter-spacing: -0.01em; margin-bottom: 9px; }
.feature p { font-size: 14.5px; color: rgba(var(--cream-rgb), 0.58); }

/* ---------- Pricing ---------- */
.pricing { padding: 80px 0 90px; }
.price-card {
  max-width: 460px; margin: 0 auto; text-align: center;
  background: linear-gradient(180deg, rgba(var(--cream-rgb), 0.06), rgba(var(--cream-rgb), 0.02));
  border: 1px solid rgba(var(--cream-rgb), 0.1);
  border-radius: 26px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(360px circle at 50% -10%, rgba(var(--accent-rgb), 0.14), transparent 70%);
}
.price-card .trial-tag {
  display: inline-block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--sage); border: 1px solid rgba(158, 181, 125, 0.35); background: rgba(158,181,125,0.1);
  padding: 6px 13px; border-radius: 999px; margin-bottom: 22px;
}
.price-card .amount { font-family: var(--font-display); font-weight: 400; font-size: 60px; line-height: 1; letter-spacing: -0.03em; }
.price-card .amount span { font-size: 18px; color: rgba(var(--cream-rgb), 0.5); font-family: var(--font-body); }
.price-card ul { list-style: none; text-align: left; margin: 30px auto 30px; max-width: 300px; display: grid; gap: 13px; }
.price-card li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: rgba(var(--cream-rgb), 0.78); }
.price-card li svg { width: 18px; height: 18px; stroke: var(--accent-bright); flex: none; margin-top: 2px; }
.price-card .btn { width: 100%; justify-content: center; }
.price-card .fine { margin-top: 16px; font-size: 12px; color: rgba(var(--cream-rgb), 0.38); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid rgba(var(--cream-rgb), 0.08); padding: 44px 0 56px; margin-top: 40px; }
.footer .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.footer .wordmark { font-size: 19px; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { font-size: 13.5px; color: rgba(var(--cream-rgb), 0.5); text-decoration: none; transition: color 0.18s ease; }
.footer-links a:hover { color: var(--accent-bright); }
.copyright { width: 100%; font-size: 12.5px; color: rgba(var(--cream-rgb), 0.3); margin-top: 8px; }

/* ---------- Prose pages (privacy / terms) ---------- */
.doc { padding: 64px 0 40px; }
.doc .wrap { max-width: 720px; }
.doc .back { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(var(--cream-rgb), 0.5); text-decoration: none; margin-bottom: 34px; transition: color 0.18s; }
.doc .back:hover { color: var(--accent-bright); }
.doc h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(34px, 5vw, 50px); letter-spacing: -0.02em; margin-bottom: 8px; }
.doc .updated { font-size: 13px; letter-spacing: 0.04em; color: rgba(var(--cream-rgb), 0.4); margin-bottom: 36px; }
.doc h2 { font-family: var(--font-display); font-weight: 500; font-size: 23px; letter-spacing: -0.01em; margin: 40px 0 14px; }
.doc h3 { font-size: 15px; font-weight: 700; letter-spacing: 0.01em; margin: 24px 0 8px; color: rgba(var(--cream-rgb), 0.92); }
.doc p, .doc li { font-size: 15.5px; color: rgba(var(--cream-rgb), 0.74); margin-bottom: 12px; }
.doc ul { padding-left: 22px; margin-bottom: 12px; }
.doc li { margin-bottom: 8px; }
.doc a { color: var(--accent-bright); }
.doc strong { color: var(--cream); font-weight: 600; }
.doc .intro { font-size: 17px; color: rgba(var(--cream-rgb), 0.82); margin-bottom: 8px; }

/* ---------- Status pages (success / cancel) ---------- */
.status { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 40px; }
.status-card { max-width: 460px; }
.status .glyph {
  width: 76px; height: 76px; margin: 0 auto 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(var(--accent-rgb), 0.12); border: 1px solid rgba(var(--accent-rgb), 0.3);
}
.status .glyph.ok { background: rgba(158,181,125,0.14); border-color: rgba(158,181,125,0.4); }
.status .glyph svg { width: 36px; height: 36px; stroke: var(--accent-bright); }
.status .glyph.ok svg { stroke: var(--sage); }
.status h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(30px, 5vw, 42px); letter-spacing: -0.02em; margin-bottom: 14px; }
.status p { color: rgba(var(--cream-rgb), 0.6); font-size: 16px; margin-bottom: 30px; }
.status .hint { font-size: 13px; color: rgba(var(--cream-rgb), 0.4); margin-top: 26px; }

/* ---------- Entrance animation ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; animation: rise 0.8s cubic-bezier(.2,.8,.2,1) forwards; }
.d1 { animation-delay: 0.05s; } .d2 { animation-delay: 0.15s; } .d3 { animation-delay: 0.25s; }
.d4 { animation-delay: 0.35s; } .d5 { animation-delay: 0.5s; }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; opacity: 1; } html { scroll-behavior: auto; } }

/* ---------- Responsive ---------- */
/* ---------- Theme palettes (switchable, mirroring the app) ---------- */
[data-theme="terracotta"] {
  --ink-top: #292624; --ink-bottom: #1a1816; --cream: #ede8db;
  --accent: #d97857; --accent-bright: #ed8f6b; --accent-deep: #b3593d;
  --cream-rgb: 237, 232, 219; --accent-rgb: 217, 120, 87; --ink-rgb: 26, 24, 22;
}
[data-theme="sage"] {
  --ink-top: #242822; --ink-bottom: #161a15; --cream: #ebebde;
  --accent: #8cab73; --accent-bright: #a6c48c; --accent-deep: #6b8a54;
  --cream-rgb: 235, 235, 222; --accent-rgb: 140, 171, 115; --ink-rgb: 22, 26, 21;
}
[data-theme="ocean"] {
  --ink-top: #20242a; --ink-bottom: #13161c; --cream: #e6ebf0;
  --accent: #6194bd; --accent-bright: #7dadd4; --accent-deep: #47759c;
  --cream-rgb: 230, 235, 240; --accent-rgb: 97, 148, 189; --ink-rgb: 19, 22, 28;
}
[data-theme="lavender"] {
  --ink-top: #25222d; --ink-bottom: #17151d; --cream: #ede8f2;
  --accent: #a185c4; --accent-bright: #b89ed9; --accent-deep: #8266a6;
  --cream-rgb: 237, 232, 242; --accent-rgb: 161, 133, 196; --ink-rgb: 23, 21, 29;
}

/* ---------- Theme picker (nav swatches) ---------- */
.nav-left { display: flex; align-items: center; gap: 16px; }
.theme-dots { display: flex; align-items: center; gap: 9px; }
.theme-dot {
  width: 18px; height: 18px; border-radius: 50%; cursor: pointer; padding: 0;
  border: 2px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.theme-dot:hover { transform: scale(1.18); }
.theme-dot.active { border-color: var(--cream); }
.theme-dot[data-theme="terracotta"] { background: linear-gradient(135deg, #ed8f6b, #b3593d); }
.theme-dot[data-theme="sage"]       { background: linear-gradient(135deg, #a6c48c, #6b8a54); }
.theme-dot[data-theme="ocean"]      { background: linear-gradient(135deg, #7dadd4, #47759c); }
.theme-dot[data-theme="lavender"]   { background: linear-gradient(135deg, #b89ed9, #8266a6); }

/* ---------- ASCII steam mug (ported from the app's SteamMugView) ---------- */
.mug {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 13px; font-weight: 500; line-height: 1.25;
  display: inline-block; text-align: left; margin: 0 auto 4px;
}
.mug .steam { position: relative; height: 1.25em; white-space: pre; color: var(--cream); }
.mug .steam span { position: absolute; left: 0; top: 0; transition: opacity 0.55s ease; }
.mug .steam[data-row="0"] { opacity: 0.22; }
.mug .steam[data-row="1"] { opacity: 0.38; }
.mug .steam[data-row="2"] { opacity: 0.55; }
.mug .cup {
  margin: 2px 0 0; white-space: pre; font: inherit;
  background: linear-gradient(180deg, var(--accent-bright), var(--accent-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Demo video ---------- */
.demo { padding: 56px 0 16px; }
.demo-frame {
  max-width: 880px; margin: 0 auto; position: relative;
  border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(var(--cream-rgb), 0.1);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
  background: #000;
}
.demo-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  border-radius: 22px; box-shadow: inset 0 0 0 1px rgba(var(--accent-rgb), 0.18);
}
.demo-video { display: block; width: 100%; height: auto; }

/* ---------- How it works ---------- */
.how { padding: 72px 0 20px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step {
  position: relative; text-align: center; padding: 32px 26px;
  background: rgba(var(--cream-rgb), 0.04);
  border: 1px solid rgba(var(--cream-rgb), 0.08);
  border-radius: var(--radius);
}
.step .num {
  width: 38px; height: 38px; margin: 0 auto 16px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 17px; color: var(--cream);
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  box-shadow: 0 6px 16px rgba(var(--accent-rgb), 0.3);
}
.step h3 { font-family: var(--font-display); font-weight: 500; font-size: 19px; letter-spacing: -0.01em; margin-bottom: 8px; }
.step p { font-size: 14px; color: rgba(var(--cream-rgb), 0.58); }
.step:not(:last-child)::after {
  content: "→"; position: absolute; right: -13px; top: 50%; transform: translateY(-50%);
  color: rgba(var(--accent-rgb), 0.65); font-size: 18px; z-index: 2;
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { content: "↓"; right: 50%; top: auto; bottom: -13px; transform: translateX(50%); }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 64px 0 56px; }
}
