:root {
  --void: #080808;
  --surface: #0f0f0f;
  --surface-2: #141414;
  --cream: #faf6f0;
  --cream-mid: #b8b0a8;
  --cream-low: #8a8480;
  --whisper: rgba(250, 246, 240, 0.06);
  --whisper-strong: rgba(250, 246, 240, 0.13);
  --orange: #f3761f;
  --orange-dark: #d95f0e;
  --orange-soft: rgba(243, 118, 31, 0.18);
  --stage: 1120px;
  --display: "Bebas Neue", "Oswald", "Arial Narrow", sans-serif;
  --body: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--void);
}

body {
  margin: 0;
  background: var(--void);
  color: var(--cream);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: var(--cream);
  color: var(--void);
  padding: 10px 14px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 12px;
}

.skip-link:focus {
  top: 16px;
}

.stage {
  width: min(var(--stage), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1240px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 14px 16px;
  border: 1px solid var(--whisper);
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.nav-cta,
.button,
.eyebrow,
.panel-label,
.day-meta,
.facts article span,
.card-number,
.fine-print {
  font-family: var(--mono);
  letter-spacing: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}

.brand-mark {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 26px var(--orange);
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: 24px;
  color: var(--cream-mid);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a,
.site-footer a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--orange);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(243, 118, 31, 0.5);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--void);
}

.hero {
  position: relative;
  min-height: 820px;
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.98) 0%, rgba(8, 8, 8, 0.8) 38%, rgba(8, 8, 8, 0.24) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.82) 0%, rgba(8, 8, 8, 0) 26%, var(--void) 100%);
}

.hero-inner {
  min-height: 820px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 0 88px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow i {
  display: block;
  width: min(200px, 28vw);
  height: 1px;
  background: rgba(243, 118, 31, 0.6);
}

.kicker {
  margin-top: 54px;
  color: var(--cream-mid);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin-top: 20px;
  font-size: 168px;
}

h1 span {
  display: block;
}

.accent {
  color: var(--orange);
  text-shadow: 0 0 46px rgba(243, 118, 31, 0.32);
}

.hero-lede {
  max-width: 620px;
  margin-top: 28px;
  color: var(--cream);
  font-size: 24px;
  line-height: 1.35;
}

.hero-note {
  max-width: 580px;
  margin-top: 18px;
  color: var(--cream-mid);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--orange);
  color: var(--void);
}

.button.primary:hover {
  background: var(--cream);
  border-color: var(--cream);
}

.button.secondary {
  color: var(--cream);
  border-color: var(--whisper-strong);
  background: rgba(15, 15, 15, 0.58);
}

.button.secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.button.wide {
  width: 100%;
}

.facts {
  border-top: 1px solid var(--whisper);
  border-bottom: 1px solid var(--whisper);
  background: var(--surface);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.facts article {
  min-height: 168px;
  padding: 28px 24px;
  border-right: 1px solid var(--whisper);
}

.facts article:first-child {
  border-left: 1px solid var(--whisper);
}

.facts article span {
  display: block;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
}

.facts article strong {
  display: block;
  margin-top: 24px;
  color: var(--cream);
  font-size: 18px;
  line-height: 1.2;
}

.facts article p {
  margin-top: 8px;
  color: var(--cream-mid);
  font-size: 14px;
  line-height: 1.45;
}

.section {
  padding: 116px 0;
  border-bottom: 1px solid var(--whisper);
}

.split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

h2 {
  margin-top: 24px;
  font-size: 84px;
}

.copy-stack {
  display: grid;
  gap: 20px;
  color: var(--cream-mid);
  font-size: 19px;
  line-height: 1.65;
}

.copy-stack p strong {
  color: var(--cream);
}

.mechanism {
  background:
    linear-gradient(180deg, rgba(243, 118, 31, 0.07), rgba(8, 8, 8, 0) 36%),
    var(--void);
}

.section-head {
  max-width: 760px;
}

.section-head.compact {
  max-width: 860px;
}

.section-head p {
  margin-top: 20px;
  color: var(--cream-mid);
  font-size: 20px;
  line-height: 1.55;
}

.mechanism-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 18px;
  margin-top: 48px;
}

.feature-card,
.day-card,
.two-column article,
.quote-grid figure,
.checkout-panel,
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--whisper);
}

.feature-card {
  position: relative;
  min-height: 278px;
  padding: 34px;
}

.feature-card.large {
  grid-row: span 2;
  min-height: 574px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-color: rgba(243, 118, 31, 0.34);
  background:
    linear-gradient(180deg, rgba(243, 118, 31, 0.16), rgba(15, 15, 15, 0) 42%),
    var(--surface);
}

.feature-card::before,
.day-card::before,
.checkout-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: var(--orange);
  opacity: 0.82;
}

.card-number {
  display: block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

h3 {
  margin-top: 28px;
  font-size: 42px;
}

.feature-card p,
.day-card p {
  margin-top: 16px;
  color: var(--cream-mid);
}

.day-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 48px;
}

.day-card {
  position: relative;
  padding: 36px;
}

.day-card.orange {
  border-color: rgba(243, 118, 31, 0.38);
}

.day-meta {
  display: grid;
  gap: 6px;
  color: var(--cream-mid);
  font-size: 12px;
  text-transform: uppercase;
}

.day-meta span {
  color: var(--orange);
  font-weight: 700;
}

.day-meta strong {
  color: var(--cream);
  font-weight: 700;
}

.day-card ul,
.two-column ul,
.checkout-panel ul {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  color: var(--cream-mid);
}

.day-card li,
.two-column li,
.checkout-panel li {
  position: relative;
  padding-left: 18px;
}

.day-card li::before,
.two-column li::before,
.checkout-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  background: var(--orange);
}

.outcomes {
  background: var(--surface-2);
}

.outcome-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--whisper);
  border-left: 1px solid var(--whisper);
}

.outcome-list div {
  min-height: 118px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  border-right: 1px solid var(--whisper);
  border-bottom: 1px solid var(--whisper);
  background: rgba(8, 8, 8, 0.34);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.two-column article {
  padding: 34px;
}

.panel-label {
  display: block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.cta-ribbon {
  position: relative;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  padding: 52px 52px 52px 68px;
  background: var(--surface);
  border: 1px solid var(--whisper);
}

.ribbon-rail {
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--orange);
}

.proof {
  background: var(--void);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.quote-grid figure {
  padding: 30px;
}

blockquote {
  margin: 0;
  color: var(--cream);
  font-size: 22px;
  line-height: 1.35;
}

figcaption {
  margin-top: 20px;
  color: var(--cream-mid);
  font-size: 14px;
  line-height: 1.4;
}

.checkout-section {
  background:
    linear-gradient(180deg, rgba(243, 118, 31, 0.08), rgba(8, 8, 8, 0)),
    var(--surface-2);
}

.checkout {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 72px;
  align-items: center;
}

.checkout-panel {
  position: relative;
  padding: 34px;
}

.price {
  display: block;
  color: var(--orange);
  font-family: var(--display);
  font-size: 104px;
  line-height: 0.9;
}

.checkout-panel .button {
  margin-top: 28px;
}

.fine-print {
  margin-top: 16px;
  color: var(--cream-low);
  font-size: 12px;
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 42px;
}

.faq-list details {
  padding: 0 24px;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--cream);
  font-weight: 700;
}

.faq-list p {
  padding: 0 0 24px;
  color: var(--cream-mid);
}

.faq-closer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--whisper);
  background: var(--surface);
}

.faq-closer p {
  color: var(--cream);
  font-weight: 700;
}

.site-footer {
  padding: 34px 0 48px;
  color: var(--cream-low);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 760px;
  }

  h1 {
    font-size: 124px;
  }

  h2 {
    font-size: 68px;
  }

  .facts-grid,
  .split,
  .mechanism-grid,
  .day-grid,
  .two-column,
  .cta-ribbon,
  .quote-grid,
  .checkout {
    grid-template-columns: 1fr;
  }

  .feature-card.large {
    min-height: 360px;
  }

  .cta-ribbon,
  .checkout {
    gap: 36px;
  }

  .facts article:nth-child(odd) {
    border-left: 1px solid var(--whisper);
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .stage {
    width: min(100% - 28px, var(--stage));
  }

  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 10px;
    gap: 12px;
  }

  .brand {
    font-size: 11px;
  }

  .nav-cta {
    min-height: 36px;
    padding: 0 12px;
    font-size: 11px;
  }

  .hero,
  .hero-inner {
    min-height: 710px;
  }

  .hero-inner {
    padding: 112px 0 64px;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, 0.98), rgba(8, 8, 8, 0.76)),
      linear-gradient(180deg, rgba(8, 8, 8, 0.62), var(--void));
  }

  .kicker {
    margin-top: 42px;
  }

  h1 {
    font-size: 84px;
  }

  .hero-lede {
    font-size: 20px;
  }

  .hero-actions,
  .footer-inner {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .facts-grid {
    grid-template-columns: 1fr;
  }

  .facts article,
  .facts article:first-child,
  .facts article:nth-child(odd) {
    min-height: auto;
    border-left: 1px solid var(--whisper);
  }

  .section {
    padding: 78px 0;
  }

  h2 {
    font-size: 50px;
  }

  h3 {
    font-size: 34px;
  }

  .split,
  .day-grid,
  .checkout,
  .cta-ribbon {
    gap: 34px;
  }

  .copy-stack,
  .section-head p {
    font-size: 17px;
  }

  .feature-card,
  .day-card,
  .two-column article,
  .quote-grid figure,
  .checkout-panel {
    padding: 26px;
  }

  .feature-card.large {
    min-height: 300px;
  }

  .outcome-list {
    grid-template-columns: 1fr;
  }

  .outcome-list div {
    min-height: 96px;
  }

  .cta-ribbon {
    padding: 34px 26px 34px 38px;
  }

  .price {
    font-size: 86px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
