:root {
  --bg: #08090b;
  --panel: #111419;
  --panel-2: #181c22;
  --steel: #9aa5ad;
  --text: #f5f2ec;
  --muted: #b9b2aa;
  --red: #d91822;
  --red-dark: #8f0f17;
  --gold: #d5a642;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 8%, rgba(217, 24, 34, 0.18), transparent 28rem),
    linear-gradient(180deg, #08090b 0%, #111419 42%, #08090b 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 78%);
}

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

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

.container {
  width: min(1140px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(20px, 4vw, 58px);
  background: rgba(8, 9, 11, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-mark {
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(217, 24, 34, 0.9);
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

nav a:hover {
  color: var(--text);
}

.section {
  padding: clamp(72px, 10vw, 126px) 0;
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 35%),
    linear-gradient(180deg, rgba(8, 9, 11, 0.84), rgba(8, 9, 11, 0.96));
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 64px;
}

.hero-media,
.hero-overlay,
.final-cta img,
.final-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 12%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.94) 0%, rgba(8, 9, 11, 0.48) 38%, rgba(8, 9, 11, 0.04) 78%),
    linear-gradient(180deg, rgba(8, 9, 11, 0), rgba(8, 9, 11, 0.78));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-left: clamp(20px, 7vw, 92px);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.74);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow.red {
  color: var(--red);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 870px;
  margin-bottom: 22px;
  font-size: clamp(46px, 9vw, 118px);
  line-height: 0.92;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.96;
  font-weight: 900;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
}

.mission-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 17px 24px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  box-shadow: 0 18px 50px rgba(217, 24, 34, 0.32);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

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

.mission-button.full {
  width: 100%;
  margin-top: 18px;
}

.mission-button.secondary {
  background: linear-gradient(135deg, #2a3038, #111419);
  box-shadow: none;
}

.mission-button.free-cta {
  background: linear-gradient(135deg, #f1353f, #b30f1b 58%, #d5a642);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    0 18px 50px rgba(217, 24, 34, 0.38),
    0 0 0 1px rgba(213, 166, 66, 0.24) inset;
}

.two-column,
.mission-grid,
.author-grid,
.reviews-shell {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.signal-list {
  display: grid;
  gap: 12px;
}

.signal-list p,
.alert-line,
.day-card,
.tariff-card,
.review-placeholder,
.outcome-grid div {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
}

.signal-list p {
  position: relative;
  margin: 0;
  padding: 18px 18px 18px 48px;
  color: #e9e3dc;
  font-weight: 650;
}

.signal-list p::before {
  position: absolute;
  left: 18px;
  top: 18px;
  content: "🎯";
}

.alert-line {
  margin-top: 34px;
  padding: 24px;
  border-left: 4px solid var(--red);
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
}

.alert-line strong {
  color: var(--text);
}

.mission-block {
  background:
    linear-gradient(180deg, rgba(213, 166, 66, 0.08), transparent 52%),
    #0d0f13;
}

.image-panel,
.author-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel img,
.author-photo img {
  width: 100%;
  height: 680px;
  object-fit: cover;
}

.image-panel img {
  object-position: 50% 30%;
}

.copy-panel {
  padding-top: 46px;
}

.large,
.statement {
  color: var(--muted);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 650;
}

.check-list,
.bio-list,
.day-card ul,
.tariff-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0;
}

.check-list li,
.bio-list li,
.tariff-card li {
  position: relative;
  padding-left: 28px;
}

.tariff-card li.crossed {
  color: rgba(185, 178, 170, 0.72);
  text-decoration: line-through;
  text-decoration-color: rgba(0, 0, 0, 0.9);
  text-decoration-thickness: 1.5px;
}

.check-list li {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
}

.check-list li::before,
.bio-list li::before,
.tariff-card li::before {
  position: absolute;
  left: 0;
  color: var(--red);
  content: "✓";
  font-weight: 900;
}

.tariff-card li.crossed::before {
  content: "×";
  color: rgba(0, 0, 0, 0.95);
  font-size: 1.15em;
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.day-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.day-card,
.tariff-card {
  padding: clamp(22px, 3vw, 34px);
  border-radius: 8px;
}

.day-card {
  display: flex;
  min-height: 500px;
  flex-direction: column;
}

.day-number {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  background: rgba(217, 24, 34, 0.16);
  border: 1px solid rgba(217, 24, 34, 0.48);
  color: #ff7278;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.day-card ul {
  display: grid;
  gap: 13px;
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 600;
}

.day-card li {
  position: relative;
  padding-left: 20px;
}

.day-card li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "•";
}

.text-button {
  width: fit-content;
  margin-top: auto;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.program-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.outcomes {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(213, 166, 66, 0.12), transparent 34%),
    linear-gradient(180deg, #0d0f13, #08090b);
  color: var(--text);
}

.outcomes::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, #0d0f13 0%, rgba(13, 15, 19, 0.92) 38%, rgba(13, 15, 19, 0.48) 100%),
    linear-gradient(180deg, rgba(13, 15, 19, 0.04), #08090b 92%);
  pointer-events: none;
}

.outcomes .container {
  position: relative;
  z-index: 1;
}

.outcomes-bg {
  position: absolute;
  inset: 0;
  opacity: 0.7;
}

.outcomes-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 32%;
}

.outcomes .eyebrow {
  color: var(--gold);
}

.outcomes-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.outcomes-head .section-heading {
  margin-bottom: 0;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.outcome-grid div {
  min-height: 190px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  color: var(--text);
  font-size: 20px;
  font-weight: 850;
}

.outcome-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-size: 13px;
}

.author-copy {
  align-self: center;
}

.bio-list {
  display: grid;
  gap: 13px;
  color: var(--muted);
  font-weight: 650;
}

blockquote {
  margin: 32px 0 0;
  padding: 26px;
  border-left: 4px solid var(--gold);
  background: rgba(213, 166, 66, 0.08);
  color: var(--text);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.12;
}

.author-photo img {
  height: 760px;
  object-position: 50% 30%;
}

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tariff-card {
  background: #101319;
}

.tariff-card.featured {
  border-color: rgba(213, 166, 66, 0.62);
  box-shadow: var(--shadow);
}

.price {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: clamp(32px, 4.6vw, 58px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.price.muted {
  color: var(--steel);
  font-size: 18px;
}

.free-label {
  width: fit-content;
  margin-bottom: 18px;
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(217, 24, 34, 0.28);
  color: #fff;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.tariff-card ul {
  display: grid;
  gap: 11px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.reviews-shell {
  align-items: center;
}

.reviews-slider {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 18px;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.review-slide {
  flex: 0 0 min(74vw, 470px);
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0.48;
  transform: scale(0.94);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.review-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.review-slide img {
  width: 100%;
  height: min(640px, 74vh);
  object-fit: contain;
  background: #eef2e8;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}

.review-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.review-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.review-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(255, 255, 255, 0.26);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.review-dot.is-active {
  width: 28px;
  background: var(--gold);
  border-radius: 999px;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 76vh;
  align-items: center;
  overflow: hidden;
  padding: 96px 0;
}

.final-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 20%;
}

.final-overlay {
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.95), rgba(8, 9, 11, 0.58)),
    linear-gradient(180deg, transparent, rgba(8, 9, 11, 0.86));
}

.final-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.final-content h2 {
  margin-bottom: 34px;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-media img {
    object-position: 50% 10%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 9, 11, 0.08), rgba(8, 9, 11, 0.9) 76%),
      linear-gradient(90deg, rgba(8, 9, 11, 0.7), rgba(8, 9, 11, 0.04));
  }

  .hero-content {
    align-self: end;
    margin-left: auto;
  }

  .two-column,
  .mission-grid,
  .author-grid,
  .reviews-shell,
  .day-grid,
  .outcome-grid,
  .tariff-grid {
    grid-template-columns: 1fr;
  }

  .review-slide {
    flex-basis: min(82vw, 470px);
  }

  .copy-panel {
    padding-top: 0;
  }

  .image-panel img,
  .author-photo img {
    height: 560px;
  }

  .author-photo img {
    object-position: 50% 18%;
  }

  .day-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .site-header {
    padding: 14px;
  }

  .brand {
    font-size: 11px;
  }

  .hero {
    padding: 92px 0 40px;
  }

  .hero-media img {
    object-position: 50% 8%;
  }

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

  .mission-button {
    width: 100%;
    min-height: 58px;
    padding-inline: 16px;
  }

  .section {
    padding: 66px 0;
  }

  .signal-list p {
    padding-right: 14px;
  }

  .image-panel img,
  .author-photo img {
    height: 470px;
  }

  .author-photo img {
    object-position: 50% 12%;
  }

  .outcome-grid div {
    min-height: 150px;
  }

  .tariff-card li {
    font-size: 14px;
  }

  .review-slide {
    flex-basis: 86vw;
  }

  .review-slide img {
    height: min(560px, 68vh);
  }
}
