/* =========================================================
   Light sections — Journey, Climb, TierLesson, MidCTA
   ========================================================= */

/* ---------- Journey section (Validation — transformation cards) ---------- */
.section--journey {
  background: #ffffff;
  padding: 56px 0;
  border-block: 1px solid var(--border);
  overflow: hidden;
}

.journey__bigword {
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-family: var(--font);
  font-size: 18rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(22, 163, 74, 0.10);
  text-stroke: 1px rgba(22, 163, 74, 0.10);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.journey__grid {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.journey__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 26px 30px;
  display: grid;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(20,33,26,0.04);
  will-change: transform, box-shadow;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.journey__card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 22px 48px rgba(19, 34, 27, 0.08), 
    0 8px 18px rgba(19, 34, 27, 0.04);
  border-color: var(--green-line);
}

.journey__card-bg {
  position: absolute;
  top: -10px; right: 8px;
  width: 180px; height: 180px;
  color: var(--text);
  opacity: 0.035;
  pointer-events: none;
  transition: opacity 240ms ease, transform 240ms ease;
}

.journey__card:hover .journey__card-bg {
  opacity: 0.07;
  transform: scale(1.04);
}

/* Per-icon hover animations — from Design System */
.journey__card--trending-up .journey__card-bg svg .line { stroke-dasharray: 48; stroke-dashoffset: 0; }
.journey__card--trending-up .journey__card-bg svg .head { opacity: 1; }
.journey__card--trending-up:hover .journey__card-bg svg .line { animation: jcTrendRedraw 800ms ease-out; }
.journey__card--trending-up:hover .journey__card-bg svg .head { animation: jcTrendHead 220ms ease-out 520ms both; }
@keyframes jcTrendRedraw { 0% { stroke-dashoffset: 48; } 100% { stroke-dashoffset: 0; } }
@keyframes jcTrendHead   { 0% { opacity: 0; } 100% { opacity: 1; } }

.journey__card--clock .journey__card-bg svg .hand-hour {
  transform-origin: 12px 12px;
  transition: transform 900ms ease-in-out;
}
.journey__card--clock:hover .journey__card-bg svg .hand-hour { transform: rotate(60deg); }

.journey__card--target .journey__card-bg svg .ring-mid,
.journey__card--target .journey__card-bg svg .ring-core {
  transform-origin: 12px 12px;
  transition: transform 600ms ease-out;
}
.journey__card--target:hover .journey__card-bg svg .ring-mid  { transform: scale(0.85); }
.journey__card--target:hover .journey__card-bg svg .ring-core { transform: scale(1.4); }

.journey__card-bg svg {
  width: 100%; height: 100%;
  overflow: visible;
}

.journey__num {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
  letter-spacing: -0.03em;
}

.journey__metric {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.022em;
  line-height: 1.2;
}

.journey__stat-block {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  display: grid;
  gap: 2px;
}

.journey__stat-block-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}

.journey__stat-block-value {
  font-family: var(--mono);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.journey__stat-block-from {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: -0.005em;
}

.journey__stat-block-from strong {
  color: var(--text-soft);
  font-weight: 600;
}

.journey__bullets {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.journey__bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}

.journey__bullet-check {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green);
}

.journey__trust {
  position: relative;
  z-index: 1;
  margin: 22px auto 0;
  max-width: 1080px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.journey__trust-line {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- Climb section (What this unlocks) ---------- */
.section--climb {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  border-block: 1px solid var(--border);
  overflow: hidden;
}
.section--climb::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/climb_bg.png');
  background-repeat: no-repeat;
  background-position: center 38%;
  background-size: cover;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse 55% 70% at 50% 50%, transparent 0%, rgba(0,0,0,0.35) 55%, #000 100%);
          mask-image: radial-gradient(ellipse 55% 70% at 50% 50%, transparent 0%, rgba(0,0,0,0.35) 55%, #000 100%);
}
.section--climb > .container { position: relative; z-index: 1; }

.climb__bigword,
.tierfall__bigword,
.bridge__bigword,
.sample-cta__bigword,
.faq__bigword {
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-family: var(--font);
  font-size: 18rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(22, 163, 74, 0.10);
  text-stroke: 1px rgba(22, 163, 74, 0.10);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.tierfall__bigword {
  -webkit-text-stroke: 1px rgba(185, 28, 28, 0.10);
  text-stroke: 1px rgba(185, 28, 28, 0.10);
}

/* =========================================================
   BRIDGE — narrative pivot between Dangers and Solution
   ========================================================= */
.section--bridge {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--green-soft) 100%);
  border-block: 1px solid var(--green-line);
}
.section--bridge .container {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.section--bridge .kicker { justify-content: center; }
.bridge__h2 {
  margin: 18px 0 0;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.18;
  color: var(--text);
}
.bridge__h2 em {
  font-style: normal;
  color: var(--green-dark);
}
.bridge__lede {
  margin: 22px auto 0;
  max-width: 56ch;
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.6;
}
.bridge__lede strong { color: var(--text); }
@media (max-width: 720px) {
  .section--bridge { padding: 64px 0; }
  .bridge__h2 { font-size: 1.65rem; }
}

@media (max-width: 720px) {
  .climb__bigword,
  .tierfall__bigword,
  .bridge__bigword,
  .sample-cta__bigword,
  .faq__bigword {
    font-size: 7rem;
    top: 4px;
  }
}

/* Climb promise pill — delivery-time guarantee above the staircase */
.climb-promise {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 22px auto 0;
  padding: 9px 18px 9px 14px;
  background: linear-gradient(180deg, var(--green-soft) 0%, #fff 100%);
  border: 1px solid var(--green-line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.005em;
  line-height: 1.3;
  box-shadow: 0 1px 0 rgba(22, 163, 74, 0.06), 0 8px 24px -12px rgba(22, 163, 74, 0.22);
}

.climb-promise__wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.climb-promise__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--green-dark);
  flex-shrink: 0;
}

.climb-promise__text strong {
  font-weight: 700;
  color: var(--green-dark);
}

/* Staircase */
.climb-stair-wrap {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto 36px;
  padding: 32px 16px 0;
}

.climb-stair {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: flex-end;
}

.climb-stair__step {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.climb-stair__riser {
  border-radius: 10px 10px 0 0;
  padding: 14px 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--green-line);
  border-bottom: 0;
  transition: height 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 180ms ease, 
              box-shadow 180ms ease, 
              transform 180ms ease;
}

.climb-stair__step--0 .climb-stair__riser { background: linear-gradient(180deg, var(--bg-soft), #f0f4ed); border-color: var(--border-strong); }
.climb-stair__step--1 .climb-stair__riser { background: linear-gradient(180deg, rgba(22,163,74,0.04), rgba(22,163,74,0.12)); }
.climb-stair__step--2 .climb-stair__riser { background: linear-gradient(180deg, rgba(22,163,74,0.08), rgba(22,163,74,0.18)); }
.climb-stair__step--3 .climb-stair__riser { background: linear-gradient(180deg, rgba(22,163,74,0.14), rgba(22,163,74,0.30)); }
.climb-stair__step--4 .climb-stair__riser {
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  border-color: var(--green-dark);
  box-shadow: 0 10px 22px rgba(22,163,74,0.20);
}

.climb-stair__step.is-active .climb-stair__riser {
  filter: brightness(1.06) saturate(1.1);
  box-shadow: 0 8px 22px rgba(22,163,74,0.30);
  transform: translateY(-2px);
}

.climb-stair__limit {
  font-family: var(--mono);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--green-dark);
  line-height: 1;
}

.climb-stair__step--0 .climb-stair__limit { color: var(--muted); }
.climb-stair__step--4 .climb-stair__limit {
  color: #fff;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 0.55;
  margin-top: 0.15em;
}

.climb-stair__tier-label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-top: auto;
  padding-top: 8px;
  opacity: 0.85;
}

.climb-stair__step--0 .climb-stair__tier-label { color: var(--muted); }
.climb-stair__step--4 .climb-stair__tier-label { color: rgba(255,255,255,0.95); }

/* Tier label inner spans: render inline on desktop ("Tier 4"), stack number-over-word on mobile to avoid two-line wrap on narrow risers. */
.climb-stair__tier-word,
.climb-stair__tier-num { display: inline; }

@media (max-width: 720px) {
  .climb-stair__tier-label {
    display: flex;
    flex-direction: column-reverse; /* HTML order is word→num; reverse so the number sits above the word */
    align-items: center;
    gap: 1px;
    line-height: 1;
    padding-top: 6px;
  }
  .climb-stair__tier-word {
    font-size: 9px;
    opacity: 0.75;
  }
  .climb-stair__tier-num {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
  }
}

/* Climb panel — tabs + cards */
.climb-panel {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Tabs grid mirrors the staircase grid exactly (same 4-col + 16px gap) so each
   tab sits directly under its bar. No container chrome — each tab is its own card. */
.climb-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin-bottom: 12px;
}

.climb-tab {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  height: 44px;
  padding: 0 10px;
  color: var(--text-soft);
  font: 700 12.5px var(--font);
  letter-spacing: -0.005em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
  min-width: 0;
}

.climb-tab:hover { color: var(--text); background: #fff; border-color: var(--border-strong); }
.climb-tab.is-active {
  background: var(--green);
  border-color: var(--green-dark);
  color: #fff;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.22);
}

.climb-tab__full { display: inline; }
.climb-tab__short { display: none; }

/* Unlock cards under the climb tabs */
.climb-unlocks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 100%;
  margin: 0;
}

.climb-unlock {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 22px 22px;
  display: grid;
  gap: 10px;
  box-shadow: 0 1px 2px rgba(20,33,26,0.04);
  animation: slideFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.climb-unlock[hidden] { display: none; }

.climb-unlock__tier {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border);
}

.climb-unlock__tier-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.climb-unlock__tier-limit {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}

.climb-unlock__theme {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--green-dark);
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--green-soft);
  border: 1px solid var(--green-line);
  width: fit-content;
  margin-bottom: 2px;
}

.climb-unlock--tier-4 .climb-unlock__theme {
  background: var(--green);
  color: #fff;
  border-color: var(--green-dark);
}

.climb-unlock__label {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.022em;
  line-height: 1.2;
}

.climb-unlock__note {
  margin: 0;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.55;
}

/* Per-tier "why this tier is worth getting to" bulleted points */
.climb-unlock__points {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.climb-unlock__points li {
  position: relative;
  padding-left: 24px;
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.5;
}
.climb-unlock__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2.75' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
}
.climb-unlock--tier-4 .climb-unlock__points li::before {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23107a34' stroke-width='2.75' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
}

.climb-unlock--tier-4 {
  background: linear-gradient(180deg, #fbfcf8 0%, var(--green-soft) 100%);
  border-color: var(--green-line);
}

.climb-unlock--tier-4 .climb-unlock__tier-limit { color: var(--green-dark); }

/* ---------- TierLesson section (Why every 3 months) ---------- */
.section--tierfall {
  position: relative;
  overflow: hidden;
  background: var(--green-soft);
  padding: 56px 0;
  border-block: 1px solid var(--green-line);
}

.section--tierfall .section__head { margin-bottom: 48px; }

.tierfall-stats {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}

.tierfall-stat {
  position: relative;
  padding: 36px 28px 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(20,33,26,0.04);
  will-change: transform, box-shadow;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 220ms ease;
}

.tierfall-stat:hover {
  border-color: var(--green-line);
  transform: translateY(-4px);
  box-shadow: 
    0 22px 48px rgba(19, 34, 27, 0.08), 
    0 8px 18px rgba(19, 34, 27, 0.04);
}

.tierfall-stat__icon-bg {
  position: absolute;
  top: 50%; right: 8px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px; height: 180px;
  color: var(--text);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  transition: opacity 240ms ease, transform 240ms ease;
}

.tierfall-stat__icon-bg svg {
  width: 100%; height: 100%;
  overflow: visible;
}

.tierfall-stat:hover .tierfall-stat__icon-bg {
  opacity: 0.10;
  transform: translateY(-50%) scale(1.04);
}

/* Icon hover animations — from Design System */
.tierfall-stat:hover .ic-refresh {
  animation: tfSpin 900ms ease-in-out;
  transform-origin: 50% 50%;
}
@keyframes tfSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.tierfall-stat:hover .ic-trend-down .path {
  stroke-dasharray: 48; stroke-dashoffset: 48;
  animation: tfDrawTrend 800ms ease-out forwards;
}
.tierfall-stat:hover .ic-trend-down .head {
  opacity: 0;
  animation: tfAppear 220ms ease-out 520ms forwards;
}
@keyframes tfDrawTrend { to { stroke-dashoffset: 0; } }
@keyframes tfAppear    { to { opacity: 1; } }

.tierfall-stat:hover .ic-unlink {
  animation: tfUnlinkShake 900ms ease-in-out;
  transform-origin: 50% 50%;
}
@keyframes tfUnlinkShake {
  0%, 100% { transform: rotate(0); }
  20%      { transform: rotate(-6deg); }
  40%      { transform: rotate(5deg); }
  60%      { transform: rotate(-4deg); }
  80%      { transform: rotate(3deg); }
}

.tierfall-stat__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 6px;
}

.tierfall-stat__title {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.tierfall-stat__num {
  font-family: var(--mono);
  font-size: 5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 2px 0 0;
}

.tierfall-stat__tail {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}

.tierfall-stat__bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  max-width: 26ch;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}

.tierfall-stat__bullets li {
  font-size: 12.5px;
  color: var(--text-soft);
  line-height: 1.4;
  padding-left: 14px;
  position: relative;
}

.tierfall-stat__bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--muted-2);
}

.tierfall-takeaway {
  margin: 36px auto 0;
  max-width: 60ch;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
}

/* ---------- MidCTA section ---------- */
.section--midcta {
  padding: 64px 0;
  background: var(--surface-alt);
  border-block: 1px solid var(--border);
}

.midcta-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
}

.midcta-panel h2 {
  font-size: 2.6rem;
}

.midcta-panel__reassurance {
  margin: 0;
  font-size: 0.82rem;
  font-family: var(--mono);
  font-weight: 720;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Capacity section (dark feature panel) ---------- */
.section--capacity {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 82% 12%, rgba(37, 211, 102, 0.2), transparent 28rem),
    radial-gradient(circle at 12% 74%, rgba(189, 231, 202, 0.1), transparent 26rem),
    linear-gradient(135deg, #17251f 0%, #0e1713 54%, #07100c 100%);
  color: #ffffff;
}

.section--capacity::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 72% 24%, rgba(0, 0, 0, 0.82), transparent 68%);
  pointer-events: none;
}

.section--capacity .container { position: relative; z-index: 1; }
.section--capacity h2 { color: #ffffff; }
.section--capacity .lede { color: rgba(255, 255, 255, 0.78); }

.capacity-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 64px;
  align-items: stretch;
}

.capacity-grid__left { display: flex; flex-direction: column; max-width: 56ch; }
.capacity-grid__left .lede { margin-top: 18px; }

.capacity-status {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 400px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(189, 231, 202, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(7, 22, 16, 0.55) 0%, rgba(7, 22, 16, 0.35) 32%, rgba(7, 22, 16, 0.6) 70%, rgba(7, 22, 16, 0.94) 100%),
    url("/book-my-spot.png") center 28% / cover no-repeat,
    rgba(6, 18, 13, 0.7);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.capacity-status > * { position: relative; }

.capacity-status__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.capacity-status__count {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.1;
}

.capacity-status__count b {
  color: #8ff2b2;
  font-family: var(--mono);
  font-size: 4.4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.slots {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
}

.slot {
  height: 22px;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.slot--taken {
  background: linear-gradient(180deg, var(--green-bright) 0%, var(--green) 100%);
  border-color: rgba(58,239,136,0.4);
}

.slot--taken::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 60%);
}

.slot--next {
  background: rgba(58,239,136,0.10);
  border-color: rgba(58,239,136,0.45);
  animation: pulseSlot 1.8s ease-in-out infinite;
}

@keyframes pulseSlot {
  0%, 100% { background: rgba(58,239,136,0.10); }
  50%      { background: rgba(58,239,136,0.22); }
}

.capacity-status__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capacity-status__foot b {
  color: #8ff2b2;
  font-family: var(--mono);
}

.capacity-principles {
  margin: 56px 0 0;
  list-style: none;
}

.capacity-principles li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.capacity-principles li:first-child { border-top: 0; padding-top: 0; }

.capacity-principles__num {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  color: #8ff2b2;
  text-transform: uppercase;
}

.capacity-principles strong {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 720;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.capacity-principles span:not(.capacity-principles__num) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* ---------- Responsive for light sections ---------- */
@media (max-width: 720px) {
  .journey__grid { grid-template-columns: repeat(2, 1fr); }
  .tierfall-stats { grid-template-columns: repeat(2, 1fr); }
  .climb-tab__full { display: none; }
  .climb-tab__short { display: inline; }
  .capacity-grid { grid-template-columns: 1fr; gap: 36px; }
  .capacity-grid__left { max-width: none; }
  .capacity-status { min-height: 560px; }
}

@media (max-width: 720px) {
  .journey__grid { grid-template-columns: 1fr; }
  .tierfall-stats { grid-template-columns: 1fr; }
  .tierfall-stat { padding: 28px 20px; }
  .tierfall-stat__icon-bg { width: 140px; height: 140px; right: 0; }
  .capacity-status { border-radius: 22px; }
}

@media (max-width: 720px) {
  .climb-unlocks-grid { max-width: 460px; }
  .climb-stair { gap: 10px; }
  .climb-stair__limit { font-size: 1.8rem; }
  .climb-stair__step--4 .climb-stair__limit { font-size: 3rem; }
}
