/* ==========================================================
   Rabbit IPTV — marketing site
   "Midnight cinema with a cozy mascot."
   Colors pulled straight from the rabbit logo: deep royal
   navy + glowing gold + cream. No red. No YouTube-ness.
   ========================================================== */

:root {
  /* surfaces */
  --ink-900: #050d22;
  --ink-850: #071432;
  --ink-800: #0a1a3c;
  --ink-700: #0f2556;
  --ink-600: #16306b;
  --ink-500: #1f3d85;

  /* primary accent (logo gold) */
  --gold-500: #ffb800;
  --gold-400: #ffc832;
  --gold-300: #ffdf7a;
  --gold-200: #ffe9a3;

  /* warm secondary (the rabbit's inner ears / apricot) */
  --apricot-600: #ff7a18;
  --apricot-500: #ff9130;
  --apricot-400: #ffb366;

  /* cream / rabbit fur */
  --cream-200: #f6dcb4;
  --cream-100: #fde5c4;
  --cream-50:  #fff3dc;

  /* text on dark surfaces */
  --text-100: #fdf6e7;
  --text-200: #e7d9be;
  --text-300: #b8a98a;
  --text-400: #8a7e66;

  /* glow tokens */
  --glow-gold:    0 0 40px rgba(255, 200, 50, 0.35);
  --glow-gold-lg: 0 0 120px rgba(255, 184, 0, 0.45);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
}

/* reset (lightweight) ---------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-100);
  background: var(--ink-900);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
h1, h2, h3, h4 {
  font-family: "Fraunces", "Fraunces Fallback", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 0;
}
p { margin: 0; }

/* ============================================================
   Global backdrop — deep cosmic navy with subtle gold radial
   glows, suggesting the rabbit's TV screen. Fixed so it
   paints behind every section.
   ============================================================ */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
body::before {
  background:
    radial-gradient(ellipse 70% 55% at 78% -8%,
      rgba(255, 180, 0, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 45% at 12% 105%,
      rgba(255, 145, 48, 0.12), transparent 65%),
    linear-gradient(180deg, #05102a 0%, #050d22 40%, #040b1e 100%);
}
body::after {
  background-image:
    radial-gradient(1px 1px at 20% 15%, rgba(255, 223, 122, 0.6), transparent 60%),
    radial-gradient(1px 1px at 80% 32%, rgba(253, 246, 231, 0.5), transparent 60%),
    radial-gradient(1.5px 1.5px at 42% 70%, rgba(255, 200, 50, 0.5), transparent 60%),
    radial-gradient(1px 1px at 65% 88%, rgba(253, 229, 196, 0.6), transparent 60%),
    radial-gradient(1.2px 1.2px at 90% 60%, rgba(255, 223, 122, 0.55), transparent 60%),
    radial-gradient(1px 1px at 8% 50%, rgba(255, 255, 255, 0.5), transparent 60%);
  opacity: 0.55;
}

/* Additional animated star layer */
.starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.star {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-300);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 10px var(--gold-300);
  animation: twinkle 6s ease-in-out infinite;
}
.star--1 { top: 12%; left: 8%;  animation-delay: 0s; }
.star--2 { top: 26%; left: 88%; animation-delay: 1.2s; }
.star--3 { top: 48%; left: 15%; animation-delay: 2.1s; }
.star--4 { top: 67%; left: 72%; animation-delay: 3.4s; }
.star--5 { top: 83%; left: 22%; animation-delay: 0.8s; }
.star--6 { top: 38%; left: 52%; animation-delay: 4.1s; }
.star--7 { top: 78%; left: 92%; animation-delay: 2.6s; }
.star--8 { top: 7%;  left: 60%; animation-delay: 5.0s; }
.star--9  { top: 19%; left: 35%; animation-delay: 2.9s; width: 3px; height: 3px; }
.star--10 { top: 55%; left: 6%;  animation-delay: 4.5s; }
.star--11 { top: 92%; left: 55%; animation-delay: 1.6s; width: 3px; height: 3px; }
.star--12 { top: 33%; left: 78%; animation-delay: 3.8s; width: 3px; height: 3px; }
@keyframes twinkle {
  0%, 100% { opacity: 0;     transform: scale(0.6); }
  50%      { opacity: 0.85;  transform: scale(1.1); }
}
.glow {
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
}
.glow--top {
  top: -280px;
  right: -160px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.55), transparent 60%);
}
.glow--bottom {
  bottom: -320px;
  left: -200px;
  background: radial-gradient(circle, rgba(255, 145, 48, 0.35), transparent 60%);
}

main,
.nav,
.foot {
  position: relative;
  z-index: 1;
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(5, 13, 34, 0.6);
  border-bottom: 1px solid rgba(255, 223, 122, 0.08);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.nav__brand img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 4px 16px rgba(255, 184, 0, 0.45));
}
.nav__wordmark-accent {
  color: var(--gold-400);
  font-style: italic;
}
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  color: var(--text-200);
}
.nav__links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease-out);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--gold-400);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}
.nav__links a:hover {
  color: var(--cream-50);
}
.nav__links a:hover::after {
  transform: scaleX(1);
}
.nav__cta {
  display: flex;
  gap: 10px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.2s var(--ease-out),
              box-shadow 0.2s var(--ease-out),
              background 0.2s var(--ease-out),
              color 0.2s var(--ease-out);
  cursor: pointer;
}
.btn:focus-visible {
  outline: 2px solid var(--gold-300);
  outline-offset: 3px;
}
.btn--primary {
  color: var(--ink-900);
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 0 0 1px rgba(255, 184, 0, 0.5),
    0 18px 36px -12px rgba(255, 184, 0, 0.65);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 0 0 1px rgba(255, 184, 0, 0.6),
    0 24px 44px -12px rgba(255, 184, 0, 0.9);
}
.btn--ghost {
  color: var(--text-100);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 223, 122, 0.2);
}
.btn--ghost:hover {
  background: rgba(255, 223, 122, 0.08);
  border-color: rgba(255, 223, 122, 0.4);
}
.btn--sm { height: 40px; padding: 0 18px; font-size: 14px; }
.btn--lg { height: 56px; padding: 0 30px; font-size: 17px; }
.btn--block { width: 100%; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(60px, 10vw, 120px) var(--gutter) clamp(40px, 8vw, 80px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 184, 0, 0.08);
  border: 1px solid rgba(255, 184, 0, 0.3);
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow__dot {
  width: 8px;
  height: 8px;
  background: var(--gold-400);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-400);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.3); }
}
.eyebrow--plain {
  background: rgba(253, 229, 196, 0.06);
  border-color: rgba(253, 229, 196, 0.18);
  color: var(--cream-100);
}

.hero__headline {
  font-size: clamp(44px, 7vw, 88px);
  margin: 22px 0 18px;
  font-weight: 400;
}
.hero__headline-accent {
  color: var(--gold-400);
  font-style: italic;
  background: linear-gradient(180deg, var(--gold-200), var(--gold-500) 70%, var(--apricot-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 50px rgba(255, 200, 50, 0.15);
}
.hero__lede {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--text-200);
  max-width: 560px;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .hero__lede { margin-left: auto; margin-right: auto; }
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
@media (max-width: 900px) {
  .hero__cta { justify-content: center; }
}
.hero__marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: var(--text-300);
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .hero__marquee { justify-content: center; }
}

/* Hero mascot stage ------------------------------------ */
.hero__stage {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  place-items: center;
}
.hero__halo {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 55%,
      rgba(255, 184, 0, 0.45) 0%,
      rgba(255, 145, 48, 0.2) 40%,
      transparent 70%);
  filter: blur(30px);
  animation: halo 7s ease-in-out infinite;
}
@keyframes halo {
  0%, 100% { transform: scale(0.95); opacity: 0.85; }
  50%      { transform: scale(1.05); opacity: 1; }
}
.hero__rabbit {
  position: relative;
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.55))
          drop-shadow(0 0 60px rgba(255, 184, 0, 0.25));
  animation: bob 4.5s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0)    rotate(-0.8deg); }
  50%      { transform: translateY(-14px) rotate(0.8deg); }
}
.hero__sparkle {
  position: absolute;
  color: var(--gold-300);
  font-size: 28px;
  filter: drop-shadow(0 0 10px var(--gold-300));
  animation: sparkle 3s ease-in-out infinite;
}
.hero__sparkle--a { top: 10%;  left: 12%; animation-delay: 0s; }
.hero__sparkle--b { top: 18%;  right: 14%; animation-delay: 1s; font-size: 20px; }
.hero__sparkle--c { bottom: 16%; left: 20%; animation-delay: 2s; font-size: 16px; }
@keyframes sparkle {
  0%, 100% { opacity: 0.4; transform: scale(0.85) rotate(0); }
  50%      { opacity: 1;   transform: scale(1.1)  rotate(20deg); }
}

/* ============================================================
   Section scaffolding
   ============================================================ */
.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(60px, 10vw, 120px) var(--gutter);
}
.section__head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 64px;
}
.section__title {
  font-size: clamp(32px, 4.5vw, 56px);
  margin: 18px 0 12px;
  font-weight: 400;
}
.section__lede {
  color: var(--text-200);
  font-size: clamp(15px, 1.2vw, 18px);
}

/* reveal-on-scroll ---------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero__rabbit, .hero__halo, .hero__sparkle, .star, .eyebrow__dot {
    animation: none !important;
  }
}

/* ============================================================
   Features — asymmetric 2x2 grid (wide + narrow rhythm)
   ============================================================ */
.features {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
@media (max-width: 880px) {
  .features { grid-template-columns: 1fr; }
}
.feature {
  position: relative;
  padding: 36px 32px 32px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(255, 200, 50, 0.06), rgba(255, 255, 255, 0) 50%),
    rgba(10, 26, 60, 0.55);
  border: 1px solid rgba(255, 223, 122, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out),
              background 0.3s var(--ease-out);
}
.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 223, 122, 0.35);
  background:
    linear-gradient(160deg, rgba(255, 200, 50, 0.12), rgba(255, 255, 255, 0.02) 50%),
    rgba(15, 37, 86, 0.7);
}
.feature--wide { grid-column: span 1; }
@media (min-width: 881px) {
  .feature:nth-child(1) { grid-column: 1; grid-row: 1; }
  .feature:nth-child(2) { grid-column: 2; grid-row: 1; }
  .feature:nth-child(3) { grid-column: 1; grid-row: 2; }
  .feature:nth-child(4) { grid-column: 2; grid-row: 2; }
}
.feature__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--gold-300);
  background: linear-gradient(180deg, rgba(255, 223, 122, 0.16), rgba(255, 184, 0, 0.06));
  border: 1px solid rgba(255, 223, 122, 0.28);
  box-shadow: 0 10px 30px -12px rgba(255, 184, 0, 0.45);
}
.feature__icon svg {
  width: 28px;
  height: 28px;
}
.feature h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--cream-50);
}
.feature p {
  color: var(--text-200);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================================
   Platforms
   ============================================================ */
.platforms {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .platforms { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .platforms { grid-template-columns: repeat(2, 1fr); }
}
.platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 20px;
  border-radius: var(--radius-md);
  background: rgba(10, 26, 60, 0.5);
  border: 1px solid rgba(255, 223, 122, 0.1);
  text-align: center;
  transition: transform 0.2s var(--ease-out),
              background 0.2s var(--ease-out),
              border-color 0.2s var(--ease-out);
}
.platform:hover {
  transform: translateY(-3px);
  background: rgba(15, 37, 86, 0.65);
  border-color: rgba(255, 223, 122, 0.28);
}
.platform__mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--gold-300);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 223, 122, 0.14), rgba(255, 184, 0, 0.04));
  border: 1px solid rgba(255, 223, 122, 0.2);
}
.platform__mark svg { width: 22px; height: 22px; }
.platform strong {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--cream-50);
}
.platform span {
  font-size: 13px;
  color: var(--text-300);
}

/* ============================================================
   Pricing
   ============================================================ */
.billing {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(10, 26, 60, 0.6);
  border: 1px solid rgba(255, 223, 122, 0.18);
  margin-top: 24px;
}
.billing__opt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-200);
  transition: color 0.2s, background 0.2s;
}
.billing__opt.is-active {
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
  color: var(--ink-900);
  box-shadow: 0 6px 16px -4px rgba(255, 184, 0, 0.55);
}
.billing__save {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  background: var(--apricot-500);
  color: var(--ink-900);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.billing__opt:not(.is-active) .billing__save {
  background: rgba(255, 145, 48, 0.2);
  color: var(--apricot-400);
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.plan {
  position: relative;
  padding: 36px 32px 32px;
  border-radius: var(--radius-lg);
  background: rgba(10, 26, 60, 0.6);
  border: 1px solid rgba(255, 223, 122, 0.12);
  transition: transform 0.3s var(--ease-out);
}
.plan:hover { transform: translateY(-4px); }
.plan--featured {
  background:
    linear-gradient(160deg, rgba(255, 200, 50, 0.1), transparent 55%),
    rgba(15, 37, 86, 0.7);
  border-color: rgba(255, 223, 122, 0.4);
  box-shadow: var(--glow-gold);
}
.plan__badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
  color: var(--ink-900);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 16px -4px rgba(255, 184, 0, 0.55);
}
.plan__head h3 {
  font-size: 32px;
  font-weight: 500;
  color: var(--cream-50);
  margin-bottom: 4px;
}
.plan__head p {
  color: var(--text-300);
  font-size: 14px;
}
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 26px 0 4px;
  color: var(--cream-50);
}
.plan__currency {
  font-family: "Fraunces", serif;
  font-size: 28px;
  color: var(--gold-300);
  transform: translateY(-12px);
}
.plan__amount {
  font-family: "Fraunces", serif;
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.plan__period {
  font-size: 15px;
  color: var(--text-300);
  margin-left: 4px;
}
.plan__billnote {
  color: var(--text-400);
  font-size: 13px;
  margin-bottom: 24px;
}
.plan__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
  font-size: 15px;
  color: var(--text-200);
}
.plan__list li {
  padding-left: 28px;
  position: relative;
}
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 10px;
  border-left: 2px solid var(--gold-400);
  border-bottom: 2px solid var(--gold-400);
  transform: rotate(-45deg) translate(2px, -2px);
  transform-origin: left top;
}
.plan__list strong {
  color: var(--cream-50);
  font-weight: 600;
}
.pricing__foot {
  color: var(--text-400);
  text-align: center;
  font-size: 13px;
  margin-top: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq__item {
  background: rgba(10, 26, 60, 0.55);
  border: 1px solid rgba(255, 223, 122, 0.12);
  border-radius: var(--radius-md);
  padding: 4px 24px;
  transition: border-color 0.2s, background 0.2s;
}
.faq__item[open] {
  border-color: rgba(255, 223, 122, 0.32);
  background: rgba(15, 37, 86, 0.7);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--cream-50);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  color: var(--gold-400);
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s var(--ease-out);
  line-height: 1;
}
.faq__item[open] summary::after {
  transform: rotate(45deg);
}
.faq__item p {
  padding: 0 0 22px;
  color: var(--text-200);
  font-size: 15px;
  line-height: 1.65;
}

/* ============================================================
   Final CTA
   ============================================================ */
.cta {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(80px, 10vw, 140px);
}
.cta__inner {
  position: relative;
  padding: clamp(48px, 7vw, 80px) clamp(24px, 5vw, 60px);
  border-radius: var(--radius-xl);
  text-align: center;
  background:
    radial-gradient(ellipse 80% 120% at 50% 0%,
      rgba(255, 184, 0, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(15, 37, 86, 0.8), rgba(10, 26, 60, 0.9));
  border: 1px solid rgba(255, 223, 122, 0.2);
  box-shadow: var(--glow-gold-lg);
  overflow: hidden;
}
.cta__inner::before {
  content: "✦";
  position: absolute;
  top: 14%;
  left: 8%;
  color: var(--gold-300);
  font-size: 28px;
  opacity: 0.5;
  animation: sparkle 3.5s infinite;
}
.cta__inner::after {
  content: "✦";
  position: absolute;
  bottom: 18%;
  right: 10%;
  color: var(--gold-300);
  font-size: 20px;
  opacity: 0.4;
  animation: sparkle 4s infinite 1s;
}
.cta h2 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 400;
  margin-bottom: 16px;
  background: linear-gradient(180deg, var(--cream-50), var(--gold-300));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta p {
  color: var(--text-200);
  max-width: 480px;
  margin: 0 auto 32px;
  font-size: clamp(15px, 1.1vw, 17px);
}

/* ============================================================
   How it works — 3-step ribbon with mascot
   ============================================================ */
.section--how {
  position: relative;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
  position: relative;
}
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; }
}
.steps::before {
  /* dotted burrow trail behind the cards */
  content: "";
  position: absolute;
  top: 56px;
  left: 8%;
  right: 8%;
  height: 2px;
  background-image: radial-gradient(circle, var(--gold-400) 0 1.5px, transparent 2px);
  background-size: 18px 2px;
  background-repeat: repeat-x;
  opacity: 0.4;
  z-index: 0;
}
@media (max-width: 880px) {
  .steps::before { display: none; }
}
.step {
  position: relative;
  padding: 40px 28px 32px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(165deg, rgba(255, 200, 50, 0.1), rgba(255, 145, 48, 0.04) 60%),
    rgba(10, 26, 60, 0.7);
  border: 1px solid rgba(255, 223, 122, 0.18);
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out);
}
.step:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 223, 122, 0.4);
}
.step__num {
  display: block;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  color: var(--gold-400);
  margin-bottom: 12px;
  background: linear-gradient(180deg, var(--gold-200), var(--gold-500) 60%, var(--apricot-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.step__mascot {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  filter: drop-shadow(0 6px 14px rgba(255, 184, 0, 0.4));
  animation: bob 5s ease-in-out infinite;
}
.step__glyph {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 16px;
  color: var(--gold-300);
  background: linear-gradient(180deg, rgba(255, 223, 122, 0.18), rgba(255, 184, 0, 0.04));
  border: 1px solid rgba(255, 223, 122, 0.3);
}
.step__glyph svg { width: 34px; height: 34px; }
.step h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--cream-50);
}
.step p {
  color: var(--text-200);
  font-size: 15px;
  line-height: 1.6;
}
.step--mid {
  transform: translateY(-16px);
}
@media (max-width: 880px) {
  .step--mid { transform: none; }
}

/* ============================================================
   Privacy — asymmetric split with mascot
   ============================================================ */
.privacy {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 90% 120% at 0% 50%,
      rgba(255, 145, 48, 0.15), transparent 60%),
    linear-gradient(160deg, rgba(15, 37, 86, 0.7), rgba(10, 26, 60, 0.85));
  border: 1px solid rgba(255, 223, 122, 0.18);
  overflow: hidden;
  position: relative;
}
@media (max-width: 880px) {
  .privacy { grid-template-columns: 1fr; text-align: center; }
}
.privacy__art {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  max-width: 360px;
  margin: 0 auto;
}
.privacy__halo {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 55%,
      rgba(255, 145, 48, 0.45) 0%,
      rgba(255, 200, 50, 0.18) 45%,
      transparent 75%);
  filter: blur(26px);
  animation: halo 8s ease-in-out infinite;
}
.privacy__art img {
  position: relative;
  max-width: 80%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5))
          drop-shadow(0 0 50px rgba(255, 145, 48, 0.3));
  animation: wiggle 6s ease-in-out infinite;
}
@keyframes wiggle {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50%      { transform: rotate(3deg)  translateY(-8px); }
}
.privacy__sparkle {
  position: absolute;
  color: var(--gold-300);
  font-size: 26px;
  filter: drop-shadow(0 0 10px var(--gold-300));
  animation: sparkle 3.5s ease-in-out infinite;
}
.privacy__sparkle--a { top: 8%;  right: 10%; animation-delay: 0s; }
.privacy__sparkle--b { bottom: 12%; left: 6%; animation-delay: 1.8s; font-size: 20px; }

.privacy__copy .section__title {
  text-align: left;
  margin-top: 18px;
}
.privacy__copy .section__lede {
  text-align: left;
  margin-bottom: 28px;
}
@media (max-width: 880px) {
  .privacy__copy .section__title,
  .privacy__copy .section__lede { text-align: center; }
}
.privacy__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.privacy__list li {
  position: relative;
  padding: 16px 18px 16px 46px;
  background: rgba(5, 13, 34, 0.5);
  border: 1px solid rgba(255, 223, 122, 0.1);
  border-radius: var(--radius-md);
  color: var(--text-200);
  font-size: 14.5px;
  line-height: 1.55;
}
.privacy__list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 22px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 0 12px rgba(255, 184, 0, 0.6);
}
.privacy__list li::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 27px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--ink-900);
  border-bottom: 2px solid var(--ink-900);
  transform: rotate(-45deg);
}
.privacy__list strong {
  color: var(--cream-50);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

/* ============================================================
   Footer
   ============================================================ */
.foot {
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px var(--gutter) 40px;
  border-top: 1px solid rgba(255, 223, 122, 0.1);
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 720px) {
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .foot__brand { grid-column: 1 / -1; }
}
.foot__brand a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 12px;
}
.foot__brand p {
  color: var(--text-300);
  font-size: 14px;
  max-width: 260px;
}
.foot h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-300);
  margin-bottom: 16px;
  font-family: "Manrope", sans-serif;
}
.foot a[href]:not(.foot__brand a) {
  display: block;
  color: var(--text-200);
  font-size: 14px;
  padding: 5px 0;
  transition: color 0.2s;
}
.foot a[href]:not(.foot__brand a):hover {
  color: var(--gold-300);
}
.foot__fineprint {
  color: var(--text-400);
  font-size: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 223, 122, 0.08);
}
