:root {
  --font-body: 'Inter', sans-serif;
  --font-title: 'Sora', sans-serif;
  --black: #111214;
  --black2: #1b1b1d;
  --charcoal: #242326;
  --charcoal-soft: #303037;
  --paper: #f5f0e7;
  --paper2: #ebe2d4;
  --paper3: #fffaf1;
  --ink: #fff8ec;
  --dark-ink: #161619;
  --muted-dark: #5c5851;
  --muted-light: #d8cfc1;
  --red: #a9212b;
  --red-bright: #d73b44;
  --blue: #2f5d7c;
  --brass: #c49a4a;
  --brass-light: #f0d08a;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(22, 22, 25, 0.14);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  --display: var(--font-title);
  --body: var(--font-body);
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--black);
  font-family: var(--body);
  line-height: 1.5;
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

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

.hero,
.section {
  padding-inline: clamp(18px, 4vw, 56px);
}

.hero {
  display: grid;
  align-content: start;
  gap: 22px;
  padding-top: 18px;
  padding-bottom: 42px;
  overflow: hidden;
  background-color: var(--black);
  background-image:
    linear-gradient(90deg, rgba(255, 248, 236, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 248, 236, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  border-bottom: 1px solid rgba(196, 154, 74, 0.32);
}

.hero-panel,
.section-heading,
.question-grid,
.receive-grid,
.social-proof-grid,
.offer-grid,
.price-card,
.faq-list,
.guarantee-card,
.structure-inner,
.opportunity-inner {
  width: min(560px, calc(100vw - 36px));
  margin-inline: auto;
}

.hero-panel {
  text-align: center;
}

.eyebrow,
.plan-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  color: var(--paper3);
  background: var(--red);
  border: 1px solid rgba(240, 208, 138, 0.36);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: 0;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 800px;
  margin-inline: auto;
  margin-top: 14px;
  font-size: clamp(1.78rem, 8.3vw, 4.15rem);
  line-height: 1;
}

h2 {
  font-size: clamp(1.48rem, 6.2vw, 3.15rem);
  line-height: 1.02;
}

h3 {
  font-size: clamp(1.08rem, 4vw, 1.55rem);
  line-height: 1.08;
}

.hero-text {
  max-width: 690px;
  margin-inline: auto;
  margin-top: 12px;
  color: var(--muted-light);
  font-size: clamp(0.98rem, 3.8vw, 1.16rem);
  font-weight: 650;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: grid;
  justify-items: center;
  gap: 10px;
  width: min(560px, 100%);
  margin-inline: auto;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: var(--red);
  border-color: rgba(240, 208, 138, 0.36);
  box-shadow: 0 16px 30px rgba(169, 33, 43, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--dark-ink);
  background: var(--brass-light);
}

.button-secondary {
  color: var(--dark-ink);
  background: transparent;
  border-color: rgba(169, 33, 43, 0.58);
  box-shadow: inset 0 0 0 1px rgba(22, 22, 25, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--dark-ink);
  background: var(--brass-light);
}

.hero .button-secondary {
  color: var(--ink);
  border-color: rgba(240, 208, 138, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 248, 236, 0.05);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.trust-list li {
  padding: 8px 10px;
  color: #ffffff;
  background: rgba(30, 41, 59, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 850;
}

.hero-product {
  min-height: 0;
  display: grid;
  place-items: center;
  width: 100%;
}

.hero-cover-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 560px);
  min-height: 260px;
}

.hero-mockup-image {
  width: min(94vw, 560px);
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.58));
}

.exam-structure-section {
  padding: 42px clamp(18px, 4vw, 56px);
  color: var(--dark-ink);
  background: var(--paper);
  border-bottom: 1px solid var(--dark-line);
}

.structure-inner {
  display: grid;
  gap: 20px;
}

.structure-copy {
  display: grid;
  gap: 12px;
}

.structure-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted-dark);
  font-size: 1.03rem;
  font-weight: 700;
}

.structure-cta {
  margin-top: 2px;
}

.structure-list,
.objection-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.structure-list li,
.objection-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 11px 12px;
  background: var(--paper3);
  border: 1px solid var(--dark-line);
  border-radius: 8px;
}

.objection-list li {
  grid-template-columns: 28px minmax(0, 1fr);
  min-height: 58px;
  padding: 14px;
  background: var(--paper3);
  border-color: rgba(22, 22, 25, 0.13);
  box-shadow: 0 12px 28px rgba(22, 22, 25, 0.06);
}

.objection-list svg {
  width: 24px;
  height: 24px;
  color: var(--red);
}

.structure-list span {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.objection-list span {
  color: var(--dark-ink);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.32;
}

.structure-list strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 118px;
  min-height: 30px;
  padding: 6px 9px;
  color: var(--dark-ink);
  background: var(--brass-light);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.opportunity-section {
  padding: 38px clamp(18px, 4vw, 56px);
  color: #ffffff;
  background: var(--black2);
  border-block: 1px solid rgba(196, 154, 74, 0.24);
}

.opportunity-inner {
  display: grid;
  gap: 12px;
  text-align: center;
}

.opportunity-inner h2 {
  color: var(--brass-light);
  font-size: clamp(2.6rem, 13vw, 5.2rem);
  text-shadow: 0 0 28px rgba(196, 154, 74, 0.18);
}

.opportunity-inner p:not(.eyebrow) {
  max-width: 760px;
  margin-inline: auto;
  color: var(--muted-light);
  font-size: clamp(1rem, 3.8vw, 1.18rem);
  font-weight: 800;
}

.section {
  padding-top: 48px;
  padding-bottom: 48px;
  color: var(--dark-ink);
  background: var(--paper);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.section-heading p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted-dark);
  font-size: 1.06rem;
  font-weight: 650;
}

.pain-section,
.preview-section,
.inside-section,
.proof-section,
.guarantee-section,
.faq-section {
  background: var(--paper);
}

.question-grid,
.receive-grid,
.social-proof-grid,
.offer-grid {
  display: grid;
  gap: 14px;
}

.question-grid article,
.receive-card,
.price-card,
.faq-item {
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(21, 33, 31, 0.08);
}

.question-grid article {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: var(--paper3);
  border: 1px solid var(--dark-line);
  border-left: 5px solid var(--red);
}

.preview-section {
  overflow: hidden;
  color: #ffffff;
  background-color: var(--black2);
  background-image:
    linear-gradient(135deg, rgba(196, 154, 74, 0.08) 25%, transparent 25%),
    linear-gradient(315deg, rgba(196, 154, 74, 0.08) 25%, transparent 25%);
  background-size: 28px 28px;
}

.preview-section .section-heading p:not(.eyebrow) {
  color: var(--muted-light);
}

.preview-carousel {
  width: min(100%, 1180px);
  margin-inline: auto;
  overflow-x: auto;
  padding: 4px 0 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.preview-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.preview-slide {
  flex: 0 0 clamp(300px, 40vw, 420px);
  min-height: 500px;
  padding: 20px;
  background: var(--paper3);
  border: 1px solid rgba(196, 154, 74, 0.24);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
  scroll-snap-align: start;
}

.preview-page {
  display: grid;
  place-items: center;
  margin: 0;
  padding: 10px;
  min-height: auto;
}

.preview-page img {
  width: 100%;
  border-radius: 6px;
}

.question-grid svg,
.check-list svg {
  width: 22px;
  height: 22px;
  color: var(--red);
}

.question-grid p,
.receive-card p,
.faq-answer {
  color: var(--muted-dark);
  font-weight: 650;
}

.closing-line {
  width: min(1120px, 100%);
  margin: 20px auto 0;
  color: var(--red);
  font-size: 1.05rem;
  font-weight: 900;
}

.inside-section {
  color: var(--ink);
  background: var(--charcoal);
  border-block: 1px solid rgba(196, 154, 74, 0.18);
}

.inside-section .section-heading p:not(.eyebrow) {
  color: var(--muted-light);
}

.receive-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 18px;
  color: var(--dark-ink);
  background: var(--paper3);
  border: 1px solid rgba(196, 154, 74, 0.24);
  box-shadow: 0 18px 42px rgba(21, 25, 15, 0.1);
}

.receive-media {
  display: grid;
  place-items: center;
  min-height: 250px;
  padding: 14px;
  background:
    linear-gradient(90deg, rgba(22, 22, 25, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(22, 22, 25, 0.05) 1px, transparent 1px),
    var(--paper2);
  background-size: 22px 22px;
  border: 1px solid rgba(22, 22, 25, 0.12);
  border-radius: 8px;
}

.receive-media > img {
  width: min(230px, 68vw);
  border-radius: 8px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.36));
}

.receive-copy {
  display: grid;
  gap: 10px;
}

.receive-card h3 {
  color: var(--dark-ink);
}

.receive-card p {
  color: var(--muted-dark);
}

.receive-card-featured {
  border: 3px solid var(--brass);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
}

.receive-points {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 2px 0 0;
  list-style: none;
}

.receive-points li {
  position: relative;
  padding-left: 18px;
  color: #2f3828;
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.38;
}

.receive-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  background: var(--brass);
  border-radius: 50%;
}

.receive-actions {
  display: grid;
  width: min(560px, 100%);
  margin: 18px auto 0;
}

.proof-section {
  background: var(--paper2);
}

.social-proof-grid {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: min(100%, 560px);
  overflow-x: auto;
  padding: 2px 0 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.social-proof-card {
  flex: 0 0 min(82vw, 360px);
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(21, 25, 15, 0.08);
  scroll-snap-align: start;
  overflow: hidden;
}

.social-proof-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  font-weight: 750;
}

.offer-section {
  color: #ffffff;
  background: var(--black);
  border-block: 1px solid rgba(196, 154, 74, 0.22);
}

.offer-section .section-heading p:not(.eyebrow) {
  color: var(--muted-light);
}

.price-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 22px;
  color: var(--dark-ink);
  background: var(--paper3);
  border: 1px solid var(--dark-line);
  box-shadow: 0 24px 58px rgba(21, 25, 15, 0.18);
}

.price-card-featured {
  border: 3px solid var(--brass);
}

.price-card-simple {
  border-color: var(--dark-line);
  box-shadow: 0 18px 42px rgba(21, 25, 15, 0.12);
}

.package-summary {
  color: var(--muted-dark);
  font-weight: 700;
}

.ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 6px 9px;
  color: #ffffff;
  background: var(--red);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.single-cover {
  display: grid;
  place-items: center;
  min-height: 310px;
  margin: -2px -2px 4px;
  padding: 10px;
  background:
    linear-gradient(90deg, rgba(22, 22, 25, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(22, 22, 25, 0.055) 1px, transparent 1px),
    var(--paper2);
  background-size: 22px 22px;
  border: 1px solid rgba(21, 25, 15, 0.1);
  border-radius: 8px;
}

.single-cover img {
  width: min(100%, 430px);
  border-radius: 8px;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
}

.complete-covers {
  background:
    linear-gradient(90deg, rgba(47, 93, 124, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(47, 93, 124, 0.08) 1px, transparent 1px),
    var(--paper2);
  background-size: 22px 22px;
}

.complete-covers img {
  width: min(100%, 420px);
}

.price-box {
  display: grid;
  gap: 4px;
  padding: 14px;
  background: rgba(196, 154, 74, 0.16);
  border: 1px solid rgba(196, 154, 74, 0.34);
  border-radius: 8px;
}

.price-box > span {
  width: fit-content;
  color: var(--muted-dark);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(2.7rem, 12vw, 3.8rem);
  line-height: 1;
}

.not-included {
  color: var(--muted-dark);
}

.not-included svg {
  color: var(--red);
}

.bonus-box {
  display: grid;
  gap: 10px;
  padding: 12px;
  color: var(--dark-ink);
  background: rgba(196, 154, 74, 0.22);
  border: 1px solid rgba(196, 154, 74, 0.46);
  border-radius: 8px;
  font-weight: 950;
}

.guarantee-section {
  background: var(--paper);
}

.guarantee-card {
  display: grid;
  gap: 16px;
  align-items: center;
  padding: 24px 18px;
  color: #ffffff;
  text-align: center;
  background: var(--charcoal);
  border: 1px solid rgba(196, 154, 74, 0.24);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(21, 25, 15, 0.2);
}

.guarantee-card img {
  width: min(190px, 54vw);
  justify-self: center;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.28));
}

.guarantee-card h2 {
  max-width: 720px;
  margin-inline: auto;
  color: var(--ink);
  font-size: clamp(1.55rem, 6vw, 2.65rem);
  line-height: 1.1;
}

.guarantee-card h2 span {
  color: var(--red-bright);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.guarantee-card p {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--muted-light);
  font-size: 1rem;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 880px;
}

.faq-section {
  color: var(--ink);
  background: var(--black2);
  border-top: 1px solid rgba(196, 154, 74, 0.18);
}

.faq-section .section-heading p:not(.eyebrow) {
  color: var(--muted-light);
}

.faq-item {
  background: var(--paper3);
  border: 1px solid var(--dark-line);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 58px;
  padding: 16px;
  color: var(--dark-ink);
  background: transparent;
  border: 0;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  color: var(--red);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 160ms ease;
}

.faq-answer {
  display: none;
  padding: 0 16px 18px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-question span {
  transform: rotate(45deg);
}

.site-footer {
  padding: 24px 18px;
  color: var(--muted-light);
  background: #0d0d0f;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
}

@media (min-width: 700px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .structure-inner {
    grid-template-columns: 1fr;
  }

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

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

  .social-proof-grid {
    grid-template-columns: 1fr;
  }

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

  .guarantee-card {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 980px) {
  .hero-panel,
  .section-heading,
  .question-grid,
  .receive-grid,
  .social-proof-grid,
  .offer-grid,
  .price-card,
  .faq-list,
  .guarantee-card,
  .structure-inner,
  .opportunity-inner {
    width: min(560px, calc(100vw - 112px));
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 22px;
    padding-bottom: 36px;
  }

  .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  h1 {
    max-width: 520px;
    font-size: 2.35rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  h3 {
    font-size: 1.22rem;
  }

  .hero-text,
  .section-heading p:not(.eyebrow),
  .opportunity-inner p:not(.eyebrow),
  .structure-copy p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .button {
    min-height: 52px;
    padding: 14px 18px;
    font-size: 0.86rem;
  }

  .hero-panel {
    grid-column: auto;
    grid-row: auto;
    width: min(560px, 100%);
    margin-inline: auto;
  }

  .hero-product {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-cover-stage {
    width: min(100%, 560px);
    min-height: 280px;
    padding: 0;
  }

  .hero-mockup-image {
    width: min(100%, 560px);
  }

  .exam-structure-section,
  .opportunity-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .opportunity-inner h2 {
    font-size: clamp(2.25rem, 5vw, 3.8rem);
  }

  .question-grid,
  .offer-grid,
  .receive-grid,
  .social-proof-grid {
    gap: 14px;
  }

  .question-grid article,
  .price-card,
  .receive-card,
  .guarantee-card {
    padding: 16px;
  }

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

  .receive-card-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .receive-media {
    min-height: 240px;
    padding: 12px;
  }

  .receive-media > img {
    width: min(230px, 68vw);
  }

  .social-proof-card {
    padding: 10px;
  }

  .preview-carousel {
    width: min(100%, 560px);
  }

  .preview-slide {
    flex-basis: 420px;
  }

  .single-cover {
    min-height: 310px;
    padding: 10px;
  }

  .single-cover img {
    width: min(100%, 430px);
  }

  .complete-covers img {
    width: min(100%, 480px);
  }

  .price {
    font-size: 3rem;
  }
}

@media (max-width: 430px) {
  .preview-carousel {
    margin-inline: -18px;
    width: calc(100% + 36px);
  }

  .preview-track {
    gap: 12px;
  }

  .preview-slide {
    flex-basis: min(88vw, 360px);
    min-height: auto;
    padding: 10px;
  }

  .structure-list li {
    grid-template-columns: minmax(0, 1fr) 96px;
    gap: 8px;
    padding: 10px;
  }

  .structure-list span {
    font-size: 0.82rem;
  }

  .structure-list strong {
    width: 96px;
    padding-inline: 6px;
    font-size: 0.64rem;
  }

  .complete-covers img {
    width: min(100%, 430px);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
