:root {
  color-scheme: dark;
  --ink: #02070b;
  --panel: rgba(6, 16, 22, 0.78);
  --ivory: #eee6d8;
  --muted: #bdb5aa;
  --gold: #e8b659;
  --gold-light: #f3d08b;
  --line: rgba(232, 182, 89, 0.24);
}
* { box-sizing: border-box; }

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  overflow-x: hidden;
  background: var(--ink);
  color: var(--ivory);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

a { color: inherit; }

.nav-toggle,
.nav-backdrop,
.mobile-nav-sheet,
.back-to-top,
.site-footer__mobile,
.payment-options { display: none; }

body.nav-sheet-open { overflow: hidden; }

.page {
  position: relative;
  min-height: 100vh;
  overflow: clip;
  isolation: isolate;
  background:
    radial-gradient(circle at 72% 46%, rgba(21, 49, 57, 0.25), transparent 31%),
    radial-gradient(circle at 18% 62%, rgba(126, 83, 24, 0.08), transparent 34%),
    linear-gradient(118deg, #02070b 0%, #061016 48%, #03090d 100%);
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.16;
  background-image: linear-gradient(rgba(232, 182, 89, 0.06) 1px, transparent 1px);
  background-size: 100% 76px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 76%, transparent);
}

.starfield {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.twinkle-star {
  position: absolute;
  width: var(--star-size);
  height: var(--star-size);
  border-radius: 50%;
  background: rgba(235, 183, 82, 0.84);
  box-shadow: 0 0 1px rgba(244, 202, 121, var(--star-glow-low)), 0 0 3px rgba(202, 139, 45, var(--star-halo-low));
  opacity: var(--star-low);
  transform-origin: center;
  transform: scale(1);
  will-change: opacity;
  animation: star-twinkle var(--star-speed) ease-in-out var(--star-delay) infinite;
}

.needle-spark {
  position: absolute;
  width: 17px;
  height: 17px;
  margin-left: -8.5px;
  margin-top: -8.5px;
  pointer-events: none;
  opacity: 0;
  background: transparent;
  transform: scale(0.28);
  transform-origin: center;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 0 1.5px rgba(244, 202, 121, 0.44));
  animation: needle-spark-cycle 6.6s ease-in-out var(--spark-delay) infinite;
}

.needle-spark::before,
.needle-spark::after,
.needle-spark__diagonals::before,
.needle-spark__diagonals::after {
  content: "";
  position: absolute;
  display: block;
}

.needle-spark::before {
  left: 0;
  top: 8px;
  width: 17px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 202, 121, 0.24) 28%, rgba(250, 218, 151, 0.82) 50%, rgba(244, 202, 121, 0.24) 72%, transparent);
}

.needle-spark::after {
  left: 8px;
  top: 2px;
  width: 1px;
  height: 13px;
  background: linear-gradient(180deg, transparent, rgba(244, 202, 121, 0.22) 28%, rgba(250, 218, 151, 0.8) 50%, rgba(244, 202, 121, 0.22) 72%, transparent);
}

.needle-spark__diagonals { position: absolute; inset: 5px; }

.needle-spark__diagonals::before,
.needle-spark__diagonals::after {
  left: 0;
  top: 3px;
  width: 7px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(235, 183, 82, 0.48), transparent);
}

.needle-spark__diagonals::before { transform: rotate(45deg); }
.needle-spark__diagonals::after { transform: rotate(-45deg); }

.needle-spark__diamond {
  position: absolute;
  left: 7.5px;
  top: 7.5px;
  width: 2px;
  height: 2px;
  background: rgba(250, 218, 151, 0.94);
  transform: rotate(45deg);
}

.site-header,
.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1320px, calc(100% - 80px));
  margin: 0 auto;
}

.site-header {
  height: 86px;
  border-bottom: 1px solid rgba(232, 182, 89, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.25px;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  transform: rotate(0deg);
  transform-origin: center;
  transition: transform 420ms cubic-bezier(.4, 0, .2, 1), filter 420ms ease;
}

.brand:hover img,
.brand:focus-visible img {
  transform: rotate(180deg);
  filter: drop-shadow(0 0 8px rgba(232, 182, 89, 0.72));
}

.guide-link,
.site-footer,
.gift-label,
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
}

.guide-link,
.site-footer a,
.gift-link {
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease;
}

.guide-link { color: #d7c7ab; }
.guide-link:hover,
.guide-link:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible,
.gift-link:hover,
.gift-link:focus-visible { color: var(--gold-light); }

.content-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.75fr);
  gap: clamp(72px, 9vw, 150px);
  align-items: center;
  width: min(1190px, calc(100% - 120px));
  min-height: calc(100vh - 160px);
  margin: 0 auto;
  padding: 20px 0 30px;
}

.left-zone { max-width: 610px; }
.pricing-zone { justify-self: center; }

h1,
.gift-zone h2,
.price-card h2,
.price-card p { margin: 0; }

h1 {
  max-width: 620px;
  font-size: clamp(54px, 5.5vw, 82px);
  font-weight: 400;
  letter-spacing: -2.6px;
  line-height: 0.98;
}

@media (min-width: 761px) {
  h1 {
    max-width: 408px;
    min-height: 155.22px;
    font-size: 52px;
  }
}

.subtitle {
  margin: 24px 0 28px;
  color: #c9c1b6;
  font-size: 20px;
  line-height: 1.5;
}

.prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 180px));
  gap: 1px;
  width: fit-content;
  border: 1px solid var(--line);
  background: var(--line);
}

.price-card {
  min-height: 128px;
  padding: 18px 24px 16px;
  background: rgba(3, 10, 14, 0.88);
}

.price-card h2,
.term {
  color: #c7bfb3;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.4px;
}

.price {
  margin: 6px 0 2px !important;
  color: var(--gold-light);
  font-size: 44px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1;
}

.primary-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 361px;
  height: 56px;
  margin-top: 28px;
  border: 1px solid #d7a64f;
  background: linear-gradient(110deg, rgba(228, 175, 80, 0.16), rgba(232, 182, 89, 0.04));
  box-shadow: inset 0 0 20px rgba(232, 182, 89, 0.04), 0 0 22px rgba(180, 118, 27, 0.08);
  color: #f1d18e;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.35px;
  text-decoration: none;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.primary-cta::before,
.primary-cta::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}

.primary-cta::before {
  inset: -1px;
  border: 1px solid rgba(255, 231, 166, 0.92);
  box-shadow: 0 0 18px rgba(232, 182, 89, 0.22), inset 0 0 12px rgba(255, 239, 193, 0.09);
  animation: cta-border-flare 800ms ease-in-out 5.02s 1 both;
}

.primary-cta::after {
  left: -34%;
  bottom: -1px;
  width: 42%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 244, 210, 0.9), rgba(232, 182, 89, 0.28), transparent);
  filter: drop-shadow(0 0 5px rgba(243, 208, 139, 0.48));
  animation: cta-metal-sweep 800ms cubic-bezier(.22,.68,.28,1) 5.02s 1 both;
}

.primary-cta:hover,
.primary-cta:focus-visible {
  background: linear-gradient(110deg, rgba(228, 175, 80, 0.25), rgba(232, 182, 89, 0.08));
  box-shadow: inset 0 0 20px rgba(232, 182, 89, 0.08), 0 0 28px rgba(180, 118, 27, 0.15);
  color: #fff0c9;
}

.gift-zone {
  position: relative;
  max-width: 440px;
  min-height: 190px;
  padding: 0;
}

.gift-arrival-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 76px;
  padding-left: 40px;
}

.gift-emblem {
  position: relative;
  display: block;
  width: 82px;
  height: 72px;
  opacity: 0;
  transform: scale(0.5) translateY(8px);
  filter: drop-shadow(0 5px 10px rgba(180, 118, 27, 0.055));
  animation: gift-emblem-reveal 640ms cubic-bezier(.18,.78,.22,1) 820ms 1 forwards,
    gift-emblem-shimmer 520ms ease-in-out 1.48s 1 forwards;
}

.gift-box,
.gift-lid,
.gift-inner-glow,
.gift-bow,
.gift-bow i,
.gift-box i,
.gift-lid i {
  position: absolute;
  display: block;
  pointer-events: none;
}

.gift-box {
  left: 12px;
  top: 29px;
  width: 58px;
  height: 36px;
  border: 1px solid rgba(243, 208, 139, 0.64);
  border-radius: 2px 2px 5px 5px;
  background: linear-gradient(145deg, rgba(255, 246, 220, 0.12), rgba(232, 182, 89, 0.035) 52%, rgba(4, 11, 15, 0.28));
  box-shadow: inset 0 0 10px rgba(250, 218, 151, 0.055), 0 5px 12px rgba(0, 0, 0, 0.18);
  clip-path: inset(0 0 100% 0);
  animation: gift-box-unfold 580ms cubic-bezier(.2,.72,.2,1) 900ms 1 forwards;
}

.gift-box i {
  left: 24px;
  top: 0;
  width: 8px;
  height: 100%;
  border-left: 1px solid rgba(255, 246, 220, 0.48);
  border-right: 1px solid rgba(232, 182, 89, 0.34);
  background: linear-gradient(90deg, rgba(232, 182, 89, 0.08), rgba(255, 246, 220, 0.15), rgba(232, 182, 89, 0.05));
}

.gift-lid {
  left: 8px;
  top: 23px;
  z-index: 2;
  width: 66px;
  height: 12px;
  border: 1px solid rgba(255, 239, 193, 0.76);
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(105deg, rgba(243, 208, 139, 0.08), rgba(255, 246, 220, 0.2) 50%, rgba(232, 182, 89, 0.07));
  box-shadow: inset 0 0 9px rgba(255, 246, 220, 0.08);
  transform-origin: 20% 100%;
  transform: translateY(11px) rotate(0);
  animation: gift-lid-open 660ms cubic-bezier(.17,.84,.25,1) 940ms 1 forwards;
}

.gift-lid i {
  left: 28px;
  top: -1px;
  width: 8px;
  height: 12px;
  border-left: 1px solid rgba(255, 246, 220, 0.55);
  border-right: 1px solid rgba(232, 182, 89, 0.36);
  background: rgba(243, 208, 139, 0.07);
}

.gift-bow {
  left: 22px;
  top: 0;
  z-index: 3;
  width: 38px;
  height: 27px;
  opacity: 0;
  transform: scale(0.32) translateY(7px);
  transform-origin: 50% 100%;
  animation: gift-bow-open 540ms cubic-bezier(.2,.82,.24,1) 980ms 1 forwards;
}

.gift-bow::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 12px;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 244, 210, 0.8);
  border-radius: 50%;
  background: rgba(232, 182, 89, 0.08);
  box-shadow: 0 0 8px rgba(243, 208, 139, 0.22);
}

.gift-bow i {
  top: 3px;
  width: 18px;
  height: 14px;
  border: 1px solid rgba(243, 208, 139, 0.72);
  background: linear-gradient(145deg, rgba(255, 246, 220, 0.15), transparent);
}

.gift-bow i:first-child { left: 1px; border-radius: 12px 3px 8px 3px; transform: rotate(17deg); }
.gift-bow i:last-child { right: 1px; border-radius: 3px 12px 3px 8px; transform: rotate(-17deg); }

.gift-inner-glow {
  left: 14px;
  top: 20px;
  width: 52px;
  height: 28px;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(ellipse, rgba(255, 246, 220, 0.34), rgba(243, 208, 139, 0.1) 42%, transparent 72%);
  filter: blur(4px);
  animation: gift-inner-light 620ms ease-out 1s 1 forwards;
}

.gift-copy {
  opacity: 1;
}

.gift-zone h2 {
  max-width: 360px;
  margin-top: 1px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.32;
  opacity: 0;
  transform: translateY(8px);
  animation: gift-copy-arrival 560ms ease-out 1.48s 1 forwards;
}

.gift-zone p {
  max-width: 340px;
  margin: 8px 0 12px;
  color: #aaa399;
  font-size: 13px;
  line-height: 1.42;
}

.verification-copy {
  opacity: 0;
  transform: translateY(5px);
  animation: verification-copy-arrival 540ms ease-out 1.72s 1 forwards;
}

.gift-link {
  position: relative;
  z-index: 2;
  color: #d7b979;
  font-size: 11px;
  letter-spacing: 1.25px;
  opacity: 0;
  animation: gift-link-arrival 480ms ease-out 1.98s 1 forwards;
}

.plane-arrival {
  position: absolute;
  left: 0;
  top: calc(37px - var(--cta-y-correction, 0px));
  z-index: 5;
  width: 28px;
  height: 28px;
  opacity: 0;
  offset-path: path("M 0 16 C 132 -42 326 -35 512 6 C 646 36 724 39 790 20");
  offset-distance: 0%;
  offset-rotate: auto 8deg;
  offset-anchor: 50% 50%;
  filter: drop-shadow(0 0 5px rgba(255, 232, 163, 0.68));
  will-change: offset-distance, opacity, filter;
  animation: plane-continuous-flight 4.7s cubic-bezier(.4, 0, .2, 1) 480ms 1 forwards;
}

.plane-arrival::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 14px;
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 229, 151, 0.48));
  transform-origin: right center;
  animation: plane-trail 4.7s ease-in-out 480ms 1 forwards;
}

.plane-arrival svg { width: 25px; fill: #fff3c5; transform: rotate(40deg); }

.arrival-flare {
  position: absolute;
  left: 778px;
  top: calc(79px - var(--cta-y-correction, 0px));
  width: 18px;
  height: 18px;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, rgba(255, 249, 227, 0.96), rgba(243, 208, 139, 0.48) 34%, rgba(232, 182, 89, 0.12) 58%, transparent 74%);
  filter: blur(0.3px);
  animation: cta-arrival-flare 800ms ease-out 4.9s 1 both;
}

.guide-star {
  position: absolute;
  z-index: 4;
  width: 15px;
  height: 15px;
  margin: -7.5px 0 0 -7.5px;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 3px rgba(244, 202, 121, 0.3));
  animation: guide-star-activate 760ms ease-out var(--guide-delay) 1 both;
}

.guide-star::before,
.guide-star::after {
  content: "";
  position: absolute;
  display: block;
  background: linear-gradient(90deg, transparent, rgba(255, 244, 210, 0.86), transparent);
}

.guide-star::before { left: 0; top: 7px; width: 15px; height: 1px; }
.guide-star::after { left: 7px; top: 1px; width: 1px; height: 13px; }

.guide-star i {
  position: absolute;
  left: 6px;
  top: 6px;
  width: 3px;
  height: 3px;
  background: rgba(255, 244, 210, 0.94);
  transform: rotate(45deg);
}

.guide-star--1 { left: 300px; top: 15px; --guide-delay: 1.72s; }
.guide-star--2 { left: 626px; top: 65px; --guide-delay: 3.46s; }

.site-footer {
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 74px;
  transform: translateX(-50%);
  border-top: 1px solid rgba(232, 182, 89, 0.14);
  color: #918b83;
}

.site-footer a { color: #c7b47d; }
.site-footer__desktop-legal { display: flex; align-items: center; gap: 18px; }

@keyframes star-twinkle {
  0%, 100% {
    opacity: var(--star-low);
    transform: scale(1);
    box-shadow: 0 0 1px rgba(244, 202, 121, var(--star-glow-low)), 0 0 3px rgba(202, 139, 45, var(--star-halo-low));
  }
  50% {
    opacity: var(--star-high);
    transform: scale(1.04);
    box-shadow: 0 0 2px rgba(250, 218, 151, var(--star-glow-high)), 0 0 5px rgba(211, 151, 55, var(--star-halo-high));
  }
}

@keyframes needle-spark-cycle {
  0% { opacity: 0; transform: scale(0.28); }
  2% { opacity: 0.72; transform: scale(0.72); }
  4% { opacity: 1; transform: scale(1); }
  6% { opacity: 0.94; transform: scale(1); }
  10% { opacity: 0; transform: scale(1.06); }
  13.5% { opacity: 0.34; transform: scale(0.62); }
  15% { opacity: 0; transform: scale(0.78); }
  16%, 100% { opacity: 0; transform: scale(0.78); }
}

@keyframes plane-continuous-flight {
  0% { opacity: 0; offset-distance: 0%; filter: drop-shadow(0 0 3px rgba(255, 232, 163, 0.35)); }
  7% { opacity: 1; }
  88.9% { opacity: 1; filter: drop-shadow(0 0 5px rgba(255, 232, 163, 0.68)); }
  100% { opacity: 0; offset-distance: 100%; filter: drop-shadow(0 0 12px rgba(255, 225, 148, 0)); }
}

@keyframes cta-arrival-flare {
  0%, 100% { opacity: 0; transform: scale(0.28); filter: blur(1px); }
  38% { opacity: 0.72; transform: scale(2.8); filter: blur(0.4px); }
}

@keyframes gift-copy-arrival {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gift-link-arrival {
  from { opacity: 0; color: #b99a61; text-shadow: none; }
  55% { opacity: 1; color: #fff0c9; text-shadow: 0 0 9px rgba(232, 182, 89, 0.48); }
  to { opacity: 1; color: #e4c98f; text-shadow: 0 0 3px rgba(232, 182, 89, 0.14); }
}

@keyframes plane-trail {
  0%, 10% { opacity: 0; transform: scaleX(0.22); }
  22%, 72% { opacity: 0.42; transform: scaleX(0.72); }
  100% { opacity: 0; transform: scaleX(0.18); }
}

@keyframes guide-star-activate {
  0%, 100% { opacity: 0; transform: scale(0.35); }
  34% { opacity: 0.52; transform: scale(0.78); }
  54% { opacity: 0.76; transform: scale(0.94); }
  76% { opacity: 0.22; transform: scale(0.68); }
}

@keyframes cta-border-flare {
  0%, 100% { opacity: 0; filter: brightness(1); }
  38%, 58% { opacity: 0.72; filter: brightness(1.08); }
}

@keyframes cta-metal-sweep {
  0% { opacity: 0; transform: translateX(0); }
  22% { opacity: 0.72; }
  76% { opacity: 0.46; }
  100% { opacity: 0; transform: translateX(215%); }
}

@keyframes gift-emblem-reveal {
  0% { opacity: 0; transform: scale(0.5) translateY(7px); filter: brightness(0.78) drop-shadow(0 5px 10px rgba(180, 118, 27, 0.04)); }
  52% { opacity: 0.94; transform: scale(1.02) translateY(-1px); filter: brightness(1.1) drop-shadow(0 6px 13px rgba(180, 118, 27, 0.1)); }
  100% { opacity: 0.92; transform: scale(1) translateY(0); filter: brightness(1) drop-shadow(0 5px 10px rgba(180, 118, 27, 0.06)); }
}

@keyframes gift-box-unfold {
  from { clip-path: inset(0 0 100% 0); opacity: 0.4; }
  to { clip-path: inset(0 0 0 0); opacity: 1; }
}

@keyframes gift-lid-open {
  0% { transform: translateY(11px) rotate(0); }
  58% { transform: translateY(-7px) rotate(-5deg); }
  100% { transform: translateY(-4px) rotate(-2deg); }
}

@keyframes gift-bow-open {
  from { opacity: 0; transform: scale(0.36) translateY(8px); }
  62% { opacity: 1; transform: scale(1.08) translateY(-1px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes gift-inner-light {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  46% { opacity: 0.92; transform: scale(1.28); }
  78% { opacity: 0.36; transform: scale(1); }
}

@keyframes gift-emblem-shimmer {
  0%, 100% { filter: brightness(1) drop-shadow(0 5px 10px rgba(180, 118, 27, 0.06)); }
  48% { filter: brightness(1.14) drop-shadow(0 6px 14px rgba(243, 208, 139, 0.12)); }
}

@keyframes verification-copy-arrival {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 760px) {
  .page {
    min-height: 100svh;
    overflow: clip;
    background:
      radial-gradient(circle at 82% 8%, rgba(30, 76, 84, 0.28), transparent 19rem),
      radial-gradient(circle at 12% 58%, rgba(126, 83, 24, 0.09), transparent 23rem),
      linear-gradient(155deg, #02070b 0%, #061016 52%, #03090d 100%);
  }
  .page::before { background-size: 100% 54px; }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 6;
    background: var(--ink);
    width: auto;
    min-height: calc(74px + env(safe-area-inset-top, 0px));
    height: auto;
    margin-right: calc(18px + env(safe-area-inset-right, 0px));
    margin-left: calc(18px + env(safe-area-inset-left, 0px));
    padding-top: env(safe-area-inset-top, 0px);
  }

  .brand { min-height: 44px; gap: 8px; font-size: 9px; letter-spacing: 0.95px; }
  .brand img { width: 34px; height: 34px; }
  .guide-link { display: none; }
  .nav-toggle {
    display: inline-flex;
    min-width: 100px;
    min-height: 44px;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-left: auto;
    padding: 0;
    border: 0;
    color: var(--gold);
    background: transparent;
    font: inherit;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    cursor: pointer;
    touch-action: manipulation;
  }
  .nav-toggle__chevron {
    width: 8px;
    height: 8px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 180ms ease;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle__chevron { transform: translateY(2px) rotate(225deg); }

  .content-shell {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: auto;
    min-height: 0;
    margin-right: calc(18px + env(safe-area-inset-right, 0px));
    margin-left: calc(18px + env(safe-area-inset-left, 0px));
    padding: 38px 0 62px;
  }

  .left-zone,
  .hero-zone,
  .pricing-zone { display: contents; }

  h1 {
    order: 1;
    max-width: 340px;
    font-size: clamp(42px, 12vw, 47px);
    letter-spacing: -1.8px;
    line-height: 0.98;
  }

  .subtitle {
    order: 2;
    max-width: 348px;
    margin: 18px 0 30px;
    font-size: 15px;
    line-height: 1.52;
  }

  .prices {
    order: 4;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .price-card { min-height: 112px; padding: 17px 18px 14px; }
  .price { margin: 7px 0 2px !important; font-size: 38px; }
  .price-card h2,
  .term { font-size: 8px; letter-spacing: 1.15px; }

  .payment-options {
    order: 5;
    display: block;
    margin-top: 14px;
    border-top: 1px solid rgba(232, 182, 89, 0.22);
    border-bottom: 1px solid rgba(232, 182, 89, 0.16);
    background: rgba(3, 10, 14, 0.42);
  }
  .payment-options > h2 {
    margin: 0;
    padding: 12px 12px 9px;
    color: #d7b979;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.16em;
    line-height: 1.2;
  }
  .payment-option-row {
    display: grid;
    grid-template-columns: 102px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 43px;
    padding: 8px 12px;
    border-top: 1px solid rgba(232, 182, 89, 0.09);
  }
  .payment-option-row h3,
  .payment-option-row p { margin: 0; }
  .payment-option-row h3 {
    color: #d7c7ab;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.3;
  }
  .payment-option-row p {
    color: #aaa399;
    font-size: 11px;
    line-height: 1.38;
  }

  .gift-zone {
    order: 3;
    min-height: 238px;
    margin: 0 0 5px;
    padding: 12px 0 0;
    border-top: 1px solid rgba(232, 182, 89, 0.12);
  }

  .gift-arrival-row { min-height: 86px; padding-left: 42px; }
  .gift-emblem { width: 72px; height: 64px; transform-origin: left top; }
  .gift-box { left: 10px; top: 24px; width: 46px; height: 29px; }
  .gift-box i { left: 19px; width: 7px; }
  .gift-lid { left: 6px; top: 19px; width: 54px; height: 10px; }
  .gift-lid i { left: 23px; width: 7px; height: 10px; }
  .gift-bow { left: 14px; top: -2px; transform: scale(0.7); }
  .gift-inner-glow { left: 11px; top: 17px; width: 42px; height: 23px; }
  .gift-zone h2 { max-width: 310px; margin-top: 6px; font-size: 17px; line-height: 1.35; }
  .gift-zone p { max-width: 280px; margin: 5px 0 6px; font-size: 11px; line-height: 1.35; }
  .gift-link { display: inline-flex; min-height: 44px; align-items: center; font-size: 10px; touch-action: manipulation; }
  .plane-arrival {
    top: calc(18px - var(--cta-y-correction, 0px));
    offset-path: path("M 0 8 C 88 -18 202 18 292 126 C 338 182 328 246 250 278 C 164 314 70 320 12 330");
  }
  .arrival-flare { left: 7px; top: calc(338px - var(--cta-y-correction, 0px)); }
  .guide-star--1 { left: 133px; top: 45px; }
  .guide-star--2 { left: 316px; top: 186px; }

  .primary-cta {
    order: 6;
    width: 100%;
    min-width: 0;
    min-height: 52px;
    height: 52px;
    margin-top: 14px;
    font-size: 10px;
    touch-action: manipulation;
  }

  .site-footer {
    position: relative;
    left: auto;
    bottom: auto;
    display: block;
    width: auto;
    height: auto;
    margin-right: calc(18px + env(safe-area-inset-right, 0px));
    margin-left: calc(18px + env(safe-area-inset-left, 0px));
    padding: 29px 0 calc(36px + env(safe-area-inset-bottom, 0px));
    transform: none;
    font-size: 9px;
    letter-spacing: 0;
  }

  .site-footer__desktop-brand,
  .site-footer__desktop-legal,
  .site-footer__desktop-support { display: none; }
  .site-footer__mobile,
  .site-footer__mobile-brand,
  .site-footer__group { display: block; }
  .site-footer__mobile-brand { padding: 0 60px 22px 0; }
  .site-footer__mobile-brand p { max-width: 285px; margin: 9px 0 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
  .footer-kicker,
  .footer-heading { margin-bottom: 5px; color: var(--gold); font-size: 10px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; }
  .site-footer__group { border-top: 1px solid rgba(255, 203, 112, 0.12); padding: 20px 0 12px; }
  .site-footer__group a,
  .site-footer__group .footer-current {
    display: flex;
    width: calc(100% - 60px - env(safe-area-inset-right, 0px));
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 203, 112, 0.08);
    color: var(--muted);
    font-size: 11px;
    text-decoration: none;
  }
  .site-footer__group a::after { content: "›"; color: rgba(232, 182, 89, 0.7); font-size: 18px; font-weight: 300; }
  .site-footer__group .footer-current { color: var(--gold); }

  .nav-backdrop { position: fixed; inset: 0; z-index: 40; display: block; opacity: 0; background: rgba(0, 4, 7, 0.68); transition: opacity 220ms ease; }
  .mobile-nav-sheet {
    position: fixed;
    z-index: 41;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    max-height: 82dvh;
    flex-direction: column;
    overflow: hidden;
    border-top: 1px solid rgba(255, 203, 112, 0.34);
    border-radius: 18px 18px 0 0;
    color: var(--ivory);
    background: rgba(3, 9, 12, 0.985);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.42);
    opacity: 0;
    transform: translateY(100%);
    transition: transform 220ms ease, opacity 200ms ease;
  }
  .nav-backdrop[hidden],
  .mobile-nav-sheet[hidden] { display: none; }
  .nav-backdrop.is-open { opacity: 1; }
  .mobile-nav-sheet.is-open { opacity: 1; transform: translateY(0); }
  .mobile-nav-sheet__header { position: relative; display: flex; min-height: 64px; flex: 0 0 auto; align-items: center; padding: 12px 18px 8px; touch-action: none; }
  .mobile-nav-sheet__handle { position: absolute; left: 50%; top: 7px; width: 38px; height: 3px; border-radius: 3px; background: rgba(232, 182, 89, 0.36); transform: translateX(-50%); }
  .mobile-nav-sheet__header h2 { margin: 5px 52px 0 0; color: var(--gold); font-size: 12px; font-weight: 500; letter-spacing: 0.16em; }
  .mobile-nav-sheet__close { position: absolute; top: 10px; right: 10px; display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border: 0; color: var(--gold); background: transparent; font-size: 28px; font-weight: 200; line-height: 1; cursor: pointer; touch-action: manipulation; }
  .mobile-nav-sheet__body { overflow-y: auto; overscroll-behavior: contain; padding: 4px 18px calc(18px + env(safe-area-inset-bottom, 0px)); -webkit-overflow-scrolling: touch; }
  .mobile-nav-group { border-top: 1px solid rgba(255, 203, 112, 0.13); padding: 17px 0 8px; }
  .mobile-nav-group__title { margin-bottom: 5px; color: #bda16d; font-size: 9px; font-weight: 600; letter-spacing: 0.18em; }
  .mobile-nav-group a,
  .mobile-nav-current { display: flex; width: 100%; min-height: 48px; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255, 203, 112, 0.075); color: #e5ddd0; font-size: 14px; text-decoration: none; }
  .mobile-nav-group a > span:last-child { color: rgba(232, 182, 89, 0.64); font-size: 22px; font-weight: 200; }
  .mobile-nav-current { color: var(--gold); }

  .back-to-top { position: fixed; z-index: 39; right: calc(16px + env(safe-area-inset-right, 0px)); bottom: calc(16px + env(safe-area-inset-bottom, 0px)); display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid rgba(232, 182, 89, 0.72); border-radius: 10px; color: var(--gold); background: rgba(3, 9, 12, 0.94); box-shadow: 0 5px 18px rgba(0, 0, 0, 0.28); font-size: 20px; line-height: 1; cursor: pointer; touch-action: manipulation; transition: color 140ms ease, border-color 140ms ease, background 140ms ease, transform 140ms ease; }
  .back-to-top[hidden] { display: none; }

  .brand:active,
  .nav-toggle:active,
  .gift-link:active,
  .primary-cta:active,
  .mobile-nav-group a:active,
  .mobile-nav-sheet__close:active,
  .site-footer__group a:active,
  .back-to-top:active { color: #f1d79f; transform: scale(0.96); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .twinkle-star,
  .needle-spark { animation: none; }
  .needle-spark { opacity: 0; }
  .plane-arrival {
    animation: none;
    opacity: 0;
    offset-distance: 100%;
  }
  .primary-cta::before,
  .primary-cta::after { animation: none; opacity: 0; }
  .arrival-flare { display: none; }
  .guide-star { animation: none; opacity: 0; }
  .gift-emblem,
  .gift-box,
  .gift-lid,
  .gift-bow { animation: none; opacity: 1; transform: none; clip-path: none; }
  .gift-inner-glow { animation: none; opacity: 0; }
  .gift-zone h2,
  .verification-copy { animation: none; opacity: 1; transform: none; }
  .gift-link { animation: none; opacity: 1; }
  .mobile-nav-sheet,
  .nav-backdrop,
  .nav-toggle__chevron,
  .back-to-top { transition: none !important; }
}

/* Paid-page integration for the Access Guide approved footer */
.site-footer {
  position: relative;
  left: auto;
  bottom: auto;
  width: min(calc(100% - 80px), 1200px);
  height: auto;
  margin-inline: auto;
  transform: none;
}

/* Access Guide approved footer normalization */
.site-footer {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0;
  border-top: 1px solid rgba(255, 203, 112, .15);
  color: var(--muted);
}
.footer-brand { font-size: 9px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; }
.footer-legal { display: flex; min-height: 44px; align-items: center; justify-content: flex-end; gap: 28px; margin: 0; padding: 0; border: 0; }
.footer-legal a { display: inline-flex; min-height: 44px; align-items: center; padding: 0 3px; color: var(--muted); font-size: 10px; line-height: 1; transition: color .22s var(--ease, ease); }
.footer-legal a:hover, .footer-legal a:focus-visible { color: var(--gold); }

@media (max-width: 980px) {
  .site-footer { width: min(calc(100% - 48px), 1200px); }
}

@media (max-width: 720px) {
  .site-footer { width: calc(100% - 36px); min-height: 0; flex-wrap: wrap; gap: 0 24px; margin-inline: auto; padding: 18px 0 22px; }
  .footer-brand { min-height: 44px; display: inline-flex; align-items: center; font-size: 8px; }
  .footer-legal { min-height: 44px; flex-wrap: wrap; justify-content: flex-start; gap: 0 24px; }
  .footer-legal a { min-height: 44px; font-size: 11px; }
}
