:root {
  --navy: #0a0f3c;
  --navy-deep: #070a2a;
  --navy-card: #0b1141;
  --blue: #1b1bb3;
  --blue-bright: #2424d6;
  --red: #c8102e;
  --red-dark: #a60d26;
  --gold: #d9b65a;
  --gold-light: #f3d98a;
  --green: #9be31a;
  --page: #f1f1f1;
  --white: #ffffff;
  --text: #0e1030;
  --muted: #4d5168;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 28px;
  --container: 1360px;
  --narrow: 1040px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--page);
  line-height: 1.55;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.8rem, 6.4vw, 5.2rem); text-transform: uppercase; }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.9rem); }

.red { color: var(--red); }
.green { color: var(--green); }
.center { text-align: center; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
.container.narrow { max-width: var(--narrow); }

.section { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark + .section-dark { padding-top: 0; }
.section-buy {
  background:
    radial-gradient(ellipse at 50% 110%, rgba(36, 36, 214, 0.3), transparent 60%),
    var(--navy);
  border-top: 3px solid var(--red);
}
.section-dark + .section-buy { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section-blue {
  color: var(--white);
  background: radial-gradient(ellipse at 50% 45%, var(--blue-bright) 0%, var(--blue) 40%, var(--navy) 100%);
  border-top: 3px solid var(--red);
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
.section-light { padding-block: clamp(3.5rem, 7vw, 6rem); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.top-bar {
  height: 28px;
  background: var(--red);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.25rem 1.25rem 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.nav-pill {
  pointer-events: auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
  padding: 0.55rem 0.6rem 0.55rem 1.5rem;
  box-shadow: 0 14px 40px rgba(7, 10, 42, 0.35);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand em { font-style: normal; color: var(--gold); }
.brand img { width: 36px; height: 36px; border-radius: 50%; }

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav a { font-weight: 600; font-size: 0.92rem; transition: color 0.2s ease; }
.nav a:not(.btn):hover { color: var(--gold-light); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); }
.btn-sm { border-radius: 999px; padding: 0.6rem 1.3rem; font-size: 0.88rem; }
.btn-lg {
  padding: 1.15rem 2.4rem;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  min-width: 260px;
}
.btn-copy { padding: 0.7rem 1.4rem; white-space: nowrap; }
.btn-copy:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.card {
  border-radius: var(--radius);
  overflow: hidden;
}
.card-navy {
  background:
    radial-gradient(circle at 85% 15%, rgba(36, 36, 214, 0.18), transparent 45%),
    var(--navy-card);
  color: var(--white);
  box-shadow: 0 30px 70px rgba(7, 10, 42, 0.35);
}
.card-outline { border: 1px solid rgba(255, 255, 255, 0.35); box-shadow: none; }

.hero { padding: clamp(2rem, 4.5vw, 3.75rem) clamp(1.25rem, 4vw, 4rem) clamp(1.5rem, 3vw, 2.5rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
  gap: 3rem;
}
.hero h1 { text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45); }
.hero-lead {
  font-size: clamp(1.2rem, 2.2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 34rem;
  margin-top: clamp(2rem, 10vw, 10rem);
}
.hero-art { display: flex; flex-direction: column; align-items: center; }
.hero-art img {
  width: min(100%, 380px);
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.6));
}
.hero-quote {
  align-self: flex-end;
  margin: 1.25rem 0 0;
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.02em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0 2rem;
}
.ca-label {
  text-align: center;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
}

.ca-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--white);
  color: var(--text);
  border-radius: 12px;
  padding: 0.6rem 0.6rem 0.6rem 0.7rem;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}
.ca-tag {
  background: #000;
  color: var(--white);
  font-weight: 800;
  border-radius: 10px;
  padding: 0.55rem 0.6rem;
  font-size: 0.9rem;
}
.ca-address {
  flex: 1;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.95rem;
  word-break: break-all;
  text-align: left;
}

.marquee {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  background: var(--navy);
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
  overflow: hidden;
  padding: 1rem 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 3rem;
  animation: marquee 30s linear infinite;
}
.marquee-logo {
  display: inline-flex;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.marquee-logo img { width: 92px; height: 92px; border-radius: 50%; }
.marquee-text {
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  white-space: nowrap;
  background: linear-gradient(180deg, #f3d98a 0%, #c89b3c 55%, #f1d27c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section-dark .section { padding: 0; }
.feature { padding: clamp(2rem, 5vw, 4.5rem) clamp(1.5rem, 5vw, 5rem); margin-top: clamp(2.5rem, 5vw, 4rem); }
.feature-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.feature h2 { font-size: clamp(2rem, 3.6vw, 3rem); text-transform: uppercase; }
.feature h2 .red { text-transform: none; display: block; margin-top: 0.25rem; }
.poster-frame {
  max-width: 520px;
  margin-inline: auto;
  border-radius: 10px;
  padding: 8px;
  background: linear-gradient(135deg, #f3d98a, #b8892e 40%, #f1d27c 70%, #a87a24);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}
.poster-frame img { border-radius: 6px; width: 100%; }
.feature-right h2 { margin-bottom: 1.5rem; }
.feature-right h3 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); margin-bottom: 1.2rem; }
.feature-right p { font-size: clamp(1.05rem, 1.5vw, 1.35rem); line-height: 1.6; color: rgba(255, 255, 255, 0.92); max-width: 40rem; }
.feature-right .btn { margin-top: 0.75rem; }

.title-white { color: var(--white); text-align: center; margin-bottom: 1.75rem; }
.title-blue { color: var(--blue); text-align: center; margin-bottom: 2.5rem; font-size: clamp(2.4rem, 5vw, 4rem); }

.buy-card { padding: clamp(2rem, 5vw, 4.5rem) clamp(1.5rem, 5vw, 5rem); }
.buy-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.kicker {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.buy-copy .title-white { text-align: left; margin-bottom: 1.25rem; }
.buy-text {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
  margin-bottom: 2rem;
}
.buy-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-ghost {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.6);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); box-shadow: inset 0 0 0 2px var(--white); }
.under-btn { margin: 1rem 0 0; font-size: 0.95rem; color: rgba(255, 255, 255, 0.7); }
.buy-badges { display: grid; gap: 1rem; }
.badge {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.1rem 1.4rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.badge:hover { transform: translateX(6px); border-color: rgba(255, 255, 255, 0.4); }
.badge img { width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0; }
.badge strong { display: block; font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em; }
.badge small { display: block; font-size: 0.9rem; color: rgba(255, 255, 255, 0.65); margin-top: 0.15rem; }
.badge-green { border-color: rgba(155, 227, 26, 0.45); background: rgba(155, 227, 26, 0.06); }
.badge-green strong { color: var(--green); }
.badge-dot, .badge-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
}
.badge-dot { background: var(--green); box-shadow: 0 0 0 6px rgba(155, 227, 26, 0.18); }
.badge-dot::after { content: ""; width: 16px; height: 16px; border-radius: 50%; background: var(--navy); }
.badge-flag { background: var(--white); overflow: hidden; box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12); }
.badge-flag svg { width: 34px; height: auto; border-radius: 3px; }

.disclaimer {
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin: 2.5rem auto 0;
  max-width: 1180px;
}
.disclaimer a { color: var(--gold-light); }


.accordion { max-width: 880px; margin: 0 auto; }
.accordion details { border-bottom: 1px solid rgba(14, 16, 48, 0.1); }
.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 3rem 1.5rem 0;
  font-weight: 700;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  letter-spacing: -0.02em;
  line-height: 1.3;
  position: relative;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  top: 1.3rem;
  font-weight: 300;
  font-size: 2rem;
  line-height: 1;
  transition: transform 0.25s ease;
}
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion details p { padding: 0 3rem 1.5rem 0; margin: 0; color: var(--muted); font-size: 1.05rem; }

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 2rem;
  border-top: 3px solid var(--red);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.brand-footer { color: var(--white); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.4rem; font-size: 0.9rem; font-weight: 600; }
.footer-nav a:hover { color: var(--gold-light); }
.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease;
}
.social:hover { background: var(--red); }
.footer-bottom { padding-top: 1.5rem; }
.footer-bottom .disclaimer { margin-top: 0; }
.copyright { margin: 1.25rem 0 0; text-align: center; font-size: 0.85rem; color: rgba(255, 255, 255, 0.55); }

@media (max-width: 1024px) {
  .nav ul { gap: 1rem; }
  .nav-pill { gap: 1.1rem; }
  .hero-lead { margin-top: 2rem; }
}

@media (max-width: 900px) {
  .site-header { padding-inline: 1rem; }
  .nav-pill { width: 100%; max-width: 560px; justify-content: space-between; padding-right: 0.6rem; }
  .menu-toggle { display: flex; }
  .nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    right: 0;
    background: var(--navy);
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(7, 10, 42, 0.35);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav.is-open { max-height: 480px; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 0.5rem 1.25rem 1.25rem; }
  .nav li a:not(.btn) { display: block; padding: 0.9rem 0; font-size: 1.05rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .nav li .btn { display: flex; margin-top: 1rem; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-art { order: -1; }
  .hero-art img { width: min(70%, 320px); }
  .hero-quote { align-self: center; }
  .hero-lead { margin: 1rem auto 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .buy-grid { grid-template-columns: 1fr; }
  .buy-copy { text-align: center; }
  .buy-copy .title-white { text-align: center; }
  .buy-text { margin-inline: auto; }
  .buy-actions { justify-content: center; }
  .badge:hover { transform: none; }
  .poster-frame { max-width: 480px; }
  .feature-right { text-align: center; }
  .feature-right p { margin-inline: auto; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
}

@media (max-width: 600px) {
  .ca-bar { flex-direction: column; align-items: stretch; text-align: center; gap: 0.75rem; }
  .ca-address { text-align: center; }
  .hero-actions, .buy-actions { flex-direction: column; gap: 1rem; }
  .btn-lg { width: 100%; min-width: 0; font-size: 1.1rem; }
  .marquee-logo { width: 80px; height: 80px; }
  .marquee-logo img { width: 66px; height: 66px; }
  .brand span { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .btn { transition: none; }
}
