:root {
  --bg: #070404;
  --bg-soft: #0c0606;
  --panel: #130909;
  --panel-2: #190b0b;
  --red: #ef2028;
  --red-dark: #b50f16;
  --red-soft: #7f1014;
  --cream: #fff8ef;
  --muted: #c7a89f;
  --muted-2: #9b8680;
  --line: rgba(239, 32, 40, .22);
  --shadow-red: 0 0 42px rgba(239, 32, 40, .17);
  --radius: 22px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 50% 14%, rgba(112, 18, 18, .18), transparent 28%),
    linear-gradient(180deg, #090505 0%, var(--bg) 100%);
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button, a {
  -webkit-tap-highlight-color: transparent;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 4, 4, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(239, 32, 40, .2);
}

.nav {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 17px;
  white-space: nowrap;
}

.brand strong {
  font-weight: 800;
}

.brand em {
  font-style: normal;
  color: var(--red);
}

.brand-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--sans);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted-2);
}

.nav-links a {
  transition: color .2s ease;
}

.nav-links a:hover {
  color: var(--cream);
}

.nav > .btn-small {
  justify-self: end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-small {
  min-height: 40px;
  padding: 0 17px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
}

.btn-primary {
  background: linear-gradient(180deg, #f52730, #df121a);
  color: white;
  box-shadow: 0 12px 30px rgba(239, 32, 40, .24);
}

.btn-primary:hover {
  box-shadow: 0 16px 36px rgba(239, 32, 40, .34);
}

.btn-outline {
  border-color: rgba(255,255,255,.16);
  color: var(--cream);
  background: rgba(255,255,255,.03);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
}

.hero {
  position: relative;
  min-height: 980px;
  padding: 92px 0 84px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 14%, rgba(173, 24, 24, .22), transparent 32%),
    linear-gradient(180deg, rgba(33,7,7,.52), rgba(7,4,4,.28) 54%, #070404 100%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  left: 50%;
  top: 120px;
  width: 780px;
  height: 560px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(189, 17, 22, .13);
  filter: blur(120px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow {
  border: 1px solid rgba(239, 32, 40, .7);
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(239, 32, 40, .04);
}

.hero h1 {
  width: min(820px, 100%);
  margin: 34px auto 20px;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 800;
}

.hero h1 span {
  color: var(--red);
}

.hero-copy {
  width: min(600px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-copy strong {
  color: white;
}

.video-card {
  width: min(820px, 100%);
  margin: 42px auto 0;
  padding: 3px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--red), rgba(239,32,40,.1), var(--red));
  box-shadow: 0 0 50px rgba(239, 32, 40, .22);
}

.video-cover {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 17px;
  background: #111;
}

.video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.08) 55%, rgba(0,0,0,.6));
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 86px;
  height: 86px;
  border: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(239, 32, 40, .92);
  box-shadow: 0 10px 30px rgba(0,0,0,.3), 0 0 35px rgba(239,32,40,.25);
  cursor: pointer;
}

.play-button span {
  position: absolute;
  left: 35px;
  top: 27px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 25px solid #fff;
}

.video-controls {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 12px;
}

.progress {
  height: 3px;
  flex: 1;
  background: rgba(255,255,255,.35);
  overflow: hidden;
}

.progress i {
  display: block;
  width: 8%;
  height: 100%;
  background: white;
}

.play-hint {
  margin-top: 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
}

.btn-hero {
  margin-top: 26px;
  min-width: min(510px, 100%);
  min-height: 66px;
  flex-direction: column;
  gap: 0;
  font-size: 15px;
  border-radius: 13px;
}

.btn-hero small {
  font-size: 11px;
  font-weight: 500;
  opacity: .78;
}

.trust-row {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  color: var(--muted-2);
  font-size: 12px;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 730px;
}

.section-heading.centered {
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.savings h2,
.author-copy h2,
.final-cta h2 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(37px, 4.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.section-heading h2 em {
  color: var(--red);
  font-style: normal;
}

.section-heading p,
.split-copy p,
.savings p,
.author-copy p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 16px;
}

.problem-section {
  border-top: 1px solid rgba(239,32,40,.1);
  background: linear-gradient(180deg, #080404, #0c0606);
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card,
.testimonial {
  position: relative;
  min-height: 240px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
}

.feature-card::after {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: .7;
}

.card-number {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.feature-card h3 {
  margin-top: 45px;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.1;
}

.feature-card p,
.testimonial p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.split-section {
  background: var(--bg);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 80px;
}

.image-frame {
  position: relative;
  border-radius: 28px;
  padding: 2px;
  background: linear-gradient(145deg, rgba(239,32,40,.9), rgba(255,255,255,.05));
  box-shadow: var(--shadow-red);
}

.image-frame img {
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 26px;
}

.split-copy p {
  max-width: 590px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin-top: 30px;
  list-style: none;
  color: #dfcbc4;
}

.check-list li::before {
  content: "✓";
  margin-right: 12px;
  color: var(--red);
  font-weight: 800;
}

.text-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--red);
  font-weight: 800;
}

.contents-section {
  background:
    radial-gradient(circle at 50% 50%, rgba(116,12,16,.12), transparent 36%),
    #0a0505;
}

.chapter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.chapter {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 25px 26px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  background: rgba(255,255,255,.02);
}

.chapter b {
  color: var(--red);
  font-size: 13px;
  letter-spacing: .08em;
}

.chapter span {
  color: var(--muted);
  font-size: 13px;
}

.chapter strong {
  display: block;
  margin-bottom: 3px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 21px;
}

.savings {
  border-block: 1px solid rgba(239,32,40,.1);
  background: #090404;
}

.savings-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 80px;
  align-items: center;
}

.saving-card {
  overflow: hidden;
  border: 1px solid rgba(239,32,40,.25);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(239,32,40,.05), rgba(255,255,255,.015));
}

.saving-card > div {
  padding: 27px 30px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.saving-card > div:last-child {
  border-bottom: 0;
}

.saving-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.saving-card strong {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--cream);
}

.author {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.author-photo {
  position: relative;
}

.author-photo img {
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 24px;
  filter: saturate(.8) contrast(1.04);
}

.photo-tag {
  position: absolute;
  right: -20px;
  bottom: 34px;
  padding: 13px 17px;
  border: 1px solid rgba(239,32,40,.4);
  border-radius: 12px;
  background: rgba(8,4,4,.92);
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
}

.author-copy p + p {
  margin-top: 14px;
}

.signature {
  margin-top: 28px;
  color: var(--red);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
}

.testimonials {
  background: #0b0505;
}

.testimonial {
  min-height: 230px;
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--red);
  letter-spacing: .12em;
}

.testimonial p {
  flex: 1;
  margin-top: 22px;
  font-size: 15px;
}

.testimonial strong {
  margin-top: 20px;
  font-size: 13px;
}

.pricing-section {
  background:
    radial-gradient(circle at 50% 54%, rgba(165,17,23,.12), transparent 34%),
    #070404;
}

.pricing-grid {
  width: min(840px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  gap: 22px;
}

.price-card {
  position: relative;
  padding: 38px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.018));
}

.price-card.featured {
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}

.popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  white-space: nowrap;
}

.plan-label {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.price-card h3 {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 33px;
}

.price-old {
  margin-top: 22px;
  color: var(--muted-2);
  font-size: 13px;
  text-decoration: line-through;
}

.price {
  margin-top: 2px;
  font-family: var(--serif);
  font-size: 62px;
  line-height: 1;
}

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

.price-note {
  margin-top: 6px;
  color: var(--muted-2);
  font-size: 12px;
}

.price-card ul {
  margin: 30px 0;
  display: grid;
  gap: 12px;
  list-style: none;
  color: #dcc9c2;
  font-size: 14px;
}

.price-card li::first-letter {
  color: var(--red);
}

.price-card .btn {
  width: 100%;
}

.guarantee {
  width: min(650px, 100%);
  margin: 34px auto 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  background: rgba(255,255,255,.02);
}

.guarantee-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 800;
}

.guarantee p {
  margin-top: 2px;
  color: var(--muted-2);
  font-size: 12px;
}

.faq-section {
  background: #0b0505;
}

.faq-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}

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

.faq-item {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 15px;
  background: rgba(255,255,255,.018);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: none;
  color: var(--cream);
  text-align: left;
  font: 600 15px var(--sans);
  cursor: pointer;
}

.faq-item button b {
  color: var(--red);
  font-size: 24px;
  font-weight: 400;
  transition: transform .2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 14px;
}

.faq-item.open .faq-answer {
  max-height: 180px;
}

.faq-item.open button b {
  transform: rotate(45deg);
}

.final-cta {
  padding: 120px 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(186,18,24,.25), transparent 32%),
    linear-gradient(180deg, #090404, #110606);
  text-align: center;
  border-top: 1px solid rgba(239,32,40,.12);
}

.final-cta-inner {
  max-width: 820px;
}

.final-cta p {
  margin: 20px auto 30px;
  max-width: 590px;
  color: var(--muted);
}

footer {
  padding: 34px 0;
  background: #050303;
  border-top: 1px solid rgba(255,255,255,.05);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-content p {
  color: var(--muted-2);
  font-size: 11px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
}

.video-modal.active {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.84);
  backdrop-filter: blur(7px);
}

.modal-box {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  aspect-ratio: 16/9;
  border: 1px solid var(--red);
  border-radius: 20px;
  background: #100808;
  overflow: hidden;
  box-shadow: 0 0 70px rgba(239,32,40,.24);
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.45);
  color: white;
  font-size: 26px;
  cursor: pointer;
}

.modal-video-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 16px;
  color: var(--muted);
}

.modal-video-placeholder span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 26px;
}

.modal-video-placeholder p {
  width: min(460px, calc(100% - 40px));
  text-align: center;
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto auto;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    background: #0d0707;
    box-shadow: 0 20px 60px rgba(0,0,0,.45);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 12px;
  }

  .menu-toggle {
    display: grid;
    gap: 4px;
    width: 36px;
    justify-items: center;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: white;
  }

  .split,
  .savings-grid,
  .author,
  .faq-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .image-frame {
    max-width: 620px;
    margin: 0 auto;
  }

  .author-photo {
    max-width: 540px;
  }
}

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

  .topbar .btn-small {
    display: none;
  }

  .nav {
    grid-template-columns: 1fr auto;
    min-height: 64px;
  }

  .brand {
    font-size: 14px;
  }

  .brand-icon {
    width: 31px;
    height: 31px;
  }

  .hero {
    min-height: 0;
    padding: 64px 0 70px;
  }

  .hero h1 {
    margin-top: 25px;
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-copy {
    font-size: 15px;
  }

  .video-card {
    margin-top: 32px;
  }

  .play-button {
    width: 64px;
    height: 64px;
  }

  .play-button span {
    left: 27px;
    top: 20px;
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 19px;
  }

  .video-controls {
    left: 12px;
    right: 12px;
    bottom: 8px;
    gap: 8px;
    font-size: 9px;
  }

  .trust-row {
    gap: 10px 18px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .split-copy h2,
  .savings h2,
  .author-copy h2,
  .final-cta h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .chapter-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .chapter {
    padding: 21px;
  }

  .photo-tag {
    right: 12px;
  }

  .price-card {
    padding: 30px 24px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
