:root {
  --bg: #120d0b;
  --bg-soft: #1d1411;
  --panel: #241915;
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #fff8f4;
  --muted: #d0b8aa;
  --accent: #ef7a38;
  --accent-strong: #ffb36a;
  --success: #7df2be;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 960px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Hanken Grotesk", Arial, Helvetica, sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top, rgba(239, 122, 56, 0.14), transparent 28%),
    linear-gradient(180deg, #140d0b 0%, #0d0908 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 24px;
  opacity: 0.25;
}

.shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 40px 0 64px;
}

.shell-narrow {
  max-width: 720px;
}

.shell-wide {
  width: min(calc(100% - 32px), 1180px);
}

.hero {
  text-align: center;
  padding: 20px 0 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-entrance {
  animation: heroFadeIn 1s ease both;
}

.hero-copy-entrance {
  animation: heroSlideLeft 0.95s ease 0.08s both;
}

.hero-media-entrance {
  animation: heroSlideRight 1.05s ease 0.16s both;
}

.hero-minimal {
  padding: 4px 0 14px;
}

.hero-compact {
  padding-bottom: 12px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-minimal h1 {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
}

.hero-minimal .eyebrow {
  margin-bottom: 8px;
  font-size: 0.74rem;
}

h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.1;
}

.intro {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.player-card,
.form-card {
  background: rgba(36, 25, 21, 0.9);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.player-frame {
  position: relative;
  background: #050505;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
}

.sales-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #000;
  cursor: pointer;
}

.video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  width: 96px;
  height: 96px;
  margin: -48px 0 0 -48px;
  border: 0;
  border-radius: 50%;
  background: rgba(14, 9, 8, 0.72);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.32);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}

.video-play:hover,
.video-play:focus-visible {
  transform: scale(1.05);
  background: rgba(239, 122, 56, 0.9);
  outline: none;
}

.video-play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid #fff8f4;
}

.video-play.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.tiny-note,
.form-feedback {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.cta-box,
.checkout-box,
.offer-card {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid rgba(125, 242, 190, 0.22);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(125, 242, 190, 0.08), rgba(125, 242, 190, 0.03));
  text-align: center;
}

.cta-kicker {
  margin-bottom: 10px;
  color: var(--success);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.cta-box h2 {
  margin-bottom: 18px;
}

.offer-highlight h2 {
  max-width: 760px;
  margin: 0 auto;
}

.checkout-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(18, 13, 11, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-topbar-inner,
.checkout-footer-inner {
  width: min(calc(100% - 32px), 1180px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand-title {
  margin: 0;
  color: #e3be49;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 2.3vw, 2.15rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.brand-subtitle {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.checkout-nav,
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.checkout-nav a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.25s ease, transform 0.25s ease;
}

.checkout-nav a:hover,
.footer-links a:hover {
  color: #e3be49;
  transform: translateY(-1px);
}

.checkout-nav a:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c88b35, #d8a648);
  color: #3b2a12;
}

.checkout-nav a:last-child:hover {
  color: #3b2a12;
  transform: translateY(-1px) scale(1.02);
}

.checkout-hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding: 32px 0 48px;
}

.checkout-hero-copy {
  display: grid;
  gap: 20px;
}

.checkout-hero-copy h1 span {
  color: #e3be49;
  font-style: italic;
}

.checkout-hero-copy .intro {
  margin: 0;
  max-width: 620px;
  font-size: 1.28rem;
  line-height: 1.65;
  color: #d7c5b4;
}

.checkout-hero-copy h1 {
  max-width: 640px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.9rem, 6vw, 5.25rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.checkout-hero-copy .eyebrow {
  width: fit-content;
  margin: 0;
  padding: 7px 14px;
  border: 1px solid rgba(227, 190, 73, 0.7);
  border-radius: 999px;
  color: #f0c54d;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.checkout-hero-media {
  position: relative;
}

.checkout-hero-media::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(227, 190, 73, 0.18);
  border-radius: 28px;
  transform: rotate(-4deg);
}

.checkout-hero-media img,
.authority-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.authority-media img {
  filter: grayscale(1);
  transition: filter 0.7s ease;
}

.authority-media:hover img {
  filter: grayscale(0);
}

.content-section {
  padding: 52px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 24px;
}

.section-heading .eyebrow {
  margin-bottom: 12px;
  color: #d1a933;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

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

.module-card {
  grid-column: span 2;
  padding: 24px 22px 22px;
  border-radius: 6px;
  background: #0d0d0d;
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.03);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.module-card-wide {
  grid-column: span 3;
}

.module-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.34);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26), inset 0 0 0 1px rgba(212, 175, 55, 0.06);
}

.module-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.module-number {
  display: inline-block;
  color: rgba(212, 175, 55, 0.8);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  transition: color 0.28s ease, transform 0.28s ease;
}

.module-icon {
  color: #d1a933;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.28s ease, color 0.28s ease;
}

.module-card h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.module-card p,
.authority-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.module-card p {
  max-width: 34ch;
  font-size: 1.02rem;
}

.module-card:hover .module-number,
.module-card:hover .module-icon {
  color: #f0c54d;
  transform: translateY(-1px);
}

.offer-card-large {
  max-width: 920px;
  margin: 0 auto;
  padding: 34px 32px 28px;
  background: #0e0e0e;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.08), 0 24px 60px rgba(0, 0, 0, 0.35);
}

.offer-anchor {
  position: relative;
  top: -110px;
  height: 0;
}

.offer-badge {
  width: 46px;
  height: 46px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.95);
  color: #f0c54d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.18);
}

.offer-title {
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.offer-subtitle {
  color: #d1a933;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 28px;
}

.offer-item {
  padding: 18px 18px 18px 46px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  background: #1d1d1d;
  color: #f4efe8;
  position: relative;
  text-align: left;
  font-weight: 600;
}

.offer-item::before {
  content: "◉";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #d1a933;
  font-size: 0.9rem;
}

.price-box {
  margin: 8px 0 16px;
  padding: 6px 0 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.price-label {
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-line {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.price-old {
  color: rgba(255, 255, 255, 0.44);
  text-decoration: line-through;
  font-size: 1.6rem;
}

.price-now-label {
  margin: 14px 0 0;
  color: #d6c8b2;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.price-now {
  display: block;
  margin-top: 2px;
  color: #f0c54d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 9vw, 5.8rem);
  line-height: 1;
  text-shadow: 0 0 18px rgba(240, 197, 77, 0.12);
}

.authority-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  align-items: center;
}

.authority-copy {
  display: grid;
  gap: 16px;
}

.authority-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 8px;
}

.authority-stats strong {
  display: block;
  color: var(--accent-strong);
  font-size: 2rem;
}

.authority-stats span,
.footer-copy {
  color: var(--muted);
}

.checkout-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}

.button-pulse {
  animation: buttonPulse 2.4s ease-in-out infinite;
  transform-origin: center;
}

.button-pulse:hover,
.button-pulse:focus-visible {
  animation-play-state: paused;
}

.button-block {
  width: 100%;
}

.button-primary {
  color: #3b2a12;
  background: linear-gradient(135deg, #c88b35, #d8a648);
}

.checkout-hero-copy .button {
  min-height: 60px;
  padding: 16px 30px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button-accent {
  color: #3a2a12;
  background: linear-gradient(135deg, #c88b35, #d8a648);
}

.offer-card .button-accent {
  min-height: 60px;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.offer-security {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

@keyframes buttonPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(239, 122, 56, 0.22);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 0 12px rgba(239, 122, 56, 0);
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes heroSlideLeft {
  from {
    opacity: 0;
    transform: translate3d(-32px, 22px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroSlideRight {
  from {
    opacity: 0;
    transform: translate3d(32px, 22px, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-entrance,
  .hero-copy-entrance,
  .hero-media-entrance,
  .button-pulse {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

[hidden] {
  display: none !important;
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 24px), var(--max));
    padding-top: 24px;
    padding-bottom: 40px;
  }

  .player-card,
  .form-card {
    padding: 14px;
  }

  .video-play {
    width: 74px;
    height: 74px;
    margin: -37px 0 0 -37px;
  }

  .video-play-icon {
    margin-left: 6px;
    border-top-width: 14px;
    border-bottom-width: 14px;
    border-left-width: 22px;
  }
}

@media (max-width: 900px) {
  .checkout-topbar-inner,
  .checkout-footer-inner,
  .shell-wide {
    width: min(calc(100% - 24px), 1180px);
  }

  .checkout-topbar-inner,
  .checkout-footer-inner,
  .checkout-hero,
  .authority-section {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .checkout-nav,
  .footer-links {
    gap: 14px;
  }

  .checkout-hero {
    min-height: auto;
    padding-top: 24px;
  }

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

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

  .module-card,
  .module-card-wide {
    grid-column: auto;
  }

  .authority-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  body::before {
    display: none;
  }

  .checkout-topbar {
    width: 100%;
  }

  .checkout-topbar-inner,
  .checkout-footer-inner,
  .shell-wide {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .checkout-topbar-inner {
    align-items: center;
    text-align: center;
  }

  .checkout-nav {
    width: 100%;
    justify-content: center;
  }

  .checkout-nav a:last-child {
    min-height: 44px;
    padding: 0 16px;
  }

  .checkout-hero-copy,
  .section-heading,
  .offer-card,
  .authority-copy,
  .checkout-footer-inner,
  .brand-subtitle,
  .footer-copy {
    text-align: center;
  }

  .checkout-hero-copy .eyebrow,
  .checkout-hero-copy .button {
    margin-left: auto;
    margin-right: auto;
  }

  .checkout-hero-copy .intro,
  .offer-highlight h2,
  .authority-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .module-card,
  .offer-item {
    text-align: center;
  }

  .module-head {
    justify-content: center;
  }

  .offer-item {
    padding-left: 18px;
  }

  .offer-item::before {
    position: static;
    transform: none;
    display: inline-block;
    margin-right: 8px;
  }

  .authority-stats {
    text-align: center;
  }
}
