/* ============================================================
   ACTIVE ADDIS — design system v2 "SWEAT EDITION"
   Athletic editorial: cinematic photography, duotone scrims,
   huge uppercase display type, grain, tickers.
   Palette: evergreen ink · Meskel gold · teff cream · clay
   Type: Clash Display (display) · General Sans (text)
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Clash Display';
  src: url('../fonts/ClashDisplay-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Clash Display';
  src: url('../fonts/ClashDisplay-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'General Sans';
  src: url('../fonts/GeneralSans-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'General Sans';
  src: url('../fonts/GeneralSans-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'General Sans';
  src: url('../fonts/GeneralSans-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --ink: #0A1411;
  --ink-2: #0D1D17;
  --ink-3: #10231B;
  --cream: #F4EEE1;
  --cream-2: #EAE2CF;
  --paper: #FBF7EE;
  --gold: #E8B558;
  --gold-deep: #7C5310;
  --green: #1E6B4E;
  --green-deep: #175540;
  --mint: #8FD6B1;
  --clay: #E07A54;
  --text-dark-muted: #A9B7AD;
  --text-cream-muted: #57503E;
  --line-on-dark: rgba(244, 238, 225, .12);
  --line-on-cream: rgba(10, 20, 17, .13);
  --font-display: 'Clash Display', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'General Sans', 'Segoe UI', system-ui, sans-serif;
  --gutter: clamp(20px, 4vw, 48px);
  --muted: var(--text-dark-muted);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  background: var(--ink);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; }
ul, ol, dl, dd, dt, figure, blockquote { margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
section[id] { scroll-margin-top: 84px; }
::selection { background: var(--gold); color: #231703; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 200;
  background: var(--gold); color: #231703; font-weight: 600;
  padding: .8em 1.4em; border-radius: 999px;
  transform: translateY(-260%); transition: transform .25s;
}
.skip-link:focus-visible { transform: none; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.sec-cream :focus-visible { outline-color: var(--green-deep); }

.container { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: var(--gutter); }

/* Stroke icon system */
svg[class$="-ico"], .pin, .btn-ico {
  fill: none; stroke: currentColor; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.btn-ico { width: 17px; height: 17px; }
.pin { width: 15px; height: 15px; flex-shrink: 0; }

/* ---------- Overlays ---------- */
.noise {
  position: fixed; inset: 0; z-index: 120; pointer-events: none; opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 280px;
}
.progressbar {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 140;
  background: transparent; pointer-events: none;
}
.progressbar-fill {
  height: 100%; background: var(--gold);
  transform: scaleX(0); transform-origin: left center;
}

/* Custom cursor ring (fine pointers only) */
.cursor { position: fixed; top: 0; left: 0; z-index: 130; pointer-events: none; display: none; opacity: 0; }
.cursor.is-on { opacity: 1; }
.cursor-ring {
  position: absolute; top: 0; left: 0;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid rgba(232, 181, 88, .8);
  translate: -50% -50%;
  transition: scale .3s cubic-bezier(.3,1.4,.4,1), border-color .3s, opacity .3s;
}
.cursor.is-active .cursor-ring { scale: 1.8; border-color: rgba(232, 181, 88, .45); }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }

/* ---------- Buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: .95em 1.9em; border-radius: 999px;
  font-weight: 500; font-size: 1rem; letter-spacing: .01em; line-height: 1.2;
  transition: transform .3s cubic-bezier(.3,1.4,.4,1), box-shadow .3s, color .3s, border-color .3s, background-color .3s;
  will-change: transform;
}
.btn > * { position: relative; z-index: 1; }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: rgba(10, 20, 17, .14);
  transform: translateY(102%); transition: transform .4s cubic-bezier(.6,.1,.2,1);
}
.btn:hover::before, .btn:focus-visible::before { transform: translateY(0); }
.btn-gold { background: var(--gold); color: #231703; }
.btn-gold:hover { box-shadow: 0 12px 34px rgba(232, 181, 88, .28); }
.btn-ghost { border: 1px solid rgba(244, 238, 225, .3); color: var(--cream); }
.btn-ghost::before { background: rgba(244, 238, 225, .07); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: .68em 1.35em; font-size: .92rem; }

/* ---------- Eyebrows ---------- */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: .8rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow-num {
  display: grid; place-items: center; width: 27px; height: 27px;
  border: 1px solid currentColor; border-radius: 50%;
  font-size: .66rem; letter-spacing: .02em;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.sec-cream .eyebrow { color: var(--gold-deep); }

/* ---------- Nav ---------- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 110;
  padding-block: 20px;
  transition: padding .35s, background-color .35s, border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.site-nav.is-scrolled {
  padding-block: 11px;
  background: rgba(10, 20, 17, .74);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-bottom-color: var(--line-on-dark);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { display: inline-flex; align-items: center; gap: 10px; color: var(--cream); }
.logo-mark { color: var(--gold); flex-shrink: 0; }
.logo-word { font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; letter-spacing: .01em; }
.nav-links { display: flex; gap: clamp(18px, 2.6vw, 36px); }
.nav-links a {
  font-size: .95rem; font-weight: 500; color: rgba(244, 238, 225, .78);
  padding: .3em 0; position: relative; transition: color .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: var(--gold); transform: scaleX(0); transform-origin: right center;
  transition: transform .35s cubic-bezier(.6,.1,.2,1);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left center; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-burger {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px; background: var(--cream);
  border-radius: 2px; transition: transform .35s, opacity .35s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 105;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-3) 100%);
  opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
  display: flex; align-items: center;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu-inner {
  width: 100%; max-width: 560px; margin-inline: auto;
  padding: 110px var(--gutter) 48px;
  display: flex; flex-direction: column; gap: 6px;
}
.mobile-link {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.9rem, 7vw, 2.5rem); color: var(--cream);
  padding: 14px 0; border-bottom: 1px solid var(--line-on-dark);
}
.mobile-link:active { color: var(--gold); }
.mobile-menu .btn { margin-top: 30px; align-self: flex-start; }
.mobile-menu-foot { margin-top: auto; padding-top: 40px; color: var(--muted); font-size: .9rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 110px; padding-bottom: 96px;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 38%;
  filter: saturate(.75) contrast(1.06) brightness(.9);
}
.hero-media::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(120deg, rgba(232, 181, 88, .16), transparent 42%, rgba(30, 107, 78, .22));
  mix-blend-mode: overlay;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 14, 11, .9) 0%, rgba(7, 14, 11, .62) 44%, rgba(10, 20, 17, .3) 100%),
    linear-gradient(180deg, rgba(10, 20, 17, .55) 0%, transparent 32%, transparent 58%, var(--ink) 99%);
}
.hero-bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.glow { position: absolute; border-radius: 50%; filter: blur(90px); }
.glow-gold {
  width: 46vw; height: 46vw; top: -14%; right: -10%;
  background: radial-gradient(circle, rgba(232, 181, 88, .2), transparent 62%);
}
.glow-green {
  width: 42vw; height: 42vw; bottom: -8%; left: -8%;
  background: radial-gradient(circle, rgba(30, 107, 78, .34), transparent 62%);
}
.hero-canvas { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; opacity: .85; }
.hero-inner { position: relative; z-index: 2; }
.hero-badge { margin-bottom: clamp(22px, 3.5vh, 40px); }
.hero-title {
  font-size: clamp(2.7rem, 8.8vw, 8.6rem);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: -.02em; line-height: .93;
}
.hero-title .line { display: block; overflow: hidden; padding-block: .045em; }
.hero-title .line-inner { display: inline-block; will-change: transform; }
.outline { font-style: italic; color: var(--gold); }
@supports (-webkit-text-stroke: 1px #000) {
  .outline { color: transparent; -webkit-text-stroke: 2.5px var(--gold); }
}
.hero-verbs {
  display: flex; align-items: center; gap: 16px;
  margin-top: clamp(18px, 3vh, 30px);
  font-family: var(--font-display); text-transform: uppercase;
}
.verbs-static {
  font-size: clamp(.82rem, 1vw, .95rem); font-weight: 600;
  letter-spacing: .2em; color: var(--muted);
}
.verbs-stack {
  position: relative; overflow: hidden;
  height: 1.18em; min-width: 8ch;
  font-size: clamp(1.55rem, 2.6vw, 2.4rem); font-weight: 700;
  line-height: 1.15; color: var(--gold); letter-spacing: .01em;
}
.verbs-stack b {
  position: absolute; left: 0; top: 0; font-weight: 700;
  opacity: 0; transform: translateY(115%);
  transition: transform .55s cubic-bezier(.2, .7, .2, 1), opacity .4s;
}
.verbs-stack b.is-on { opacity: 1; transform: none; }
.hero-sub {
  margin-top: clamp(18px, 3vh, 30px); max-width: 560px;
  font-size: clamp(1.02rem, 1.2vw, 1.16rem); line-height: 1.68;
  color: rgba(244, 238, 225, .82);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(26px, 4vh, 42px); }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: clamp(44px, 7vh, 72px); max-width: 900px;
}
.stat { border-left: 1px solid rgba(244, 238, 225, .22); padding-left: 18px; }
.stat-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.9rem, 2.9vw, 3rem); line-height: 1.05; color: var(--cream);
}
.stat-label {
  font-size: .74rem; font-weight: 500; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.scroll-cue {
  position: absolute; bottom: 64px; left: 50%; transform: translateX(-50%);
  z-index: 2; font-size: .72rem; font-weight: 600; letter-spacing: .32em;
  text-transform: uppercase; color: rgba(244, 238, 225, .5);
}
.scroll-cue::after {
  content: ""; position: absolute; left: 50%; top: calc(100% + 10px);
  width: 1px; height: 38px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue { 0%, 100% { transform: scaleY(.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

/* Animation start states — only when JS + motion OK */
.js-anim .hero-title .line-inner { transform: translateY(112%); }
.js-anim .hero-badge, .js-anim .hero-verbs, .js-anim .hero-sub, .js-anim .hero-ctas > *,
.js-anim .hero-stats .stat, .js-anim .scroll-cue { opacity: 0; transform: translateY(26px); }
/* Failsafe: if the intro never ran, force content visible */
.anim-failsafe .hero-title .line-inner { transform: none !important; }
.anim-failsafe .hero-badge, .anim-failsafe .hero-verbs, .anim-failsafe .hero-sub, .anim-failsafe .hero-ctas > *,
.anim-failsafe .hero-stats .stat, .anim-failsafe .scroll-cue { opacity: 1 !important; }

/* ---------- Ticker band ---------- */
.ticker-band {
  position: relative; z-index: 3;
  background: var(--gold); color: #231703;
  transform: rotate(-1.4deg) scale(1.04);
  margin-top: -30px; margin-bottom: 8px;
  border-block: 1px solid rgba(35, 23, 3, .18);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}
.ticker { overflow: hidden; }
.ticker-track {
  display: flex; width: max-content; align-items: center;
  padding-block: 14px;
  animation: marquee 30s linear infinite;
}
.ticker-track > * { margin-right: 30px; }
.ticker-item {
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  text-transform: uppercase; letter-spacing: .07em; white-space: nowrap;
}
.tick { font-size: .8em; opacity: .65; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Word marquee (giant outline divider) ---------- */
.word-marquee {
  background: var(--ink); overflow: hidden;
  padding-block: clamp(30px, 5vw, 60px);
  border-block: 1px solid var(--line-on-dark);
}
.wm-track { animation-duration: 44s; padding-block: 0; }
.wm-track > * { margin-right: clamp(26px, 3.5vw, 54px); }
.wm-word {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3.2rem, 7.5vw, 7.5rem); line-height: 1.04;
  text-transform: uppercase; white-space: nowrap;
  color: rgba(244, 238, 225, .14);
}
.wm-gold { color: rgba(232, 181, 88, .22); }
@supports (-webkit-text-stroke: 1px #000) {
  .wm-word { color: transparent; -webkit-text-stroke: 1.5px rgba(244, 238, 225, .4); }
  .wm-gold { -webkit-text-stroke-color: rgba(232, 181, 88, .55); }
}
.wm-dot { color: var(--gold); font-size: clamp(1.2rem, 2vw, 1.9rem); opacity: .8; }

/* ---------- Sections ---------- */
.sec { position: relative; padding-block: clamp(88px, 11vw, 156px); }
.sec-cream { background: var(--cream); color: var(--ink); --muted: var(--text-cream-muted); }
.sec-cream-alt { background: var(--cream-2); }
.sec-dark { background: var(--ink); color: var(--cream); --muted: var(--text-dark-muted); }
.sec-head { margin-bottom: clamp(44px, 6vw, 80px); }
.sec-head h2 {
  margin-top: 26px;
  font-size: clamp(2.25rem, 5.2vw, 5rem);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: -.012em; line-height: .98;
  max-width: 19ch;
}
.sec-head-center { text-align: center; }
.sec-head-center .eyebrow { justify-content: center; }
.sec-head-center h2, .sec-head-center .sec-lede { margin-inline: auto; }
.sec-lede { margin-top: 22px; max-width: 58ch; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }

/* ---------- Pulse / mosaic ---------- */
.pulse { padding-bottom: clamp(96px, 12vw, 170px); }
.pulse .sec-head { margin-bottom: clamp(34px, 4.5vw, 60px); }
.mosaic {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(56px, 6.6vw, 88px); gap: clamp(12px, 1.6vw, 20px);
}
.mo { position: relative; border-radius: 22px; overflow: hidden; }
.mo-a { grid-area: 1 / 1 / 5 / 8; }
.mo-b { grid-area: 1 / 8 / 6 / 13; }
.mo-c { grid-area: 5 / 1 / 9 / 5; }
.mo-fact { grid-area: 5 / 5 / 9 / 8; }
.mo-d { grid-area: 6 / 8 / 11 / 13; }
.mo-e { grid-area: 9 / 1 / 13 / 8; }
.mo-img { position: absolute; inset: 0; }
.mo-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(.3) saturate(.85) contrast(1.05);
  transform: scale(1.015);
  transition: filter .5s, transform .9s cubic-bezier(.2, .6, .2, 1);
}
.mo:hover .mo-img img, .mo:focus-within .mo-img img {
  filter: grayscale(0) saturate(1.02) contrast(1.02); transform: scale(1.06);
}
.mo-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(7, 16, 12, .82));
}
.mo-cap {
  position: absolute; left: 18px; right: 18px; bottom: 15px; z-index: 2;
  display: flex; flex-direction: column; gap: 3px;
}
.mo-time {
  font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
}
.mo-place { color: rgba(244, 238, 225, .92); font-size: .93rem; font-weight: 500; line-height: 1.4; }
.mo-fact {
  background: linear-gradient(160deg, #1E6B4E, #0E3A28 78%);
  border: 1px solid rgba(143, 214, 177, .18);
  padding: clamp(20px, 2vw, 30px);
  display: flex; flex-direction: column; justify-content: center; gap: 12px;
}
.fact-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.1rem, 3.4vw, 3.4rem); line-height: 1; color: var(--gold);
}
.fact-copy { color: rgba(244, 238, 225, .85); font-size: .95rem; line-height: 1.6; }
.fact-am { color: var(--mint); font-size: .9rem; opacity: .8; }

/* ---------- Problem ---------- */
.kinetic { margin: clamp(30px, 5vw, 60px) 0 clamp(56px, 7vw, 96px); }
.kinetic-line {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.7rem, 4.4vw, 3.8rem); line-height: 1.16; color: var(--ink);
}
.k-text { position: relative; display: inline-block; }
.k-strike {
  position: absolute; left: -1.5%; right: -1.5%; top: 55%; height: .085em;
  background: var(--clay); border-radius: 4px;
  transform: scaleX(0); transform-origin: left center;
}
.kinetic-punch {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.7rem, 4.4vw, 3.8rem); line-height: 1.16;
  color: var(--green-deep); margin-top: .45em;
}
.kinetic-punch::before { content: "✦ "; color: var(--gold-deep); font-size: .7em; vertical-align: .12em; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pain-card {
  background: var(--paper); border: 1px solid var(--line-on-cream);
  border-radius: 26px; padding: 34px 30px;
  transition: transform .35s cubic-bezier(.3,1.3,.4,1), box-shadow .35s;
}
.pain-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(10, 20, 17, .09); }
.pain-num {
  display: grid; place-items: center; width: 46px; height: 46px;
  margin-bottom: 22px; border-radius: 15px;
  background: var(--cream-2); color: var(--gold-deep);
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
}
.pain-card h3 { font-size: 1.32rem; margin-bottom: 12px; letter-spacing: -.01em; }
.pain-card p { color: var(--muted); font-size: .99rem; line-height: 1.65; }

/* ---------- Venues (horizontal scroll, photo cards) ---------- */
.hscroll { background: var(--ink); color: var(--cream); --muted: var(--text-dark-muted); }
.hscroll-pinwrap {
  min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  gap: clamp(26px, 4vh, 52px); padding-block: 104px 36px; overflow: hidden;
}
.hscroll-head h2 {
  margin-top: 26px; font-size: clamp(2.25rem, 5.2vw, 5rem);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: -.012em; line-height: .98; max-width: 16ch;
}
.hscroll-head .sec-lede { max-width: 52ch; }
.hscroll-track {
  display: flex; gap: 22px; width: max-content; will-change: transform;
  padding-inline: max(clamp(20px, 4vw, 48px), calc((100vw - 1184px) / 2));
}
.vcard {
  position: relative; overflow: hidden;
  width: clamp(300px, 27vw, 390px); min-height: min(58vh, 500px);
  display: flex; flex-direction: column; justify-content: space-between;
  border-radius: 28px; padding: 28px 26px;
  background: #0C1E17;
  border: 1px solid var(--line-on-dark);
  transition: transform .35s cubic-bezier(.3,1.3,.4,1), border-color .35s;
}
.vcard:hover { transform: translateY(-8px); border-color: color-mix(in srgb, var(--acc) 55%, transparent); }
.vcard-media { position: absolute; inset: 0; z-index: 0; }
.vcard-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(.32) saturate(.85) contrast(1.05);
  transform: scale(1.02);
  transition: transform .8s cubic-bezier(.2, .6, .2, 1), filter .5s;
}
.vcard:hover .vcard-media img { transform: scale(1.09); filter: grayscale(0) saturate(1); }
.vcard::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(185deg, rgba(7, 16, 12, .55) 0%, rgba(7, 16, 12, .16) 40%, rgba(7, 16, 12, .92) 84%);
}
.vcard-top, .vcard-idx, .vcard-body { position: relative; z-index: 2; }
.vcard-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.vcard-ico { width: 46px; height: 46px; color: var(--acc); filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .5)); }
.vcard-chip {
  font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--acc); border: 1px solid; border-radius: 999px; padding: .5em 1.05em;
  background: rgba(7, 16, 12, .5);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  white-space: nowrap;
}
.vcard-idx {
  position: absolute; right: 20px; top: 40%; transform: translateY(-50%);
  font-family: var(--font-display); font-weight: 700; font-size: 6.8rem; line-height: 1;
  color: rgba(244, 238, 225, .14); pointer-events: none;
  mix-blend-mode: overlay;
}
.vcard-body h3 {
  font-size: 1.58rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: -.005em; margin-bottom: 10px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
}
.vcard-desc { color: rgba(244, 238, 225, .85); font-size: .97rem; line-height: 1.6; margin-bottom: 20px; }
.vcard-areas {
  display: flex; align-items: center; gap: 8px;
  color: var(--acc); font-size: .87rem; font-weight: 500; letter-spacing: .04em;
}
.hscroll-hint {
  display: flex; align-items: center; gap: 10px;
  color: var(--muted); font-size: .74rem; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  padding-inline: max(clamp(20px, 4vw, 48px), calc((100vw - 1184px) / 2));
}

/* ---------- Members ---------- */
.week-strip {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin: clamp(40px, 6vw, 64px) 0 clamp(48px, 7vw, 76px);
}
.wk {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line-on-cream);
  border-top: 4px solid var(--acc);
  border-radius: 22px;
  transition: transform .35s cubic-bezier(.3,1.3,.4,1), box-shadow .35s;
}
.wk:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(10, 20, 17, .1); }
.wk:not(:last-child)::after {
  content: "→"; position: absolute; right: -19px; top: 50%; transform: translateY(-50%);
  color: var(--gold-deep); font-size: 1.15rem; z-index: 2;
}
.wk-media { height: 132px; overflow: hidden; flex-shrink: 0; }
.wk-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(.85);
  transition: transform .8s cubic-bezier(.2, .6, .2, 1), filter .5s;
}
.wk:hover .wk-media img { transform: scale(1.08); filter: saturate(1); }
.wk-body { padding: 18px 22px 24px; }
.wk-day {
  font-size: .76rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--acc);
}
.wk-time { float: right; font-size: .82rem; color: var(--muted); font-weight: 500; }
.wk-what {
  font-size: 1.42rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: -.005em; margin-top: 14px;
}
.wk-where { color: var(--muted); font-size: .92rem; margin-top: 7px; }
.perks { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.perk { display: flex; gap: 14px; align-items: flex-start; }
.perk-ico { width: 26px; height: 26px; color: var(--green-deep); flex-shrink: 0; margin-top: 3px; }
.perk strong { display: block; font-weight: 600; font-size: 1.03rem; color: var(--ink); margin-bottom: 4px; }
.perk span { color: var(--muted); font-size: .93rem; line-height: 1.55; }

/* ---------- Partners ---------- */
.split {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.split-copy h2 {
  margin-top: 26px; font-size: clamp(2.25rem, 5.2vw, 5rem);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: -.012em; line-height: .98;
}
.split-copy > p { color: var(--muted); margin-top: 22px; max-width: 54ch; line-height: 1.72; }
.split-ctas { margin-top: 36px; display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
.split-note { color: var(--muted); font-size: .89rem; }
.split-visual { position: relative; }
.pv-photo {
  border-radius: 26px; overflow: hidden;
  border: 1px solid var(--line-on-dark);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .5);
}
.pv-photo img {
  width: 100%; height: clamp(340px, 34vw, 500px); object-fit: cover; display: block;
  filter: saturate(.88) contrast(1.03);
}
.pv-chip {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: baseline; gap: 8px;
  background: rgba(10, 20, 17, .82); border: 1px solid var(--line-on-dark);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  color: rgba(244, 238, 225, .85); border-radius: 14px;
  padding: .7em 1.15em; font-size: .88rem; white-space: nowrap;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .35);
}
.pv-chip b { color: var(--gold); font-family: var(--font-display); font-weight: 700; }
.pv-chip-1 { top: 22px; left: -18px; }
.pv-chip-2 { bottom: 26px; right: -14px; }
.split-cards {
  margin-top: clamp(44px, 6vw, 76px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.pcard {
  background: linear-gradient(165deg, #122A20, #0C1C15);
  border: 1px solid var(--line-on-dark); border-radius: 22px; padding: 28px 24px;
  transition: transform .35s cubic-bezier(.3,1.3,.4,1), border-color .35s;
}
.pcard:hover { transform: translateY(-5px); border-color: rgba(232, 181, 88, .38); }
.pcard-ico { width: 30px; height: 30px; color: var(--gold); margin-bottom: 18px; }
.pcard h3 { font-size: 1.16rem; letter-spacing: -.005em; margin-bottom: 9px; }
.pcard p { color: var(--muted); font-size: .91rem; line-height: 1.6; }

/* ---------- How it works ---------- */
.steps { position: relative; }
.steps-line {
  position: absolute; top: 34px; left: 24px; right: 24px; height: 2px;
  background: var(--line-on-cream); border-radius: 2px;
}
.steps-line-fill {
  height: 100%; background: var(--green-deep); border-radius: 2px;
  transform: scaleX(0); transform-origin: left center;
}
.steps-list {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 44px);
}
.step { position: relative; padding-top: 78px; }
.step-num {
  position: absolute; top: 10px; left: 0; z-index: 1;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--cream); border: 2px solid var(--green-deep); color: var(--green-deep);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: .92rem;
}
.sec-cream-alt .step-num, .steps .step-num { background: var(--cream); }
.step-ico { width: 26px; height: 26px; color: var(--gold-deep); margin-bottom: 16px; }
.step h3 { font-size: 1.38rem; letter-spacing: -.01em; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: .96rem; line-height: 1.62; max-width: 32ch; }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 860px; margin-inline: auto;
  display: flex; flex-direction: column; gap: 14px;
}
.faq-item {
  background: linear-gradient(165deg, #122A20, #0C1C15);
  border: 1px solid var(--line-on-dark); border-radius: 20px;
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item[open] { border-color: rgba(232, 181, 88, .42); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 21px 26px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.12rem;
  letter-spacing: .005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-item summary:focus-visible { outline: 2px solid var(--gold); outline-offset: -4px; border-radius: 16px; }
.faq-mark {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(232, 181, 88, .5); color: var(--gold);
  display: grid; place-items: center;
  font-size: 1.15rem; font-weight: 400; line-height: 1;
  transition: transform .3s, background-color .3s;
}
.faq-item[open] .faq-mark { transform: rotate(45deg); background: rgba(232, 181, 88, .12); }
.faq-item > p { padding: 0 26px 24px; color: var(--muted); line-height: 1.72; max-width: 68ch; }
.faq-item > p a { color: var(--gold); font-weight: 500; }
.faq-item > p a:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Voices ---------- */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: clamp(56px, 7vw, 84px); }
.tcard {
  position: relative;
  background: var(--paper); border: 1px solid var(--line-on-cream); border-radius: 26px;
  padding: 40px 30px 32px; display: flex; flex-direction: column; justify-content: space-between; gap: 28px;
}
.tcard::before {
  content: "“"; position: absolute; top: 2px; left: 22px;
  font-family: var(--font-display); font-weight: 700; font-size: 4.6rem; line-height: 1;
  color: var(--gold); opacity: .5; pointer-events: none;
}
.tcard blockquote p { font-size: 1.05rem; line-height: 1.68; color: #242B24; }
.tcard figcaption { display: flex; flex-direction: column; gap: 3px; }
.t-name { font-weight: 600; color: var(--ink); }
.t-role { color: var(--muted); font-size: .88rem; }
.pm-label {
  text-align: center; color: var(--muted); font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .22em; margin-bottom: 24px;
}
.pm-ticker {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.pm-track { animation: marquee 46s linear infinite reverse; padding-block: 4px; }
.pm-track > * { margin-right: 38px; }
.pm-item {
  font-family: var(--font-display); font-weight: 600; font-size: 1.32rem;
  text-transform: uppercase; letter-spacing: .05em; color: var(--ink); opacity: .55;
  white-space: nowrap;
}
.pm .tick { color: var(--gold-deep); }

/* ---------- Join / CTA ---------- */
.join { overflow: hidden; padding-bottom: clamp(230px, 26vw, 340px); }
.join-media { position: absolute; inset: 0; z-index: 0; }
.join-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(.15) saturate(.8) brightness(.62) contrast(1.05);
}
.join-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 20%, transparent 0%, rgba(10, 20, 17, .42) 68%),
    linear-gradient(180deg, rgba(10, 20, 17, .82), rgba(10, 20, 17, .5) 38%, var(--ink) 94%);
}
.join-glow {
  position: absolute; top: -18%; left: 50%; transform: translateX(-50%); z-index: 1;
  width: 74vw; height: 64vh; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(232, 181, 88, .16), transparent 64%);
}
.join-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.join .eyebrow { justify-content: center; }
.join h2 {
  margin-top: 26px;
  font-size: clamp(2.6rem, 7vw, 7rem);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: -.018em; line-height: .96;
}
.join-sub { margin-top: 24px; color: rgba(244, 238, 225, .85); max-width: 46ch; line-height: 1.7; }
.join-form { margin-top: 42px; display: flex; gap: 12px; width: min(540px, 100%); }
.join-form input {
  flex: 1; min-width: 0; height: 58px;
  background: rgba(10, 20, 17, .55);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(244, 238, 225, .22); border-radius: 999px;
  padding: 0 26px; color: var(--cream); font: inherit; font-size: 1rem;
  transition: border-color .3s, background-color .3s;
}
.join-form input::placeholder { color: rgba(244, 238, 225, .48); }
.join-form input:hover { border-color: rgba(244, 238, 225, .36); }
.join-form input:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.join-form .btn { height: 58px; flex-shrink: 0; }
.join-note { min-height: 1.5em; margin-top: 18px; color: var(--mint); font-weight: 500; }
.join-note.is-error { color: var(--clay); }
.join-alt { margin-top: 10px; color: rgba(244, 238, 225, .75); font-size: .96rem; }
.join-alt a { color: var(--gold); font-weight: 500; }
.join-alt a:hover { text-decoration: underline; text-underline-offset: 4px; }
.join-badges { margin-top: 38px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.store-badge {
  border: 1px solid rgba(244, 238, 225, .25); border-radius: 13px;
  background: rgba(10, 20, 17, .45);
  padding: .72em 1.3em; font-size: .86rem; color: rgba(244, 238, 225, .8); letter-spacing: .02em;
}
.skyline {
  position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1;
  width: 100%; height: auto; display: block; pointer-events: none;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #07100C; color: var(--cream);
  padding: 68px 0 34px; border-top: 1px solid var(--line-on-dark);
  --muted: var(--text-dark-muted);
}
.foot-grid {
  /* Brand + four nav columns. The fourth (Legal) was added for the privacy
     policy and terms, which both app stores require to be reachable from a
     public page - without widening the track list it wrapped onto a second
     row under the brand. */
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 50px; border-bottom: 1px solid var(--line-on-dark);
}
.foot-tag { margin-top: 18px; color: var(--muted); max-width: 30ch; line-height: 1.65; font-size: .97rem; }
.foot-am { margin-top: 12px; color: var(--gold); opacity: .85; font-size: .95rem; }
.foot-col { display: flex; flex-direction: column; gap: 13px; }
.foot-h {
  font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .17em;
  color: rgba(244, 238, 225, .55); margin-bottom: 7px;
}
.foot-col a { color: var(--muted); font-size: .95rem; transition: color .25s; width: fit-content; }
.foot-col a:hover { color: var(--cream); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  padding-top: 28px; color: rgba(244, 238, 225, .64); font-size: .86rem;
}
.foot-bottom a { transition: color .25s; }
.foot-bottom a:hover { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; max-width: 620px; }
  .split { grid-template-columns: 1fr; align-items: start; }
  .split-cards { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .steps-list { grid-template-columns: repeat(2, 1fr); gap: 44px 28px; }
  .steps-line { display: none; }
  .tgrid { grid-template-columns: 1fr; }
  .week-strip { grid-template-columns: repeat(2, 1fr); }
  .wk:nth-child(2)::after { display: none; }
  .perks { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 899px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .pain-grid { grid-template-columns: 1fr; }

  /* Mosaic → stacked editorial pairs */
  .mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .mosaic .mo { grid-area: auto; aspect-ratio: 4 / 3; }
  .mosaic .mo-a, .mosaic .mo-e { grid-column: span 2; aspect-ratio: 16 / 10; }
  .mosaic .mo-b, .mosaic .mo-d { aspect-ratio: 3 / 4; }
  .mosaic .mo-fact { aspect-ratio: auto; min-height: 100%; }

  /* Venues → native swipe with snap */
  .hscroll-pinwrap { min-height: 0; padding-block: 88px 56px; gap: 36px; }
  .hscroll-viewport {
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    scrollbar-color: var(--gold) rgba(244, 238, 225, .08);
  }
  .hscroll-track { padding-inline: var(--gutter); }
  .vcard { width: min(78vw, 340px); min-height: 440px; flex-shrink: 0; scroll-snap-align: center; }
  .hscroll-hint { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .hero { padding-top: 96px; padding-bottom: 72px; }
  .hero-media img { object-position: 58% 40%; }
  .hero-stats { gap: 22px 14px; }
  .hero-ctas > * { flex: 1 1 100%; }
  .hero-verbs { gap: 12px; }
  .scroll-cue { display: none; }
  .mosaic .mo-b, .mosaic .mo-d { aspect-ratio: 1 / 1; }
  .mosaic .mo-fact { grid-column: span 2; }
  .week-strip { grid-template-columns: 1fr; }
  .wk::after { display: none !important; }
  .wk-media { height: 150px; }
  .perks { grid-template-columns: 1fr; gap: 20px; }
  .steps-list { grid-template-columns: 1fr; gap: 36px; }
  .step { padding-top: 0; padding-left: 66px; }
  .step-num { top: 0; }
  .split-cards { grid-template-columns: 1fr; }
  .pv-chip-1 { top: 14px; left: 14px; }
  .pv-chip-2 { bottom: 14px; right: 14px; }
  .pv-photo img { height: 300px; }
  .join-form { flex-direction: column; }
  .join-form .btn { width: 100%; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .ticker-item { font-size: 1.05rem; }
  .nav-actions .btn-sm { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .ticker-track, .pm-track { animation: none; }
  .cursor, .scroll-cue, .hero-canvas { display: none !important; }
  .glow { filter: blur(60px); }
}
