/* ============================================================
   Park Hub — styles
   Built on tokens.css. Mobile-first. Dark, Skip-led, mono
   captions, sunset CTAs.
   ============================================================ */

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

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body-m);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  padding-bottom: 96px;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* KA-249: lift the tertiary grey inside the hub for legibility (was #7c7c84). */
.hub { --text-mute: #9a9aa2; }

/* -------------------------------------
   Section primitives
   ------------------------------------- */
.section-label {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--text-mute);
}

.block-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 5.2vw, 48px);
  line-height: 1.05;
  letter-spacing: var(--tracking-display);
  margin: 0 0 12px;
  color: var(--text);
}
.block-title em {
  font-style: normal;
  background: var(--sunset-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.block-lede {
  font-size: var(--fs-body-l);
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 0 28px;
}

/* -------------------------------------
   Site nav
   ------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7,7,10,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
}
.site-nav-mark {
  width: 32px; height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--sunset-gradient);
  color: white;
  font-size: 13px;
  letter-spacing: 0.05em;
}
.site-nav-logo { height: 32px; width: auto; display: block; }
.site-nav-name { font-size: 16px; letter-spacing: -0.01em; }
.site-nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-nav-links a { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--text); }
.site-nav-links a.muted { color: var(--text-dim); }
.site-nav-cta {
  background: var(--sunset-gradient);
  color: white !important;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-cta);
}
@media (max-width: 640px) {
  .site-nav-name { display: none; }
  .site-nav-links a:not(.site-nav-cta) { display: none; }
}

/* -------------------------------------
   Layout
   ------------------------------------- */
.hub {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.hub > * + * { margin-top: clamp(56px, 8vw, 88px); }

/* -------------------------------------
   HERO
   ------------------------------------- */
.hero {
  position: relative;
  margin-top: 0;
  /* Full-bleed the hero box out to the container/viewport edge so the aurora
     background reaches the edge, then re-inset the content with padding.
     (overflow:hidden was clipping the old inset-inline bleed back to the gutter,
     leaving a black strip down the left/right.) */
  margin-inline: calc(var(--gutter) * -1);
  padding: clamp(20px, 3vw, 32px) var(--gutter) clamp(24px, 4vw, 40px);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: -80px 0 0;
  pointer-events: none;
  z-index: 0;
}
.hero-aurora {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(255,75,43,0.22), transparent 60%),
    radial-gradient(700px 500px at 5% 30%, rgba(255,154,68,0.16), transparent 60%),
    radial-gradient(700px 500px at 50% 100%, rgba(61,206,194,0.10), transparent 60%);
  filter: blur(0.5px);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
}
.hero-inner { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 24px;
  display: flex; gap: 8px; align-items: center;
}
.hero-eyebrow a { color: var(--text-dim); }
.hero-eyebrow a:hover { color: var(--text); }
.hero-eyebrow .sep { color: var(--text-mute); }

.hero-headline-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 18px;
}
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 9vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
  background: linear-gradient(180deg, var(--text) 60%, rgba(244,244,246,0.55));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-content-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 24px;
}
@media (min-width: 900px) {
  .hero-content-grid { grid-template-columns: 1.2fr 1fr; align-items: stretch; }
  .hero-content-grid .crowd-verdict,
  .hero-content-grid .skip-tip { height: 100%; }
}
.hero-skip {
  width: clamp(80px, 12vw, 140px);
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 12px 32px rgba(255,75,43,0.25));
}

.hero-meta {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  margin: 0 0 32px;
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.hero-meta .dot { color: var(--text-mute); }

.hero-stat { margin-bottom: 24px; }

/* Crowd verdict */
.crowd-verdict {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
@media (max-width: 540px) {
  .crowd-verdict { grid-template-columns: 1fr; gap: 16px; }
}
.cv-mark {
  --cv-color: var(--wait-medium);
  display: flex; flex-direction: column;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: color-mix(in oklab, var(--cv-color) 16%, transparent);
  border: 1px solid color-mix(in oklab, var(--cv-color) 40%, transparent);
  min-width: 140px;
}
.cv-band-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cv-color);
  filter: brightness(1.4);
}
.cv-score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  color: var(--text);
  margin-top: 6px;
}
.cv-score em {
  font-style: normal;
  font-size: 22px;
  color: var(--text-mute);
  font-weight: 500;
}
.cv-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.2;
  margin: 0 0 6px;
  color: var(--text);
}
.cv-context {
  margin: 0;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.5;
}

/* Skip's strategic tip (planning, not live) */
.skip-tip {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: flex-start;
  padding: 18px 22px 18px 18px;
  background: linear-gradient(90deg, rgba(255,75,43,0.10), rgba(255,154,68,0.04) 60%, transparent);
  border: 1px solid color-mix(in oklab, var(--sunset-red) 30%, var(--border));
  border-radius: var(--radius-md);
}
.skip-tip-img { width: 48px; height: 48px; flex: 0 0 auto; }
.skip-tip-eyebrow {
  margin: 0 0 4px;
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--sunset-amber);
}
.skip-tip-headline {
  margin: 0 0 6px;
  font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--text);
}
.skip-tip-body { margin: 0; color: var(--text-dim); font-size: 14px; line-height: 1.55; }

/* Quick facts strip */
.quick-facts {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (max-width: 720px) { .quick-facts { grid-template-columns: 1fr 1fr; } }
.quick-facts li {
  display: flex; flex-direction: column; gap: 6px;
  padding: 18px 20px;
  background: var(--ink);
}
.qf-label {
  font-family: var(--font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-mute);
}
.qf-value {
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  color: var(--text); line-height: 1.4;
}

/* -------------------------------------
   Tool chips
   ------------------------------------- */
.tool-chips ul {
  list-style: none; margin: 12px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.tool-chips a {
  display: inline-flex;
  padding: 9px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-dim);
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.tool-chips a:hover { border-color: var(--border-2); color: var(--text); }

/* -------------------------------------
   Wait pill
   ------------------------------------- */
.wait-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px 5px 8px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--text);
}
.wait-pill .wait-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.wait-pill .wait-unit {
  font-weight: 500;
  color: var(--text-mute);
  margin-left: 2px;
  font-size: 12px;
}
.wait-pill .wait-label {
  font-weight: 600;
  letter-spacing: -0.005em;
}
.wait-short { color: var(--wait-short-fg); border-color: color-mix(in oklab, var(--wait-short) 35%, transparent); }
.wait-short .wait-dot  { background: var(--wait-short-fg); }
.wait-med   { color: var(--wait-medium-fg); border-color: color-mix(in oklab, var(--wait-medium) 35%, transparent); }
.wait-med   .wait-dot  { background: var(--wait-medium-fg); }
.wait-long  { color: var(--wait-long-fg); border-color: color-mix(in oklab, var(--wait-long) 40%, transparent); }
.wait-long  .wait-dot  { background: var(--wait-long-fg); }
.wait-down  { color: var(--text-mute); }
.wait-down  .wait-dot  { background: var(--text-mute); }
.wait-closed { color: var(--text-mute); }
.wait-closed .wait-dot { background: var(--text-mute); }

/* -------------------------------------
   Rides section
   ------------------------------------- */
.rides-head { margin-bottom: 32px; }
.rides-wrap { display: grid; gap: 16px; grid-template-columns: 1fr; }

/* Two-up once there's room — cards have enough content
   (curve + stats + why + accuracy) to read cleanly side by side. */
@media (min-width: 860px) {
  .rides-wrap { grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
}
/* Three-up on wide desktop — collapses 6 rides from 3 rows to 2,
   saving vertical space. ~400px/card at the 1240 container. */
@media (min-width: 1180px) {
  .rides-wrap { grid-template-columns: repeat(3, 1fr); }
}

.rides-more {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--sunset-amber);
}
.rides-more:hover { color: var(--sunset-pink); }

/* -------------------------------------
   Ride card
   ------------------------------------- */
.ride-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.ride-card:hover { border-color: var(--border-2); background: var(--surface-2); }

.rc-head { display: flex; flex-direction: column; gap: 4px; }
.rc-land {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-mute);
  margin: 0;
}
.rc-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  margin: 0;
  color: var(--text);
  letter-spacing: -0.01em;
}
.rc-tag { margin: 0; color: var(--text-dim); font-size: 13px; }

.rc-live { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.rc-flag {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.05);
  color: var(--text-dim);
}
.flag-drop      { background: color-mix(in oklab, var(--wait-short) 18%, transparent); color: var(--wait-short-fg); }
.flag-walkon    { background: color-mix(in oklab, var(--wait-short) 12%, transparent); color: var(--wait-short-fg); }
.flag-headliner { background: color-mix(in oklab, var(--sunset-amber) 18%, transparent); color: var(--sunset-amber); }
.flag-down      { background: color-mix(in oklab, var(--alert) 18%, transparent); color: var(--wait-long-fg); }

.rc-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px dashed var(--border);
}
.rc-stats > div { display: flex; flex-direction: column; gap: 2px; }
.rc-stats dt {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-mute);
}
.rc-stats dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}
.rc-thresh { color: var(--sunset-amber); }

.rc-why { margin: 0; color: var(--text-dim); font-size: 14px; line-height: 1.55; }

/* Wait curve (proof layer) */
.rc-curve { margin: 4px 0 2px; }
.rc-curve svg { width: 100%; height: 60px; display: block; }
.rc-curve-labels {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.08em; color: var(--text-mute);
  margin-top: 2px;
}
.rc-curve-dip { color: var(--wait-short-fg); }

/* Accuracy badge (proof layer) */
.accuracy-badge {
  display: flex; align-items: baseline; gap: 5px 8px; flex-wrap: wrap;
  margin: 0;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.02em; color: var(--text-mute);
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}
.accuracy-badge strong { color: var(--wait-short-fg); font-weight: 600; }
.accuracy-badge .ab-main { white-space: nowrap; }
.accuracy-badge .ab-target {
  width: 11px; height: 11px; border-radius: 50%; flex: 0 0 auto;
  align-self: center;
  border: 2px solid var(--wait-short-fg);
  position: relative;
}
.accuracy-badge .ab-target::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 3px; height: 3px; border-radius: 50%; background: var(--wait-short-fg);
}
.accuracy-badge .ab-days {
  white-space: nowrap;
  color: var(--text-mute); opacity: 0.7;
  padding-left: 8px; margin-left: auto;
  border-left: 1px solid var(--border);
}
@media (max-width: 420px) {
  .accuracy-badge .ab-days { margin-left: 19px; border-left: none; padding-left: 0; }
}

/* Accuracy badge inside the crowd verdict — slightly brighter context */
.cv-text .accuracy-badge { border-top: none; padding-top: 10px; }

.rc-link {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-mute);
  align-self: flex-start;
}
.rc-link:hover { color: var(--text); }

/* Stack layout — denser, horizontal split */
.rides-layout-stack .ride-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 20px;
}
.rides-layout-stack .rc-head { order: 2; }
.rides-layout-stack .rc-live { order: 1; flex-direction: column; align-items: flex-start; }
.rides-layout-stack .rc-stats { display: none; }
.rides-layout-stack .rc-why { order: 3; grid-column: 2; }
.rides-layout-stack .rc-link { display: none; }

/* -------------------------------------
   Strategy CTA
   ------------------------------------- */
.strategy-cta {
  display: block;
  position: relative;
  padding: clamp(28px, 5vw, 44px);
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(255,75,43,0.18), transparent 70%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid color-mix(in oklab, var(--sunset-red) 30%, var(--border));
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.strategy-cta:hover { border-color: color-mix(in oklab, var(--sunset-red) 50%, var(--border-2)); }
.sc-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--sunset-amber);
  margin-bottom: 12px;
}
.sc-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: var(--tracking-display);
  margin: 0 0 12px;
  max-width: 640px;
}
.sc-title em {
  font-style: normal;
  background: var(--sunset-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sc-body {
  margin: 0; max-width: 580px; color: var(--text-dim); font-size: 16px;
}
.sc-arrow {
  position: absolute;
  right: clamp(20px, 4vw, 36px);
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--sunset-gradient);
  border-radius: 50%;
  color: white;
  font-size: 22px;
  box-shadow: var(--shadow-cta);
}
@media (max-width: 720px) {
  .sc-arrow { position: static; transform: none; margin-top: 20px; }
}

/* -------------------------------------
   Crowd strip
   ------------------------------------- */
.cs-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  margin-bottom: 16px;
}
.cs-header .section-label { margin: 0; }
.cs-more {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--sunset-amber);
}
.cs-row {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 16px;
}
.cs-day {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 10px 4px;
  border-radius: var(--radius-sm);
  text-align: center;
}
.cs-day.is-today {
  background: color-mix(in oklab, var(--sunset-red) 10%, transparent);
  border: 1px solid color-mix(in oklab, var(--sunset-red) 30%, transparent);
}
.cs-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-mute);
}
.cs-day.is-today .cs-label { color: var(--sunset-amber); }
.cs-bar-wrap {
  position: relative;
  width: 14px;
  height: 80px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-pill);
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.cs-bar { width: 100%; border-radius: var(--radius-pill); transition: height var(--dur-med) var(--ease-out); }
.cs-score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

/* -------------------------------------
   Day plan
   ------------------------------------- */
.day-plan .block-title { margin-bottom: 32px; }
.dp-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 16px;
}
@media (min-width: 720px) { .dp-list { grid-template-columns: 1fr 1fr; gap: 20px; } }
.dp-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.dp-num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--sunset-amber);
}
.dp-list h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 4px;
  color: var(--text);
}
.dp-list p { margin: 0; color: var(--text-dim); font-size: 14px; line-height: 1.55; }

/* -------------------------------------
   FAQ
   ------------------------------------- */
.faq ul { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 10px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}
.faq details[open] { border-color: var(--border-2); }
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-weight: 400;
  color: var(--text-mute);
  transition: transform var(--dur-fast) var(--ease-out);
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 12px 0 0; color: var(--text-dim); font-size: 14px; line-height: 1.6; }

/* -------------------------------------
   Footer
   ------------------------------------- */
.footer {
  margin-top: 96px !important;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 13px;
  color: var(--text-mute);
}
.footer ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 18px;
}
.footer a:hover { color: var(--text); }

/* -------------------------------------
   Sticky CTA
   ------------------------------------- */
.sticky-cta {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 14px 12px 18px;
  background: rgba(13,13,17,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-pill);
  box-shadow: 0 16px 40px rgba(0,0,0,0.55);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}
.sticky-cta.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta .sc-text { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.sticky-cta strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.sticky-cta span { font-size: 12px; color: var(--text-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-cta a {
  flex: 0 0 auto;
  background: var(--sunset-gradient);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-cta);
}
@media (max-width: 540px) {
  .sticky-cta .sc-text span { display: none; }
}

/* -------------------------------------
   Block head (shared)
   ------------------------------------- */
.block-head { margin-bottom: 28px; }

/* -------------------------------------
   Strategy excerpts
   ------------------------------------- */
.excerpts-grid {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px)  { .excerpts-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .excerpts-grid { grid-template-columns: repeat(3, 1fr); } }

.excerpt-card {
  display: flex; flex-direction: column; gap: 10px;
  padding: 22px 22px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.excerpt-card:hover { border-color: var(--border-2); background: var(--surface-2); transform: translateY(-2px); }
.ex-num {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.2em; color: var(--sunset-amber);
}
.ex-label {
  margin: 0;
  font-family: var(--font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-mute);
}
.ex-title {
  margin: 0;
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; line-height: 1.25;
  color: var(--text); letter-spacing: -0.01em;
}
.ex-body { margin: 0; color: var(--text-dim); font-size: 14px; line-height: 1.55; }
.ex-link {
  margin-top: auto; padding-top: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  color: var(--sunset-amber);
}
.excerpts-more {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--sunset-amber);
}

/* -------------------------------------
   Secrets / easter eggs
   ------------------------------------- */
.secrets-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 16px;
}
.secrets-list li {
  display: grid; grid-template-columns: 24px 1fr; gap: 14px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.sec-num {
  font-family: var(--font-display); font-weight: 700;
  color: var(--sunshine);
  font-size: 28px; line-height: 1;
}
.sec-ride {
  margin: 0 0 4px;
  font-family: var(--font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.22em; color: var(--text-mute);
}
.sec-title {
  margin: 0 0 6px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  color: var(--text); letter-spacing: -0.01em;
}
.sec-teaser { margin: 0; color: var(--text-dim); font-size: 14px; line-height: 1.55; }
.secrets-more {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--sunshine);
}

/* -------------------------------------
   Seasonal playbooks
   ------------------------------------- */
.seasonal-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 8px; }
.seasonal-list a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px; align-items: center;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.seasonal-list a:hover { border-color: var(--border-2); background: var(--surface-2); }
.badge {
  font-family: var(--font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.2em;
  padding: 4px 9px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.05); color: var(--text-mute);
}
.badge-now { background: color-mix(in oklab, var(--wait-short) 18%, transparent); color: var(--wait-short-fg); }
.sg-label {
  font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--text);
}
.sg-arrow { color: var(--text-mute); font-family: var(--font-mono); }

/* -------------------------------------
   HERO VARIANT — slim
   slim: hide the live ticker grid + Skip rec; smaller hero
   ------------------------------------- */
.hero-slim .hero-h1-main { font-size: clamp(36px, 6vw, 64px); }
.hero-slim .hero-skip { display: none; }
.hero-slim .skip-tip { display: none; }
.hero-slim .hero-stat .crowd-verdict { padding: 16px; }
.hero-slim .cv-score { font-size: 40px; }

/* -------------------------------------
   HERO VARIANT — packed (default = data-heavy as is)
   verdict-led: bigger crowd verdict, quieter Skip + ticker
   ------------------------------------- */
.hero-verdict .hero-headline-row { display: none; }
.hero-verdict .hero-eyebrow { margin-bottom: 28px; }
.hero-verdict .hero-meta { order: 5; margin: 24px 0 0; }
.hero-verdict .hero-stat { margin-bottom: 16px; }
.hero-verdict .crowd-verdict {
  padding: clamp(28px, 5vw, 44px);
  background:
    radial-gradient(500px 300px at 100% 0%, rgba(255,154,68,0.12), transparent 70%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
}
.hero-verdict .cv-score { font-size: clamp(64px, 10vw, 96px); }
.hero-verdict .cv-headline { font-size: clamp(28px, 3.6vw, 40px); }

/* -------------------------------------
   ACCENT VARIANTS — per-park hue swap
   ------------------------------------- */
[data-accent="park-themed"] .hero-aurora {
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(89,203,232,0.22), transparent 60%),
    radial-gradient(700px 500px at 5% 30%, rgba(61,206,194,0.16), transparent 60%),
    radial-gradient(700px 500px at 50% 100%, rgba(254,198,2,0.08), transparent 60%);
}
[data-accent="park-themed"] .hero-h1-pre { color: var(--sky); }
[data-accent="park-themed"] .strategy-cta {
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(89,203,232,0.18), transparent 70%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  border-color: color-mix(in oklab, var(--sky) 30%, var(--border));
}
[data-accent="park-themed"] .strategy-cta .sc-eyebrow { color: var(--sky); }
[data-accent="park-themed"] .sc-title em {
  background: linear-gradient(45deg, var(--sky), var(--teal));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* -------------------------------------
   SHIP TWEAKS (static server-rendered build)
   Added during the Jekyll→Python-generator port. Mobile-first
   acceptance: hide the Skip mascot on phones so the H1 owns the
   hero; reserve the curve box so the proof layer never shifts.
   ------------------------------------- */
@media (max-width: 540px) {
  .hero-skip { display: none; }
  .hero-headline-row { margin-bottom: 12px; }
}
.rc-curve { min-height: 76px; }          /* 60px svg + 16px labels — no CLS */
.no-js .sticky-cta { display: none; }    /* sticky CTA is JS-gated; hide w/o JS */
