/* ============================================================================
   TICKITIN — waitlist landing stylesheet
   Built on the ratified product design system (tickitin-web/design/tokens.css).
   Landing-only extension (sanctioned, see waitlist plan §3): a centered
   max-width desktop column using the existing display tokens (56/60, 36/42).
   Rules honored: 4px grid, 20px gutters, 40px base section rhythm, 44px CTAs,
   zero-offset ambient shadows, mint reserved for the bundle card (unused here),
   orange nowhere (urgency vocabulary is banned from waitlist copy).
   ============================================================================ */

:root {
  /* Brand */
  --color-primary:         #007BA7;
  --color-primary-on-dark: #7FD4EA;
  --color-secondary:       #00416A;
  --color-savings:         #1B5E20;

  /* Text */
  --color-text:        #111827;
  --color-text-muted:  #6B7280;
  --color-subtle:      #9CA3AF;
  --color-text-on-dark:   rgba(255,255,255,1);
  --color-text-on-dark-2: rgba(255,255,255,0.85);
  --color-text-on-dark-3: rgba(255,255,255,0.75);

  /* Surfaces */
  --color-surface: #FFFFFF;
  --color-bg:      #F8F8F8;
  --color-border:  #E5E7EB;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-ui:      'Figtree', -apple-system, sans-serif;
  --font-num:     'Open Sans', -apple-system, sans-serif;

  /* Radii */
  --radius-well:  10px;
  --radius-tile:  14px;
  --radius-card:  18px;
  --radius-panel: 22px;
  --radius-pill:  999px;

  /* Shadows — zero-offset ambient only */
  --shadow-e1: 0 0 10px rgba(10,17,24,0.04);
  --shadow-e2: 0 0 10px rgba(10,17,24,0.06);
  --shadow-panel: 0 0 20px rgba(10,17,24,0.08);

  /* Controls */
  --size-input: 48px;
  --size-cta:   44px;

  /* Layout */
  --maxw:      1080px;
  --maxw-text: 720px;
  --gutter:    20px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 24px;
  -webkit-font-smoothing: antialiased;
}

/* Enrichment L3 — paper grain: 3.5%-alpha noise so the page reads as paper */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { display: block; }
a { color: var(--color-primary); text-decoration: none; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wrap-text {
  max-width: var(--maxw-text);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============ HEADER ============ */
.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .wrap {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { height: 28px; width: auto; }
.site-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.site-nav a {
  font: 600 14px/20px var(--font-ui);
  color: var(--color-text-muted);
}
.site-nav a.on { color: var(--color-secondary); }
.site-nav a:hover { color: var(--color-primary); }
.site-header .btn { flex-shrink: 0; }

/* ============ BUTTONS (components.md §3) ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: var(--size-cta);
  padding: 0 20px;
  border: 0;
  border-radius: var(--radius-pill);
  font: 600 15px/20px var(--font-ui);
  cursor: pointer;
  white-space: nowrap;
}
.btn.fill { background: var(--color-primary); color: #FFF; }
.btn.fill:hover { background: #006B92; }
.btn.line {
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

/* ============ TYPE ROLES ============ */
.kicker {
  font: 600 12px/16px var(--font-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.on-dark .kicker { color: var(--color-primary-on-dark); }
.kicker.navy { color: var(--color-secondary); }

.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  line-height: 42px;
  letter-spacing: -0.01em;
}
.display em { font-style: italic; color: var(--color-primary); }
.on-dark .display em { color: var(--color-primary-on-dark); }

h2.brand-head {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 34px;
}
h2.brand-head em { font-style: italic; color: var(--color-primary); }

h3.card-head { font: 700 16px/22px var(--font-ui); }

.sub {
  font: 400 18px/28px var(--font-ui);
  color: var(--color-text-muted);
}
.muted { color: var(--color-text-muted); }

@media (min-width: 720px) {
  .display { font-size: 56px; line-height: 60px; }
  h2.brand-head { font-size: 32px; line-height: 38px; }
}

/* ============ SECTION RHYTHM ============ */
section { padding: 56px 0; }
.section-head { max-width: var(--maxw-text); margin-bottom: 32px; }
.section-head .kicker { margin-bottom: 12px; }
.section-head p { margin-top: 12px; }
.center { text-align: center; }
.center .section-head { margin-left: auto; margin-right: auto; }

@media (min-width: 720px) {
  section { padding: 80px 0; }
}

/* ============ HERO ============ */
.hero {
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
/* Enrichment L1 — the ambient wash: brand gradient exploded into three glows.
   Cerulean strongest, gold second, green barely-there; nothing above .12. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(340px at 88% -8%, rgba(0,123,167,0.12), transparent 70%),
    radial-gradient(320px at 0% 110%, rgba(242,169,59,0.10), transparent 70%),
    radial-gradient(300px at 58% 45%, rgba(27,94,32,0.05), transparent 70%);
  pointer-events: none;
}
.hero > * { position: relative; }

/* Enrichment L2 — the gradient speaks in type (darkened stops, AA-safe on light).
   One gradient phrase per screenful: the hero's italic emphasis only. */
.hero .display em {
  background: linear-gradient(92deg, #0F6F95 5%, #3F7D5C 55%, #A8781F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.grad-rule {
  width: 72px;
  height: 3px;
  border: 0;
  border-radius: 2px;
  margin: 16px 0 0;
  background: linear-gradient(90deg, #0b1e33, #41abdd 45%, #9fd39a 70%, #f2a93b);
}
.center .grad-rule { margin-left: auto; margin-right: auto; }
.hero .kicker { margin-bottom: 16px; }
.hero h1 { margin-bottom: 20px; max-width: 17ch; }
.hero .sub { max-width: 56ch; margin-bottom: 32px; }
.hero.center h1, .hero.center .sub { margin-left: auto; margin-right: auto; }

@media (min-width: 720px) {
  .hero { padding: 96px 0 80px; }
}

/* ============ WAITLIST FORM ============ */
.waitlist { max-width: 560px; scroll-margin-top: 96px; }
.center .waitlist, .waitlist.center { margin-left: auto; margin-right: auto; }
.waitlist-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.waitlist input[type="email"],
.waitlist input[type="text"] {
  height: var(--size-input);
  padding: 0 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-surface);
  font: 400 15px/20px var(--font-ui);
  color: var(--color-text);
  width: 100%;
  box-shadow: var(--shadow-e2);
}
.waitlist input::placeholder { color: var(--color-text-muted); }
.waitlist input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0,123,167,0.15);
}
.waitlist .btn { height: var(--size-input); flex-shrink: 0; }
.waitlist-city { margin-top: 12px; }
.waitlist-note {
  margin-top: 12px;
  font: 500 13px/18px var(--font-ui);
  color: var(--color-text-muted);
}
.waitlist-note a { font-weight: 600; }
.on-dark .waitlist-note { color: var(--color-text-on-dark-3); }
.on-dark .waitlist-note a { color: var(--color-primary-on-dark); }
.waitlist .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.waitlist .turnstile { margin-top: 12px; }
.waitlist .turnstile:empty { display: none; }
.waitlist .form-error {
  margin-top: 12px;
  font: 500 14px/20px var(--font-ui);
  color: #B3261E;
}

@media (min-width: 560px) {
  .waitlist-row { flex-direction: row; }
}

/* Success + group-seats step */
.waitlist-success {
  max-width: 560px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-e1);
  padding: 24px;
  text-align: left;
}
.waitlist-success .ok-head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 8px;
}
.waitlist-success .ok-head svg { color: var(--color-savings); flex-shrink: 0; }
.waitlist-success p { color: var(--color-text-muted); font-size: 15px; line-height: 22px; }
.group-step { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--color-border); }
.group-step h4 { font: 700 16px/22px var(--font-ui); margin-bottom: 4px; }
.group-step > p { margin-bottom: 16px; }
.group-emails { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.group-emails input {
  height: var(--size-cta);
  padding: 0 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-well);
  background: var(--color-surface);
  font: 400 15px/20px var(--font-ui);
  color: var(--color-text);
  width: 100%;
}
.group-emails input::placeholder { color: var(--color-text-muted); }
.group-emails input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0,123,167,0.15);
}
.group-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.group-actions .later {
  font: 600 14px/20px var(--font-ui);
  color: var(--color-text-muted);
  background: none; border: 0; cursor: pointer;
}
.group-done { color: var(--color-savings); font: 600 15px/22px var(--font-ui); }

/* ============ CARDS ============ */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-e1);
  padding: 24px;
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: 15px; line-height: 22px; color: var(--color-text-muted); }

.grid-3 { display: grid; grid-template-columns: 1fr; gap: 16px; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 720px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* Card icon chip */
.card-ic {
  width: 44px; height: 44px;
  border-radius: var(--radius-well);
  background: rgba(0,123,167,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.card-ic svg { width: 20px; height: 20px; }

/* ============ FRICTION STRIP ============ */
.friction {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
  padding: 32px 0;
  position: relative;
  overflow: hidden;
}

/* Enrichment L5 — the chaos, floating: confirmation chips + question pills
   drifting at the edges of the friction strip (wide screens only) */
.f-chip {
  --r: -2deg;
  display: none;
  position: absolute;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 9px 14px;
  font: 500 13px/18px var(--font-ui);
  color: var(--color-text);
  box-shadow: var(--shadow-e2);
  transform: rotate(var(--r));
  white-space: nowrap;
}
.f-chip.q { border-radius: var(--radius-pill); color: var(--color-text-muted); }
@media (min-width: 1100px) {
  .friction { padding: 56px 0; }
  .f-chip { display: block; }
}
@keyframes chip-drift {
  0%, 100% { transform: translateY(0) rotate(var(--r)); }
  50% { transform: translateY(-10px) rotate(var(--r)); }
}
@media (prefers-reduced-motion: no-preference) {
  .f-chip { animation: chip-drift 7s ease-in-out infinite; }
  .f-chip:nth-of-type(2) { animation-duration: 9s; }
  .f-chip:nth-of-type(3) { animation-duration: 8.2s; }
  .f-chip:nth-of-type(4) { animation-duration: 9.6s; }
}
.friction .wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.friction span {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 19px;
  line-height: 28px;
  color: var(--color-text-muted);
}
@media (min-width: 720px) {
  .friction .wrap { flex-direction: row; justify-content: center; gap: 40px; }
}

/* ============ STEPS (how it works) ============ */
.steps { display: grid; grid-template-columns: 1fr; gap: 16px; counter-reset: step; }
.step { counter-increment: step; position: relative; padding: 24px 24px 24px 72px; }
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 24px; top: 26px;
  font: 600 13px/18px var(--font-num);
  color: var(--color-primary);
}
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .step { padding: 24px; }
  .step::before { position: static; display: block; margin-bottom: 12px; }
}

/* ============ FOUNDING THOUSAND ============ */
.founding {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-panel);
  padding: 32px 24px;
  text-align: center;
}
.founding .kicker { margin-bottom: 16px; }
.founding h2 { margin-bottom: 12px; }
.founding h2 .credit {
  display: inline-flex;
  align-items: center;
  background: var(--color-savings);
  color: #FFF;
  border-radius: var(--radius-pill);
  padding: 2px 14px;
  font: 700 0.72em/1.5 var(--font-num);
  vertical-align: baseline;
  transform: translateY(-0.08em);
}
.founding > p {
  color: var(--color-text-muted);
  max-width: 52ch;
  margin: 0 auto 28px;
}
.founding .waitlist { margin: 0 auto; }
@media (min-width: 720px) {
  .founding { padding: 56px 48px; }
}

/* ============ SERVICE CHIPS (what's live at launch) ============ */
.chips-row { display: flex; flex-wrap: wrap; gap: 8px; }
.center .chips-row { justify-content: center; }
.chip {
  height: 40px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font: 500 14px/20px var(--font-ui);
  color: var(--color-text);
}
.chip svg { width: 16px; height: 16px; color: var(--color-secondary); }
.chips-follow { margin-top: 16px; font: 500 14px/20px var(--font-ui); color: var(--color-text-muted); }

/* ============ FAQ ============ */
.faq { max-width: var(--maxw-text); }
.center .faq { margin-left: auto; margin-right: auto; text-align: left; }
.faq details {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-tile);
  box-shadow: var(--shadow-e1);
  margin-bottom: 8px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 20px;
  font: 600 16px/24px var(--font-ui);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 12px; height: 12px;
  flex-shrink: 0;
  background: currentColor;
  color: var(--color-primary);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq .faq-a { padding: 0 20px 16px; color: var(--color-text-muted); font-size: 15px; line-height: 23px; }

/* ============ PLAN CARDS (NYC composed plans, concierge example) ============ */
.plan-card { padding: 0; overflow: hidden; }
.plan-card .plan-top {
  padding: 20px 24px;
  background: var(--color-secondary);
  color: var(--color-text-on-dark);
}
.plan-card .plan-top .pk {
  font: 600 12px/16px var(--font-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary-on-dark);
  margin-bottom: 8px;
}
.plan-card .plan-top h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  margin: 0;
}
.plan-items { padding: 12px 24px 20px; }
.plan-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--color-border);
  font: 500 14px/20px var(--font-ui);
  color: var(--color-text);
}
.plan-item:last-child { border-bottom: 0; }
.plan-item svg { width: 16px; height: 16px; color: var(--color-primary); flex-shrink: 0; }
.plan-foot {
  padding: 0 24px 20px;
  font: 500 13px/18px var(--font-ui);
  color: var(--color-text-muted);
}

/* Enrichment L6 — the plan card as the hero object: tilted, with a ghost twin */
.plan-stack { position: relative; margin-top: 12px; }
.plan-stack::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  transform: rotate(3deg) translate(18px, 10px);
  opacity: 0.5;
}
.plan-stack .plan-card {
  position: relative;
  transform: rotate(-2deg);
  box-shadow: 0 0 22px rgba(10,17,24,0.08);
}

/* App screens — device frame per the enrichment shot-list rules:
   ±2° tilt, zero-offset ambient shadow, explicit dimensions, ≤120KB webp */
.phone {
  width: min(280px, 78vw);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 0 20px rgba(10,17,24,0.08);
}
.phone img { width: 100%; height: auto; border-radius: 24px; display: block; }
.phone.tilt-l { transform: rotate(-2deg); }
.phone.tilt-r { transform: rotate(2deg); }
.phone-fig {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 0;
}
.phone-fig figcaption { font: 500 13px/18px var(--font-ui); color: var(--color-text-muted); }
.phone-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 48px;
  justify-items: center;
}
@media (min-width: 900px) {
  .phone-row { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .phone-row.two { grid-template-columns: repeat(2, minmax(0, 320px)); justify-content: center; }
}

/* Curated section — text cards beside the real home screen */
.curated-split { display: grid; gap: 20px; align-items: center; }
.curated-split .cards { display: grid; gap: 20px; }
.curated-split .phone-fig { justify-self: center; }
@media (min-width: 900px) {
  .curated-split { grid-template-columns: 1.3fr 1fr; gap: 48px; }
}

/* Enrichment L7 — the arch: the brand's one image-frame shape (gradient dusk) */
.arch {
  width: 250px;
  height: 320px;
  border-radius: 999px 999px 24px 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0b2a44 0%, #00416A 40%, #0e6a92 75%, #c98a1f 130%);
}
.arch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 60% at 50% 0%, rgba(255,255,255,0.14), transparent 55%);
}
.hero-ny .arch { display: none; }
@media (min-width: 900px) {
  .hero-ny {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 56px;
    align-items: center;
    text-align: left;
  }
  .hero-ny .arch { display: block; }
  .hero.center .hero-ny h1,
  .hero.center .hero-ny .sub { margin-left: 0; margin-right: 0; }
  .hero-ny .waitlist { margin-left: 0; margin-right: 0; }
}

/* Enrichment L8 — the one entrance */
main section { position: relative; overflow: hidden; }
.rise {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.rise.in { opacity: 1; transform: none; }

/* ============ CONCIERGE WORKED EXAMPLE ============ */
.t-demo { max-width: 560px; }
.center .t-demo { margin-left: auto; margin-right: auto; text-align: left; }
.t-ask {
  background: var(--color-surface);
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-e2);
  padding: 16px 20px;
  font: 400 16px/24px var(--font-ui);
  color: var(--color-text);
  margin-bottom: 16px;
}
.t-ask .tl {
  font: 600 12px/16px var(--font-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 4px;
}

/* ============ DARK (NAVY) SECTIONS ============ */
.on-dark {
  background: var(--color-secondary);
  color: var(--color-text-on-dark);
  position: relative;
  overflow: hidden;
}
/* Enrichment L4 — the band's own light source (on-dark blue glow from the top)
   layered over the stitch arc */
.on-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(360px at 50% -180px, rgba(127,212,234,0.16), transparent 70%) no-repeat,
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1400' height='420' viewBox='0 0 1400 420'><path d='M-60 280 C 240 130, 460 360, 720 230 C 980 100, 1180 330, 1460 190' fill='none' stroke='rgba(255,255,255,0.09)' stroke-width='1.5' stroke-dasharray='2 6' stroke-linecap='round'/><circle cx='240' cy='201' r='3' fill='rgba(255,215,0,0.35)'/><circle cx='720' cy='230' r='3' fill='rgba(255,215,0,0.35)'/><circle cx='1180' cy='227' r='3' fill='rgba(255,215,0,0.35)'/></svg>") center / 1400px auto no-repeat;
  pointer-events: none;
}
.on-dark > * { position: relative; }
/* Yellow high-emphasis CTA — sanctioned on deep navy only, always black text */
.on-dark .btn.fill { background: #FFD700; color: #111827; }
.on-dark .btn.fill:hover { background: #EFC800; }
.on-dark .sub { color: var(--color-text-on-dark-2); }
.on-dark p { color: var(--color-text-on-dark-2); }
.on-dark .waitlist input[type="email"],
.on-dark .waitlist input[type="text"] { border-color: transparent; box-shadow: none; }
/* The success card is a light surface even on navy: pin its text colours so
   the band's white-paragraph rule can't wash them out. */
.on-dark .waitlist-success { color: var(--color-text); }
.on-dark .waitlist-success p,
.on-dark .group-step > p { color: var(--color-text-muted); }
.on-dark .waitlist .form-error { color: #FFB4A8; }

/* Closing triad */
.triad {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 38px;
  letter-spacing: -0.01em;
}
.triad em { font-style: italic; color: var(--color-primary-on-dark); }
@media (min-width: 720px) {
  .triad { font-size: 40px; line-height: 52px; }
}

/* ============ MANIFESTO (/why) ============ */
.manifesto p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 21px;
  line-height: 34px;
  color: var(--color-text);
  margin-bottom: 28px;
}
.manifesto p em { font-style: italic; color: var(--color-primary); }
.manifesto p.big {
  font-weight: 500;
  font-size: 27px;
  line-height: 38px;
}
@media (min-width: 720px) {
  .manifesto p { font-size: 24px; line-height: 40px; }
  .manifesto p.big { font-size: 32px; line-height: 44px; }
}

/* ============ GROUP INVITE BANNER (/together?group=) ============ */
.invite-banner {
  display: none;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
  text-align: center;
  font: 500 14px/20px var(--font-ui);
  color: var(--color-secondary);
}
.invite-banner.show { display: block; }
.invite-banner b { font-weight: 700; }

/* ============ FOOTER ============ */
.site-footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
  padding: 48px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
}
.site-footer .brand img { height: 24px; }
.footer-def {
  margin-top: 16px;
  font: 400 14px/22px var(--font-ui);
  color: var(--color-text-muted);
  max-width: 44ch;
}
.footer-col h4 {
  font: 600 12px/16px var(--font-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  font: 500 14px/20px var(--font-ui);
  color: var(--color-text);
  padding: 4px 0;
}
.footer-col a:hover { color: var(--color-primary); }
.footer-base {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
  justify-content: space-between;
}
.footer-triad {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  color: var(--color-secondary);
}
.footer-base .cr { font: 400 13px/18px var(--font-ui); color: var(--color-text-muted); }

/* ============ UTILITIES ============ */
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.arrow-link { font: 600 15px/20px var(--font-ui); }
.arrow-link::after { content: " →"; }

@media (max-width: 719px) {
  .site-nav { display: none; }
}
