:root {
  color-scheme: dark;
  --bg: #070708;
  --surface: #111114;
  --surface-2: #18181c;
  --text: #f5f5f6;
  --muted: #aaaab2;
  --line: rgba(255, 255, 255, 0.14);
  --red: #e53a31;
  --red-strong: #ff493d;
  --silver: #d5d7da;
  --gold: #d1ad58;
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
body::selection { background: var(--red); color: #fff; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 10px max(24px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 6, 0.9);
  backdrop-filter: blur(18px);
}
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0;
}
.site-brand img { width: 44px; height: 44px; object-fit: cover; border: 1px solid var(--line); border-radius: 6px; }
.site-header nav { display: flex; align-items: center; gap: 28px; }
.site-header nav a, footer a { color: var(--muted); text-decoration: none; font-weight: 700; font-size: 14px; }
.site-header nav a:hover, footer a:hover { color: #fff; }
.header-access { justify-self: end; }

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #fff;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.button-primary {
  border-color: rgba(255, 112, 101, 0.65);
  background: linear-gradient(100deg, #df382f, #b92623);
  box-shadow: 0 10px 30px rgba(229, 58, 49, 0.28);
}
.button-primary:hover { background: linear-gradient(100deg, #f0493f, #c62c27); }
.button-quiet { border-color: var(--line); background: rgba(15, 15, 18, 0.82); }
.button-quiet:hover { border-color: rgba(255, 255, 255, 0.3); }
.full-button { width: 100%; }

.hero-band {
  min-height: min(860px, 92vh);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: url("/assets/coaching-background.png") center 38% / cover no-repeat;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 3, 4, 0.93) 0%, rgba(3, 3, 4, 0.55) 44%, rgba(3, 3, 4, 0.12) 74%),
    linear-gradient(0deg, #070708 0%, transparent 32%, rgba(0, 0, 0, 0.14) 100%);
}
.hero-content {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 170px 0 58px;
  position: relative;
}
.eyebrow {
  margin: 0 0 10px;
  color: #ff6156;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.hero-content h1 { max-width: 680px; margin: 0; font-size: clamp(56px, 8vw, 112px); line-height: 0.94; letter-spacing: 0; }
.hero-copy { max-width: 620px; margin: 24px 0; color: var(--silver); font-size: clamp(18px, 2vw, 24px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-metrics {
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 54px 0 0;
  border-top: 1px solid var(--line);
}
.hero-metrics div { padding: 18px 20px 0 0; }
.hero-metrics dt { font-size: 18px; font-weight: 900; }
.hero-metrics dd { margin: 2px 0 0; color: var(--muted); font-size: 13px; }

.method-band, .packages-band, .comparison-band, .faq-band {
  padding: 96px max(24px, calc((100vw - var(--content)) / 2));
}
.method-band { background: #0b0b0d; }
.packages-band { background: #070708; }
.comparison-band { background: #101012; }
.faq-band { background: #09090b; }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading h2, .app-copy h2, .closing-band h2 { margin: 0; font-size: clamp(34px, 5vw, 58px); line-height: 1.04; letter-spacing: 0; }
.section-heading > p:last-child, .app-copy > p { color: var(--muted); font-size: 18px; }
.compact-heading { margin-bottom: 30px; }

.method-steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.method-steps article { min-width: 0; padding: 28px 26px 20px 0; border-right: 1px solid var(--line); }
.method-steps article + article { padding-left: 26px; }
.method-steps article:last-child { border-right: 0; }
.method-steps span { color: var(--red-strong); font-weight: 900; }
.method-steps h3 { margin: 34px 0 8px; font-size: 22px; }
.method-steps p { margin: 0; color: var(--muted); }

.duration-picker {
  width: min(660px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto 28px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0e0e11;
}

.duration-picker button {
  min-width: 0;
  min-height: 64px;
  display: grid;
  place-content: center;
  gap: 3px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.duration-picker span { color: inherit; font-size: 15px; font-weight: 900; }
.duration-picker small { color: inherit; font-size: 10px; text-transform: uppercase; }
.duration-picker button:hover { color: #fff; }
.duration-picker button.active {
  border-color: rgba(255, 73, 61, 0.72);
  color: #fff;
  background: #2a1212;
  box-shadow: inset 0 0 20px rgba(255, 64, 52, 0.12), 0 0 22px rgba(255, 64, 52, 0.12);
}

.package-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.package-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #151519, #0d0d0f);
  position: relative;
  overflow: hidden;
}
.package-card.featured {
  border-color: rgba(235, 198, 103, 0.9);
  background: linear-gradient(180deg, #211c12, #11100d 46%, #0d0d0f);
  box-shadow: 0 18px 58px rgba(220, 170, 58, 0.22), inset 0 1px 0 rgba(255, 231, 164, 0.2);
}
.package-card.exclusive {
  border-color: rgba(255, 73, 61, 0.78);
  background: linear-gradient(180deg, #211211, #110d0e 48%, #0d0d0f);
  box-shadow: 0 18px 54px rgba(229, 58, 49, 0.15);
}
.package-label-row { min-height: 30px; display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; margin-bottom: 20px; }
.package-badge { width: fit-content; margin: 0; padding: 5px 9px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.package-savings { padding: 5px 0; color: #8ce0aa; font-size: 11px; font-weight: 900; white-space: nowrap; }
.featured .package-badge {
  border-color: #e8c467;
  background: linear-gradient(135deg, #f3d985, #b98529);
  color: #171006;
  box-shadow: 0 0 24px rgba(232, 196, 103, 0.25);
}
.featured .button-primary {
  border-color: #efd176;
  background: linear-gradient(100deg, #e5bd57, #a97722);
  color: #120d05;
  box-shadow: 0 10px 30px rgba(220, 170, 58, 0.25);
}
.featured .button-primary:hover { background: linear-gradient(100deg, #f0ce72, #b98428); }
.exclusive .package-badge { border-color: rgba(255, 73, 61, 0.76); color: #ff8b84; }
.package-card h3 { margin: 0; font-size: 30px; }
.package-price { display: flex; align-items: flex-end; gap: 8px; margin: 12px 0 22px; }
.package-price strong { font-size: 42px; line-height: 1; }
.package-price span { color: var(--muted); font-size: 12px; white-space: nowrap; }
.package-card .monthly-equivalent { min-height: 20px; margin: -10px 0 20px; color: #d5d5d9; font-size: 13px; font-weight: 800; }
.package-card > p { min-height: 48px; margin: 0 0 18px; color: var(--muted); }
.package-card ul, .order-summary ul, .app-copy ul { list-style: none; padding: 0; margin: 0 0 26px; }
.package-card li, .order-summary li, .app-copy li { padding: 9px 0 9px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); position: relative; font-size: 14px; }
.package-card li::before, .order-summary li::before, .app-copy li::before { content: ""; position: absolute; left: 2px; top: 16px; width: 8px; height: 4px; border-left: 2px solid var(--red-strong); border-bottom: 2px solid var(--red-strong); transform: rotate(-45deg); }
.package-card .button { margin-top: auto; }
.loading-copy { color: var(--muted); }

.comparison-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; }
table { width: 100%; min-width: 720px; border-collapse: collapse; background: #0b0b0d; }
th, td { padding: 17px 18px; border-bottom: 1px solid var(--line); text-align: center; }
th:first-child, td:first-child { width: 42%; text-align: left; }
th { color: var(--silver); font-size: 13px; text-transform: uppercase; }
td { color: var(--muted); }
.included { color: #fff; font-weight: 900; }
.not-included { color: #55555e; }

.app-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  gap: 76px;
  align-items: center;
  padding: 100px max(24px, calc((100vw - var(--content)) / 2));
  background: linear-gradient(110deg, #151518, #080809 68%);
}
.app-copy { max-width: 650px; }
.app-copy ul { margin-top: 28px; }
.app-downloads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.download-button {
  min-width: 0;
  min-height: 70px;
  justify-content: flex-start;
  gap: 13px;
  padding: 12px 16px;
  border-color: rgba(255, 255, 255, 0.2);
  background: #0c0c0f;
  text-align: left;
}
.download-button:hover {
  border-color: rgba(255, 73, 61, 0.76);
  background: #191113;
  box-shadow: 0 12px 32px rgba(229, 58, 49, 0.18);
}
.download-symbol {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 73, 61, 0.65);
  border-radius: 6px;
  color: #ff6a61;
  background: #251111;
  font-size: 23px;
  line-height: 1;
}
.download-button > span:last-child { min-width: 0; display: grid; gap: 1px; }
.download-button small { color: var(--muted); font-size: 11px; font-weight: 750; }
.download-button strong { color: #fff; font-size: 15px; line-height: 1.25; }
.download-note { margin: 12px 0 0; color: #777780; font-size: 12px; }
.app-preview { max-width: 420px; width: 100%; justify-self: end; padding: 24px; border: 1px solid rgba(255, 73, 61, 0.4); border-radius: 8px; background: #0c0c0f; box-shadow: 0 24px 70px rgba(0,0,0,0.45); }
.preview-top { display: flex; align-items: center; gap: 12px; font-weight: 900; }
.preview-top img { width: 42px; height: 42px; object-fit: cover; border-radius: 6px; }
.readiness { display: grid; gap: 4px; margin: 22px 0; padding: 22px; border-left: 3px solid var(--red); background: #151519; }
.readiness small, .readiness span { color: var(--muted); }
.readiness strong { font-size: 42px; line-height: 1; }
.preview-row { display: flex; justify-content: space-between; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.preview-row span { color: var(--muted); }
.preview-row b { text-align: right; }

.faq-list { max-width: 860px; border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { padding: 22px 0; cursor: pointer; font-size: 19px; font-weight: 850; }
details p { max-width: 720px; margin: -4px 0 22px; color: var(--muted); }

.closing-band { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 72px max(24px, calc((100vw - var(--content)) / 2)); border-top: 1px solid rgba(255, 73, 61, 0.45); background: #15100f; }
.closing-band h2 { font-size: clamp(30px, 4vw, 48px); }
footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; padding: 32px max(24px, calc((100vw - var(--content)) / 2)); color: var(--muted); background: #050506; }
footer p { margin: 0; text-align: center; font-size: 13px; }
footer > div { display: flex; justify-content: flex-end; gap: 18px; }

.checkout-dialog { width: min(960px, calc(100% - 32px)); max-height: calc(100vh - 32px); padding: 0; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; background: #0c0c0f; color: var(--text); overflow: auto; }
.checkout-dialog::backdrop { background: rgba(0,0,0,0.82); backdrop-filter: blur(8px); }
.dialog-close { position: absolute; z-index: 2; top: 14px; right: 14px; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: #151519; color: #fff; font-size: 24px; cursor: pointer; }
.checkout-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; min-height: 620px; }
.order-summary { padding: 44px 34px; background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.88)), url("/assets/coaching-background.png") center / cover no-repeat; }
.order-summary h2 { margin: 0; font-size: 34px; }
.order-summary > strong { display: block; margin: 12px 0 2px; font-size: 48px; }
.order-summary > span { color: var(--muted); font-size: 13px; }
.order-summary ul { margin-top: 34px; }
.checkout-form-wrap { display: grid; align-items: center; padding: 48px; }
.checkout-saving { display: block; margin-top: 8px; color: #8ce0aa; font-size: 12px; font-weight: 800; }
.checkout-form-wrap h2 { margin: 0 0 8px; font-size: 32px; }
.step-label { color: var(--muted); font-size: 13px; font-weight: 800; text-transform: uppercase; }
form { display: grid; gap: 15px; margin-top: 24px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
form label:not(.check-row) { display: grid; gap: 7px; color: var(--muted); font-size: 13px; font-weight: 700; }
form label small { font-weight: 500; }
input, textarea { width: 100%; min-height: 46px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 6px; outline: none; background: #08080a; color: #fff; resize: vertical; }
input:focus, textarea:focus { border-color: rgba(255, 73, 61, 0.85); box-shadow: 0 0 0 3px rgba(255, 73, 61, 0.1); }
.check-row { display: flex; align-items: flex-start; gap: 9px; color: var(--muted); font-size: 12px; }
.check-row input { width: 17px; min-height: 17px; margin-top: 1px; accent-color: var(--red); }
.check-row a { color: #fff; }
.form-error { min-height: 20px; margin: 0; color: #ff7771; font-size: 13px; font-weight: 700; }
.secure-note { margin: -6px 0 0; color: #777780; text-align: center; font-size: 11px; }
.account-ready { text-align: center; }
.success-mark { width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 18px; border: 1px solid rgba(96, 213, 144, 0.55); border-radius: 50%; color: #78e3a5; font-size: 28px; }

.legal-page main { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 70px 0; }
.legal-page h1 { font-size: clamp(38px, 6vw, 64px); }
.legal-page h2 { margin-top: 34px; }
.legal-page p { color: var(--muted); }
.legal-page a { color: #fff; }
.back-link { display: inline-flex; margin-bottom: 34px; }
.legal-warning { margin-top: 50px; padding: 18px; border-left: 3px solid var(--red); background: #151519; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero-band { min-height: 780px; background-position: 58% center; }
  .hero-shade { background: linear-gradient(0deg, #070708 0%, rgba(3,3,4,0.42) 55%, rgba(3,3,4,0.15)); }
  .hero-content { padding-top: 300px; }
  .hero-metrics { grid-template-columns: 1fr; }
  .hero-metrics div { padding-top: 14px; }
  .method-steps { grid-template-columns: 1fr 1fr; }
  .method-steps article:nth-child(2) { border-right: 0; }
  .package-grid { grid-template-columns: 1fr; }
  .package-card > p { min-height: 0; }
  .app-band { grid-template-columns: 1fr; gap: 36px; }
  .app-preview { justify-self: start; }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { min-height: 330px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer .site-brand, footer > div { justify-self: center; }
}

@media (max-width: 560px) {
  .site-header { min-height: 64px; padding: 8px 16px; }
  .site-brand span { font-size: 14px; }
  .site-brand img { width: 38px; height: 38px; }
  .header-access { min-height: 40px; padding: 8px 14px; }
  .hero-band { min-height: 720px; }
  .hero-content { width: calc(100% - 32px); padding-bottom: 30px; }
  .hero-content h1 { font-size: 52px; }
  .hero-copy { font-size: 17px; }
  .hero-actions .button { width: 100%; }
  .app-downloads { grid-template-columns: 1fr; }
  .method-band, .packages-band, .comparison-band, .faq-band, .app-band { padding: 68px 18px; }
  .method-steps { grid-template-columns: 1fr; }
  .method-steps article, .method-steps article + article { padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .method-steps h3 { margin-top: 16px; }
  .package-card { padding: 24px 20px; }
  .duration-picker button { min-height: 58px; padding-inline: 5px; }
  .duration-picker span { font-size: 13px; }
  .duration-picker small { font-size: 8px; }
  .closing-band { align-items: flex-start; flex-direction: column; padding: 48px 18px; }
  .checkout-dialog { width: 100%; max-height: 100vh; height: 100vh; border: 0; border-radius: 0; }
  .order-summary { min-height: 0; padding: 34px 24px 24px; }
  .order-summary h2 { padding-right: 42px; font-size: 30px; }
  .order-summary > strong { font-size: 42px; }
  .order-summary ul { margin: 22px 0 0; }
  .order-summary li { padding-top: 7px; padding-bottom: 7px; font-size: 13px; }
  .order-summary li:nth-child(n + 4) { display: none; }
  .checkout-form-wrap { padding: 34px 20px; }
  .field-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
