/* ===========================================================
   Diesel Sport Academy — extra styles on top of styles-base.css
   Adds: who-this-is-for, timeline, included list, by-week-12, 
         price card, Adam, FAQ, free guide section, mobile rules
   =========================================================== */

:root {
  /* Allow tweaks to override the live accent without touching tokens */
  --accent: var(--gold);
  --accent-hi: var(--gold-hi);
  --accent-lo: var(--gold-lo);
}

/* Use --accent in the components that swap on tweak */
.snav-link:hover, .snav-link.active { color: var(--accent); }
.snav-cta { background: var(--accent); }
.snav-cta:hover { background: var(--accent-hi); }
.snav-brand .acc { color: var(--accent); }
.btn-primary { background: var(--accent); }
.btn-primary:hover { background: var(--accent-hi); box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 40%, transparent), 0 18px 36px -10px color-mix(in srgb, var(--accent) 40%, transparent); }
.btn-primary:active { background: var(--accent-lo); }
.eyebrow, .section-eyebrow, .hero-eyebrow, .modal-eyebrow, .footer-col-head { color: var(--accent); }
.section-eyebrow::before, .hero-eyebrow::before { background: var(--accent); }
.hero-headline .gold { color: var(--accent); }
.stat-num { color: var(--accent); }
.compare-head.gold { color: var(--accent); }
.t-stat { color: var(--accent); }
.hero-meta-num { color: var(--accent); }
em { color: var(--accent); }
.snav-cta { color: var(--bg-0); }
.btn-primary { color: var(--bg-0); }
.modal-close:hover { color: var(--accent); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
a { color: var(--accent); }
a:hover { border-bottom-color: var(--accent); }
.footer-col a:hover { color: var(--accent); }

/* ===================== HERO TWEAKS ===================== */
.hero-headline em.gold { font-style: normal; color: var(--accent); }
.hero-cta-secondary {
  background: transparent;
  color: var(--fg-1);
  padding: 20px 36px;
  border: 1px solid var(--bg-line);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 200ms cubic-bezier(0.2,0.8,0.2,1);
}
.hero-cta-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ===================== LIGHTNING BACKGROUND ===================== */
.lightning-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.section, .apply-section, .guide-section { position: relative; }
.section > .container, .apply-section > .container, .guide-section > .container { position: relative; z-index: 2; }
.section .lightning-bg, .apply-section .lightning-bg, .guide-section .lightning-bg { z-index: 1; }
.lightning-bg svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.bolt {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px var(--accent)) drop-shadow(0 0 22px color-mix(in srgb, var(--accent) 70%, transparent)) drop-shadow(0 0 40px color-mix(in srgb, var(--accent) 40%, transparent));
  opacity: 0;
}
.bolt.strike {
  animation: bolt-strike 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes bolt-strike {
  0%   { opacity: 0; }
  3%   { opacity: 1; }
  6%   { opacity: 0.15; }
  9%   { opacity: 1; }
  14%  { opacity: 0.3; }
  18%  { opacity: 1; }
  24%  { opacity: 0.5; }
  30%  { opacity: 1; }
  45%  { opacity: 0.6; }
  100% { opacity: 0; }
}
.bolt-flash {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at var(--fx, 50%) var(--fy, 30%), color-mix(in srgb, var(--accent) 22%, transparent), transparent 50%);
  opacity: 0;
  pointer-events: none;
}
.bolt-flash.on {
  animation: flash 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes flash {
  0%   { opacity: 0; }
  3%   { opacity: 1; }
  10%  { opacity: 0.3; }
  18%  { opacity: 1; }
  30%  { opacity: 0.4; }
  100% { opacity: 0; }
}

.hero, .decision { position: relative; }
.hero .container, .decision .container { position: relative; z-index: 2; }
.hero .hero-bg { z-index: 1; }
.hero .lightning-bg, .decision .lightning-bg { z-index: 1; }

/* Subtle reveal on first paint */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms cubic-bezier(0.2,0.8,0.2,1), transform 700ms cubic-bezier(0.2,0.8,0.2,1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== WHO THIS IS FOR ===================== */
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 64px;
  border: 1px solid var(--bg-line);
}
.who-card {
  padding: 40px 40px 36px;
  border-right: 1px solid var(--bg-line);
  border-bottom: 1px solid var(--bg-line);
  background: var(--bg-1);
  transition: background 200ms var(--ease-out);
  position: relative;
}
.who-card:nth-child(2n) { border-right: 0; }
.who-card:nth-last-child(-n+2) { border-bottom: 0; }
.who-card:hover { background: var(--bg-2); }
.who-num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--accent);
  margin-bottom: 18px;
}
.who-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--fg-1);
  margin-bottom: 14px;
  line-height: 1;
}
.who-card p {
  color: var(--fg-2);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

/* ===================== 12-WEEK TIMELINE ===================== */
.timeline {
  margin-top: 64px;
  border: 1px solid var(--bg-line);
  background: var(--bg-1);
}
.tl-row {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: stretch;
  border-bottom: 1px solid var(--bg-line);
  cursor: pointer;
  transition: background 200ms var(--ease-out);
  background: transparent;
  border-left: 0 solid var(--accent);
}
.tl-row:last-child { border-bottom: 0; }
.tl-row:hover { background: var(--bg-2); }
.tl-row.open {
  background: var(--bg-2);
  border-left: 2px solid var(--accent);
}
.tl-weeks {
  padding: 28px 32px;
  border-right: 1px solid var(--bg-line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tl-weeks-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 6px;
}
.tl-weeks-num {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.tl-row.open .tl-weeks-num { color: var(--accent-hi); }
.tl-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tl-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--fg-1);
  line-height: 1;
}
.tl-summary {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.5;
  max-width: 720px;
  margin: 0;
}
.tl-toggle {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--bg-line);
  color: var(--fg-3);
  transition: color 200ms var(--ease-out), transform 200ms var(--ease-out);
}
.tl-row.open .tl-toggle { color: var(--accent); transform: rotate(45deg); }
.tl-detail {
  grid-column: 1 / -1;
  padding: 0 32px 32px 32px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  border-top: 1px solid var(--bg-line);
  background: var(--bg-2);
}
.tl-detail-spacer { padding: 24px 32px 0 0; }
.tl-detail-content { padding: 24px 0 0 0; }
.tl-deliverables-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.tl-deliverables {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--bg-line);
}
.tl-deliv-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-right: 1px solid var(--bg-line);
  border-bottom: 1px solid var(--bg-line);
  font-size: 14px;
  color: var(--fg-1);
  line-height: 1.45;
  background: var(--bg-1);
}
.tl-deliv-item:nth-child(2n) { border-right: 0; }
.tl-deliv-item:nth-last-child(-n+2) { border-bottom: 0; }
.tl-deliv-item svg { flex-shrink: 0; margin-top: 2px; }

/* progress bar above the timeline showing which weeks user has explored */
.tl-progress {
  display: flex;
  height: 4px;
  background: var(--bg-line);
  margin-bottom: 0;
  border: 1px solid var(--bg-line);
  border-bottom: 0;
}
.tl-progress-cell {
  flex: 1;
  border-right: 1px solid rgba(0,0,0,0.4);
  background: transparent;
  transition: background 200ms var(--ease-out);
}
.tl-progress-cell:last-child { border-right: 0; }
.tl-progress-cell.viewed { background: var(--accent); }

/* ===================== INCLUDED LIST ===================== */
.incl-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  margin-top: 64px;
  border: 1px solid var(--bg-line);
  background: var(--bg-1);
}
.incl-list { padding: 24px 0; }
.incl-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 22px 32px;
  border-bottom: 1px solid var(--bg-line);
  align-items: start;
}
.incl-item:last-child { border-bottom: 0; }
.incl-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--bg-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.incl-text-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--fg-1);
  text-transform: none;
  line-height: 1.3;
  margin-bottom: 4px;
}
.incl-text-sub {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.5;
}

.outcomes {
  background: var(--bg-2);
  padding: 40px 32px;
  border-left: 1px solid var(--bg-line);
  display: flex;
  flex-direction: column;
}
.outcomes-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.outcomes-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--fg-1);
  line-height: 1;
  margin-bottom: 28px;
}
.outcomes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.outcomes-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--bg-line);
  font-size: 15px;
  color: var(--fg-1);
  line-height: 1.4;
}
.outcomes-list li:last-child { border-bottom: 0; }
.outcomes-list svg { flex-shrink: 0; margin-top: 3px; }

/* ===================== PRICE CARD ===================== */
.price-card {
  margin-top: 64px;
  border: 1px solid var(--bg-line);
  background: var(--bg-2);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
}
.price-left {
  padding: 48px;
  border-right: 1px solid var(--bg-line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.price-tag {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 12px;
}
.price-num {
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.price-currency {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.price-alt {
  font-size: 14px;
  color: var(--fg-2);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.price-divider {
  border-bottom: 1px solid var(--bg-line);
  margin: 24px 0;
}
.price-spots {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red-hi);
  margin-bottom: 24px;
}
.price-spot-dot {
  width: 8px; height: 8px;
  background: var(--red);
  animation: pulse 1.4s ease-in-out infinite;
}
.price-right {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-1);
}
.price-right h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--fg-1);
  line-height: 1;
  margin-bottom: 24px;
}
.spots-meter {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.spot-pip {
  flex: 1;
  height: 12px;
  background: var(--bg-line);
  border: 1px solid var(--bg-line);
}
.spot-pip.taken { background: var(--red); border-color: var(--red); }
.spot-pip.open { background: transparent; border-color: var(--bg-line); }
.spots-meter-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 28px;
}

/* ===================== ADAM ===================== */
.adam-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  margin-top: 64px;
  border: 1px solid var(--bg-line);
}
.adam-photo {
  background: var(--bg-2);
  position: relative;
  min-height: 600px;
  border-right: 1px solid var(--bg-line);
  background-color: #0E1218;
  overflow: hidden;
}
.adam-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: saturate(0.85) contrast(1.05);
}
.adam-photo::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,11,15,0) 50%, rgba(8,11,15,0.55) 100%),
    linear-gradient(90deg, rgba(8,11,15,0) 60%, rgba(8,11,15,0.4) 100%);
  pointer-events: none;
  z-index: 1;
}
.adam-photo::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(245,242,234,0.025) 2px, rgba(245,242,234,0.025) 3px);
  pointer-events: none;
  z-index: 2;
}
.adam-photo-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-3);
  position: relative;
  z-index: 1;
}
.adam-content {
  padding: 56px 48px;
  background: var(--bg-1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.adam-content .eyebrow { margin-bottom: 16px; }
.adam-content h2 {
  font-size: 80px;
  margin-bottom: 24px;
  line-height: 0.92;
}
.adam-content p {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.6;
  margin-bottom: 16px;
}
.adam-bullets {
  list-style: none;
  margin-top: 24px;
  margin-bottom: 32px;
}
.adam-bullets li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--bg-line);
  font-size: 14px;
  color: var(--fg-1);
}
.adam-bullets li:last-child { border-bottom: 1px solid var(--bg-line); }
.adam-bullets svg { flex-shrink: 0; margin-top: 3px; }

/* ===================== FAQ ===================== */
.faq-list {
  margin-top: 64px;
  border-top: 1px solid var(--bg-line);
  border-bottom: 1px solid var(--bg-line);
}
.faq-item {
  border-bottom: 1px solid var(--bg-line);
}
.faq-item:last-child { border-bottom: 0; }
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  color: var(--fg-1);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 200ms var(--ease-out), color 200ms var(--ease-out);
}
.faq-q:hover { background: var(--bg-1); color: var(--accent); }
.faq-q.open { background: var(--bg-1); color: var(--accent); }
.faq-icon {
  width: 24px; height: 24px;
  border: 1px solid var(--bg-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: border-color 200ms, transform 200ms;
}
.faq-q.open .faq-icon { border-color: var(--accent); transform: rotate(45deg); }
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 10px; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms var(--ease-out);
  background: var(--bg-1);
}
.faq-a-inner {
  padding: 0 32px 28px 32px;
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.6;
  max-width: 880px;
}

/* ===================== FREE GUIDE ===================== */
.guide-section {
  background: var(--bg-1);
  padding: 120px 0;
  border-top: 1px solid var(--bg-line);
  border-bottom: 1px solid var(--bg-line);
  position: relative;
  overflow: hidden;
}
.guide-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(200,168,75,0.06), transparent 60%);
  pointer-events: none;
}
.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.guide-cover {
  background: var(--bg-2);
  border: 1px solid var(--bg-line);
  padding: 56px 48px;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: var(--shadow-card);
  transform: rotate(-1.5deg);
  transition: transform 400ms var(--ease-out);
}
.guide-cover:hover { transform: rotate(0deg) translateY(-4px); }
.guide-cover-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}
.guide-cover-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 64px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--fg-1);
}
.guide-cover-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--bg-line);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.guide-cover-stamp {
  position: absolute;
  top: 24px;
  right: 24px;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.guide-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.guide-input-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--bg-line);
  background: var(--bg-2);
  transition: border-color 200ms;
}
.guide-input-row:focus-within { border-color: var(--accent); }
.guide-input-row input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 22px 24px;
  font-size: 16px;
  color: var(--fg-1);
  outline: none;
  font-family: inherit;
}
.guide-input-row input::placeholder { color: var(--fg-3); }
.guide-input-row button {
  background: var(--accent);
  color: var(--bg-0);
  border: 0;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms;
  display: flex;
  align-items: center;
  gap: 12px;
}
.guide-input-row button:hover { background: var(--accent-hi); }
.guide-input-row button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.guide-error {
  font-size: 13px;
  color: var(--red-hi);
  letter-spacing: 0.04em;
}
.guide-disclaim {
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.guide-success {
  border: 1px solid var(--accent);
  background: var(--gold-soft);
  padding: 28px 32px;
}
.guide-success-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.guide-success-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--fg-1);
  line-height: 1;
  margin-bottom: 12px;
}
.guide-success p {
  margin: 0;
  color: var(--fg-2);
  font-size: 14px;
}
.guide-upsell {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
}

/* ===================== STAT BAR — animated counters ===================== */
.statbar-anim .stat-cell {
  position: relative;
  overflow: hidden;
}
.statbar-anim .stat-num {
  font-variant-numeric: tabular-nums;
}

/* ===================== APPLY WIZARD MODAL ===================== */
.modal {
  max-width: 720px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}
.modal-header {
  padding: 32px 48px 0 48px;
}
.modal-progress-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}
.modal-progress-cell {
  flex: 1;
  height: 3px;
  background: var(--bg-line);
  transition: background 200ms;
}
.modal-progress-cell.done { background: var(--accent); }
.modal-progress-cell.active { background: var(--accent); }
.modal-body {
  padding: 0 48px 32px 48px;
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--bg-line) transparent;
}
.modal-body::-webkit-scrollbar { width: 6px; }
.modal-body::-webkit-scrollbar-thumb { background: var(--bg-line); }
.modal-footer {
  padding: 24px 48px;
  border-top: 1px solid var(--bg-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--bg-1);
}
.modal-back {
  background: transparent;
  border: 0;
  color: var(--fg-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 0;
  cursor: pointer;
  transition: color 200ms;
}
.modal-back:hover { color: var(--accent); }
.modal-back:disabled { opacity: 0.3; cursor: not-allowed; pointer-events: none; }

.wiz-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--bg-line);
}
.wiz-radio {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--bg-line);
  cursor: pointer;
  transition: background 200ms, border-color 200ms;
  background: var(--bg-2);
}
.wiz-radio:last-child { border-bottom: 0; }
.wiz-radio:hover { background: var(--bg-3); }
.wiz-radio input { display: none; }
.wiz-radio-pip {
  width: 18px; height: 18px;
  border: 1.5px solid var(--bg-line);
  flex-shrink: 0;
  position: relative;
  transition: border-color 200ms;
}
.wiz-radio.selected { background: var(--bg-3); }
.wiz-radio.selected .wiz-radio-pip { border-color: var(--accent); }
.wiz-radio.selected .wiz-radio-pip::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--accent);
}
.wiz-radio-label {
  font-size: 15px;
  color: var(--fg-1);
  flex: 1;
}
.wiz-radio-meta {
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.wiz-radio.selected .wiz-radio-label { color: var(--fg-1); font-weight: 600; }

.wiz-hint {
  font-size: 13px;
  color: var(--fg-3);
  margin-top: 16px;
  letter-spacing: 0.02em;
}
.wiz-fields { display: flex; flex-direction: column; gap: 20px; }
.wiz-fields .apply-field input,
.wiz-fields .apply-field select,
.wiz-fields .apply-field textarea {
  background: var(--bg-2);
  border: 1px solid var(--bg-line);
  padding: 18px 20px;
}
.wiz-error {
  font-size: 12px;
  color: var(--red-hi);
  letter-spacing: 0.02em;
  margin-top: 6px;
}
.wiz-summary-card {
  border: 1px solid var(--bg-line);
  background: var(--bg-2);
  padding: 24px 28px;
  margin-top: 24px;
}
.wiz-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-line);
  gap: 24px;
}
.wiz-summary-row:last-child { border-bottom: 0; }
.wiz-summary-key {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
  flex-shrink: 0;
}
.wiz-summary-val {
  font-size: 15px;
  color: var(--fg-1);
  text-align: right;
  font-weight: 600;
}

/* ===================== DECISION SECTION ===================== */
.decision {
  padding: 120px 0;
  border-bottom: 1px solid var(--bg-line);
  background: var(--bg-0);
  position: relative;
}
.decision-inner {
  text-align: left;
  max-width: 1100px;
}
.decision h2 {
  font-size: clamp(56px, 8vw, 128px);
  letter-spacing: 0.01em;
  line-height: 0.88;
  margin-bottom: 32px;
}
.decision p {
  font-size: 19px;
  color: var(--fg-2);
  font-weight: 300;
  margin-bottom: 48px;
  max-width: 720px;
}
.decision .hero-cta-row { gap: 16px; }

/* ===================== MOBILE ===================== */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .snav-links { display: none; }
  .snav-inner { padding: 14px 0; }
  .snav-cta { padding: 12px 18px; font-size: 11px; }
  .hero { padding: 56px 0 48px; }
  .hero-headline { font-size: clamp(48px, 11vw, 80px); margin-bottom: 28px; }
  .hero-sub { font-size: 18px; margin-bottom: 32px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn, .hero-cta-row .hero-cta-secondary { justify-content: center; width: 100%; }
  .hero-meta { gap: 24px; flex-wrap: wrap; margin-top: 40px; }
  .hero-meta-num { font-size: 40px; }
  .section { padding: 64px 0; }
  .section-title { font-size: clamp(40px, 9vw, 64px); }
  .statbar { grid-template-columns: 1fr 1fr; }
  .stat-cell { padding: 32px 20px; border-bottom: 1px solid var(--bg-line); }
  .stat-cell:nth-child(2) { border-right: 0; }
  .stat-cell:nth-last-child(-n+2) { border-bottom: 0; }
  .stat-num { font-size: 56px; }
  .who-grid { grid-template-columns: 1fr; }
  .who-card { border-right: 0; border-bottom: 1px solid var(--bg-line) !important; }
  .who-card:last-child { border-bottom: 0 !important; }
  .tl-row { grid-template-columns: 100px 1fr 60px; }
  .tl-weeks { padding: 18px 16px; }
  .tl-weeks-num { font-size: 28px; }
  .tl-body { padding: 18px 16px; }
  .tl-title { font-size: 22px; }
  .tl-summary { font-size: 13px; }
  .tl-toggle { padding: 18px; }
  .tl-detail { grid-template-columns: 1fr; padding: 0 16px 24px 16px; }
  .tl-detail-spacer { display: none; }
  .tl-deliverables { grid-template-columns: 1fr; }
  .tl-deliv-item { border-right: 0; }
  .incl-grid, .price-card, .adam-grid, .compare, .testimonials, .guide-grid, .apply-grid {
    grid-template-columns: 1fr;
  }
  .testimonial { border-right: 0; border-bottom: 1px solid var(--bg-line); }
  .compare-col + .compare-col { border-left: 0; border-top: 1px solid var(--bg-line); }
  .compare-col, .price-left, .price-right, .adam-content { padding: 32px 24px; border-right: 0 !important; }
  .adam-photo { min-height: 320px; border-right: 0; border-bottom: 1px solid var(--bg-line); }
  .adam-content h2 { font-size: 56px; }
  .price-num { font-size: 64px; }
  .outcomes { border-left: 0; border-top: 1px solid var(--bg-line); }
  .countdown-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .countdown-clock { width: 100%; }
  .cclock-cell { flex: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .modal { max-width: 100%; max-height: 100vh; border: 0; }
  .modal-header { padding: 24px 24px 0 24px; }
  .modal-body { padding: 0 24px 24px 24px; }
  .modal-footer { padding: 18px 24px; }
  .modal-title { font-size: 36px; }
  .guide-section { padding: 64px 0; }
  .guide-cover { padding: 36px 28px; }
  .decision { padding: 64px 0; }
  .faq-q { padding: 22px 20px; font-size: 16px; gap: 16px; }
  .faq-a-inner { padding: 0 20px 22px 20px; font-size: 14px; }
}
