:root {
  --ink: #121722;
  --muted: #5a6475;
  --line: #dfe4ea;
  --paper: #fbfbf8;
  --white: #ffffff;
  --red: #c82e28;
  --red-dark: #9f241f;
  --gold: #f2b933;
  --navy: #111827;
  --green: #1f8a5b;
  --shadow: 0 18px 50px rgba(18, 23, 34, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.page-shell {
  overflow: hidden;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(18, 23, 34, 0.08);
  background: var(--white);
}

.topbar__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand__wordmark {
  width: 210px;
  height: auto;
}

.topbar__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.92rem;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.28em;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(200, 46, 40, 0.22);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
  white-space: nowrap;
}

.button:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(200, 46, 40, 0.28);
}

.button--dark {
  background: var(--navy);
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.18);
}

.button--dark:hover {
  background: #000000;
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.22);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 74px));
  display: grid;
  align-items: center;
  padding: 84px 0 92px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.86) 0%, rgba(5, 8, 13, 0.7) 42%, rgba(5, 8, 13, 0.22) 100%),
    url("assets/silent-closer-hero.png");
  background-color: var(--navy);
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 13, 0) 0%, rgba(5, 8, 13, 0.42) 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--navy));
}

.hero__content {
  position: relative;
  width: 100%;
  max-width: 880px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(18, 23, 34, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow__dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
}

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

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 7vw, 6.3rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero__lede {
  max-width: 760px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(18, 23, 34, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
}

.hero__fineprint {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
}

.countdown {
  width: min(720px, 100%);
  margin-top: 36px;
  padding: 18px;
  border: 1px solid rgba(18, 23, 34, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.countdown__label {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.countdown__unit {
  min-height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 23, 34, 0.09);
  border-radius: var(--radius);
  background: var(--white);
}

.countdown__unit strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.45rem, 4vw, 2.35rem);
  line-height: 1;
}

.countdown__unit span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: 92px 0;
}

.section--white {
  background: var(--white);
}

.section--ink {
  background: var(--navy);
  color: var(--white);
}

.section--ink .muted,
.section--ink .section__intro {
  color: rgba(255, 255, 255, 0.72);
}

.section__header {
  max-width: 760px;
  margin-bottom: 38px;
}

.section__intro {
  color: var(--muted);
  font-size: 1.1rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 48px;
  align-items: center;
}

.proof-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.formula {
  display: grid;
  gap: 12px;
}

.formula__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.formula__box {
  min-height: 62px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(18, 23, 34, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.formula__result {
  border-color: rgba(31, 138, 91, 0.35);
  background: rgba(31, 138, 91, 0.08);
  color: var(--green);
}

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

.card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(18, 23, 34, 0.06);
}

.card__number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.card p,
.bonus p,
.faq p {
  color: var(--muted);
}

.secret-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.secret {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.secret__tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.bonus {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.bonus--highlight {
  border-color: rgba(242, 185, 51, 0.65);
  background: #fff8df;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--green);
}

.offer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
}

.offer p {
  color: rgba(255, 255, 255, 0.75);
}

.offer__price {
  display: grid;
  place-items: center;
  min-width: 160px;
  min-height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  text-align: center;
}

.offer__price strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
}

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

.faq {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.footer {
  padding: 34px 0;
  border-top: 1px solid rgba(18, 23, 34, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.thank-you {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 56px 0;
  background: var(--paper);
}

.thank-you__panel {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.thank-hero {
  position: relative;
  padding: 92px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.9) 0%, rgba(5, 8, 13, 0.72) 48%, rgba(5, 8, 13, 0.28) 100%),
    url("assets/silent-closer-hero.png");
  background-color: var(--navy);
  background-position: center;
  background-size: cover;
}

.thank-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--navy));
}

.thank-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
}

.thank-hero__copy {
  max-width: 760px;
}

.thank-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.receipt-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.receipt-card__mark {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  object-fit: contain;
}

.receipt-card__label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.receipt-card h2 {
  font-size: 2rem;
}

.receipt-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.receipt-card dl div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.receipt-card dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.receipt-card dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.next-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.next-step {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(18, 23, 34, 0.06);
}

.next-step__number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
}

.next-step p {
  color: var(--muted);
}

.delivery-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.delivery {
  min-height: 160px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.text-link {
  color: var(--red);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 900px) {
  .topbar__inner,
  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar__meta {
    width: 100%;
    justify-content: space-between;
  }

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

  .cards,
  .secret-list,
  .faq-grid,
  .next-step-grid,
  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .thank-hero__grid {
    grid-template-columns: 1fr;
  }

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

  .formula__row span {
    display: none;
  }
}

@media (max-width: 620px) {
  .container {
    width: calc(100% - 28px);
    max-width: 1120px;
  }

  .brand__wordmark {
    display: none;
  }

  .topbar__meta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    font-size: 0.82rem;
  }

  .topbar .button {
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .eyebrow {
    display: inline-grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    width: fit-content;
    max-width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 52px 0 66px;
    background:
      linear-gradient(180deg, rgba(5, 8, 13, 0.86) 0%, rgba(5, 8, 13, 0.7) 52%, rgba(5, 8, 13, 0.9) 100%),
      url("assets/silent-closer-hero.png");
    background-position: 57% center;
    background-size: cover;
  }

  .thank-hero {
    padding: 54px 0 64px;
    background:
      linear-gradient(180deg, rgba(5, 8, 13, 0.88) 0%, rgba(5, 8, 13, 0.76) 48%, rgba(5, 8, 13, 0.9) 100%),
      url("assets/silent-closer-hero.png");
    background-position: 57% center;
    background-size: cover;
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 4rem);
  }

  .hero__lede,
  .hero__fineprint,
  .hero__actions,
  .countdown {
    max-width: 340px;
  }

  .hero__actions,
  .thank-hero__actions,
  .offer {
    align-items: stretch;
  }

  .button,
  .price-pill {
    width: 100%;
  }

  .countdown__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 68px 0;
  }

  .offer,
  .delivery-panel,
  .receipt-card,
  .thank-you__panel {
    padding: 24px;
  }
}
