/* Topra v2 — editorial, climbing-forward
   ----------------------------------------------------------------
   Design notes:
   - Palette pulls from climbing-tape orange, chalk bone, slate/graphite
   - No background gradient orbs. Texture via noise + paper tone
   - Display serif (Fraunces) for editorial tone; mono for technical bits
   - Asymmetric grid; photographs carry the visual weight
*/

:root {
  /* Bone/paper base, graphite ink, tape accent */
  --bg: #ece3d1;
  --bg-deep: #e4d9c3;
  --paper: #f3ecdb;
  --ink: #17120d;
  --ink-soft: #3f362b;
  --ink-faint: #62523f;
  --rule: rgba(23, 18, 13, 0.14);
  --rule-strong: rgba(23, 18, 13, 0.32);
  --tape: #f04b1e;              /* safety-tape orange */
  --tape-deep: #b5340f;
  --chalk: #ffffff;
  --ok: #2d8a4e;
  --warn: #c98a00;
  --shadow: 0 20px 40px -20px rgba(23, 18, 13, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-image:
    radial-gradient(1200px 800px at 10% -10%, var(--bg-deep), transparent 60%),
    radial-gradient(1000px 700px at 100% 105%, var(--bg-deep), transparent 55%);
}

/* Subtle paper grain — very lightweight, not a SaaS-glow */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.09  0 0 0 0 0.07  0 0 0 0 0.05  0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  z-index: 1;
}
a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

::selection { background: var(--tape); color: var(--chalk); }

/* -------------------- NAV -------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.logo-mark { width: 28px; height: 28px; color: var(--tape); }
.logo-text { font-size: 22px; }
.logo-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding-left: 10px;
  border-left: 1px solid var(--rule-strong);
  margin-left: 4px;
}
.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--tape); }

/* Tape-strip button — the climbing-tape metaphor */
.btn-tape {
  position: relative;
  display: inline-block;
  padding: 10px 18px 11px;
  background: var(--tape);
  color: var(--chalk);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transform: rotate(-1.2deg);
  box-shadow: 2px 3px 0 var(--ink);
  border: 1px solid var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-tape:hover { transform: rotate(-0.6deg) translate(-1px, -1px); box-shadow: 3px 4px 0 var(--ink); }
.btn-tape:active { transform: rotate(-1deg) translate(1px, 1px); box-shadow: 1px 1px 0 var(--ink); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 600;
  font-size: 15px;
  border-radius: 2px;
  border: 1px solid var(--ink);
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.btn-primary:hover { background: var(--tape); border-color: var(--tape); color: var(--chalk); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  border-bottom: 1px solid var(--rule-strong);
  transition: border-color 0.15s, color 0.15s;
}
.btn-ghost:hover { border-color: var(--tape); color: var(--tape); }

/* -------------------- HERO -------------------- */
.hero {
  position: relative;
  padding: 72px 28px 40px;
  max-width: 1260px;
  margin: 0 auto;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.tick-square {
  width: 12px; height: 12px;
  background: var(--tape);
  display: inline-block;
  border: 1px solid var(--ink);
  transform: rotate(6deg);
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(54px, 8vw, 116px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 28px;
}
.serif-italic {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-style: normal;
  color: var(--tape);
  font-variation-settings: normal;
  font-size: 1em;
  letter-spacing: -0.015em;
  line-height: 0.95;
  display: inline-block;
}
.underline-hand {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.hand-underline {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -0.15em;
  width: 104%;
  height: 0.22em;
  color: var(--tape);
  pointer-events: none;
}

.hero-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 36px;
}

.hero-badges {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-bottom: 32px;
}
.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 7px;
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.005em;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--tape);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}

/* Hero photo with overlaid annotations & a "scorecard" ticket */
.hero-photo { position: relative; }
.photo-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.03);
}
.annotation {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  color: var(--tape);
  mix-blend-mode: normal;
}
.annot-circle {
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.25));
  opacity: 0;
  transform-origin: center;
  transform: scale(0.6);
  animation: annot-pop 0.6s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: calc(var(--i) * 160ms + 300ms);
}
@keyframes annot-pop {
  to { opacity: 1; transform: scale(1); }
}

.photo-ticket {
  position: absolute;
  bottom: -12px;
  right: -5px;
  width: 240px;
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 14px 16px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  transform: rotate(2deg);
  box-shadow: 4px 6px 0 var(--ink);
  color: var(--ink);
}
.ticket-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dashed var(--rule-strong); }
.ticket-row:last-child { border-bottom: none; }
.t-label { color: var(--ink-faint); text-transform: uppercase; }
.t-value { font-weight: 700; }
.t-value.send { color: var(--ok); letter-spacing: 0.18em; }

.hero-photo figcaption {
  margin-top: 34px;
  padding-left: 2px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  text-transform: uppercase;
}
.hero-photo figcaption span { color: var(--ink-soft); text-transform: none; letter-spacing: 0; }

/* -------------------- MARQUEE -------------------- */
.marquee {
  margin-top: 70px;
  padding: 22px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
  white-space: nowrap;
  background: var(--paper);
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: inline-flex;
  gap: 28px;
  animation: marquee-roll 40s linear infinite;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.marquee-track span:nth-child(even) { color: var(--tape); font-style: normal; font-weight: 700; }
@keyframes marquee-roll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* -------------------- SECTION HEAD -------------------- */
.section-head {
  max-width: 760px;
  margin-bottom: 56px;
}
.eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--tape-deep);
  margin-bottom: 18px;
  padding-left: 20px;
  position: relative;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 1px;
  background: var(--tape-deep);
}
.eyebrow.dark { color: var(--chalk); }
.eyebrow.dark::before { background: var(--chalk); }

.section-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 22px;
}
.section-head .lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 58ch;
}

/* -------------------- LOOP -------------------- */
.loop {
  max-width: 1260px;
  margin: 0 auto;
  padding: 110px 28px 40px;
  position: relative;
  z-index: 2;
}

.loop-steps { list-style: none; }

.loop-step {
  display: grid;
  grid-template-columns: 90px 1fr 440px;
  gap: 40px;
  align-items: start;
  padding: 56px 0;
  border-top: 1px solid var(--rule);
}
.loop-step:first-child { border-top: 1px solid var(--ink); }
.loop-step:last-child { border-bottom: 1px solid var(--ink); }
.loop-step.reverse .loop-body { order: 3; }
.loop-step.reverse .loop-visual { order: 2; }

.loop-num {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-style: normal;
  font-size: 76px;
  line-height: 0.9;
  color: var(--tape);
  letter-spacing: -0.02em;
  position: relative;
  padding-top: 4px;
}
.loop-dash {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--ink);
  margin-top: 16px;
}

.loop-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}
.loop-body p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 18px;
}
.loop-detail {
  list-style: none;
  padding: 0;
}
.loop-detail li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  padding: 6px 0;
  border-top: 1px dashed var(--rule);
  position: relative;
  padding-left: 18px;
}
.loop-detail li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--tape);
  font-weight: 700;
}

/* Polaroids — tilted, shadowed, caption strip */
.loop-visual { min-height: 360px; display: flex; justify-content: center; }
.polaroid {
  position: relative;
  background: var(--paper);
  padding: 10px 10px 44px;
  border: 1px solid var(--ink);
  box-shadow: 6px 8px 0 var(--rule-strong), var(--shadow);
  width: 100%;
  max-width: 380px;
}
.polaroid img {
  aspect-ratio: 3 / 4;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}
.polaroid-annot {
  position: absolute;
  top: 10px; left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 54px);
  color: var(--tape);
  pointer-events: none;
}
.polaroid-caption {
  position: absolute;
  bottom: 14px;
  left: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  text-transform: lowercase;
}
.tilt-l { transform: rotate(-2.4deg); }
.tilt-r { transform: rotate(2.6deg); }

/* Scorecard — step 03 */
.scorecard {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 22px 24px 24px;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow);
  font-family: 'JetBrains Mono', monospace;
}
.score-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--rule-strong);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.score-row:last-of-type { border-bottom: none; }
.score-label { color: var(--ink-faint); text-transform: uppercase; }
.score-value { color: var(--ink); font-weight: 700; }
.score-note {
  color: var(--ink-soft);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
}
.score-row.big { padding: 18px 0; }
.score-grade {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 56px;
  color: var(--tape);
  line-height: 0.8;
  letter-spacing: -0.03em;
}
.score-stamp {
  position: absolute;
  top: 16px;
  right: -20px;
  background: var(--ok);
  color: var(--chalk);
  padding: 6px 18px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  transform: rotate(12deg);
  border: 1px solid var(--ink);
  box-shadow: 2px 3px 0 var(--ink);
}

/* -------------------- WHY -------------------- */
.why {
  background: var(--paper);
  color: var(--ink);
  padding: 110px 28px;
  position: relative;
  margin-top: 80px;
  z-index: 2;
  border-top: 1px solid rgba(23, 18, 13, 0.12);
  border-bottom: 1px solid rgba(23, 18, 13, 0.12);
}
.why::before, .why::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 6px;
  background:
    repeating-linear-gradient(
      -45deg,
      var(--tape) 0 12px,
      transparent 12px 24px
    );
  opacity: 0.85;
}
.why::before { top: 0; }
.why::after { bottom: 0; }

.why-inner {
  max-width: 1260px;
  margin: 0 auto;
}
.why .section-head h2 { color: var(--ink); }
.why .section-head .lede { color: var(--ink-soft); }
.why .eyebrow { color: var(--tape-deep); }
.why .eyebrow::before { background: var(--tape-deep); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.why-card {
  background: var(--bg);
  border: 1px solid rgba(23, 18, 13, 0.12);
  border-radius: 4px;
  padding: 26px 26px 28px;
  box-shadow: 2px 3px 0 rgba(23, 18, 13, 0.08);
  position: relative;
}
.why-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--tape);
  opacity: 0.85;
}
.why-card-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 10px;
}
.why-chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--tape-deep);
}
.why-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.why-card p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
  max-width: 44ch;
}

/* -------------------- ROADMAP -------------------- */
.roadmap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 110px 28px 80px;
  position: relative;
  z-index: 2;
}
.route-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.route-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: start;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--rule-strong);
}
.route-row:last-child { border-bottom: 1px solid var(--rule-strong); }
.route-tape {
  display: inline-block;
  padding: 6px 12px;
  background: var(--tape);
  color: var(--chalk);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  border: 1px solid var(--ink);
  transform: rotate(-2deg);
  box-shadow: 2px 2px 0 var(--ink);
  align-self: start;
  justify-self: start;
}
.route-row.project .route-tape { background: var(--warn); color: var(--ink); }
.route-row.later .route-tape { background: var(--paper); color: var(--ink); }

.route-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.route-body p {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 60ch;
}
.route-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  align-self: center;
  white-space: nowrap;
}
.route-row.sent .route-status { color: var(--ok); }
.route-row.project .route-status { color: var(--warn); }

/* -------------------- WAITLIST -------------------- */
.waitlist {
  background: var(--paper);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 100px 28px 110px;
  position: relative;
  z-index: 2;
}
.waitlist-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.waitlist-copy .eyebrow {
  color: var(--tape-deep);
}
.waitlist-copy h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 8px 0 22px;
}
.waitlist-copy > p {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  max-width: 46ch;
}
.waitlist-facts {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--rule-strong);
}
.waitlist-facts li {
  padding: 14px 0 14px 26px;
  border-bottom: 1px dashed var(--rule-strong);
  color: var(--ink-soft);
  font-size: 15px;
  position: relative;
}
.waitlist-facts li::before {
  content: '';
  position: absolute;
  left: 0; top: 22px;
  width: 14px;
  height: 2px;
  background: var(--tape);
}

.waitlist-form {
  background: var(--bg);
  border: 1px solid var(--ink);
  padding: 28px;
  box-shadow: 8px 10px 0 var(--ink);
}
.form-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 10px;
}
.form-row {
  display: flex;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--ink);
}
.form-row input[type="email"] {
  flex: 1;
  border: none;
  padding: 14px 16px;
  background: var(--bg);
  font-size: 16px;
  color: var(--ink);
  font-family: inherit;
  outline: none;
}
.form-row input::placeholder { color: var(--ink-faint); }
.form-row button {
  padding: 14px 22px;
  border: none;
  border-left: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  font-weight: 600;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.form-row button:hover:not(:disabled) { background: var(--tape); color: var(--chalk); }
.form-row button:disabled { opacity: 0.6; cursor: progress; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-status {
  margin-top: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
}
.form-status[data-state="success"] { color: var(--ok); }
.form-status[data-state="error"] { color: var(--tape-deep); }
.form-status[data-state="pending"] { color: var(--warn); }

/* -------------------- FOOTER -------------------- */
.footer {
  background: var(--bg);
  padding: 64px 28px 32px;
  position: relative;
  z-index: 2;
}
.footer-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 36px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 38ch;
}
.footer-nav {
  display: flex;
}
.footer-nav h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-nav a {
  display: block;
  color: var(--ink-soft);
  padding: 6px 0;
  font-size: 15px;
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--tape); }
.footer-nav a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.footer-bottom {
  max-width: 1260px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-faint);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
}
.footer-bottom .mono { text-transform: uppercase; }

/* -------------------- REVEAL ANIM -------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* -------------------- LEGAL (privacy page) -------------------- */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 28px 100px;
  position: relative;
  z-index: 2;
}
.legal-hero { margin-bottom: 48px; }
.legal-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 8px 0 22px;
}
.legal-intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.legal-card {
  padding: 36px 0;
  border-top: 1px solid var(--rule-strong);
}
.legal-card h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--ink);
}
.legal-card p { color: var(--ink-soft); margin-bottom: 14px; font-size: 16px; line-height: 1.6; }
.legal-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}
.legal-list li {
  position: relative;
  padding: 10px 0 10px 24px;
  border-top: 1px dashed var(--rule);
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 20px;
  width: 12px;
  height: 2px;
  background: var(--tape);
}
.legal-list li strong { color: var(--ink); }

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 72px; }
  .hero-photo { max-width: 560px; margin: 0 auto; }
  .waitlist-inner { grid-template-columns: 1fr; gap: 40px; }
  .loop-step { grid-template-columns: 72px 1fr 340px; gap: 28px; }
}

@media (max-width: 820px) {
  .nav-inner { padding: 12px 18px; }
  .nav-links { display: none; }
  .logo-tag { display: none; }
  .hero { padding: 48px 18px 32px; }
  .hero-title { font-size: clamp(44px, 12vw, 68px); }
  .marquee-track { font-size: 22px; }
  .loop { padding: 80px 18px 24px; }
  .loop-step { grid-template-columns: 1fr; gap: 20px; padding: 44px 0; }
  .loop-step.reverse .loop-body { order: initial; }
  .loop-step.reverse .loop-visual { order: initial; }
  .loop-num { font-size: 54px; }
  .loop-dash { margin-top: 10px; }
  .loop-body h3 { font-size: 28px; }
  .why { padding: 80px 18px; }
  .why-grid { grid-template-columns: 1fr; gap: 0; }
  .roadmap { padding: 80px 18px 60px; }
  .route-row { grid-template-columns: 1fr; gap: 14px; padding: 28px 0; }
  .route-status { align-self: start; }
  .waitlist { padding: 72px 18px 80px; }
  .footer { padding: 48px 18px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .form-row { flex-direction: column; }
  .form-row button { border-left: none; border-top: 1px solid var(--ink); }
  .hero-title { letter-spacing: -0.025em; }
  .section-head h2 { font-size: clamp(32px, 9vw, 46px); }
  .section-head { margin-bottom: 36px; }
  .photo-ticket { right: -10px; bottom: -14px; width: 200px; font-size: 10px; padding: 10px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .annot-circle { opacity: 1; transform: none; animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
