/* ==========================================================================
   WAHH — We Are Here Here — landing page
   Design tokens ported from the WAHH Claude Design handoff (screens.jsx W,
   landing-sections.jsx L). Accent/background/tilt/autoplay are the shipped
   defaults — the design tool's Tweaks panel was a dev-only control and is
   not included here.
   ========================================================================== */

@font-face {
  font-family: 'Satoshi';
  src: url('assets/fonts/Satoshi-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --page: #F5F3EF;
  --card: #FFFFFF;
  --raised: #FAF8F4;
  --fg1: #161616;
  --fg2: #3A3A3C;
  --fg3: #6B6B70;
  --fg4: #A2A09A;
  --line: #ECEAE3;
  --line-strong: #E2DFD7;
  --blue: #2400FF;
  --blue-soft: #EDEAFF;
  --coral: #FF5A47;
  --coral-soft: #FFEAE6;
  --green: #006B5B;
  --green-soft: #E1EFEB;
  --beige: #D9CCBA;
  --beige-soft: #F1EBE1;

  --font-display: 'Anton', 'Impact', sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-body: 'Satoshi', -apple-system, system-ui, sans-serif;
  --font-mono: 'Space Mono', monospace;

  --shadow: 0 1px 2px rgba(16,24,40,0.04), 0 16px 32px -18px rgba(16,24,40,0.18);
  --shadow-sm: 0 1px 2px rgba(16,24,40,0.04), 0 10px 22px -16px rgba(16,24,40,0.14);

  --accent: var(--blue);
  --phone-scale: 0.46;
}

html, body { margin: 0; padding: 0; }
* { box-sizing: border-box; }
body { background: var(--page); }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--fg1); text-decoration: underline; }
button { font: inherit; }
input::placeholder { color: rgba(255,255,255,0.45); }

/* ── hero layout ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  width: 100%;
  background: var(--page);
  display: flex;
  align-items: center;
  background-image: radial-gradient(circle, rgba(36,0,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 1260px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
  padding: 28px 22px 40px;
}
.hero-copy { text-align: center; order: 1; font-family: var(--font-body); }
.hero-stage { order: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.cta-row, .trust-row { justify-content: center; }

@media (min-width: 920px) {
  .hero-grid { grid-template-columns: 1.04fr 0.96fr; gap: 36px; padding: 40px 40px; min-height: 100vh; }
  .hero-copy { text-align: left; order: 1; }
  .hero-stage { order: 2; }
  .cta-row, .trust-row { justify-content: flex-start; }
}

.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; }
.eyebrow-dot { width: 7px; height: 7px; background: var(--coral); display: inline-block; flex-shrink: 0; }
.eyebrow-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  font-size: clamp(42px, 6.4vw, 86px);
  line-height: 0.92;
  letter-spacing: 1px;
  color: var(--fg1);
}
.hero-title .accent { color: var(--accent); }

.hero-lead {
  font-family: monospace;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.6;
  color: var(--fg3);
  max-width: 520px;
  margin: 24px auto 0;
}
@media (min-width: 920px) { .hero-lead { margin-left: 0; margin-right: 0; } }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.cta-button {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: filter 160ms;
}
.cta-button:hover { filter: brightness(0.85); color: #fff; text-decoration: none; }

.trust-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 34px; }
.trust-row span.sep { color: var(--fg4); font-family: var(--font-mono); }
.trust-item { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--fg3); }

/* ── phone stage / carousel chrome ───────────────────────────────────── */
.phone-nav { display: flex; align-items: center; gap: clamp(8px, 2.5vw, 26px); }

.arrow-btn {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; cursor: pointer;
  background: rgba(255,255,255,0.6);
  border: 1.5px solid var(--line-strong);
  color: var(--fg1);
  display: flex; align-items: center; justify-content: center;
  transition: background 180ms, border-color 180ms, color 180ms;
}
.arrow-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.arrow-btn svg.next { transform: rotate(180deg); }

.phone-touch { touch-action: pan-y; cursor: grab; }

.phone-outer {
  position: relative;
  width: calc(428px * var(--phone-scale));
  height: calc(900px * var(--phone-scale));
  flex-shrink: 0;
}
.phone-ground-shadow {
  position: absolute; bottom: -22px; left: 50%;
  width: calc(428px * var(--phone-scale) * 0.74); height: 28px;
  transform: translateX(-42%);
  background: radial-gradient(ellipse, rgba(26,26,26,0.24), transparent 70%);
  filter: blur(9px);
}
.phone-perspective { perspective: 2000px; width: 100%; height: 100%; }
.phone-tilt {
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transform: rotateY(-20deg) rotateX(3deg) rotateZ(0.6deg);
}
.phone-scale {
  width: 428px; height: 900px;
  transform: scale(var(--phone-scale));
  transform-origin: top left;
  position: relative;
}
.phone-body {
  width: 428px; height: 900px;
  border-radius: 64px;
  background: linear-gradient(122deg, #e4e4e8 0%, #aeaeb4 20%, #74747b 44%, #c2c2c8 60%, #e8e8ec 76%, #97979d 100%);
  padding: 13px;
  position: relative;
  box-shadow:
    1.05px 1.25px 0 #26262b, 2.10px 2.50px 0 #26262b, 3.15px 3.75px 0 #26262b,
    4.20px 5.00px 0 #26262b, 5.25px 6.25px 0 #26262b, 6.30px 7.50px 0 #26262b,
    7.35px 8.75px 0 #26262b, 8.40px 10.00px 0 #26262b, 9.45px 11.25px 0 #26262b,
    10.50px 12.50px 0 #26262b, 11.55px 13.75px 0 #26262b, 12.60px 15.00px 0 #26262b,
    13.65px 16.25px 0 #26262b, 14.70px 17.50px 0 #26262b, 15.75px 18.75px 0 #26262b,
    -40px 52px 90px -44px rgba(26,26,26,0.5);
}
.phone-edge-sheen {
  position: absolute; inset: 0; border-radius: 64px; pointer-events: none;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.45), inset 0 0 0 3px rgba(0,0,0,0.18);
}
.phone-btn { position: absolute; background: #3a3a3f; border-radius: 3px; }
.phone-btn-vol1 { left: -3px; top: 196px; width: 4px; height: 58px; }
.phone-btn-vol2 { left: -3px; top: 272px; width: 4px; height: 92px; }
.phone-btn-vol3 { left: -3px; top: 384px; width: 4px; height: 92px; }
.phone-btn-power { right: -3px; top: 300px; width: 4px; height: 128px; }

.phone-screen { width: 402px; height: 874px; border-radius: 50px; overflow: hidden; position: relative; }

.ios-device {
  width: 402px; height: 874px; border-radius: 48px; overflow: hidden;
  position: relative; background: #F2F2F7;
  box-shadow: 0 40px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.12);
  font-family: -apple-system, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.dynamic-island {
  position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 126px; height: 37px; border-radius: 24px; background: #000; z-index: 50;
}
.status-bar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  display: flex; gap: 154px; align-items: center; justify-content: center;
  padding: 21px 24px 19px; width: 100%;
}
.status-time { flex: 1; height: 22px; display: flex; align-items: center; justify-content: center; padding-top: 1.5px;
  font-family: -apple-system, "SF Pro", system-ui; font-weight: 590; font-size: 17px; line-height: 22px; color: #000; }
.status-icons { flex: 1; height: 22px; display: flex; align-items: center; justify-content: center; gap: 7px; padding-top: 1px; padding-right: 1px; }

.device-carousel { position: relative; width: 100%; height: 100%; overflow: hidden; background: var(--page); }
.slide {
  position: absolute; inset: 0; opacity: 0; transform: translateX(24px);
  transition: opacity 520ms cubic-bezier(.2,.7,.2,1), transform 520ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.slide.active { opacity: 1; transform: translateX(0); pointer-events: auto; }

.home-indicator {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 60;
  height: 34px; display: flex; justify-content: center; align-items: flex-end;
  padding-bottom: 8px; pointer-events: none;
}
.home-pill { width: 139px; height: 5px; border-radius: 100px; background: rgba(0,0,0,0.25); }

.phone-caption { text-align: center; margin-top: 30px; min-height: 58px; }
.caption-row { display: flex; align-items: baseline; justify-content: center; gap: 10px; white-space: nowrap; }
.caption-n { font-family: var(--font-mono); font-size: 11px; color: var(--fg4); letter-spacing: 1.5px; }
.caption-title { font-family: var(--font-display); font-size: clamp(18px, 2.4vw, 24px); color: var(--fg1); letter-spacing: 0.4px; text-transform: uppercase; }
.caption-sub { font-family: var(--font-serif); font-style: italic; font-weight: 300; font-size: 14px; color: var(--fg3); margin-top: 5px; }

.phone-dots { display: flex; gap: 7px; }
.dot { width: 7px; height: 7px; border-radius: 999px; border: none; cursor: pointer; padding: 0;
  background-color: var(--line-strong); transition: width 240ms, background-color 240ms; }
.dot.active { width: 24px; background-color: var(--accent); }

/* ── app screens (inside the phone) ──────────────────────────────────── */
.screen { height: 100%; display: flex; flex-direction: column; background: var(--page); font-family: var(--font-body); }
.screen-content { flex: 1; overflow-y: auto; overflow-x: hidden; padding-top: 64px; }
.screen-spacer { height: 14px; }

.large-title { padding: 4px 22px 0; display: flex; align-items: flex-end; justify-content: space-between; }
.large-title-eyebrow { font-weight: 500; font-size: 14px; color: var(--fg3); margin-bottom: 3px; }
.large-title-title { font-weight: 800; font-size: 32px; color: var(--fg1); letter-spacing: -0.8px; line-height: 1; }

.avatar { border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; letter-spacing: 0.2px; }
.avatar-44 { width: 44px; height: 44px; font-size: 16px; }
.avatar-40 { width: 40px; height: 40px; font-size: 14.5px; }
.bg-blue { background: var(--blue); }
.bg-coral { background: var(--coral); }
.bg-green { background: var(--green); }

.icon-circle { width: 42px; height: 42px; border-radius: 50%; background: var(--card); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--fg2); box-shadow: var(--shadow-sm); }

.primary-btn {
  width: 100%; height: 54px; border: none; border-radius: 16px; cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: 16px; letter-spacing: -0.2px;
  background: var(--blue); color: #fff;
  box-shadow: 0 10px 22px -10px rgba(36,0,255,0.55);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.primary-btn.white { background: #fff; color: var(--blue); height: 50px; box-shadow: none; }

.tag { font-weight: 600; font-size: 11.5px; letter-spacing: 0.1px; padding: 5px 10px; border-radius: 999px; white-space: nowrap; }
.tag-blue { color: var(--blue); background: var(--blue-soft); }
.tag-coral { color: var(--coral); background: var(--coral-soft); }
.tag-green { color: var(--green); background: var(--green-soft); }
.tag-neutral { color: var(--fg3); background: var(--beige-soft); }

/* tab bar */
.tab-bar {
  flex-shrink: 0; background: rgba(255,255,255,0.94);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border-top: 1px solid var(--line); box-shadow: 0 -8px 28px -22px rgba(16,24,40,0.3);
  display: flex; padding: 10px 10px 30px;
}
.tab { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; background: none; border: none; cursor: default; }
.tab svg { stroke: var(--fg4); }
.tab-label { font-weight: 500; font-size: 10.5px; letter-spacing: -0.1px; color: var(--fg4); }
.tab.active svg { stroke: var(--blue); }
.tab.active .tab-label { font-weight: 700; color: var(--blue); }

/* Earn screen */
.earn-hero { margin: 20px 16px 0; background: var(--blue); border-radius: 26px; padding: 22px 22px 20px;
  position: relative; overflow: hidden; box-shadow: 0 18px 36px -18px rgba(36,0,255,0.6); }
.earn-hero-dots { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.09) 1.1px, transparent 1.1px); background-size: 17px 17px; }
.earn-hero-inner { position: relative; }
.earn-hero-row { display: flex; justify-content: space-between; align-items: center; }
.earn-hero-label { font-weight: 600; font-size: 13.5px; color: rgba(255,255,255,0.82); }
.earn-hero-pill { display: inline-flex; align-items: center; gap: 5px; font-weight: 600; font-size: 11px; color: #fff;
  background: rgba(255,255,255,0.16); padding: 5px 10px; border-radius: 999px; }
.earn-hero-stat { display: flex; align-items: baseline; gap: 9px; margin: 14px 0 2px; }
.earn-hero-pct { font-family: var(--font-display); font-size: 60px; color: #fff; line-height: 0.85; letter-spacing: 0.5px; }
.earn-hero-apy { font-weight: 700; font-size: 14px; letter-spacing: 0.5px; color: rgba(255,255,255,0.85); }
.earn-hero-desc { font-weight: 500; font-size: 13.5px; color: rgba(255,255,255,0.8); line-height: 1.5; margin: 8px 0 18px; }

.section-head { display: flex; align-items: center; justify-content: space-between; padding: 26px 24px 10px; }
.section-title { font-weight: 700; font-size: 18px; color: var(--fg1); letter-spacing: -0.3px; }
.section-link { font-weight: 600; font-size: 14px; color: var(--blue); }

.product-list { margin: 0 16px; background: var(--card); border-radius: 22px; padding: 4px 16px; box-shadow: var(--shadow-sm); }
.product-row { display: flex; align-items: center; gap: 14px; padding: 15px 4px; border-bottom: 1px solid var(--line); }
.product-row:last-child { border-bottom: none; }
.product-icon { width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.product-body { flex: 1; min-width: 0; }
.product-name { font-weight: 600; font-size: 15.5px; color: var(--fg1); line-height: 1.2; }
.product-meta { font-weight: 500; font-size: 12.5px; color: var(--fg3); margin-top: 2px; }
.product-yield { text-align: right; flex-shrink: 0; }
.product-yield-pct { font-weight: 700; font-size: 16px; color: var(--green); line-height: 1; }
.product-yield-label { font-weight: 500; font-size: 10.5px; color: var(--fg4); margin-top: 3px; }
.product-chevron { flex-shrink: 0; margin-left: 4px; }

.earn-note { display: flex; align-items: center; gap: 8px; justify-content: center; padding: 16px 24px 0; }
.earn-note span { font-weight: 500; font-size: 12px; color: var(--fg4); }

/* Portfolio screen */
.balance-row { padding: 16px 22px 0; display: flex; align-items: flex-end; gap: 12px; }
.balance-amount { font-family: var(--font-display); font-size: 46px; color: var(--fg1); letter-spacing: 0.5px; line-height: 0.9; }
.balance-pill { display: inline-flex; align-items: center; gap: 4px; font-weight: 700; font-size: 13px;
  color: var(--green); background: var(--green-soft); padding: 5px 9px; border-radius: 999px; margin-bottom: 4px; }

.chart-card { margin: 18px 16px 0; background: var(--card); border-radius: 22px; padding: 18px 18px 16px; box-shadow: var(--shadow-sm); }
.range-row { display: flex; gap: 6px; margin-top: 16px; background: var(--raised); padding: 4px; border-radius: 12px; }
.range-item { flex: 1; text-align: center; padding: 8px 0; border-radius: 9px; font-weight: 600; font-size: 13px; color: var(--fg3); }
.range-item.active { font-weight: 700; background: var(--card); color: var(--fg1); box-shadow: 0 1px 3px rgba(16,24,40,0.12); }

.alloc-card { margin: 0 16px; background: var(--card); border-radius: 22px; padding: 20px 20px; box-shadow: var(--shadow-sm); }
.donut-row { display: flex; align-items: center; gap: 22px; }
.donut-legend { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.donut-legend-item { display: flex; align-items: center; gap: 10px; }
.donut-swatch { width: 10px; height: 10px; border-radius: 3px; flex-shrink: 0; }
.donut-legend-label { font-weight: 500; font-size: 13.5px; color: var(--fg2); flex: 1; }
.donut-legend-pct { font-weight: 700; font-size: 13.5px; color: var(--fg1); }

/* Feed screen */
.filter-row { display: flex; gap: 8px; padding: 18px 16px 4px; }
.filter-chip { font-weight: 600; font-size: 13.5px; padding: 9px 16px; border-radius: 999px;
  background: var(--card); color: var(--fg3); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.filter-chip.active { background: var(--fg1); color: #fff; border-color: var(--fg1); box-shadow: none; }

.card-list { padding: 14px 16px 0; display: flex; flex-direction: column; gap: 13px; }
.opp-card { background: var(--card); border-radius: 22px; padding: 18px; box-shadow: var(--shadow-sm); }
.opp-head { display: flex; align-items: center; gap: 8px; margin-bottom: 11px; }
.opp-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.opp-sector { font-weight: 600; font-size: 12.5px; color: var(--fg3); }
.opp-time { margin-left: auto; font-weight: 500; font-size: 12px; color: var(--fg4); }
.opp-title { font-weight: 700; font-size: 18.5px; color: var(--fg1); letter-spacing: -0.3px; line-height: 1.2; margin-bottom: 7px; }
.opp-body { font-weight: 500; font-size: 13.5px; color: var(--fg3); line-height: 1.5; margin-bottom: 15px; }
.opp-foot { display: flex; align-items: center; gap: 8px; }
.opp-chevron { margin-left: auto; width: 34px; height: 34px; border-radius: 50%; background: var(--raised);
  display: flex; align-items: center; justify-content: center; }

/* Community screen */
.live-strip { margin: 16px 16px 0; display: flex; align-items: center; gap: 10px; padding: 13px 16px;
  background: var(--card); border-radius: 16px; box-shadow: var(--shadow-sm); }
@keyframes wahhPulse { 0% { box-shadow: 0 0 0 0 rgba(0,107,91,0.45); } 70% { box-shadow: 0 0 0 6px rgba(0,107,91,0); } 100% { box-shadow: 0 0 0 0 rgba(0,107,91,0); } }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); flex-shrink: 0; animation: wahhPulse 2s infinite; }
.live-strip span.count { font-weight: 600; font-size: 13.5px; color: var(--fg1); }
.live-strip span.delta { margin-left: auto; font-weight: 600; font-size: 12.5px; color: var(--green); }

.voice-stream { padding: 14px 16px 0; display: flex; flex-direction: column; gap: 12px; }
.voice-card { background: var(--card); border-radius: 22px; padding: 16px 17px; box-shadow: var(--shadow-sm); }
.voice-head { display: flex; align-items: center; gap: 11px; }
.voice-id { flex: 1; min-width: 0; }
.voice-name-row { display: flex; align-items: center; gap: 5px; }
.voice-name { font-weight: 700; font-size: 14.5px; color: var(--fg1); }
.voice-loc { font-weight: 500; font-size: 12.5px; color: var(--fg3); margin-top: 1px; }
.voice-time { font-weight: 500; font-size: 12px; color: var(--fg4); flex-shrink: 0; }
.voice-msg { font-weight: 500; font-size: 14px; color: var(--fg2); line-height: 1.5; margin-top: 12px; }
.voice-topic { margin-top: 12px; }
.verified-tick { width: 15px; height: 15px; border-radius: 50%; background: var(--blue); flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center; }

.locked-zone { position: relative; margin-top: 2px; }
.locked-inner { filter: blur(5px); opacity: 0.5; display: flex; flex-direction: column; gap: 12px; pointer-events: none; user-select: none; }
.locked-fade { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(245,243,239,0) 0%, rgba(245,243,239,0.7) 45%, #F5F3EF 82%); }

.members-gate { margin-top: -8px; background: var(--card); border-radius: 22px; padding: 22px 20px; box-shadow: var(--shadow); text-align: center; }
.members-gate-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--blue-soft); margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center; }
.members-gate-title { font-weight: 800; font-size: 21px; color: var(--fg1); letter-spacing: -0.4px; }
.members-gate-desc { font-weight: 500; font-size: 13.5px; color: var(--fg3); line-height: 1.55; margin: 8px 0 18px; padding: 0 6px; }

/* ── waitlist section ─────────────────────────────────────────────────── */
.waitlist {
  background: var(--fg1); color: #fff; padding: clamp(72px, 10vw, 128px) 22px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 24px 24px;
}
.waitlist-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.waitlist .eyebrow-label { color: rgba(255,255,255,0.72); }
.waitlist-title { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; margin: 0;
  font-size: clamp(34px, 5.2vw, 68px); line-height: 0.94; letter-spacing: 1px; }
.waitlist-lead { font-family: monospace; font-size: clamp(15px, 1.4vw, 17px); line-height: 1.6;
  color: rgba(255,255,255,0.7); max-width: 520px; margin: 22px auto 0; }

.waitlist-form { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 34px; max-width: 620px; margin-left: auto; margin-right: auto; }
.waitlist-form input[type="text"], .waitlist-form input[type="email"] {
  font-family: 'Fraunces', serif; font-size: 15px; padding: 15px 20px; border-radius: 12px; min-width: 180px; flex: 1 1 180px;
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.22); color: #fff; outline: none;
}
.waitlist-form input[type="text"].location { min-width: 220px; flex: 1 1 220px; }
.waitlist-submit {
  font-family: var(--font-display); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; padding: 15px 30px;
  border-radius: 12px; border: none; cursor: pointer; background: var(--accent); color: #fff;
  transition: filter 160ms; white-space: nowrap; flex: 1 1 100%; max-width: 260px; margin: 0 auto;
}
.waitlist-submit:hover { filter: brightness(0.85); }
.waitlist-submit:disabled { opacity: 0.6; cursor: default; }

.consent-label { display: flex; align-items: flex-start; gap: 10px; max-width: 480px; margin: 12px auto 0; text-align: left; cursor: pointer; }
.consent-label input[type="checkbox"] { margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--accent); }
.consent-text { font-family: var(--font-body); font-size: 12.5px; line-height: 1.6; color: rgba(255,255,255,0.5); }
.consent-text .serif { font-family: 'Fraunces', serif; }

.waitlist-success { margin-top: 34px; font-family: var(--font-mono); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; }
.waitlist-error { margin-top: 18px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 1px; color: #FFB4AA; }
.hidden { display: none !important; }

.waitlist-disclaimer { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 1.2px; line-height: 1.8; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-top: 26px; }

/* ── footer ───────────────────────────────────────────────────────────── */
.site-footer { background: var(--page); color: var(--fg1); padding: clamp(56px, 7vw, 88px) 22px 40px; border-top: 1px solid var(--line-strong); }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: flex-start; }
@media (max-width: 700px) { .footer-top { flex-direction: column; } }
.footer-brand { max-width: 420px; }
.footer-logo { height: 34px; width: auto; display: block; }
.footer-tagline { font-family: var(--font-serif); font-style: italic; font-weight: 300; font-size: 17px; line-height: 1.5; color: var(--fg2); margin: 18px 0 0; }
.footer-hashtag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-top: 16px; }

.footer-follow-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--fg3); margin-bottom: 14px; }
.social-row { display: flex; flex-wrap: wrap; gap: 10px; }
.social-icon { width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--line-strong); background: transparent; color: var(--fg2); transition: background 180ms, border-color 180ms, color 180ms; }
.social-icon:hover { background: var(--blue); border-color: var(--blue); color: #fff; text-decoration: none; }

.footer-links { display: flex; flex-direction: column; gap: 8px; margin-top: 22px; }
.footer-links a { font-family: monospace; font-size: 14px; color: var(--fg2); cursor: pointer; }

.footer-divider { border-top: 1px solid var(--line-strong); margin-top: 44px; padding-top: 28px; }
.footer-info-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--fg3); margin-bottom: 16px; }
.footer-disclaimers { display: grid; gap: 12px; }
.footer-disclaimers p { font-family: var(--font-serif); font-style: italic; font-weight: 300; font-size: 15px; line-height: 1.65; color: var(--fg3); margin: 0; }
.footer-copyright { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 1px; color: var(--fg4); margin-top: 30px; }

/* ── privacy modal ────────────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(26,26,26,0.6); z-index: 100;
  display: flex; align-items: center; justify-content: center; padding: 22px; }
.modal-panel { background: var(--page); max-width: 620px; width: 100%; padding: 36px 32px; position: relative; max-height: 80vh; overflow-y: auto; }
.modal-close { position: absolute; top: 18px; right: 18px; width: 32px; height: 32px;
  border: 1px solid var(--line-strong); background: transparent; cursor: pointer; color: var(--fg2); font-size: 16px; line-height: 1; }
.modal-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--fg3); margin-bottom: 14px; }
.modal-body { font-family: var(--font-serif); font-style: italic; font-weight: 300; font-size: 16px; line-height: 1.6; color: var(--fg1); margin: 0; }
