/* ============================================================
   Pods Offline, site stylesheet
   Brand: cream + near-black + brand yellow + rust accent
   Type:  Plus Jakarta Sans · Newsreader · JetBrains Mono
   ============================================================ */

:root {
  --cream:        #FAF7F0;
  --cream-deep:   #F2EEE3;
  --ink:          #0F0F0F;
  --ink-soft:     #2A2A2A;
  --ink-mute:     #6B6357;
  --yellow:       #FFD64F;
  --yellow-deep:  #F5C518;
  --rust:         #E55934;
  --moss:         #1F4D2C;
  --line:         #0F0F0F;

  --font-display: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif:   "Newsreader", Georgia, serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --maxw: 1280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-display);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.45;
  font-size: 17px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.wrap--narrow { max-width: 960px; }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px; background: var(--ink); border-radius: 50%;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; margin: 0; line-height: 1.02; text-wrap: balance; }
h1 { font-size: clamp(48px, 8vw, 128px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(24px, 2.6vw, 36px); line-height: 1.1; }
h4 { font-size: 20px; line-height: 1.2; }

.serif { font-family: var(--font-serif); font-weight: 500; font-style: italic; letter-spacing: -0.01em; }
.mono  { font-family: var(--font-mono); }

p { margin: 0 0 1em; text-wrap: pretty; }
p.lead { font-size: clamp(18px, 1.8vw, 24px); line-height: 1.45; color: var(--ink-soft); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 16px;
  border: 1.5px solid var(--ink);
  transition: transform 120ms ease, background 120ms ease, color 120ms ease, box-shadow 120ms ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 0 -2px var(--ink); }
.btn--primary { background: var(--ink); color: var(--cream); }
.btn--primary:hover { background: var(--yellow); color: var(--ink); box-shadow: 0 6px 0 -2px var(--ink); }
.btn--yellow  { background: var(--yellow); color: var(--ink); }
.btn--ghost   { background: transparent; color: var(--ink); }
.btn--sm      { padding: 9px 16px; font-size: 14px; }
.btn .arrow   { display: inline-block; transition: transform 200ms ease; }
.btn:hover .arrow { transform: translate(3px, -3px); }

/* ---------- Pills / chips ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: var(--r-pill);
  border: 1.5px solid var(--ink); background: var(--cream);
  font-size: 14px; font-weight: 500;
}
.pill--yellow { background: var(--yellow); }
.pill--ink    { background: var(--ink); color: var(--cream); }
.pill--rust   { background: var(--rust); color: var(--cream); border-color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream);
  border-bottom: 1.5px solid var(--ink);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.brand img { width: 32px; height: 32px; border-radius: 6px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 14px; border-radius: var(--r-pill);
  font-size: 15px; font-weight: 500;
  transition: background 120ms ease;
}
.nav a:hover { background: var(--cream-deep); }
.nav a.is-active { background: var(--ink); color: var(--cream); }
.nav-cta { display: flex; gap: 8px; }
@media (max-width: 880px) {
  .nav { display: none; }
  .site-header__inner { height: 64px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink); color: var(--cream);
  margin-top: 120px;
  padding: 80px 0 32px;
}
.site-footer .wrap { padding: 0 28px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.foot-grid h5 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--yellow); margin: 0 0 16px; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-grid a { color: rgba(250,247,240,0.78); font-size: 15px; }
.foot-grid a:hover { color: var(--yellow); }
.foot-brand-blurb { max-width: 380px; color: rgba(250,247,240,0.78); font-size: 15px; }
.foot-mega {
  display: none;
}
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1.5px solid rgba(250,247,240,0.18);
  padding-top: 24px; margin-top: 24px;
  font-size: 13px; color: rgba(250,247,240,0.6);
  flex-wrap: wrap; gap: 16px;
}
@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-mega { font-size: 22vw; }
}

/* ---------- Cards ---------- */
.card {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 28px;
}
.card--ink { background: var(--ink); color: var(--cream); }
.card--yellow { background: var(--yellow); }
.card--rust { background: var(--rust); color: var(--cream); }

/* ---------- Sections ---------- */
section { padding: 96px 0; position: relative; }
section + section { padding-top: 32px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
.section-head h2 { max-width: 18ch; }
.section-head .lead { max-width: 36ch; }

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 80px;
  position: relative;
}
.yellow-block {
  display: inline-block;
  background: var(--yellow);
  padding: 0 0.08em;
  border-radius: 6px;
  font-style: inherit;
}
.hero h1 .underline-wave {
  position: relative;
  white-space: nowrap;
}
.hero h1 .underline-wave::after {
  content: "";
  position: absolute; left: -4px; right: -4px; bottom: -2px; height: 12px;
  background: var(--rust);
  z-index: -1; border-radius: 6px;
  transform: rotate(-0.6deg);
}

.hero-meta {
  display: flex; gap: 16px; align-items: center; margin-top: 32px;
  flex-wrap: wrap;
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  background: var(--yellow);
  overflow: hidden;
  padding: 18px 0;
}
.marquee__track {
  display: flex; gap: 48px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee__item {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 600; font-size: 20px;
}
.marquee__dot { width: 8px; height: 8px; background: var(--ink); border-radius: 50%; flex: none; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Activity chip grid ---------- */
.chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.chip {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-pill);
  background: var(--cream);
  transition: transform 160ms ease, background 160ms ease;
  font-size: 15px; font-weight: 500;
}
.chip:hover { transform: translateY(-2px); background: var(--yellow); }
.chip__emoji { font-size: 22px; line-height: 1; }
.chip--yellow { background: var(--yellow); }
.chip--ink { background: var(--ink); color: var(--cream); }

/* ---------- Step cards ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step { padding: 24px; border-radius: var(--r-lg); border: 1.5px solid var(--ink); background: var(--cream); position: relative; min-height: 220px; }
.step__num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; }
.step h3 { margin-top: 12px; font-size: 26px; }
.step p { margin-top: 8px; font-size: 14px; color: var(--ink-soft); }
.step:nth-child(2) { background: var(--yellow); }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr 1fr; } }

/* ---------- Stat ---------- */
.stat {
  border-top: 1.5px solid var(--ink);
  padding-top: 18px;
}
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 5vw, 72px); line-height: 0.95; letter-spacing: -0.03em; }
.stat__label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); margin-top: 6px; }

/* ---------- Quote ---------- */
.pullquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

/* ---------- FAQ accordion ---------- */
.faq-item {
  border-bottom: 1.5px solid var(--ink);
  padding: 22px 0;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 22px;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--font-display); font-size: 28px; font-weight: 400;
  transition: transform 200ms ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body { padding-top: 14px; color: var(--ink-soft); max-width: 70ch; }

/* ---------- Big number list ---------- */
.bignums { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.bignums__item { border-top: 1.5px solid var(--ink); padding-top: 18px; }
.bignums__num { font-family: var(--font-serif); font-style: italic; font-size: 64px; line-height: 1; letter-spacing: -0.02em; }
.bignums__label { font-size: 14px; color: var(--ink-soft); margin-top: 8px; max-width: 28ch; }
@media (max-width: 880px) { .bignums { grid-template-columns: 1fr; } }

/* ---------- Tag list ---------- */
.taglist { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-family: var(--font-mono); font-size: 12px;
  padding: 6px 10px; border-radius: 6px;
  background: var(--cream-deep); border: 1px solid var(--ink);
}

/* ---------- Breadcrumb ---------- */
.crumb {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em;
  color: var(--ink-mute); margin-bottom: 14px;
}
.crumb a:hover { color: var(--ink); }
.crumb .sep { padding: 0 8px; }

/* ---------- Sticker ---------- */
.sticker {
  display: inline-flex; align-items: center; justify-content: center;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--rust); color: var(--cream);
  font-family: var(--font-mono); font-size: 11px;
  text-align: center; padding: 12px;
  transform: rotate(-8deg);
  border: 1.5px solid var(--ink);
}

/* ---------- Image slot placeholder ---------- */
.imgslot {
  aspect-ratio: 4 / 5;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-lg);
  background:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(15,15,15,0.06) 12px 13px),
    var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-mute);
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.04em; text-transform: uppercase;
  text-align: center; padding: 24px;
}
.imgslot--wide { aspect-ratio: 16/10; }
.imgslot--square { aspect-ratio: 1/1; }

/* ---------- Card grid two-column ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
@media (max-width: 880px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* ---------- Hero split for clubs/creators ---------- */
.split {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

/* ---------- Activity hero "fact box" ---------- */
.factbox {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1.5px solid var(--ink); border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 40px; background: var(--cream);
}
.factbox > div { padding: 22px; border-right: 1.5px solid var(--ink); }
.factbox > div:last-child { border-right: none; }
.factbox__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }
.factbox__val { font-size: 22px; font-weight: 600; margin-top: 6px; letter-spacing: -0.01em; }
@media (max-width: 720px) { .factbox { grid-template-columns: 1fr; } .factbox > div { border-right: none; border-bottom: 1.5px solid var(--ink); } .factbox > div:last-child { border-bottom: none; } }

/* ---------- Inline city links ---------- */
.citychips { display: flex; flex-wrap: wrap; gap: 8px; }
.citychip {
  padding: 6px 14px;
  border: 1.5px solid var(--ink); border-radius: var(--r-pill);
  font-size: 14px; font-weight: 500;
  background: var(--cream);
}
.citychip:hover { background: var(--yellow); }

/* ---------- Yellow band ---------- */
.band-yellow {
  background: var(--yellow);
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.band-ink {
  background: var(--ink);
  color: var(--cream);
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.band-ink h2, .band-ink h3 { color: var(--cream); }
.band-ink .btn--primary { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.band-ink .btn--ghost { color: var(--cream); border-color: var(--cream); }

/* ---------- Misc utilities ---------- */
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }
.mt-6 { margin-top: 72px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.text-mute { color: var(--ink-mute); }

/* ---------- Header logo dot ---------- */
.dot-stack {
  display: inline-flex; gap: 3px; padding: 4px 6px;
  background: var(--yellow); border: 1.5px solid var(--ink); border-radius: 6px;
}
.dot-stack span { width: 6px; height: 12px; background: var(--ink); border-radius: 3px; }
.dot-stack span:nth-child(2) { height: 16px; margin-top: -2px; }

/* ---------- Hero ticker ---------- */
.ticker-row {
  display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap;
}

/* ---------- "As seen / proof" row ---------- */
.proof {
  display: flex; gap: 32px; align-items: center; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--ink-mute);
}
.proof__divider { width: 1px; height: 16px; background: var(--ink-mute); }

/* ---------- onboarding step rows ---------- */
.onboard {
  display: grid; grid-template-columns: 60px 1fr; gap: 24px;
  padding: 28px 0; border-bottom: 1.5px solid var(--ink);
  align-items: start;
}
.onboard:last-child { border-bottom: none; }
.onboard__num { font-family: var(--font-serif); font-style: italic; font-size: 56px; line-height: 1; }
.onboard__body h3 { font-size: 28px; margin-bottom: 8px; }
.onboard__body p { color: var(--ink-soft); max-width: 60ch; }

/* ---------- "what you get" feature row ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature {
  padding: 22px; border: 1.5px solid var(--ink); border-radius: var(--r-lg);
  background: var(--cream);
}
.feature__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--yellow); border: 1.5px solid var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px;
}
.feature h4 { font-size: 19px; margin-bottom: 6px; }
.feature p { font-size: 14px; color: var(--ink-soft); margin: 0; }
@media (max-width: 880px) { .features { grid-template-columns: 1fr; } }

/* ---------- Social links ---------- */
.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.social-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-lg);
  background: var(--cream);
  transition: transform 120ms ease, background 120ms ease, box-shadow 120ms ease;
}
.social-card:hover {
  background: var(--yellow);
  box-shadow: 0 6px 0 -2px var(--ink);
  transform: translateY(-1px);
}
.social-card__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
}
.social-card__mark--instagram {
  background: radial-gradient(circle at 30% 105%, #feda75 0 24%, #fa7e1e 38%, #d62976 58%, #962fbf 78%, #4f5bd5 100%);
}
.social-card__mark--linkedin {
  background: #0a66c2;
}
.social-card__mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-card__label,
.social-card__value {
  display: block;
}
.social-card__label {
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.social-card__value {
  margin-top: 4px;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: 0;
}
.social-card__arrow {
  font-weight: 700;
  transition: transform 160ms ease;
}
.social-card:hover .social-card__arrow {
  transform: translate(2px, -2px);
}
@media (max-width: 720px) {
  .social-links {
    grid-template-columns: 1fr;
  }
}

/* ---------- Comparison table ---------- */
.cmp {
  width: 100%; border-collapse: collapse; margin-top: 32px;
  border: 1.5px solid var(--ink); border-radius: var(--r-lg); overflow: hidden;
  background: var(--cream);
}
.cmp th, .cmp td { padding: 16px 20px; text-align: left; border-bottom: 1px solid rgba(15,15,15,0.12); }
.cmp th { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; background: var(--cream-deep); }
.cmp td.is-yes { color: var(--moss); font-weight: 600; }
.cmp td.is-no { color: var(--rust); }

/* ---------- App download buttons ---------- */
.app-row { display: flex; gap: 12px; flex-wrap: wrap; }
.app-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px;
  background: var(--ink); color: var(--cream);
  border-radius: var(--r-md);
  border: 1.5px solid var(--ink);
  font-weight: 600;
}
.app-btn__sub { font-size: 11px; opacity: 0.75; display: block; font-weight: 400; }
.app-btn:hover { background: var(--yellow); color: var(--ink); }

/* ---------- Tape strip detail ---------- */
.tape {
  position: absolute;
  background: var(--yellow);
  border-top: 1px dashed rgba(15,15,15,0.5);
  border-bottom: 1px dashed rgba(15,15,15,0.5);
  width: 120px; height: 26px;
  transform: rotate(-6deg);
  opacity: 0.85;
}

/* ---------- Visual diagonal stripe band ---------- */
.stripe-band {
  background:
    repeating-linear-gradient(135deg, var(--ink) 0 16px, var(--yellow) 16px 32px);
  height: 18px;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}

/* ---------- Scroll-cue text ---------- */
.scrollcue {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-mute);
  display: flex; align-items: center; gap: 8px;
}

/* ============================================================
   HERO VARIANTS, one per page, structurally distinct
   ============================================================ */

/* ----- HOME: sentence-builder ----- */
.hero-home { padding: 56px 0 24px; }
.hero-home__grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: end;
}
.hero-home__answer {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 500;
  font-size: clamp(20px, 1.7vw, 24px); line-height: 1.4;
  max-width: 38ch; color: var(--ink-soft);
  margin: 0 0 28px;
}
.hero-home__h1 {
  font-size: clamp(56px, 9.2vw, 168px);
  line-height: 0.92; letter-spacing: -0.035em;
  font-weight: 700;
  text-wrap: balance;
  margin: 0;
}
.hero-home__h1 em { font-style: normal; font-family: var(--font-serif); font-weight: 500; }
.hero-home__h1 .blank {
  display: inline-block; background: transparent;
  padding: 0;
  border-radius: 0;
  transform: none;
  margin: 0;
  border: none;
  box-shadow: none;
  border-bottom: 6px solid var(--yellow);
  padding-bottom: 4px;
}
.hero-home__sidepanel {
  border: 1.5px solid var(--ink); border-radius: var(--r-lg);
  background: var(--ink); color: var(--cream);
  padding: 22px; min-width: 0;
}
.hero-home__livedot {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--yellow);
}
.hero-home__livedot::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--yellow);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
.hero-home__sidelist {
  margin-top: 18px; display: flex; flex-direction: column; gap: 14px;
  font-size: 14px;
}
.hero-home__sidelist > div {
  display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(250,247,240,0.2);
}
.hero-home__sidelist > div:last-child { border-bottom: none; padding-bottom: 0; }
.hero-home__sidelist .when { font-family: var(--font-mono); font-size: 11px; color: var(--yellow); }
.hero-home__sidelist .what { color: var(--cream); }
.hero-home__sidelist .where { color: rgba(250,247,240,0.6); font-size: 12px; font-family: var(--font-mono); }
@media (max-width: 880px) {
  .hero-home__grid { grid-template-columns: 1fr; gap: 32px; align-items: start; }
}

/* ----- CLUBS: split with dashboard mock ----- */
.hero-clubs { padding: 56px 0; }
.hero-clubs__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero-clubs h1 {
  font-size: clamp(48px, 6.4vw, 104px);
  line-height: 0.98; letter-spacing: -0.03em;
  margin: 0;
}
.hero-clubs__answer {
  font-family: var(--font-display); font-weight: 500;
  font-size: 18px; line-height: 1.45; color: var(--ink-soft);
  max-width: 50ch; margin: 24px 0 0;
  border-left: 4px solid var(--yellow);
  padding-left: 18px;
}
.dash-mock {
  background: var(--cream); border: 1.5px solid var(--ink); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(-1.2deg);
}
.dash-mock__bar {
  padding: 10px 14px;
  border-bottom: 1.5px solid var(--ink);
  background: var(--yellow);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px;
}
.dash-mock__bar .dots { display: inline-flex; gap: 5px; }
.dash-mock__bar .dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--ink); }
.dash-mock__body { padding: 22px; }
.dash-row {
  display: grid; grid-template-columns: 56px 1fr auto;
  gap: 12px; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15,15,15,0.12);
}
.dash-row:last-child { border-bottom: none; }
.dash-row__when { font-family: var(--font-mono); font-size: 11px; color: var(--ink-mute); }
.dash-row__title { font-weight: 600; font-size: 15px; }
.dash-row__sub { font-size: 12px; color: var(--ink-mute); margin-top: 2px; }
.dash-row__pill { font-family: var(--font-mono); font-size: 10px; padding: 4px 8px; border-radius: 999px; background: var(--ink); color: var(--cream); }
.dash-row__pill.is-yellow { background: var(--yellow); color: var(--ink); }
@media (max-width: 880px) {
  .hero-clubs__grid { grid-template-columns: 1fr; }
  .dash-mock { transform: none; box-shadow: 6px 6px 0 var(--ink); }
}

/* ----- CREATORS: stat-led editorial ----- */
.hero-creators { padding: 56px 0; }
.hero-creators__answer {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(22px, 2.2vw, 32px); line-height: 1.35;
  color: var(--ink-soft); max-width: 56ch; margin: 0 0 36px;
}
.hero-creators__h1 {
  font-size: clamp(48px, 7.4vw, 128px);
  line-height: 0.96; letter-spacing: -0.03em;
  margin: 0;
}
.hero-creators__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.hero-creators__stats > div {
  padding: 24px 20px;
  border-right: 1.5px solid var(--ink);
}
.hero-creators__stats > div:last-child { border-right: none; }
.hero-creators__stats .n {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 4.4vw, 64px);
  letter-spacing: -0.03em; line-height: 1;
}
.hero-creators__stats .l {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute);
  margin-top: 8px;
}
@media (max-width: 880px) { .hero-creators__stats { grid-template-columns: 1fr 1fr; } .hero-creators__stats > div:nth-child(2) { border-right: none; } .hero-creators__stats > div:nth-child(1), .hero-creators__stats > div:nth-child(2) { border-bottom: 1.5px solid var(--ink); } }

/* ----- OUR STORY: editorial pullquote-first ----- */
.hero-story { padding: 56px 0 0; }
.hero-story__quote {
  font-family: var(--font-serif);
  font-weight: 500; font-style: italic;
  font-size: clamp(40px, 6.4vw, 104px);
  line-height: 1.04; letter-spacing: -0.015em;
  text-wrap: balance;
  position: relative;
}
.hero-story__quote::before {
  content: "“";
  font-family: var(--font-serif);
  font-size: 1.4em; line-height: 0.8;
  color: var(--yellow);
  position: absolute; left: -0.5em; top: -0.05em;
}
.hero-story__byline {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-mute); margin-top: 32px;
  display: flex; flex-wrap: wrap; gap: 8px 24px;
}
.hero-story__rule {
  border-bottom: 1.5px solid var(--ink);
  margin: 64px 0 0;
}

/* ----- RUN CLUBS: map/list hybrid ----- */
.hero-runs { padding: 56px 0; }
.hero-runs__grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start;
}
.hero-runs h1 {
  font-size: clamp(56px, 8vw, 144px);
  line-height: 0.95; letter-spacing: -0.035em;
  margin: 0;
}
.hero-runs__answer {
  font-family: var(--font-display);
  font-size: 18px; line-height: 1.45; color: var(--ink-soft);
  max-width: 52ch; margin: 24px 0 0;
}
.hero-runs__answer strong { color: var(--ink); font-weight: 700; }
.hero-runs__panel {
  border: 1.5px solid var(--ink); border-radius: var(--r-lg);
  background: var(--cream); overflow: hidden;
}
.hero-runs__panel-head {
  padding: 14px 18px; border-bottom: 1.5px solid var(--ink);
  background: var(--yellow);
  display: flex; align-items: center; justify-content: space-between;
}
.hero-runs__panel-head h4 { font-size: 14px; font-weight: 700; }
.hero-runs__live {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.08em;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-runs__live::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--rust); animation: pulse 1.4s ease-in-out infinite;
}
.run-row { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; padding: 14px 18px; border-bottom: 1px solid rgba(15,15,15,0.1); }
.run-row:last-child { border-bottom: none; }
.run-row__time { font-family: var(--font-mono); font-size: 11px; color: var(--ink-mute); }
.run-row__name { font-weight: 600; font-size: 14px; }
.run-row__loc { font-size: 12px; color: var(--ink-mute); margin-top: 2px; font-family: var(--font-mono); }
.run-row__cap { font-family: var(--font-mono); font-size: 10px; padding: 3px 7px; background: var(--ink); color: var(--cream); border-radius: 999px; }
@media (max-width: 880px) { .hero-runs__grid { grid-template-columns: 1fr; } }

/* ----- HELP: search-bar centric ----- */
.hero-help { padding: 56px 0; }
.hero-help__inner {
  max-width: 760px; margin: 0 auto; text-align: center;
}
.hero-help h1 {
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.96; letter-spacing: -0.03em;
  margin: 0;
}
.hero-help__sub {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(18px, 1.7vw, 22px); line-height: 1.5;
  color: var(--ink-soft); max-width: 50ch; margin: 24px auto 0;
}
.hero-help__search {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid var(--ink); border-radius: var(--r-pill);
  background: var(--cream);
  padding: 6px 6px 6px 22px;
  margin: 36px auto 0;
  max-width: 620px;
  box-shadow: 6px 6px 0 var(--yellow);
}
.hero-help__search input {
  flex: 1; border: none; background: transparent;
  font-family: var(--font-display); font-size: 17px; padding: 12px 8px;
  outline: none; color: var(--ink);
  min-width: 0;
}
.hero-help__search input::placeholder { color: var(--ink-mute); }
.hero-help__search button { border: none; background: var(--ink); color: var(--cream); padding: 12px 22px; border-radius: var(--r-pill); font-weight: 600; }
.hero-help__quick {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin-top: 24px;
}
.hero-help__quick a {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.04em;
  padding: 6px 12px; border-radius: 999px;
  background: transparent; border: 1px solid var(--ink);
  color: var(--ink-soft);
}
.hero-help__quick a:hover { background: var(--yellow); color: var(--ink); }

/* ---------- Photo pair grid (home real-life break) ---------- */
.photo-pair { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; }
@media (max-width: 720px) { .photo-pair { grid-template-columns: 1fr; } }

/* ---------- Mobile tweaks ---------- */
@media (max-width: 720px) {
  section { padding: 64px 0; }
  .site-footer { padding: 56px 0 24px; margin-top: 80px; }
  .hero-home__h1, .hero-clubs h1, .hero-creators__h1, .hero-runs h1, .hero-help h1, .hero-story__quote {
    font-size: clamp(40px, 12vw, 64px);
  }
}

/* ============================================================
   Premium refinement pass
   Calms the original high-volume visual system while preserving
   the existing page structure, brand colors, and content.
   ============================================================ */

:root {
  --cream:        #FBF8F1;
  --cream-deep:   #F1ECE2;
  --ink:          #151412;
  --ink-soft:     #3A352F;
  --ink-mute:     #746C61;
  --yellow:       #F2C94C;
  --yellow-deep:  #DFAF22;
  --rust:         #B85B3F;
  --moss:         #274C34;
  --line:         #151412;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
}

body {
  line-height: 1.55;
  font-size: 16px;
}

.wrap {
  max-width: var(--maxw);
  padding: 0 28px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.11em;
  color: var(--ink-soft);
  font-weight: 600;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  background: var(--yellow-deep);
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 { font-size: clamp(42px, 6vw, 88px); }
h2 { font-size: clamp(30px, 3.8vw, 52px); }
h3 { font-size: clamp(22px, 2vw, 30px); }
h4 { font-size: 18px; }

p.lead {
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.6;
}

.serif {
  letter-spacing: 0;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 241, 0.94);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  height: 68px;
  max-width: var(--maxw);
  padding: 0 28px;
}

.brand {
  font-size: 16px;
  font-weight: 650;
}

.brand img {
  width: 28px;
  height: 28px;
  border-radius: 5px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  padding: 7px 12px;
}

.nav a.is-active {
  background: var(--cream-deep);
  color: var(--ink);
}

.btn,
.app-btn {
  border-width: 1.5px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 17px;
}

.btn--sm {
  padding: 8px 13px;
  font-size: 13px;
}

.btn:hover,
.btn--primary:hover,
.app-btn:hover {
  transform: translateY(-1px);
  box-shadow: none;
}

.pill,
.chip,
.citychip,
.dash-row__pill,
.run-row__cap,
.hero-help__quick a {
  border-width: 1.5px;
  border-radius: var(--r-pill);
}

.pill {
  font-size: 13px;
  padding: 7px 11px;
}

.chip {
  font-size: 14px;
  padding: 12px 14px;
}

.chip:hover {
  transform: none;
}

.chip__emoji {
  font-size: 18px;
}

section {
  padding: 78px 0;
}

section + section {
  padding-top: 24px;
}

.section-head {
  margin-bottom: 36px;
  gap: 24px;
}

.card,
.step,
.feature,
.factbox,
.hero-home__sidepanel,
.hero-runs__panel,
.dash-mock,
.imgslot,
.cmp {
  border-width: 1.5px;
  border-color: var(--line);
  border-radius: var(--r-lg);
}

.card {
  padding: 28px;
}

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.marquee__item {
  font-size: 15px;
  font-weight: 600;
}

.marquee__track {
  gap: 32px;
  animation-duration: 56s;
}

.marquee__dot {
  width: 5px;
  height: 5px;
}

.hero,
.hero-home,
.hero-clubs,
.hero-creators,
.hero-runs,
.hero-help {
  padding: 48px 0 36px;
}

.hero-home__grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 56px;
  align-items: end;
}

.hero-home__h1 {
  max-width: 13ch;
  font-family: var(--font-display);
  font-size: clamp(40px, 4.8vw, 72px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 600;
}

.hero-home__h1 em {
  font-family: inherit;
  font-size: 1em;
  font-style: normal;
  font-weight: inherit;
}

.hero-home__answer {
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.58;
  color: var(--ink-soft);
}

.hero-home__sidepanel {
  padding: 22px;
  margin-bottom: 8px;
}

.hero-home__sidelist,
.run-row__name,
.dash-row__title {
  font-size: 13px;
}

.hero-home__sidelist > div,
.run-row,
.dash-row {
  border-color: rgba(251, 248, 241, 0.18);
}

.hero-clubs h1,
.hero-creators__h1,
.hero-runs h1,
.hero-help h1 {
  font-size: clamp(40px, 4.8vw, 72px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 600;
}

.hero-story__quote {
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-runs__answer,
.hero-clubs__answer {
  font-size: 16px;
  line-height: 1.6;
}

.hero-creators__answer,
.hero-help__sub {
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.6;
}

.hero-creators__stats,
.hero-story__rule,
.factbox,
.band-yellow,
.band-ink {
  border-color: var(--line);
}

.hero-creators__stats .n,
.stat__num {
  font-size: clamp(32px, 3.4vw, 50px);
  letter-spacing: 0;
}

.pullquote {
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.28;
}

.bignums__num,
.onboard__num {
  font-size: 44px;
}

.step {
  min-height: 190px;
  padding: 22px;
}

.step h3,
.onboard__body h3 {
  font-size: 22px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.faq-item summary {
  font-size: 19px;
  letter-spacing: 0;
}

.faq-item summary::after {
  font-size: 22px;
}

.dash-mock {
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(-0.6deg);
}

.dash-mock__bar,
.hero-runs__panel-head {
  border-bottom-width: 1.5px;
}

.hero-help__search {
  border-width: 1.5px;
  border-radius: var(--r-pill);
  box-shadow: 6px 6px 0 var(--yellow);
}

.hero-help__search input {
  font-size: 15px;
}

.hero-help__search button {
  border-radius: var(--r-pill);
  font-size: 14px;
}

.site-footer {
  margin-top: 88px;
  padding: 64px 0 28px;
}

.foot-grid h5 {
  font-size: 10px;
  letter-spacing: 0.14em;
}

.foot-grid a,
.foot-brand-blurb {
  font-size: 14px;
}

@media (max-width: 880px) {
  .wrap,
  .site-header__inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-home__grid {
    grid-template-columns: 1fr;
  }

  .hero-home__h1,
  .hero-clubs h1,
  .hero-creators__h1,
  .hero-runs h1,
  .hero-help h1,
  .hero-story__quote {
    font-size: clamp(34px, 9vw, 52px);
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  section {
    padding: 56px 0;
  }

  .site-header__inner {
    height: 60px;
  }

  .nav-cta .btn {
    padding: 8px 11px;
  }

  .hero,
  .hero-home,
  .hero-clubs,
  .hero-creators,
  .hero-runs,
  .hero-help {
    padding: 36px 0 28px;
  }
}
