/* ============================================================
   WALK OR LOSE — Marketing Site styles
   Built on top of colors_and_type.css tokens.
   ============================================================ */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--emerald-light); text-decoration: none; }
a:hover { color: var(--emerald); }

::selection { background: var(--emerald); color: var(--text-on-emerald); }

/* --- Layout --- */
.wol-wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 720px) {
  .wol-wrap { padding: 0 18px; }
}

/* ============================================================
   NAV
   ============================================================ */
.wol-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17,17,17,0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: inset 0 -3px 0 0 var(--emerald);
}
.wol-nav__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}
.wol-nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.wol-nav__brand img, .wol-nav__brand svg { width: 34px; height: 34px; border-radius: 8px; }
.wol-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.wol-nav__link {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 10px 14px;
  border-radius: var(--r-md);
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.wol-nav__link:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.wol-nav__link.is-active { color: var(--emerald); }
.wol-nav__cta {
  margin-left: 8px;
}
.wol-nav__burger {
  display: none;
  background: var(--surface-variant);
  border: 1px solid var(--border);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: auto;
}
@media (max-width: 880px) {
  .wol-nav__links { display: none; }
  .wol-nav__burger { display: inline-flex; }
  .wol-nav__links.is-open {
    display: flex;
    position: absolute;
    top: 68px;
    right: 18px;
    left: 18px;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 10px;
    box-shadow: var(--shadow-3);
  }
  .wol-nav__links.is-open .wol-nav__link { padding: 14px 16px; }
  .wol-nav__cta { margin: 6px 0 0 0; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.wol-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: var(--r-md);
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out),
              filter var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}
.wol-btn--primary {
  background: var(--emerald);
  color: var(--text-on-emerald);
  box-shadow: var(--glow-emerald);
}
.wol-btn--primary:hover { background: var(--emerald-light); color: var(--text-on-emerald); }
.wol-btn--primary:active { background: var(--emerald-dark); transform: scale(0.97); }

.wol-btn--secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.wol-btn--secondary:hover { background: rgba(255,255,255,0.06); color: var(--text); }

.wol-btn--gold {
  background: var(--gold);
  color: var(--text-on-gold);
  box-shadow: var(--glow-gold);
}
.wol-btn--gold:hover { background: var(--gold-light); color: var(--text-on-gold); }

.wol-btn--sm { height: 38px; padding: 0 16px; font-size: 12px; }
.wol-btn--lg { height: 56px; padding: 0 28px; font-size: 15px; }

/* ============================================================
   PILLS / EYEBROWS
   ============================================================ */
.wol-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--emerald);
}
.wol-eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 12px var(--emerald);
}
.wol-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 26px;
  padding: 0 11px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.08);
  color: var(--text);
}
.wol-pill--gold { color: var(--gold); }
.wol-pill--orange { color: var(--orange); }
.wol-pill--emerald { color: var(--emerald); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.wol-section { padding: 96px 0; position: relative; }
.wol-section--tight { padding: 64px 0; }
@media (max-width: 720px) { .wol-section { padding: 64px 0; } }

.wol-section__head {
  max-width: 760px;
  margin-bottom: 56px;
}
.wol-section__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.wol-h-display {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 18px 0 22px;
  text-transform: uppercase;
}
.wol-h-section {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 14px 0 18px;
  text-transform: uppercase;
}
.wol-lede {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  color: var(--text-2);
  max-width: 60ch;
  text-wrap: pretty;
}
.wol-section__head--center .wol-lede { margin-left: auto; margin-right: auto; }

/* ============================================================
   HERO
   ============================================================ */
.wol-hero {
  position: relative;
  overflow: hidden;
  padding-top: 56px;
  padding-bottom: 80px;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(245,183,0,0.10), transparent 60%),
    radial-gradient(70% 60% at 10% 20%, rgba(0,184,107,0.16), transparent 60%),
    var(--bg);
}
.wol-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: center;
}
@media (max-width: 920px) {
  .wol-hero__grid { grid-template-columns: 1fr; gap: 40px; }
}
.wol-hero__copy { max-width: 640px; }
.wol-hero__cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.wol-hero__meta {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.wol-hero__meta-item .wol-hero__meta-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.wol-hero__meta-item .wol-hero__meta-num--gold { color: var(--gold); }
.wol-hero__meta-item .wol-hero__meta-num--emerald { color: var(--emerald); }
.wol-hero__meta-item .wol-hero__meta-label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 6px;
}

/* Hero phone showcase */
.wol-hero__phone {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 19;
  border-radius: 44px;
  background: #050505;
  border: 1px solid #2A2A2A;
  box-shadow:
    0 0 0 6px #1a1a1a,
    0 30px 80px rgba(0,0,0,0.7),
    0 0 90px rgba(0,184,107,0.18);
  overflow: hidden;
}
.wol-hero__phone-inner {
  position: absolute;
  inset: 8px;
  border-radius: 36px;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}
.wol-hero__phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 26px;
  background: #050505;
  border-radius: 14px;
  z-index: 3;
}
.wol-hero__phone-bar {
  height: 56px;
  background: var(--surface);
  border-bottom: 3px solid var(--emerald);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 18px 8px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.wol-hero__phone-bar .ico {
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--surface-variant);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--text-2);
}
.wol-hero__phone-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.wol-hero__phone-brand-mark {
  width: 18px; height: 18px;
  border-radius: 5px;
  flex: none;
}
.wol-hero__phone-body {
  flex: 1;
  overflow: hidden;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wol-phone-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.wol-phone-card--photo {
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(120% 90% at 70% 10%, rgba(0,184,107,0.30), transparent 55%),
    linear-gradient(160deg, #24382f 0%, #13201a 60%, #0c130f 100%);
}
.wol-phone-card--photo.is-gold {
  background:
    radial-gradient(120% 90% at 30% 15%, rgba(245,183,0,0.32), transparent 55%),
    linear-gradient(160deg, #3a2e15 0%, #1d160a 60%, #0d0a05 100%);
  border-color: rgba(245,183,0,0.40);
  box-shadow: var(--glow-gold);
}
.wol-phone-card--photo.is-orange {
  background:
    radial-gradient(120% 90% at 70% 80%, rgba(255,122,0,0.30), transparent 55%),
    linear-gradient(160deg, #3a2412 0%, #1d1208 60%, #0e0904 100%);
  border-color: rgba(255,122,0,0.35);
}
.wol-phone-card--live {
  background:
    radial-gradient(120% 90% at 30% 15%, rgba(0,184,107,0.30), transparent 55%),
    linear-gradient(160deg, #123526 0%, #0d2118 60%, #081712 100%);
  border-color: rgba(0,184,107,0.40);
  box-shadow: var(--glow-emerald);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.wol-phone-card--live__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--emerald-light);
}
.wol-phone-card--live__stats {
  display: flex;
  gap: 26px;
}
.wol-phone-card--live__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.wol-phone-card--live__label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
}
.wol-phone-card--live__nudge {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  color: var(--emerald-light);
}
.wol-phone-card__scrim {
  position: absolute; inset: 0;
  background: var(--scrim-bottom);
  pointer-events: none;
}
.wol-phone-card__top {
  position: absolute; top: 10px; left: 10px; right: 10px;
  display: flex; justify-content: space-between;
}
.wol-phone-card__body {
  position: absolute; left: 12px; right: 12px; bottom: 10px;
}
.wol-phone-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #fff;
}
.wol-phone-card__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #cfcfcf;
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.wol-phone-card__meta b { color: var(--gold); font-weight: 700; }

.wol-phone-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wol-phone-stat__num-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wol-phone-stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--emerald);
  font-variant-numeric: tabular-nums;
}
.wol-phone-stat__streak {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(255,122,0,0.16);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  color: var(--orange-light);
  font-variant-numeric: tabular-nums;
}
.wol-phone-stat__label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 2px;
}
.wol-phone-stat__bar {
  flex: 1;
  height: 10px;
  margin-left: 14px;
  background: var(--surface-variant);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.wol-phone-stat__bar::before {
  content: ""; position: absolute; inset: 0;
  width: 84%;
  background: linear-gradient(90deg, var(--emerald) 0%, var(--emerald-light) 100%);
  border-radius: 999px;
}

/* Hero "ticker" of live challenges floating beside phone */
.wol-hero__tickers {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
/* Offsets are phone-relative, not stage-relative: .wol-hero__phone is always
   centered in the stage and capped at max-width:360px, so "50% - 180px" is
   reliably the phone's own edge regardless of how wide the stage grid column
   is. Pulling further out (-265px) tucks the pill only slightly under the
   phone's outer frame, never over its inner content (steps card / photo
   cards, which sit ~25px inset from the phone edge). */
.wol-hero__tickers--left { top: 10%; left: calc(50% - 265px); }
.wol-hero__tickers--right { bottom: 8%; right: calc(50% - 265px); }
.wol-ticker {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-2);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  line-height: 1.35;
  color: var(--text);
  white-space: normal;
  width: 100px;
}
.wol-ticker b {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.wol-ticker--alive::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
}
.wol-ticker--cut::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--danger);
}
@media (max-width: 1400px) {
  /* .wol-wrap caps at 1240px, so above that width extra page margin opens up
     outside the grid entirely; below it, the right ticker only has the
     wrap's 24px gutter before the literal viewport edge, which is not
     enough room for a legible pill (it would either overlap the phone's
     content or get clipped by .wol-hero's overflow:hidden). The left ticker
     has plenty of room the whole time (the wide hero-copy column + grid
     gap), but both are hidden together below 1400px to keep them symmetric. */
  .wol-hero__tickers { display: none; }
}

/* ============================================================
   STRIP — App badges / press
   ============================================================ */
.wol-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 28px 0;
}
.wol-strip__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.wol-strip__label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--text-3);
}
.wol-strip__logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-2);
  font-size: 22px;
  text-transform: uppercase;
}
.wol-strip__logos span { opacity: 0.7; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.wol-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 1000px) { .wol-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .wol-steps { grid-template-columns: 1fr; } }
.wol-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 22px 26px;
  overflow: hidden;
}
.wol-step__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 84px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--emerald);
  letter-spacing: -0.05em;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.wol-step__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
  text-transform: uppercase;
  margin: 0 0 8px;
}
.wol-step__copy {
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-2);
  margin: 0;
}
.wol-step__tag {
  position: absolute;
  top: 18px; right: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

/* ============================================================
   FEATURED CHALLENGES
   ============================================================ */
.wol-challenges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 900px) { .wol-challenges { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .wol-challenges { grid-template-columns: 1fr; } }

.wol-chal {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0e1713;
  text-decoration: none;
  color: var(--text);
  transition: transform var(--dur-base) var(--ease-out);
  display: block;
}
.wol-chal:hover { transform: translateY(-3px); }
.wol-chal__photo {
  position: absolute; inset: 0;
}
.wol-chal__photo--emerald {
  background:
    radial-gradient(80% 60% at 70% 10%, rgba(0,184,107,0.35), transparent 55%),
    linear-gradient(160deg, #1d3a2c 0%, #102018 60%, #08120d 100%);
}
.wol-chal__photo--gold {
  background:
    radial-gradient(80% 60% at 30% 20%, rgba(245,183,0,0.40), transparent 55%),
    linear-gradient(160deg, #3a2d14 0%, #1e1609 60%, #0d0a05 100%);
}
.wol-chal__photo--orange {
  background:
    radial-gradient(80% 60% at 60% 70%, rgba(255,122,0,0.40), transparent 55%),
    linear-gradient(160deg, #3a2614 0%, #1e1308 60%, #0d0904 100%);
}
.wol-chal__photo--blue {
  background:
    radial-gradient(80% 60% at 50% 80%, rgba(61,125,255,0.35), transparent 55%),
    linear-gradient(160deg, #15233f 0%, #0c1322 60%, #060912 100%);
}
.wol-chal__photo--purple {
  background:
    radial-gradient(80% 60% at 70% 20%, rgba(156,39,176,0.40), transparent 55%),
    linear-gradient(160deg, #2a1336 0%, #160a1e 60%, #0a050d 100%);
}
.wol-chal__photo--red {
  background:
    radial-gradient(80% 60% at 50% 40%, rgba(244,67,54,0.30), transparent 55%),
    linear-gradient(160deg, #3a1414 0%, #1e0a0a 60%, #0d0505 100%);
}
.wol-chal__scrim { position: absolute; inset: 0; background: var(--scrim-bottom); }
.wol-chal__top {
  position: absolute; top: 14px; left: 14px; right: 14px;
  display: flex; justify-content: space-between;
}
.wol-chal__body { position: absolute; left: 18px; right: 18px; bottom: 18px; }
.wol-chal__title {
  /* Outlined title — white fill, black stroke */
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    -1px -1px 0 #000, 1px -1px 0 #000,
    -1px  1px 0 #000, 1px  1px 0 #000,
     0 1px 12px rgba(0,0,0,0.6);
  margin: 0 0 10px;
}
.wol-chal__info {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 11px;
  background: var(--scrim-flat);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-mono);
  font-size: 11px;
  color: #e6e6e6;
}
.wol-chal__info b { color: var(--gold); font-weight: 700; }
.wol-chal--gold .wol-chal__info b { color: var(--gold-light); }
.wol-chal--orange { border-color: rgba(255,122,0,0.35); }
.wol-chal--gold { border-color: rgba(245,183,0,0.40); }

/* ============================================================
   STATS BAND
   ============================================================ */
.wol-stats {
  background:
    linear-gradient(180deg, rgba(0,184,107,0.05), transparent 80%),
    var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.wol-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 800px) {
  .wol-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
.wol-stats__item {
  text-align: left;
  padding: 0 24px;
  border-left: 1px solid var(--border);
}
.wol-stats__item:first-child { border-left: none; padding-left: 0; }
@media (max-width: 800px) {
  .wol-stats__item { border-left: none; padding: 0; }
}
.wol-stats__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.wol-stats__num--gold { color: var(--gold); }
.wol-stats__num--emerald { color: var(--emerald); }
.wol-stats__num--orange { color: var(--orange); }
.wol-stats__label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 10px;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.wol-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 900px) { .wol-features { grid-template-columns: 1fr; } }
.wol-feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
}
.wol-feature__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--surface-variant);
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--emerald);
  margin-bottom: 18px;
}
.wol-feature__icon--gold { color: var(--gold); }
.wol-feature__icon--orange { color: var(--orange); }
.wol-feature__icon--blue { color: var(--blue); }
.wol-feature__icon--danger { color: var(--danger); }
.wol-feature__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--text);
  text-transform: uppercase;
}
.wol-feature__copy {
  font-family: var(--font-ui);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.wol-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .wol-quotes { grid-template-columns: 1fr; } }
.wol-quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.wol-quote__amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 38px;
  color: var(--gold);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.wol-quote__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.01em;
}
.wol-quote__byline {
  display: flex; align-items: center; gap: 10px;
  margin-top: auto;
}
.wol-quote__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800;
  color: var(--text-on-emerald);
  font-size: 14px;
}
.wol-quote__name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
}
.wol-quote__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.wol-cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: 56px 48px;
  background:
    radial-gradient(80% 100% at 80% 20%, rgba(0,184,107,0.30), transparent 60%),
    radial-gradient(60% 80% at 10% 80%, rgba(245,183,0,0.18), transparent 55%),
    linear-gradient(135deg, #102019 0%, #0b110d 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-3);
}
.wol-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
@media (max-width: 800px) {
  .wol-cta { padding: 40px 28px; }
  .wol-cta__inner { grid-template-columns: 1fr; gap: 24px; }
}
.wol-cta__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--text);
  text-transform: uppercase;
  margin: 0;
}
.wol-cta__title em {
  font-style: normal;
  color: var(--emerald);
}
.wol-cta__sub {
  font-family: var(--font-ui);
  font-size: 16px;
  color: var(--text-2);
  margin-top: 14px;
  max-width: 50ch;
}
.wol-cta__actions {
  display: flex; flex-direction: column; gap: 14px;
}

/* ============================================================
   STORE BADGES (placeholders)
   ============================================================ */
.wol-stores {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.wol-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  border-radius: var(--r-md);
  color: var(--text);
  text-decoration: none;
  min-width: 180px;
  transition: background var(--dur-fast) var(--ease-out);
}
.wol-store:hover { background: var(--surface-variant); color: var(--text); }
.wol-store__glyph {
  font-size: 26px;
  line-height: 1;
}
.wol-store__small {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  display: block;
}
.wol-store__big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  display: block;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.wol-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wol-faq__group-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--text);
  text-transform: uppercase;
  margin: 36px 0 12px;
}
.wol-faq__group-title:first-child { margin-top: 0; }
.wol-faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color var(--dur-base) var(--ease-out);
}
.wol-faq details[open] { border-color: var(--border-strong); }
.wol-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
}
.wol-faq summary::-webkit-details-marker { display: none; }
.wol-faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  color: var(--emerald);
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-out);
}
.wol-faq details[open] summary::after { content: "−"; }
.wol-faq__answer {
  padding: 0 26px 24px;
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 75ch;
}
.wol-faq__answer p { margin: 0 0 12px; }
.wol-faq__answer p:last-child { margin-bottom: 0; }
.wol-faq__answer ul { margin: 8px 0; padding-left: 22px; }
.wol-faq__answer li { margin-bottom: 6px; }

/* ============================================================
   LEGAL / DOC pages (privacy, ToS, rules)
   ============================================================ */
.wol-doc {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 56px;
  padding: 56px 0 96px;
}
@media (max-width: 900px) {
  .wol-doc { grid-template-columns: 1fr; gap: 28px; }
}
.wol-doc__toc {
  position: sticky;
  top: 92px;
  align-self: start;
  border-left: 1px solid var(--border);
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}
@media (max-width: 900px) {
  .wol-doc__toc {
    position: static;
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 18px;
    max-height: none;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 8px;
  }
}
.wol-doc__toc-label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
}
.wol-doc__toc a {
  font-family: var(--font-ui);
  font-size: 13.5px;
  color: var(--text-2);
  padding: 6px 0;
  display: block;
  border-bottom: 1px solid transparent;
  transition: color var(--dur-fast) var(--ease-out);
}
.wol-doc__toc a:hover { color: var(--text); }
.wol-doc__toc a.is-active { color: var(--emerald); }

.wol-doc__body {
  max-width: 760px;
}
.wol-doc__lede {
  font-family: var(--font-ui);
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-2);
  margin: 0 0 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.wol-doc__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  margin-top: 16px;
}
.wol-doc__body h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--text);
  text-transform: uppercase;
  margin: 48px 0 14px;
  scroll-margin-top: 90px;
}
.wol-doc__body h2:first-child { margin-top: 0; }
.wol-doc__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.005em;
  line-height: 1.2;
  color: var(--text);
  margin: 28px 0 10px;
}
.wol-doc__body p {
  font-family: var(--font-ui);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-2);
  margin: 0 0 14px;
  text-wrap: pretty;
}
.wol-doc__body ul, .wol-doc__body ol {
  font-family: var(--font-ui);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-2);
  padding-left: 22px;
  margin: 0 0 18px;
}
.wol-doc__body li { margin-bottom: 8px; }
.wol-doc__body strong { color: var(--text); font-weight: 700; }
.wol-doc__body code {
  font-family: var(--font-mono);
  font-size: 0.92em;
  background: var(--surface-variant);
  border: 1px solid var(--border);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--text);
}
.wol-doc__callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--emerald);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin: 24px 0;
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.55;
}
.wol-doc__callout--warning { border-left-color: var(--warning); }
.wol-doc__callout--gold { border-left-color: var(--gold); }
.wol-doc__callout--danger { border-left-color: var(--danger); }
.wol-doc__callout strong { color: var(--text); }

/* Page header for doc pages */
.wol-page-head {
  padding: 64px 0 28px;
  border-bottom: 1px solid var(--border);
  position: relative;
  background:
    radial-gradient(60% 100% at 100% 0%, rgba(0,184,107,0.08), transparent 60%),
    var(--bg);
}
.wol-page-head__crumb {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--text-3);
}
.wol-page-head__crumb a { color: var(--text-3); }
.wol-page-head__crumb a:hover { color: var(--emerald); }
.wol-page-head__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 76px);
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 14px 0 16px;
  color: var(--text);
}
.wol-page-head__sub {
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-2);
  max-width: 60ch;
}

/* Rules cards */
.wol-rules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 32px 0;
}
@media (max-width: 720px) { .wol-rules { grid-template-columns: 1fr; } }
.wol-rule {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
}
.wol-rule__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--surface-variant);
  color: var(--text-2);
  margin-bottom: 12px;
}
.wol-rule__label--green { color: var(--emerald); background: rgba(0,184,107,0.12); }
.wol-rule__label--red { color: var(--danger); background: rgba(255,61,87,0.10); }
.wol-rule__label--gold { color: var(--gold); background: rgba(245,183,0,0.10); }
.wol-rule__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--text);
  text-transform: uppercase;
  margin: 0 0 8px;
}
.wol-rule__copy {
  font-family: var(--font-ui);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.wol-footer {
  border-top: 1px solid var(--border);
  background: #0a0a0a;
  padding: 64px 0 32px;
  margin-top: 96px;
}
.wol-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 800px) {
  .wol-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.wol-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}
.wol-footer__brand img, .wol-footer__brand svg { width: 32px; height: 32px; border-radius: 8px; }
.wol-footer__copy {
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-3);
  margin: 18px 0;
  max-width: 32ch;
}
.wol-footer__col-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}
.wol-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wol-footer__col a {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-2);
}
.wol-footer__col a:hover { color: var(--text); }
.wol-footer__bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--font-ui);
  font-size: 12.5px;
  color: var(--text-3);
}
.wol-footer__bottom a { color: var(--text-3); }
.wol-footer__bottom a:hover { color: var(--text-2); }
.wol-footer__legal {
  display: flex; gap: 18px; flex-wrap: wrap;
}

/* ============================================================
   UTILITY
   ============================================================ */
.wol-divider {
  height: 1px; background: var(--border); margin: 0;
  border: none;
}
.wol-anchor { scroll-margin-top: 88px; }

/* Entry animations — gated on reduced motion */
@media (prefers-reduced-motion: no-preference) {
  .wol-reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: wol-rise 700ms var(--ease-out) forwards;
  }
  .wol-reveal-2 { animation-delay: 100ms; }
  .wol-reveal-3 { animation-delay: 200ms; }
  .wol-reveal-4 { animation-delay: 300ms; }
  @keyframes wol-rise {
    to { opacity: 1; transform: translateY(0); }
  }
}


/* ============================================================
   LIGHT THEME
   Activated by <html data-theme="light">. Dark is the default.
   Media (phone screen, cinematic photo cards, the dark CTA block)
   intentionally keep their own treatment; everything else flips.
   ============================================================ */
html[data-theme="light"] {
  --bg:              #F5F7F4;
  --surface:         #FFFFFF;
  --surface-variant: #EDF0EC;
  --elevated:        #FFFFFF;

  --text:        #15191C;
  --text-2:      #515A60;
  --text-3:      #8A929A;

  --border:        #E3E7E1;
  --border-strong: #CCD2CB;

  /* softer, cooler shadows on a light canvas */
  --shadow-1: 0 1px 2px rgba(20,30,25,0.08);
  --shadow-2: 0 6px 20px rgba(20,30,25,0.10);
  --shadow-3: 0 16px 44px rgba(20,30,25,0.14);
}

/* Smooth the flip */
html { transition: background var(--dur-base) var(--ease-out); }
body, .wol-nav, .wol-footer, .wol-strip, .wol-stats,
.wol-feature, .wol-step, .wol-rule, .wol-quote, .wol-faq details,
.wol-store, .wol-btn, .wol-doc__toc a, .wol-nav__toggle {
  transition: background-color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
}

/* Links read darker on a light field */
html[data-theme="light"] a { color: var(--emerald-dark); }
html[data-theme="light"] a:hover { color: var(--emerald); }

/* Nav / footer surfaces */
html[data-theme="light"] .wol-nav { background: rgba(255,255,255,0.82); }
html[data-theme="light"] .wol-nav__link:hover { background: rgba(0,0,0,0.05); }
html[data-theme="light"] .wol-footer { background: #ECEFEA; }
html[data-theme="light"] .wol-pill { background: rgba(0,0,0,0.06); }
html[data-theme="light"] .wol-btn--secondary:hover { background: rgba(0,0,0,0.05); }
html[data-theme="light"] .wol-nav__burger { background: var(--surface); }
html[data-theme="light"] .wol-nav__toggle:hover { background: rgba(0,0,0,0.06); }

/* The final CTA stays a dark cinematic block in both themes —
   force its text + ghost button to remain light. */
html[data-theme="light"] .wol-cta__title { color: #F7F7F7; }
html[data-theme="light"] .wol-cta__title em { color: var(--emerald-light); }
html[data-theme="light"] .wol-cta__sub { color: #C6CEC8; }
html[data-theme="light"] .wol-cta .wol-btn--secondary {
  color: #F7F7F7;
  border-color: rgba(255,255,255,0.28);
}
html[data-theme="light"] .wol-cta .wol-btn--secondary:hover {
  background: rgba(255,255,255,0.10);
  color: #fff;
}

/* ============================================================
   THEME TOGGLE BUTTON
   ============================================================ */
.wol-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-left: 10px;
  border-radius: var(--r-md);
  background: var(--surface-variant);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.wol-nav__toggle:hover { background: rgba(255,255,255,0.08); color: var(--text); }
.wol-nav__toggle svg { width: 19px; height: 19px; }
@media (max-width: 880px) {
  .wol-nav__toggle { margin-left: 8px; }
}

/* Language switch (EN / ES) — sits beside the theme toggle */
.wol-nav__lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 12px;
  flex-shrink: 0;
  margin-left: 10px;
  border-radius: var(--r-md);
  background: var(--surface-variant);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.wol-nav__lang:hover { background: rgba(255,255,255,0.08); color: var(--text); }
html[data-theme="light"] .wol-nav__lang:hover { background: rgba(0,0,0,0.06); }
@media (max-width: 880px) {
  .wol-nav__lang { margin-left: 8px; }
}

.wol-quote--fallback {
  grid-column: 1 / -1;
  text-align: center;
  opacity: 0.75;
}
