:root {
  --black: #05070a;
  --ink: #0b111d;
  --ink-2: #101927;
  --paper: #f4efe1;
  --muted: #c8bd9f;
  --yellow: #ffd523;
  --yellow-2: #d49b0b;
  --red: #b7182a;
  --red-2: #7d101d;
  --blue: #12366f;
  --line: rgba(255, 213, 35, .62);
  --shadow: 0 28px 70px rgba(0, 0, 0, .48);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--paper);
  background:
    radial-gradient(circle at 75% 22%, rgba(255, 213, 35, .1), transparent 24rem),
    linear-gradient(180deg, #05070a 0%, #0b111d 42%, #05070a 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .45;
}

main {
  position: relative;
  z-index: 1;
}

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

a {
  color: inherit;
}

.hero {
  min-height: min(100svh, 920px);
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 4.25rem);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 4rem) 0;
}

.hero__media {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 3% -6% -3% 7%;
  background: var(--yellow);
  filter: blur(28px);
  opacity: .36;
}

.hero__cover {
  position: relative;
  width: auto;
  height: auto;
  max-width: min(100%, 392px);
  max-height: min(72svh, 650px);
  margin-inline: auto;
  border: 6px solid var(--yellow-2);
  object-fit: contain;
  box-shadow: var(--shadow);
}

.hero__copy {
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 1rem;
  padding: .45rem .75rem;
  border: 2px solid var(--yellow);
  background: rgba(0, 0, 0, .7);
  color: var(--paper);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Impact, "Arial Black", Arial, sans-serif;
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.15rem;
  color: var(--paper);
  font-size: clamp(3.45rem, 7vw, 6rem);
  text-shadow: 8px 10px 0 #000;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.55rem, 6vw, 5.3rem);
  text-shadow: 5px 7px 0 #000;
}

h3 {
  margin-bottom: .55rem;
  font-size: 1.15rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.lead {
  max-width: 58ch;
  margin-bottom: 1.35rem;
  color: #e9dec2;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.55;
}

.buy-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  max-width: 650px;
  margin: 1.25rem 0;
  padding: 1rem;
  border: 3px solid var(--yellow);
  background: rgba(0, 0, 0, .72);
  box-shadow: var(--shadow);
}

.price {
  display: block;
  color: var(--yellow);
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: .9;
  text-shadow: 4px 5px 0 #000;
}

.format-line {
  display: block;
  margin-top: .35rem;
  color: var(--paper);
  font-weight: 800;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: .95rem 1.25rem;
  border: 0;
  color: #05070a;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 7px 8px 0 #000;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 10px 11px 0 #000;
}

.button--primary {
  background: var(--yellow);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #ffe76b;
}

.button--secondary {
  width: fit-content;
  background: var(--paper);
}

.trust-list {
  display: grid;
  gap: .72rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  gap: .7rem;
  color: #e7dcc0;
  font-weight: 800;
  line-height: 1.35;
}

.trust-list li::before {
  content: "";
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  margin-top: .18rem;
  background: var(--red);
  border: 3px solid var(--yellow);
  box-shadow: 3px 3px 0 #000;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  border-top: 8px solid var(--red);
  border-bottom: 8px solid var(--blue);
  background: var(--paper);
  color: var(--black);
  box-shadow: var(--shadow);
}

.proof-strip div {
  min-height: 122px;
  padding: 1.25rem;
  border-right: 2px solid rgba(0, 0, 0, .18);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: .35rem;
  font-size: 1.08rem;
  text-transform: uppercase;
}

.proof-strip span {
  color: #493f2f;
  font-weight: 700;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.section__copy p:not(.eyebrow),
.final-cta p {
  color: #e2d7bc;
  font-size: 1.08rem;
  line-height: 1.65;
}

.image-frame {
  border: 6px solid var(--yellow-2);
  background: #000;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: grayscale(.35) contrast(1.16);
}

.section--dark {
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  border-top: 8px solid var(--yellow);
  border-bottom: 8px solid var(--red);
  background:
    linear-gradient(90deg, rgba(183, 24, 42, .18), transparent 38%),
    #05070a;
}

.section--dark > .eyebrow,
.section--dark > h2 {
  margin-left: 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.features article {
  padding: 1.35rem;
  border: 3px solid rgba(255, 213, 35, .7);
  background: rgba(255, 255, 255, .045);
}

.features span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--yellow);
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  text-shadow: 3px 4px 0 #000;
}

.features p {
  margin-bottom: 0;
  color: #d8cdb2;
  line-height: 1.55;
}

.previews {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: center;
  justify-items: center;
}

.preview-grid img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(62svh, 620px);
  border: 5px solid var(--paper);
  background: var(--paper);
  object-fit: contain;
  box-shadow: var(--shadow);
}

.final-cta {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  padding: clamp(2rem, 5vw, 4rem);
  border: 6px solid var(--yellow);
  background:
    linear-gradient(135deg, rgba(183, 24, 42, .3), transparent 44%),
    #070a0f;
  text-align: center;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  margin-inline: auto;
}

.mobile-buy {
  position: fixed;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  grid-template-columns: 1fr auto;
  gap: .75rem;
  align-items: center;
  padding: .72rem .9rem calc(.72rem + env(safe-area-inset-bottom));
  border-top: 3px solid var(--yellow);
  background: rgba(5, 7, 10, .94);
  box-shadow: 0 -18px 35px rgba(0, 0, 0, .42);
}

.mobile-buy span {
  color: var(--paper);
  font-weight: 950;
  text-transform: uppercase;
}

.mobile-buy a {
  min-width: 132px;
  padding: .82rem 1rem;
  background: var(--yellow);
  color: var(--black);
  font-weight: 950;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 4px 5px 0 #000;
}

@media (max-width: 920px) {
  .hero,
  .section--split,
  .previews {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero__media {
    order: 2;
  }

  .hero__copy {
    order: 1;
  }

  .hero__cover {
    width: min(100%, 360px);
    max-width: 360px;
    max-height: none;
  }

  .proof-strip,
  .features {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 2px solid rgba(0, 0, 0, .18);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 74px;
  }

  .hero,
  .section,
  .proof-strip,
  .final-cta {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(3.3rem, 16vw, 5.1rem);
    text-shadow: 5px 6px 0 #000;
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 4rem);
  }

  .lead {
    font-size: 1rem;
  }

  .buy-panel {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

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

  .preview-grid img {
    width: min(100%, 330px);
    max-height: none;
  }

  .mobile-buy {
    display: grid;
  }
}
