/* ─────────────────────────────────────────────
   MATTRS — site styles
   Neutral-first. Signal color used surgically.
   True black / true white. Depth via gradient,
   texture, and liquid glass — not tinted cards.
───────────────────────────────────────────── */
:root {
  --ink-0: #000000;
  --ink-1: #0A0A0A;
  --ink-2: #141414;
  --ink-3: #1C1C1E;
  --ink-line: rgba(255,255,255,0.08);
  --ink-line-2: rgba(255,255,255,0.14);
  --ink-text: rgba(255,255,255,0.92);
  --ink-mute: rgba(255,255,255,0.55);
  --ink-dim: rgba(255,255,255,0.35);

  --paper-0: #FFFFFF;
  --paper-1: #FAFAFA;
  --paper-2: #F2F2F3;
  --paper-line: rgba(0,0,0,0.08);
  --paper-line-2: rgba(0,0,0,0.14);
  --paper-text: #0A0A0A;
  --paper-mute: rgba(0,0,0,0.55);
  --paper-dim: rgba(0,0,0,0.35);

  --brand: #C6FF4A;
  --brand-ink: #0A0A0A;
  --brand-deep: #8FBE1F;

  --sig-steps: #8BE04E;
  --sig-exercise: #FF6A3D;
  --sig-mindful: #5AD6C8;
  --sig-schedule: #B9B9BE;

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }
html, body { background: var(--ink-0); color: var(--ink-text); font-family: 'Inter', system-ui, sans-serif; font-feature-settings: "ss01","cv11"; }
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: 0; cursor: pointer; color: inherit; }

.wrap  { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.wrap-tight { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

/* ───────── Type system ───────── */
.display {
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.88;
}
.tech-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.tech-label.paper { color: var(--paper-mute); }
.tech-label.brand { color: var(--brand); }

.annot {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
  border: 1px solid var(--ink-line);
  padding: 6px 10px; border-radius: 4px;
}
.annot .quote { color: var(--ink-dim); }

.body { font-size: 17px; line-height: 1.55; color: var(--ink-mute); }
.body.paper { color: var(--paper-mute); }
.body.lg { font-size: 20px; }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 6px;
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.01em;
  transition: transform .12s, background .15s, border-color .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--brand); color: var(--brand-ink);
  box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 -1px 0 rgba(0,0,0,0.15) inset;
}
.btn-primary:hover { background: #D7FF5C; }
.btn-ghost-dark {
  background: transparent; color: var(--ink-text);
  border: 1px solid var(--ink-line-2);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,0.04); }
.btn-ghost-light {
  background: transparent; color: var(--paper-text);
  border: 1px solid var(--paper-line-2);
}
.btn-ghost-light:hover { background: rgba(0,0,0,0.04); }

/* ───────── Wordmark ───────── */
.wordmark {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px; letter-spacing: 0.08em;
}
.wordmark-mark {
  width: 24px; height: 24px; border-radius: 5px;
  background: var(--ink-text); color: var(--ink-0);
  display: grid; place-items: center;
  font-family: 'Archivo Black'; font-size: 12px;
  letter-spacing: 0;
}
.wordmark.paper .wordmark-mark { background: var(--ink-0); color: var(--paper-0); }
.wordmark-register {
  font-family: 'JetBrains Mono'; font-size: 9px;
  color: var(--ink-dim); letter-spacing: 0.14em;
  transform: translateY(-6px); margin-left: -2px;
}
.wordmark-lockup {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  justify-self: start;
  letter-spacing: 0;
}
.wordmark-lockup .wordmark-rail {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0;
  position: absolute;
  right: 100%;
  top: 0;
  margin-right: 6px;
  font-family: 'Archivo', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  color: rgba(255,255,255,0.5);
  height: 18px;
  transform: translateY(2px);
}
.wordmark-lockup .wordmark-name {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 18px;
  color: var(--ink-text);
}

/* ───────── Nav ───────── */
nav.top {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--ink-0) 75%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--ink-line);
}
nav.top .inner {
  max-width: 1280px; margin: 0 auto; padding: 14px 40px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
}
.nav-links { display: flex; gap: 28px; font-size: 13px; color: var(--ink-mute); font-weight: 500; justify-self: center; }
.nav-links a { transition: color .15s; }
.nav-links a:hover { color: var(--ink-text); }
.nav-cta-wrap { justify-self: end; display: flex; align-items: center; gap: 12px; }

.app-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 500;
}
.app-tag .status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand); box-shadow: 0 0 10px var(--brand);
}

/* ───────── Hero ───────── */
.hero {
  min-height: calc(100svh - 73px);
  padding: 72px 0 96px;
  display: flex;
  align-items: center;
  position: relative;
  background:
    radial-gradient(860px 420px at 50% 8%, rgba(198,255,74,0.08), transparent 62%),
    linear-gradient(180deg, #000 0%, #0A0A0A 100%);
}
.hero-center {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-label-row {
  display: flex; gap: 12px; align-items: center; justify-content: center; flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero h1 { font-size: clamp(64px, 9vw, 136px); margin-bottom: 24px; max-width: 10ch; }
.hero h1 .slash {
  display: inline-block;
  padding: 0 0.04em;
  -webkit-text-stroke: 1px var(--brand);
  color: transparent;
}
.hero h1 .quiet {
  display: inline-block;
  color: var(--ink-mute); font-weight: 400;
  font-family: 'Archivo', sans-serif; font-style: italic;
  font-size: 0.82em; letter-spacing: -0.03em;
}
.hero-sub {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.38;
  color: var(--ink-mute);
  max-width: 760px;
  margin: 0 auto 34px;
}
.hero-cta-row { display: flex; gap: 12px; align-items: center; justify-content: center; flex-wrap: wrap; }
.hero-scroll-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--ink-text);
}
.hero-scroll-copy {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink-text);
  transition: color .15s ease;
}
.hero-scroll-arrow {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink-line-2);
  background:
    radial-gradient(circle at 50% 30%, rgba(198,255,74,0.18), rgba(198,255,74,0.02) 52%, transparent 68%),
    rgba(255,255,255,0.02);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 0 1px rgba(255,255,255,0.02);
  color: var(--brand);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
  animation: heroScrollPulse 2.8s ease-in-out infinite;
}
.hero-scroll-link:hover .hero-scroll-copy { color: var(--brand); }
.hero-scroll-link:hover .hero-scroll-arrow {
  transform: translateY(2px);
  border-color: rgba(198,255,74,0.4);
  background:
    radial-gradient(circle at 50% 30%, rgba(198,255,74,0.26), rgba(198,255,74,0.04) 56%, transparent 70%),
    rgba(255,255,255,0.03);
}
@keyframes heroScrollPulse {
  0%, 100% { transform: translateY(0); box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 0 0 1px rgba(255,255,255,0.02); }
  50% { transform: translateY(4px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 10px 24px rgba(0,0,0,0.18); }
}

/* ───────── Hero device ───────── */
.hero-device-frame {
  position: relative;
  display: flex; justify-content: center;
  padding-top: 20px;
}
.device-tape {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
  padding: 5px 12px; border: 1px solid var(--ink-line-2);
  border-radius: 3px; background: var(--ink-1);
  z-index: 5; display: flex; gap: 10px; align-items: center;
  white-space: nowrap;
}
.device-tape::before { content: '◉'; color: var(--brand); }

.iphone {
  width: 340px; height: 700px; border-radius: 52px;
  background: linear-gradient(180deg, #1f1f22 0%, #0e0e10 100%);
  padding: 10px;
  box-shadow:
    0 80px 120px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}
.iphone::before {
  content: ''; position: absolute; left: -3px; top: 180px;
  width: 3px; height: 90px; background: #1a1a1c; border-radius: 2px 0 0 2px;
}
.iphone-screen {
  width: 100%; height: 100%; border-radius: 44px;
  background: #000; overflow: hidden;
  position: relative; display: flex; flex-direction: column;
}
.island {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 112px; height: 32px; border-radius: 18px;
  background: #000; z-index: 20;
}
.status-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 28px 10px;
  font-family: -apple-system, system-ui;
  font-size: 14px; font-weight: 600; color: white;
  position: relative; z-index: 10;
}
.home-screen {
  flex: 1; padding: 32px 22px 0;
  display: flex; flex-direction: column;
  color: white; font-family: -apple-system, system-ui;
  position: relative;
}
.hs-brand { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.hs-brand .date { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.14em; text-transform: uppercase; font-family: 'JetBrains Mono', monospace; }
.hs-brand .word { font-family: 'Archivo Black'; font-size: 13px; letter-spacing: 0.1em; }
.hs-hero { margin-top: 4px; }
.hs-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
.hs-value { font-family: 'Archivo Black'; font-size: 56px; line-height: 0.9; letter-spacing: -0.035em; }
.hs-value .unit { font-size: 20px; color: rgba(255,255,255,0.45); font-weight: 400; letter-spacing: -0.02em; margin-left: 4px; }
.hs-progress { margin-top: 14px; height: 5px; border-radius: 99px; background: rgba(255,255,255,0.08); overflow: hidden; }
.hs-progress-fill { height: 100%; width: 64%; background: var(--sig-steps); border-radius: 99px; box-shadow: 0 0 14px color-mix(in srgb, var(--sig-steps) 60%, transparent); }
.hs-status-row { display: flex; justify-content: space-between; align-items: baseline; margin-top: 10px; font-size: 11px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.hs-status-row .of { color: var(--sig-steps); }
.hs-lock { margin-top: 22px; border-radius: 22px; padding: 18px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(14px) saturate(140%); position: relative; overflow: hidden; }
.hs-lock::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 40%); pointer-events: none; }
.hs-lock-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.hs-lock-head .l { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.hs-lock-head .r { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand); display: flex; align-items: center; gap: 6px; }
.hs-lock-head .r .d { width: 5px; height: 5px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 8px var(--brand); }
.hs-lock-title { font-family: 'Archivo Black'; font-size: 22px; letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 12px; }
.hs-lock-meta { display: flex; gap: 10px; flex-wrap: wrap; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); }
.hs-lock-meta .pill { padding: 4px 8px; border-radius: 4px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); }
.hs-rings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 18px; }
.hs-ring { padding: 12px 10px; border-radius: 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); }
.hs-ring .ring-ico { width: 22px; height: 22px; border-radius: 50%; border: 2.5px solid; margin-bottom: 8px; position: relative; }
.hs-ring .ring-ico::after { content: ''; position: absolute; inset: -2.5px; border: 2.5px solid transparent; border-right-color: currentColor; border-top-color: currentColor; border-radius: 50%; transform: rotate(-30deg); }
.hs-ring.r1 { color: var(--sig-steps); }
.hs-ring.r2 { color: var(--sig-exercise); }
.hs-ring.r3 { color: var(--sig-mindful); }
.hs-ring .k { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.hs-ring .v { font-family: 'Archivo Black'; font-size: 15px; letter-spacing: -0.01em; color: white; margin-top: 2px; }

/* ───────── Shared section ───────── */
section { padding: 140px 0; position: relative; }
.section-head { max-width: 820px; margin-bottom: 80px; }
.section-head .rule { width: 40px; height: 1px; background: var(--ink-mute); margin-bottom: 16px; }
.section-head.paper .rule { background: var(--paper-mute); }
.section-head h2 { font-size: clamp(48px, 6vw, 88px); margin: 14px 0 0; }
.section-head h2 .brand { color: var(--brand); }
.section-head p { margin-top: 24px; font-size: 20px; max-width: 600px; }
.shots-section .section-head {
  max-width: 1120px;
}
.shots-section .section-head h2 {
  max-width: none;
}
.shots-section .section-head .display-line {
  display: block;
  white-space: nowrap;
}
.shots-section .section-head p {
  max-width: 760px;
}
.shots-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 28px;
}
.app-store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 56px;
}
.app-store-badge-link:hover {
  transform: none;
}
.app-store-badge {
  display: block;
  height: 56px;
  width: auto;
}
#how .section-head {
  max-width: none;
}
#how .section-head h2 {
  max-width: none;
  width: max-content;
}
#how .section-head .display-line {
  display: block;
  white-space: nowrap;
}
#how .section-head .display-line-1,
#how .section-head .display-line-4 {
  color: var(--ink-text);
}
#how .section-head .display-line-2 {
  color: #8f8f95;
}
#how .section-head .display-line-3 {
  color: var(--brand);
}
#how .section-head p {
  max-width: 1080px;
}

.section-chrome { position: absolute; inset: 0; pointer-events: none; }
.section-chrome .corner-label { position: absolute; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim); }
.section-chrome .corner-label.tl { top: 24px; left: 40px; }
.section-chrome .corner-label.tr { top: 24px; right: 40px; }
.section-chrome.paper .corner-label { color: var(--paper-dim); }

/* ───────── How it works ───────── */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink-line);
  border-left: 1px solid var(--ink-line);
}
.step {
  padding: 40px 36px 52px;
  border-right: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
}
.step-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 48px; }
.step-num { font-family: 'Archivo Black'; font-size: 80px; line-height: 0.8; color: var(--ink-text); letter-spacing: -0.04em; }
.step-num .slash { color: var(--brand); margin-right: 2px; }
.step-tag { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim); border: 1px solid var(--ink-line-2); padding: 5px 8px; border-radius: 3px; }
.step h3 { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: 32px; letter-spacing: -0.025em; line-height: 1; margin-bottom: 18px; }
.step p {
  font-size: 17px;
  color: color-mix(in srgb, var(--ink-text) 88%, var(--ink-mute) 12%);
  line-height: 1.65;
  max-width: 30ch;
  min-height: 0;
}

/* ───────── Screenshots carousel ───────── */
.shots-section { background: var(--ink-1); border-top: 1px solid var(--ink-line); border-bottom: 1px solid var(--ink-line); }
.shots-carousel-wrap { position: relative; margin-top: 56px; }
.showcase-viewport { overflow: hidden; }
.showcase-track { display: flex; gap: 24px; will-change: transform; user-select: none; -webkit-user-select: none; }
.showcase-slide { flex: 0 0 auto; width: 280px; display: flex; flex-direction: column; gap: 20px; }
.shot-card { margin: 0; border-radius: 36px; overflow: hidden; background: var(--ink-2); border: 1px solid var(--ink-line); aspect-ratio: 9 / 19.5; display: flex; align-items: center; justify-content: center; }
.shot-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.showcase-copy { display: flex; flex-direction: column; gap: 6px; padding: 0 4px; }
.showcase-copy .showcase-index { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.16em; color: var(--ink-dim); }
.showcase-copy strong { font-family: 'Archivo Black'; font-size: 18px; letter-spacing: -0.02em; color: var(--ink-text); }
.showcase-copy p { font-size: 13px; color: var(--ink-mute); line-height: 1.5; }
.carousel-arrow { position: absolute; top: 36%; width: 44px; height: 44px; border-radius: 50%; background: var(--ink-2); border: 1px solid var(--ink-line-2); color: var(--ink-text); font-size: 22px; display: grid; place-items: center; transition: background .15s; z-index: 10; cursor: pointer; }
.carousel-arrow:hover { background: var(--ink-3); }
.carousel-arrow-prev { left: -22px; }
.carousel-arrow-next { right: -22px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-line-2); border: none; cursor: pointer; padding: 0; transition: background .2s; }
.carousel-dot.is-active { background: var(--brand); box-shadow: 0 0 8px var(--brand); }

/* ───────── Paper section ───────── */
.paper-section { background: var(--paper-0); color: var(--paper-text); }
.paper-section .body { color: var(--paper-mute); }

/* ───────── Pricing ───────── */
#pricing .section-head {
  max-width: 1120px;
}
#pricing .section-head h2 {
  max-width: none;
}
#pricing .section-head .display-line {
  display: block;
  white-space: nowrap;
}
.prices { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 64px; border-top: 1px solid var(--paper-line); border-left: 1px solid var(--paper-line); }
.price { padding: 48px 36px; border-right: 1px solid var(--paper-line); border-bottom: 1px solid var(--paper-line); display: flex; flex-direction: column; background: var(--paper-0); }
.price.featured { background: var(--ink-0); color: var(--paper-0); }
.price-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 56px; }
.price-name { font-family: 'Archivo'; font-weight: 700; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--paper-text); }
.price.featured .price-name { color: var(--paper-0); }
.price-tag-rec {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--brand-ink);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06), 0 8px 22px rgba(198,255,74,0.18);
}
.price-amount { font-family: 'Archivo Black'; font-size: 72px; letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; color: var(--paper-text); }
.price.featured .price-amount { color: var(--paper-0); }
.price-amount .per { font-size: 16px; font-family: 'JetBrains Mono', monospace; font-weight: 400; color: var(--paper-mute); letter-spacing: 0.1em; }
.price.featured .price-amount .per { color: rgba(255,255,255,0.55); }
.price-tag { font-size: 14px; color: var(--paper-mute); margin-bottom: 36px; max-width: 260px; }
.price.featured .price-tag { color: rgba(255,255,255,0.55); }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.price-feats li { display: grid; grid-template-columns: 24px 1fr; font-size: 14px; line-height: 1.4; color: var(--paper-text); padding: 12px 0; border-top: 1px solid var(--paper-line); }
.price.featured .price-feats li { border-color: rgba(255,255,255,0.1); color: var(--paper-0); }
.price-feats li::before { content: '→'; font-family: 'JetBrains Mono', monospace; color: var(--paper-text); }
.price.featured .price-feats li::before { color: var(--brand); }
.pricing-actions {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ───────── FAQ ───────── */
.faqs { border-top: 1px solid var(--ink-line); }
.faq { border-bottom: 1px solid var(--ink-line); padding: 28px 8px; cursor: pointer; transition: background .15s; }
.faq:hover { background: rgba(255,255,255,0.015); }
.faq-q { display: grid; grid-template-columns: 60px 1fr 40px; align-items: center; gap: 20px; }
.faq-q .idx { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.14em; color: var(--ink-dim); }
.faq-q .text { font-family: 'Archivo'; font-size: 20px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink-text); }
.faq-q .plus { font-family: 'JetBrains Mono', monospace; color: var(--ink-mute); font-size: 20px; text-align: right; transition: transform .25s, color .25s; }
.faq.open .faq-q .plus { transform: rotate(45deg); color: var(--brand); }
.faq-a { max-height: 0; overflow: hidden; margin-left: 80px; padding-right: 60px; transition: max-height .35s ease, margin-top .25s; font-size: 15px; color: var(--ink-mute); line-height: 1.65; }
.faq.open .faq-a { max-height: 500px; margin-top: 18px; }

/* ───────── Final CTA ───────── */
.final-cta { padding: 160px 0; background: #000; border-top: 1px solid var(--ink-line); position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(800px 500px at 80% 50%, rgba(198,255,74,0.1), transparent 60%); }
.final-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: center; position: relative; }
.final-cta h2 { font-size: clamp(56px, 8vw, 120px); margin: 20px 0 28px; }
.final-cta h2 .brand { color: var(--brand); }
.final-cta p { font-size: 20px; color: var(--ink-mute); max-width: 480px; margin-bottom: 36px; }
.final-big-num { font-family: 'Archivo Black'; font-size: clamp(120px, 18vw, 260px); letter-spacing: -0.05em; line-height: 0.82; color: transparent; -webkit-text-stroke: 1.5px var(--ink-line-2); text-align: right; }

/* ───────── Footer ───────── */
footer { background: #000; padding: 32px 0 22px; border-top: 1px solid var(--ink-line); }
.foot-top { display: grid; grid-template-columns: minmax(300px, 2.1fr) 0.95fr 0.75fr 0.75fr; gap: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--ink-line); align-items: start; }
.foot-top > .foot-col:first-child {
  min-height: 82px;
  display: flex;
  align-items: center;
}
.foot-wordmark {
  margin-left: 24px;
  margin-top: 0;
}
.foot-wordmark .wordmark-name {
  font-size: 42px;
  line-height: 42px;
  letter-spacing: 0.035em;
}
.foot-wordmark .wordmark-rail {
  font-size: 14px;
  height: 42px;
  margin-right: 14px;
  position: absolute;
  right: 100%;
  top: 0;
  color: rgba(255,255,255,0.58);
}
.foot-wordmark .wordmark-rail span {
  position: absolute;
  right: 0;
  line-height: 1;
}
.foot-wordmark .wordmark-rail span:first-child {
  top: 5px;
}
.foot-wordmark .wordmark-rail span:last-child {
  bottom: 5px;
}
.foot-col h5 { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 12px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.foot-col ul a { color: var(--ink-mute); font-size: 14px; transition: color .15s; }
.foot-col ul a:hover { color: var(--ink-text); }
.foot-tagline { font-size: 13px; color: var(--ink-mute); margin-top: 18px; max-width: 300px; line-height: 1.5; }
.foot-legal-note {
  max-width: 720px;
  margin-top: 16px;
  color: var(--ink-dim);
  font-size: 11px;
  line-height: 1.55;
}
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim); }

/* ───────── Responsive ───────── */
@media (max-width: 1060px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .steps { grid-template-columns: 1fr; }
  .prices { grid-template-columns: 1fr; }
  .final-grid { grid-template-columns: 1fr; }
  .final-big-num { display: none; }
  .nav-links { display: none; }
  .foot-top { grid-template-columns: 1.25fr 1fr 1fr; gap: 24px; }
  .foot-top > .foot-col:first-child {
    grid-column: 1 / -1;
    min-height: 0;
  }
  .foot-wordmark {
    margin-left: 12px;
  }
  section { padding: 96px 0; }
}

@media (max-width: 768px) {
  .wrap, .wrap-tight { padding: 0 20px; }
  nav.top .inner { padding: 12px 20px; }
  .hero-device-frame { display: none; }
  .hero-grid { min-height: auto; }
  #how .section-head h2 {
    width: auto;
  }
  #how .section-head .display-line {
    white-space: normal;
  }
  .shots-section .section-head .display-line {
    white-space: normal;
  }
  #pricing .section-head .display-line {
    white-space: normal;
  }
  .shots-actions {
    justify-content: flex-start;
  }
  .app-store-badge {
    height: 48px;
  }
  .step {
    padding: 32px 20px 36px;
  }
  .step-head {
    margin-bottom: 28px;
  }
  .step-num {
    font-size: 62px;
  }
  .step h3 {
    font-size: 28px;
  }
  .faq-q { grid-template-columns: 44px 1fr 32px; gap: 12px; }
  .faq-a { margin-left: 56px; padding-right: 20px; }
  .carousel-arrow-prev { left: -14px; }
  .carousel-arrow-next { right: -14px; }
  .section-chrome .corner-label.tr { display: none; }
  .foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .foot-top > .foot-col:first-child {
    grid-column: 1 / -1;
  }
  .foot-wordmark {
    margin-left: 8px;
    margin-top: 0;
  }
  .foot-wordmark .wordmark-name {
    font-size: 32px;
    line-height: 32px;
  }
  .foot-wordmark .wordmark-rail {
    font-size: 11px;
    height: 32px;
    margin-right: 10px;
    position: absolute;
    right: 100%;
    top: 0;
  }
  .foot-wordmark .wordmark-rail span:first-child {
    top: 4px;
  }
  .foot-wordmark .wordmark-rail span:last-child {
    bottom: 4px;
  }
  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ───────── Legacy legal/support pages ───────── */
body.page-legal {
  background:
    linear-gradient(180deg, #0d0d10 0px, #0d0d10 160px, var(--paper-0) 160px, var(--paper-0) 100%);
  color: var(--paper-text);
}

.site-shell {
  min-height: 100vh;
}

.page-legal .topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(13, 13, 16, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-legal .topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.page-legal .brand-lockup {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.page-legal .brand-lockup .brand-lead {
  font-size: 0.9rem;
  opacity: 0.5;
}

.page-legal .brand-lockup .brand-name {
  font-size: 1.8rem;
  line-height: 1;
}

.page-legal .nav-links {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.page-legal .nav-links a:hover,
.page-legal .nav-links a:focus-visible {
  color: #fff;
}

.page-legal .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
}

.page-legal .eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(0, 0, 0, 0.22);
}

.legal-shell {
  padding: 46px 0 72px;
}

.legal-hero {
  padding: 10px 0 32px;
}

.legal-hero h1 {
  margin: 12px 0 12px;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.legal-hero p {
  max-width: 44rem;
  color: var(--paper-mute);
  line-height: 1.7;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 22px;
  color: var(--paper-mute);
  font-size: 0.95rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 104px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(23, 23, 26, 0.04);
  border: 1px solid var(--paper-line);
}

.legal-nav h2 {
  margin: 0 0 14px;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.legal-nav a {
  color: var(--paper-mute);
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: var(--paper-text);
}

.legal-content {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 23, 26, 0.08);
  border-radius: 34px;
  padding: 36px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}

.legal-section + .legal-section {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--paper-line);
}

.legal-section h2 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.legal-section p,
.legal-section li {
  color: var(--paper-text);
  line-height: 1.75;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-meta a,
.legal-content a {
  text-decoration: underline;
  text-decoration-color: rgba(23, 23, 26, 0.22);
  text-underline-offset: 0.18em;
}

.legal-meta a:hover,
.legal-meta a:focus-visible,
.legal-content a:hover,
.legal-content a:focus-visible {
  text-decoration-color: rgba(23, 23, 26, 0.5);
}

.callout {
  padding: 22px;
  border-radius: 20px;
  background: rgba(198, 255, 74, 0.12);
  border: 1px solid rgba(198, 255, 74, 0.22);
}

.callout p {
  margin: 0;
}

.page-legal .footer {
  background: var(--paper-0);
  padding: 52px 0 70px;
}

.page-legal .footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--paper-line);
  color: var(--paper-mute);
  font-size: 0.95rem;
}

.page-legal .footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 1060px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }
}

@media (max-width: 720px) {
  .page-legal .topbar-inner,
  .page-legal .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
