@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Inter+Tight:wght@500;600;700&family=JetBrains+Mono:wght@500&display=swap");

/* ============================================================
   EchoPilot — premium AI-native productivity website
   Design language: Apple-native, calm, minimal, glassy
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Canvas */
  --bg-0: #07070a;
  --bg-1: #0c0c11;
  --bg-2: #111118;

  /* Surfaces (translucent, layered on bg) */
  --surf-1: rgba(255, 255, 255, 0.03);
  --surf-2: rgba(255, 255, 255, 0.05);
  --surf-3: rgba(255, 255, 255, 0.08);
  --surf-glass: rgba(255, 255, 255, 0.04);

  /* Strokes */
  --line-1: rgba(255, 255, 255, 0.06);
  --line-2: rgba(255, 255, 255, 0.10);
  --line-3: rgba(255, 255, 255, 0.16);

  /* Text */
  --ink-0: rgba(255, 255, 255, 0.98);
  --ink-1: rgba(255, 255, 255, 0.72);
  --ink-2: rgba(255, 255, 255, 0.48);
  --ink-3: rgba(255, 255, 255, 0.30);

  /* Accent */
  --accent: oklch(0.78 0.10 240);          /* soft icy blue */
  --accent-soft: oklch(0.78 0.10 240 / 0.14);
  --accent-glow: oklch(0.70 0.16 250 / 0.45);

  /* Type */
  --font-display: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-2xl: 36px;

  /* Shadows */
  --shadow-card: 0 1px 0 rgba(255,255,255,0.04) inset,
                 0 30px 60px -25px rgba(0,0,0,0.6),
                 0 10px 30px -15px rgba(0,0,0,0.5);
  --shadow-float: 0 1px 0 rgba(255,255,255,0.06) inset,
                  0 40px 80px -20px rgba(0,0,0,0.7),
                  0 16px 40px -10px rgba(0,0,0,0.55);
  --shadow-pill: 0 1px 0 rgba(255,255,255,0.08) inset,
                 0 8px 24px -8px rgba(0,0,0,0.6);

  /* Layout */
  --maxw: 1200px;
  --maxw-narrow: 980px;
  --pad-section: clamp(80px, 12vw, 160px);
  --pad-x: clamp(20px, 5vw, 56px);
}

[data-theme="light"] {
  --bg-0: #fbfaf8;
  --bg-1: #ffffff;
  --bg-2: #f4f3f0;

  --surf-1: rgba(0, 0, 0, 0.02);
  --surf-2: rgba(0, 0, 0, 0.035);
  --surf-3: rgba(0, 0, 0, 0.05);
  --surf-glass: rgba(255, 255, 255, 0.6);

  --line-1: rgba(0, 0, 0, 0.05);
  --line-2: rgba(0, 0, 0, 0.08);
  --line-3: rgba(0, 0, 0, 0.14);

  --ink-0: #0a0a0d;
  --ink-1: rgba(10, 10, 13, 0.70);
  --ink-2: rgba(10, 10, 13, 0.50);
  --ink-3: rgba(10, 10, 13, 0.30);

  --shadow-card: 0 1px 0 rgba(255,255,255,1) inset,
                 0 30px 60px -30px rgba(0,0,0,0.18),
                 0 6px 20px -10px rgba(0,0,0,0.10);
  --shadow-float: 0 1px 0 rgba(255,255,255,1) inset,
                  0 40px 80px -20px rgba(0,0,0,0.18),
                  0 16px 40px -16px rgba(0,0,0,0.12);
  --shadow-pill: 0 1px 0 rgba(255,255,255,0.9) inset,
                 0 6px 18px -8px rgba(0,0,0,0.18);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-0);
  background: var(--bg-0);
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--accent-soft); color: var(--ink-0); }

/* Ambient grain + glow on dark canvas */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, var(--accent-glow), transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 90%, oklch(0.65 0.12 290 / 0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}
[data-theme="light"] body::before { opacity: 0.5; }

/* ---------- Type ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
  color: var(--ink-0);
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-2);
}
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; }
h1 { font-size: clamp(48px, 8vw, 96px); font-weight: 600; letter-spacing: -0.035em; line-height: 0.98; }
h2 { font-size: clamp(36px, 5.2vw, 64px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.02; }
h3 { font-size: clamp(22px, 2vw, 28px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
h4 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0; color: var(--ink-1); }

.lead {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  color: var(--ink-1);
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ---------- Layout ---------- */
.shell {
  position: relative;
  z-index: 1;
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.container-narrow {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
section {
  position: relative;
  padding-top: var(--pad-section);
  padding-bottom: var(--pad-section);
}
.section-head { margin-bottom: 64px; }
.section-head .eyebrow { margin-bottom: 18px; display: inline-block; }
.section-head .lead { max-width: 560px; margin-top: 22px; }

/* ---------- Pills, chips ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surf-2);
  border: 1px solid var(--line-2);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-pill);
}
.pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, opacity .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--ink-0);
  color: var(--bg-0);
  border: 1px solid transparent;
}
.btn-primary:hover {
  color: var(--bg-0);
  opacity: 0.92;
}
.btn-ghost {
  background: var(--surf-2);
  color: var(--ink-0);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(20px);
}
.btn-ghost:hover { background: var(--surf-3); border-color: var(--line-3); }

/* Store buttons (App Store + Google Play) */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px 10px 16px;
  border-radius: 14px;
  background: var(--ink-0);
  color: var(--bg-0);
  border: 1px solid transparent;
  transition: transform .2s ease, opacity .2s ease;
  text-decoration: none;
}
.store-btn.outline {
  background: var(--surf-2);
  color: var(--ink-0);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(20px);
}
.store-btn:hover { opacity: 0.9; }
.store-btn:not(.outline):hover { color: var(--bg-0); }
.store-btn:active { transform: scale(0.98); }
.store-btn .store-icon { width: 26px; height: 26px; flex-shrink: 0; }
.store-btn .store-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.store-btn .store-text small { font-size: 10px; font-weight: 500; opacity: 0.7; letter-spacing: 0.02em; }
.store-btn .store-text strong { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }

/* ---------- Cards ---------- */
.card {
  position: relative;
  background: var(--surf-1);
  border: 1px solid var(--line-1);
  border-radius: var(--r-lg);
  padding: 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
}
.card.featured {
  background:
    linear-gradient(180deg, oklch(0.78 0.10 240 / 0.12) 0%, transparent 60%),
    var(--surf-2);
  border-color: var(--line-2);
}
.card-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.card-eyebrow .idx {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--surf-3);
  border: 1px solid var(--line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-1);
  letter-spacing: 0;
}

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  padding: 8px 8px 8px 22px;
  border-radius: 999px;
  background: rgba(12, 12, 17, 0.55);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset,
              0 12px 40px -10px rgba(0,0,0,0.5);
  transition: padding .35s cubic-bezier(.2,.7,.2,1),
              top .35s cubic-bezier(.2,.7,.2,1),
              transform .35s cubic-bezier(.2,.7,.2,1);
  max-width: calc(100vw - 32px);
}
[data-theme="light"] .nav { background: rgba(255, 255, 255, 0.75); }
.nav.scrolled { top: 10px; padding: 6px 6px 6px 18px; }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 15px;
  color: var(--ink-0);
  flex-shrink: 0;
}
.nav-logo .mark {
  width: 22px; height: 22px;
  border-radius: 7px;
  background:
    radial-gradient(circle at 30% 30%, oklch(0.85 0.12 240), oklch(0.50 0.15 270));
  box-shadow: 0 0 14px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.3);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 14px;
  flex-shrink: 0;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-1);
  border-radius: 999px;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.nav-links a:hover { background: var(--surf-2); color: var(--ink-0); }
.nav-links a.active { color: var(--ink-0); background: var(--surf-2); }
.nav-cta {
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  background: var(--ink-0);
  color: var(--bg-0);
  transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
  margin-left: 6px;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-cta:hover { color: var(--bg-0); opacity: 0.92; transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(0,0,0,0.6); }
.nav-cta:active { transform: translateY(0); }

/* ---------- Hero ---------- */
.hero {
  padding-top: calc(var(--pad-section) + 40px);
  padding-bottom: calc(var(--pad-section) - 20px);
  text-align: center;
  position: relative;
}
.hero h1 { max-width: 18ch; margin: 24px auto 22px; }
.hero h1 .accent {
  background: linear-gradient(180deg, var(--ink-0) 0%, var(--ink-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lead { max-width: 620px; margin: 0 auto 38px; }
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.hero-stage {
  align-items: center;
  display: flex;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 480px;
  padding: 0 var(--pad-x);
  position: relative;
}

/* Phone device (hero visual) */
.device {
  position: relative;
  width: 320px;
  margin: 0 auto;
  z-index: 2;
  border-radius: 48px;
  padding: 10px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02) 40%, rgba(255,255,255,0.06));
  box-shadow:
    0 1px 0 rgba(255,255,255,0.10) inset,
    0 60px 120px -30px rgba(0,0,0,0.7),
    0 20px 60px -20px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.06);
}
.device-screen {
  position: relative;
  aspect-ratio: 9 / 19.5;
  border-radius: 38px;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0a0e 0%, #050507 100%);
  border: 1px solid rgba(255,255,255,0.04);
}
.notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #000;
  border-radius: 999px;
  z-index: 10;
}
.statusbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px 0;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  z-index: 5;
}
.statusbar .right { display:flex; gap:6px; align-items:center; opacity:.9; }

/* Hero visual content */
.app-content {
  position: absolute;
  inset: 56px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 4px 8px;
}
.app-header .title { font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: -0.02em; color: #fff; }
.app-header .menu {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}

.recording-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  min-height: 116px;
  padding: 14px 16px 16px;
  position: relative;
  overflow: hidden;
}
.recording-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 60%;
  background: radial-gradient(ellipse 70% 100% at 50% 100%, var(--accent-glow), transparent 72%);
  opacity: 0.18;
  pointer-events: none;
}
.recording-card .rec-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.recording-card .rec-head .live {
  display: flex; align-items: center; gap: 6px;
  color: var(--accent);
}
.recording-card .rec-head .live .blip {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 4px var(--accent);
  animation: blip 1.4s ease-in-out infinite;
}
@keyframes blip { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.waveform {
  align-items: center;
  display: flex;
  gap: 2px;
  height: 64px;
  justify-content: space-between;
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.waveform .bar {
  animation: waveBar 1.15s ease-in-out infinite;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(156, 214, 254, 0.45) 100%);
  border-radius: 3px;
  flex: 1 1 0;
  height: calc(var(--peak, 0.55) * 100%);
  max-height: 100%;
  max-width: 3.5px;
  min-width: 2px;
  transform-origin: center;
}

@keyframes waveBar {
  0%, 100% {
    opacity: 0.5;
    transform: scaleY(0.32);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}
.recording-card .timer {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-align: right;
}

.action-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.action-card.pending {
  border-color: rgba(255, 255, 255, 0.08);
  border-style: dashed;
}

.extracted-label {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 8px 2px 6px;
  text-transform: uppercase;
}
.action-card .ac-tag {
  display: flex; align-items: center; gap: 6px;
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.action-card .ac-tag .ico {
  width: 14px; height: 14px;
  border-radius: 4px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.action-card .ac-title { font-size: 13px; font-weight: 600; color: #fff; letter-spacing: -0.01em; }
.action-card .ac-sub { font-size: 11px; color: rgba(255,255,255,0.5); }

/* Floating side cards in hero */
.hero-side {
  position: absolute;
  width: 252px;
  z-index: 3;
  pointer-events: none;
}

.hero-side.right {
  width: 272px;
}

.hero-side-inner {
  animation: floaty 8s ease-in-out infinite;
  background: rgba(14, 14, 18, 0.96);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  box-shadow: var(--shadow-float);
  padding: 16px;
}

.hero-side.right .hero-side-inner {
  animation-delay: -3s;
  animation-duration: 9s;
}
.hero-side .hs-eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.hero-side .hs-title { font-size: 14px; font-weight: 600; color: var(--ink-0); letter-spacing: -0.01em; margin-bottom: 4px; }
.hero-side .hs-body  { font-size: 12px; color: var(--ink-2); line-height: 1.4; }
.hero-side.left  { --rot: -3deg; left: 0; top: 50%; }
.hero-side.right { --rot: 2.5deg; right: 0; top: 50%; }
@keyframes floaty {
  0%, 100% { transform: translateY(-50%) rotate(var(--rot, 0deg)); }
  50%      { transform: translateY(calc(-50% - 8px)) rotate(var(--rot, 0deg)); }
}

.hero-executed .hs-body {
  margin-bottom: 12px;
}

.exec-log {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.exec-item {
  align-items: flex-start;
  border-top: 1px solid var(--line-1);
  display: flex;
  gap: 8px;
  padding: 10px 0;
}

.exec-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.exec-check {
  align-items: center;
  background: rgba(156, 214, 254, 0.14);
  border-radius: 999px;
  color: var(--accent);
  display: inline-flex;
  flex-shrink: 0;
  height: 20px;
  justify-content: center;
  margin-top: 1px;
  width: 20px;
}

.exec-icon {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
  height: 20px;
  justify-content: center;
  margin-top: 1px;
  width: 20px;
}

/* Optical size normalization for brand app-marks.
   Circle marks (Todoist/Google) naturally fill more of their viewBox than
   rounded-rect marks (Reminders/Notes), so they read bigger. These nudges
   equalize the painted glyph size within each cluster. Order follows source. */
.exec-log .exec-item:nth-child(2) .exec-icon svg { width: 13px; height: 13px; } /* Todoist */
.exec-log .exec-item:nth-child(3) .exec-icon svg { width: 15px; height: 15px; } /* Slack */
.exec-log .exec-item:nth-child(4) .exec-icon svg { width: 16px; height: 16px; } /* Reminders */

.exec-copy strong {
  color: var(--ink-0);
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.exec-copy span {
  color: var(--ink-2);
  display: block;
  font-size: 10px;
  line-height: 1.35;
  margin-top: 2px;
}

.step-card .step-visual {
  margin-top: auto;
}

/* ---------- "Less managing. More finishing." compare cards ---------- */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.compare-card { padding: 36px; min-height: 280px; display: flex; flex-direction: column; }
.compare-card .ctag {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.compare-card.bright {
  background: linear-gradient(180deg, oklch(0.78 0.10 240 / 0.10) 0%, var(--surf-1) 100%);
  border-color: var(--line-2);
}
.compare-card.bright .ctag { color: var(--accent); }
.compare-card h3 { margin-bottom: 14px; }
.compare-card p { color: var(--ink-1); }

/* ---------- 3-step flow ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.step-card {
  padding: 30px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.step-card .step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.step-card h3 { font-size: 24px; margin-bottom: 18px; }
.step-card > p { color: var(--ink-1); font-size: 15px; line-height: 1.55; margin-bottom: 18px; }
.step-card .step-visual {
  margin-top: auto;
  border-radius: 14px;
  padding: 14px;
  background: var(--surf-2);
  border: 1px solid var(--line-1);
  min-height: 130px;
}

/* Step 1 — waveform mini */
.step-visual-wave {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-height: 110px;
}
.mini-wave-head {
  align-items: center;
  color: var(--accent);
  display: flex;
  font-size: 10px;
  font-weight: 600;
  gap: 7px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.mini-wave-head .blip {
  animation: blip 1.4s ease-in-out infinite;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
  height: 6px;
  width: 6px;
}
.mini-wave-head .mw-timer {
  color: var(--ink-2);
  font-family: var(--font-mono);
  margin-left: auto;
}

.mini-wave {
  align-items: center;
  display: flex;
  gap: 2px;
  height: 64px;
  justify-content: space-between;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.mini-wave .bar {
  animation: waveBar 1.15s ease-in-out infinite;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(156, 214, 254, 0.40) 100%);
  border-radius: 3px;
  flex: 1 1 0;
  height: calc(var(--peak, 0.55) * 100%);
  max-height: 100%;
  max-width: 3.5px;
  min-width: 2px;
  transform-origin: center;
}

.approve-apps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.approve-app {
  align-items: center;
  background: var(--surf-1);
  border: 1px solid var(--line-1);
  border-radius: 10px;
  display: flex;
  gap: 10px;
  padding: 10px;
}

.approve-app-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  display: inline-flex;
  flex-shrink: 0;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.approve-app strong {
  color: var(--ink-0);
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.approve-app > div > span {
  color: var(--ink-2);
  display: block;
  font-size: 10px;
  margin-top: 2px;
}

/* Step 2 — typed rows */
.typed-rows { display:flex; flex-direction:column; gap:8px; }
.typed-rows .row {
  display:flex; justify-content:space-between; align-items:center;
  background: var(--surf-1);
  border: 1px solid var(--line-1);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  animation: rowMap 5.2s ease-in-out infinite;
}
.typed-rows .row:nth-child(2) { animation-delay: 1.3s; }
.typed-rows .row:nth-child(3) { animation-delay: 2.6s; }
.typed-rows .row:nth-child(4) { animation-delay: 3.9s; }
.typed-rows .row .k { color: var(--ink-1); font-weight: 500; }
.typed-rows .row .v {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--surf-3);
  color: var(--ink-1);
  letter-spacing: 0.06em;
  transition: background .4s ease, color .4s ease;
}
@keyframes rowMap {
  0%, 22%, 100% { border-color: var(--line-1); background: var(--surf-1); }
  6%, 16% {
    border-color: var(--accent-soft);
    background: linear-gradient(90deg, var(--accent-soft), transparent 80%);
  }
}

/* Step 3 — approve list */
.approve-list { display:flex; flex-direction:column; gap:6px; }
.approve-list .item {
  display:flex; align-items:center; gap:10px;
  padding: 8px 10px;
  background: var(--surf-1);
  border: 1px solid var(--line-1);
  border-radius: 8px;
  font-size: 12px;
}
.approve-list .item .chk {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--surf-3);
  border: 1px solid var(--line-2);
  flex-shrink: 0;
}
.approve-list .item.done .chk {
  background: var(--accent);
  border-color: var(--accent);
}
.approve-list .item.done .label { color: var(--ink-2); text-decoration: line-through; text-decoration-color: var(--ink-3); }
.approve-list .item .label { flex:1; color: var(--ink-0); }
.approve-list .item .meta { font-size: 10px; color: var(--ink-2); }

/* ---------- "Change that one" ---------- */
.change-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: center;
}
.change-text .feat {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  padding: 16px 0;
  border-top: 1px solid var(--line-1);
}
.change-text .feat:last-child { padding-bottom: 0; }
.change-text .feat .label { font-size: 14px; font-weight: 600; color: var(--ink-0); min-width: 180px; letter-spacing: -0.01em; }
.change-text .feat .desc  { font-size: 14px; color: var(--ink-1); flex: 1; }

.chat-mock {
  background: var(--surf-1);
  border: 1px solid var(--line-1);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.chat-mock .chat-head {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-1);
}
.bubble {
  background: var(--surf-2);
  border: 1px solid var(--line-1);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--ink-0);
  max-width: 90%;
}
.bubble.you {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  color: var(--ink-0);
  margin-left: auto;
}
.bubble.draft {
  border-style: dashed;
  color: var(--ink-1);
}
.bubble .b-head {
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-2);
  margin-bottom: 6px;
}
.bubble-actions {
  display: flex; gap: 8px; margin-top: 10px;
}
.bubble-actions .ba {
  font-size: 11px; font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--surf-2);
  color: var(--ink-1);
}
.bubble-actions .ba.primary {
  background: var(--ink-0);
  color: var(--bg-0);
  border-color: var(--ink-0);
}

/* ---------- Action cards section ---------- */
.action-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.action-grid .card { padding: 24px; min-height: 240px; display: flex; flex-direction: column; }
.action-grid .card .ico-square {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--surf-3);
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--ink-1);
}
.action-grid .card.featured .ico-square {
  background: var(--accent-soft);
  border-color: transparent;
  color: var(--accent);
}
.action-grid .card .ac-cat {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.action-grid .card.featured .ac-cat { color: var(--accent); }
.action-grid .card h3 { font-size: 22px; margin-bottom: 10px; letter-spacing: -0.02em; }
.action-grid .card .desc { font-size: 13px; color: var(--ink-1); }
.action-grid .card .foot {
  margin-top: auto;
  padding-top: 14px;
  display: flex; gap: 6px;
  align-items: center;
}
.action-grid .card .foot .chip {
  font-size: 10px; font-weight: 500;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--surf-2);
  border: 1px solid var(--line-1);
  color: var(--ink-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Integrations ---------- */
.integ-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 56px;
}
.integ-cell {
  background: var(--surf-1);
  border: 1px solid var(--line-1);
  border-radius: var(--r-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 130px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.integ-cell:hover { border-color: var(--line-2); background: var(--surf-2); transform: translateY(-2px); }
.integ-cell .icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.integ-icon {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid var(--line-1);
  color: var(--accent);
}

/* Equalize painted glyph size across the integrations grid (see note above).
   Shrink the circle/round marks, enlarge the smaller rounded-rect marks. */
.integ-grid .integ-cell:nth-child(2) .integ-icon svg,  /* Todoist */
.integ-grid .integ-cell:nth-child(3) .integ-icon svg,  /* Google Tasks */
.integ-grid .integ-cell:nth-child(4) .integ-icon svg,  /* Connected (featured) */
.integ-grid .integ-cell:nth-child(11) .integ-icon svg { /* Gmail */
  width: 18px; height: 18px;
}
.integ-grid .integ-cell:nth-child(5) .integ-icon svg,  /* Apple Reminders */
.integ-grid .integ-cell:nth-child(7) .integ-icon svg,  /* Apple Notes */
.integ-grid .integ-cell:nth-child(9) .integ-icon svg { /* Slack */
  width: 22px; height: 22px;
}

.integ-icon.muted {
  opacity: 0.55;
}

.integ-cell.featured .integ-icon {
  background: var(--accent-soft) !important;
  border-color: transparent;
  color: var(--accent);
}
.integ-cell h4 { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink-0); }
.integ-cell p { font-size: 12px; color: var(--ink-2); }
.integ-cell.featured {
  grid-row: span 2;
  background:
    linear-gradient(180deg, oklch(0.78 0.10 240 / 0.10), var(--surf-1));
  border-color: var(--line-2);
}
.integ-cell.featured h4 { font-size: 22px; line-height: 1.15; }
.integ-cell.featured p { font-size: 13px; color: var(--ink-1); }
.integ-cell .link {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 4px;
}

/* ---------- Use cases ---------- */
.uc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.uc-card { padding: 30px; min-height: 240px; display: flex; flex-direction: column; }
.uc-card .uc-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.uc-card blockquote {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink-0);
}
.uc-card .uc-foot { font-size: 14px; color: var(--ink-1); margin-top: auto; line-height: 1.5; }

/* ---------- Trust pillars ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 56px;
}
.trust-card { padding: 24px; min-height: 200px; display: flex; flex-direction: column; }
.trust-card .ico {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--surf-3);
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--ink-1);
}
.trust-card h4 { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 8px; color: var(--ink-0); }
.trust-card p { font-size: 13px; color: var(--ink-2); line-height: 1.5; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 56px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.price-card {
  padding: 36px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
}
.price-card.pro {
  background:
    linear-gradient(180deg, oklch(0.78 0.10 240 / 0.16) 0%, transparent 50%),
    var(--surf-2);
  border-color: var(--line-3);
}
.price-card .price-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.price-card .tier { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.price-card .price-tag {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--surf-3);
  border: 1px solid var(--line-2);
  color: var(--ink-1);
}
.price-card.pro .price-tag {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: transparent;
}
.price-card .price-amount {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--ink-0);
}
.price-card .price-period {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-2);
}
.price-card .price-note { font-size: 13px; font-weight: 600; color: var(--accent); margin-bottom: 6px; }
.price-card .price-sub { font-size: 14px; color: var(--ink-2); margin-bottom: 28px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.price-card ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  color: var(--ink-1);
}
.price-card ul li::before {
  content: "";
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--surf-3);
  border: 1px solid var(--line-2);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path d='M2 5l2 2 4-4' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
.price-card.pro ul li::before {
  background-color: var(--accent);
  border-color: transparent;
}
.price-card .price-cta { margin-top: auto; }
.price-card .price-cta .btn { width: 100%; padding: 14px 22px; }

/* ---------- FAQ ---------- */
.faq-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--surf-1);
  border: 1px solid var(--line-1);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: background .2s ease, border-color .2s ease;
}
.faq-item[open] { background: var(--surf-2); border-color: var(--line-2); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-0);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--surf-3);
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--ink-1);
  transition: transform .25s ease;
  flex-shrink: 0;
  margin-left: 20px;
}
.faq-item[open] summary .plus { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); color: var(--bg-0); }
.faq-item .faq-body {
  padding: 0 28px 24px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-1);
  max-width: 80ch;
}
.faq-item[open] .faq-body {
  animation: faqReveal .32s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .faq-item[open] .faq-body { animation: none; }
}

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
  position: relative;
}
.final-cta-card {
  position: relative;
  background:
    radial-gradient(ellipse 60% 60% at 50% 100%, var(--accent-glow), transparent 70%),
    linear-gradient(180deg, var(--surf-2), var(--surf-1));
  border: 1px solid var(--line-2);
  border-radius: var(--r-2xl);
  padding: clamp(56px, 9vw, 120px) clamp(24px, 6vw, 80px);
  overflow: hidden;
}
.final-cta-card h2 { max-width: 16ch; margin: 0 auto 22px; }
.final-cta-card p { max-width: 540px; margin: 0 auto 38px; color: var(--ink-1); }

/* ---------- Footer ---------- */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--line-1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand { max-width: 320px; }
.footer-brand p { font-size: 13px; color: var(--ink-2); margin-top: 14px; line-height: 1.6; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--ink-1); transition: color .15s ease; }
.footer-col a:hover { color: var(--ink-0); }
.footer-bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line-1);
  font-size: 12px;
  color: var(--ink-3);
}

/* ---------- Reveal on intersect ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Staggered grid reveal — children animate in via JS (WAAPI) */
.reveal-stagger > * { opacity: 0; }
.reveal-stagger.in > * { opacity: 1; }

/* ---------- Interaction polish ---------- */
.card,
.integ-cell,
.faq-item {
  transition: transform .28s cubic-bezier(.2,.7,.2,1),
              border-color .25s ease,
              background .25s ease,
              box-shadow .28s ease;
}
.compare-card:hover,
.step-card:hover,
.uc-card:hover,
.trust-card:hover,
.action-grid .card:hover,
.price-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-3);
  box-shadow: var(--shadow-float);
}
.action-grid .card:hover .ico-square,
.trust-card:hover .ico {
  border-color: var(--accent-soft);
  color: var(--accent);
}
.store-btn:hover { opacity: 0.92; transform: translateY(-2px); }
.store-btn { transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease; }
.store-btn:not(.outline):hover { box-shadow: 0 14px 30px -12px rgba(0,0,0,0.7); }
.faq-item summary .plus,
.integ-cell .integ-icon { transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease; }
.integ-cell:hover .integ-icon { color: var(--ink-0); }
.integ-cell .link { transition: gap .2s ease, color .2s ease; }
.integ-cell:hover .link { gap: 8px; }
.bubble-actions .ba { transition: background .2s ease, border-color .2s ease, color .2s ease, transform .15s ease; }
.bubble-actions .ba:hover { border-color: var(--line-3); color: var(--ink-0); }
.bubble-actions .ba.primary:hover {
  background: var(--ink-0);
  border-color: var(--ink-0);
  color: var(--bg-0);
  opacity: .9;
}
.bubble-actions .ba:active { transform: scale(.97); }
.faq-item summary:hover .plus { border-color: var(--line-3); color: var(--ink-0); }
.faq-item[open] summary:hover .plus {
  border-color: var(--accent);
  color: var(--bg-0);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .compare-grid, .steps-grid, .change-grid, .action-grid, .integ-grid, .uc-grid, .trust-grid, .pricing-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .action-grid { grid-template-columns: repeat(2, 1fr); }
  .integ-grid { grid-template-columns: repeat(2, 1fr); }
  .integ-cell.featured { grid-row: auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-side { display: none; }
}
@media (max-width: 560px) {
  .action-grid, .integ-grid, .trust-grid { grid-template-columns: 1fr; }
  .footer-bot { flex-direction: column; gap: 12px; }
}

/* ---------- Multi-page site extensions ---------- */
.site-header {
  left: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

.site-header .nav {
  pointer-events: auto;
}

.nav-logo-img {
  display: block;
  height: 15px;
  object-fit: contain;
  width: auto;
}

.nav-toggle {
  align-items: center;
  background: var(--surf-2);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--ink-0);
  cursor: pointer;
  display: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  height: 34px;
  justify-content: center;
  margin-left: 4px;
  min-width: 58px;
  padding: 0 12px;
}

.nav-drawer {
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  background: rgba(12, 12, 17, 0.96);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-float);
  display: none;
  flex-direction: column;
  gap: 2px;
  left: 50%;
  max-height: calc(100dvh - 88px);
  overflow-y: auto;
  padding: 10px;
  position: fixed;
  top: 68px;
  transform: translateX(-50%);
  width: min(420px, calc(100vw - 24px));
  z-index: 99;
}

.nav-drawer.open {
  display: flex;
}

.nav-drawer a:not(.store-btn) {
  border-radius: var(--r-sm);
  color: var(--ink-1);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 14px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-drawer a:not(.store-btn):hover,
.nav-drawer a:not(.store-btn):focus-visible,
.nav-drawer a:not(.store-btn)[aria-current="page"] {
  background: var(--surf-2);
  color: var(--ink-0);
  outline: none;
}

.nav-drawer-cta {
  border-top: 1px solid var(--line-1);
  margin-top: 6px;
  padding-top: 10px;
}

.nav-drawer-cta.store-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-drawer-cta.store-cta .store-btn {
  background: var(--surf-2);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  color: var(--ink-0);
  justify-content: center;
  padding: 10px 20px 10px 16px;
  width: 100%;
}

.nav-drawer-cta.store-cta .store-btn .store-text small {
  opacity: 0.72;
}

.nav-drawer-cta.store-cta .store-btn.disabled {
  opacity: 0.92;
}

.nav-drawer-cta .btn {
  width: 100%;
}

body.nav-open {
  overflow: hidden;
}

.page-hero {
  border-bottom: 1px solid var(--line-1);
  padding-bottom: clamp(36px, 5vw, 56px);
  padding-top: calc(88px + 24px);
}

.page-hero-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  padding: 0;
  position: relative;
}

.page-hero-card .eyebrow {
  margin-bottom: 10px;
}

.page-hero-card h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-top: 0;
  max-width: none;
}

.page-hero-card .lead {
  color: var(--ink-1);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.55;
  margin-top: 16px;
  max-width: 52ch;
}

.legal-page {
  padding-bottom: var(--pad-section);
  padding-top: clamp(40px, 6vw, 64px);
}

.legal-page .container {
  max-width: var(--maxw);
}

.legal-prose {
  max-width: 720px;
}

.legal-page .legal-prose > * {
  max-width: 720px;
}

.legal-page h2 {
  border-top: 1px solid var(--line-1);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-top: 56px;
  padding-top: 28px;
}

.legal-page h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 28px;
}

.legal-page p,
.legal-page li {
  color: var(--ink-1);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 16px;
}

.legal-page li {
  margin-top: 10px;
}

.legal-page ol {
  margin-top: 16px;
  padding-left: 1.25rem;
}

.legal-page ul {
  margin-top: 16px;
  padding-left: 1.25rem;
}

.legal-page a {
  border-bottom: 1px solid var(--line-2);
  color: var(--ink-0);
}

.legal-page a:hover {
  color: var(--accent);
}

.legal-page code {
  background: var(--surf-2);
  border: 1px solid var(--line-1);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.9em;
  padding: 2px 6px;
}

.contact-panel {
  background:
    linear-gradient(180deg, oklch(0.78 0.10 240 / 0.12), var(--surf-1));
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  margin-top: 24px;
  padding: 32px;
}

.contact-panel h2 {
  border-top: 0;
  font-size: 24px;
  margin-top: 0;
  padding-top: 0;
}

.contact-panel a {
  font-weight: 600;
}

.store-btn.disabled {
  cursor: not-allowed;
  opacity: 0.72;
  pointer-events: none;
}

.store-soon {
  background: var(--accent-soft);
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-left: 6px;
  padding: 3px 8px;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }

  .site-header .nav {
    justify-content: space-between;
    width: min(240px, calc(100vw - 32px));
  }
}

@media (max-width: 560px) {
  .nav-drawer {
    top: 64px;
    width: calc(100vw - 20px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-side,
  .waveform .bar,
  .mini-wave .bar,
  .mini-wave-head .blip,
  .typed-rows .row {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reveal-stagger > * {
    opacity: 1;
  }

  .compare-card:hover,
  .step-card:hover,
  .uc-card:hover,
  .trust-card:hover,
  .action-grid .card:hover,
  .price-card:hover,
  .store-btn:hover,
  .nav-cta:hover {
    transform: none;
  }
}
