@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;0,6..96,700;1,6..96,400&family=Sora:wght@300;400;500;600;700&display=swap');

:root {
  --navy-950: #00030a;
  --navy-900: #000515;
  --navy-800: #00081c;
  --navy-700: #061033;
  --navy-600: #0c1a4a;
  --gold-100: #fff6c8;
  --gold-200: #fdf0a0;
  --gold-300: #f5e196;
  --gold-400: #e8c86a;
  --gold-500: #d4af37;
  --gold-600: #c49a2a;
  --gold-700: #a67c22;
  --gold-800: #8a6418;
  --silver: #e8eef8;
  --silver-muted: #a8b3c7;
  --ink: #f4f7fb;
  --ink-soft: rgba(244, 247, 251, 0.72);
  --ink-faint: rgba(244, 247, 251, 0.45);
  --line: rgba(212, 175, 55, 0.22);
  --line-strong: rgba(212, 175, 55, 0.45);
  --grad-gold: linear-gradient(135deg, #8a6418 0%, #d4af37 35%, #fff6c8 50%, #d4af37 68%, #a67c22 100%);
  --grad-gold-soft: linear-gradient(90deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
  --grad-navy: radial-gradient(ellipse 80% 60% at 70% 20%, #0c1a4a 0%, #000515 48%, #00030a 100%);
  --grad-atmosphere: radial-gradient(ellipse 90% 70% at 50% -10%, rgba(212, 175, 55, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(12, 26, 74, 0.9), transparent 50%),
    linear-gradient(180deg, #000515 0%, #00030a 100%);
  --font-display: 'Bodoni Moda', 'Times New Roman', serif;
  --font-sans: 'Sora', system-ui, sans-serif;
  --shadow-gold: 0 24px 60px -28px rgba(212, 175, 55, 0.45);
  --shadow-deep: 0 30px 80px -30px rgba(0, 0, 0, 0.75);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 5.25rem;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--navy-950);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea { font: inherit; color: inherit; background: none; border: none; }
button { cursor: pointer; }

::selection {
  background: rgba(212, 175, 55, 0.35);
  color: #fff;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.gold-text {
  background: var(--grad-gold-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- NAV ---------- */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}

.site-nav.is-open {
  background: rgba(0, 5, 21, 0.96);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}

.site-nav.is-scrolled {
  background: rgba(0, 5, 21, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}

.nav-inner {
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.brand img {
  width: 3.35rem;
  height: 3.35rem;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line-strong), 0 8px 24px rgba(0, 0, 0, 0.45);
}

.brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-word strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: var(--grad-gold-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-word span {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver-muted);
  margin-top: 0.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--grad-gold-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav-links a:hover,
.nav-links a.is-active { color: var(--gold-300); }
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-950);
  background: var(--grad-gold-soft);
  border-radius: 999px;
  box-shadow: var(--shadow-gold);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -18px rgba(245, 225, 150, 0.65);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 1.5px;
  background: var(--gold-400);
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  transition: transform 0.3s var(--ease), background 0.3s, top 0.3s var(--ease);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.site-nav.is-open .nav-toggle span {
  background: transparent;
}

.site-nav.is-open .nav-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

.site-nav.is-open .nav-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.1rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, background 0.35s, color 0.35s, border-color 0.35s;
}

.btn-gold {
  color: var(--navy-950);
  background: var(--grad-gold-soft);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px -20px rgba(245, 225, 150, 0.7);
}

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  border-color: var(--gold-400);
  color: var(--gold-200);
  transform: translateY(-3px);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-row--center {
  justify-content: center;
}

.section-cta {
  margin-top: 2.25rem;
}

.section-lead--spaced {
  margin-bottom: 1.5rem;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--grad-navy);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  transform: scale(1.04);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 3, 10, 0.94) 0%, rgba(0, 5, 21, 0.78) 42%, rgba(0, 5, 21, 0.35) 68%, rgba(0, 3, 10, 0.55) 100%),
    linear-gradient(180deg, rgba(0, 5, 21, 0.35) 0%, rgba(0, 3, 10, 0.15) 40%, rgba(0, 3, 10, 0.88) 100%),
    radial-gradient(circle at 75% 35%, rgba(212, 175, 55, 0.18), transparent 42%);
  z-index: 1;
}

.hero-sparkle {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 28%, rgba(255, 246, 200, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 28% 62%, rgba(232, 200, 106, 0.55), transparent),
    radial-gradient(1px 1px at 48% 22%, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(1.5px 1.5px at 72% 48%, rgba(245, 225, 150, 0.5), transparent),
    radial-gradient(1px 1px at 88% 18%, rgba(255, 246, 200, 0.55), transparent);
  animation: sparklePulse 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
  padding: calc(var(--nav-h) + 4rem) 0 5.5rem;
  max-width: 40rem;
}

.hero-brand-mark {
  width: min(220px, 58vw);
  margin-bottom: 1.75rem;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55));
  animation: riseIn 1.1s var(--ease) both;
}

.hero-brand-mark img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  animation: riseIn 1.1s 0.12s var(--ease) both;
}

.hero-line {
  display: block;
}

.hero-line + .hero-line {
  margin-top: 0.08em;
}

.hero h1 em {
  font-style: italic;
  display: inline-block;
  padding-bottom: 0.06em;
  background: var(--grad-gold-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 28rem;
  margin-bottom: 2rem;
  animation: riseIn 1.1s 0.22s var(--ease) both;
}

.hero .btn-row { animation: riseIn 1.1s 0.32s var(--ease) both; }

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink-faint);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-scroll i {
  width: 1.2px;
  height: 2.4rem;
  background: linear-gradient(to bottom, var(--gold-400), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

/* ---------- SECTIONS ---------- */
.section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  background: var(--grad-atmosphere);
}

.section-alt {
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(212, 175, 55, 0.08), transparent 45%),
    linear-gradient(180deg, #00081c 0%, #000515 100%);
}

.section-dark {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212, 175, 55, 0.12), transparent 50%),
    linear-gradient(180deg, #00030a, #061033 55%, #000515);
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 36rem;
}

.section-head {
  margin-bottom: 3.25rem;
  max-width: 40rem;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-head.center .section-lead {
  margin-inline: auto;
}

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 8, 28, 0.65);
}

.trust-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-item:last-child { border-right: none; }

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--gold-300);
  margin-bottom: 0.35rem;
}

.trust-item span {
  font-size: 0.82rem;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}

/* ---------- SPLIT ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.split-media {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  border-radius: 0;
}

.split-media::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-strong);
  pointer-events: none;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 28rem;
}

.split-copy .pillars {
  margin-top: 2rem;
  display: grid;
  gap: 1.15rem;
}

.pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.pillar-mark {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-400);
  line-height: 1;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.pillar p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 300;
}

/* ---------- COLLECTIONS ---------- */
.collection-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.collection-card {
  display: block;
  position: relative;
  border-radius: 0.65rem;
  border: 1px solid var(--line);
  background: var(--navy-800);
  overflow: hidden;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.collection-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0);
  transition: box-shadow 0.4s var(--ease);
  pointer-events: none;
  z-index: 4;
}

.collection-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -24px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(212, 175, 55, 0.12);
}

.collection-card:hover::before {
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.35);
}

.collection-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(145deg, #0a1028 0%, #000515 100%);
}

.collection-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transform: scale(1.12);
  transition: transform 1.2s var(--ease);
}

.collection-card:hover .collection-card-media img {
  transform: scale(1.18);
}

/* Hide baked-in white label strips on product photos */
.collection-card-media::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 26%;
  background: linear-gradient(to top, #000515 72%, rgba(0, 5, 21, 0.92) 88%, transparent);
  z-index: 1;
  pointer-events: none;
}

.collection-card-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.35rem 1.25rem 1.2rem;
  background: linear-gradient(to top, rgba(0, 3, 10, 0.97) 0%, rgba(0, 5, 21, 0.75) 55%, transparent 100%);
}

.collection-card-caption::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--grad-gold-soft);
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.collection-card-tag {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.3rem;
}

.collection-card-title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}

.collection-rail--catalog {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

@media (max-width: 980px) {
  .collection-rail--catalog {
    display: flex;
    grid-template-columns: unset;
    gap: 1rem;
  }
}

/* Legacy alias — other pages may still use collection-item */
.collection-item {
  position: relative;
  display: block;
  overflow: hidden;
  isolation: isolate;
  min-height: 22rem;
  background: var(--navy-800);
}

.collection-item img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.collection-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 3, 10, 0.92) 100%);
  pointer-events: none;
}

.collection-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.5rem;
}

.collection-item figcaption span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.35rem;
}

.collection-item figcaption strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
}

.collection-item:hover img {
  transform: scale(1.08);
}

/* ---------- PRIVILEGE BAND ---------- */
.privilege-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.privilege-cell {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: rgba(0, 5, 21, 0.72);
  padding: 1.85rem 1.5rem;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s;
}

.privilege-cell:hover {
  border-color: var(--line-strong);
  background: rgba(12, 26, 74, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px -28px rgba(0, 0, 0, 0.65);
}

.privilege-cell--featured {
  border-color: var(--line-strong);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 175, 55, 0.12), transparent 55%),
    rgba(0, 5, 21, 0.88);
}

.privilege-cell--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: var(--grad-gold-soft);
  opacity: 0.7;
}

.privilege-cell .rate {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  background: var(--grad-gold-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin: 0.75rem 0 0.5rem;
}

.privilege-cell h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.privilege-cell p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.6;
}

.privilege-cell .label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
}

/* ---------- PLAN NAV (privileges page) ---------- */
.plan-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 5, 21, 0.92);
  backdrop-filter: blur(14px) saturate(130%);
}

.plan-nav-inner {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  padding: 0.65rem 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.plan-nav-inner::-webkit-scrollbar { display: none; }

.plan-nav a {
  flex: 0 0 auto;
  padding: 0.55rem 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
  white-space: nowrap;
}

.plan-nav a:hover {
  color: var(--gold-300);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.trust-strip--compact .trust-item {
  padding: 1.35rem 1rem;
}

.trust-strip--compact .trust-item strong {
  font-size: 1.1rem;
}

/* ---------- STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 1rem;
  border-top: 1px solid var(--line-strong);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-500);
  margin-bottom: 1rem;
  line-height: 1;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.55rem;
}

.step p {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 0.96rem;
}

/* ---------- HIGHLIGHTS LIST ---------- */
.highlight-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
}

.highlight-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.highlight-list svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold-400);
  margin-top: 0.15rem;
}

.highlight-list strong {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.highlight-list span {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 300;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0, 3, 10, 0.55), rgba(0, 3, 10, 0.82)),
    url('../images/thankyou-gold.png') center/cover;
}

.cta-band .section-title,
.cta-band .section-lead {
  margin-inline: auto;
}

.cta-band .section-lead {
  margin-bottom: 2rem;
}

/* ---------- PAGE HEADER ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 4.5rem) 0 4rem;
  overflow: hidden;
  background: var(--grad-navy);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 85% 20%, rgba(212, 175, 55, 0.18), transparent 50%),
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(12, 26, 74, 0.8), transparent 50%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.12;
  margin-bottom: 0.85rem;
}

.page-hero h1 .hero-line {
  display: block;
}

.page-hero h1 .hero-line + .hero-line {
  margin-top: 0.1em;
}

.page-hero p {
  max-width: 34rem;
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 1.05rem;
}

/* ---------- TABLES / DATA ---------- */
.data-panel {
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  overflow: hidden;
  background: rgba(0, 5, 21, 0.55);
}

.data-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.35) transparent;
}

.data-table-wrap--wide table.data {
  min-width: 720px;
}

.data-note {
  margin: 0;
  padding: 0.85rem 1.15rem 1rem;
  font-size: 0.82rem;
  color: var(--ink-faint);
  font-weight: 300;
  border-top: 1px solid var(--line);
  background: rgba(0, 3, 10, 0.35);
}

table.data {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

table.data th,
table.data td {
  padding: 0.95rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

table.data tbody tr:last-child td {
  border-bottom: none;
}

table.data th {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  background: rgba(12, 26, 74, 0.55);
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 1;
}

table.data td { color: var(--ink-soft); font-weight: 300; }
table.data td:first-child,
table.data td.em {
  color: var(--ink);
  font-weight: 500;
}

table.data tbody tr:hover td {
  background: rgba(212, 175, 55, 0.05);
}

table.data tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.015);
}

table.data tbody tr:nth-child(even):hover td {
  background: rgba(212, 175, 55, 0.05);
}

.slab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.slab {
  border: 1px solid var(--line);
  padding: 1.75rem 1.4rem;
  background: rgba(0, 8, 28, 0.55);
  transition: border-color 0.3s, transform 0.35s var(--ease);
}

.slab:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.slab .amount {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-muted);
}

.slab .pct {
  font-family: var(--font-display);
  font-size: 2.6rem;
  margin: 0.55rem 0 0.35rem;
  background: var(--grad-gold-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.slab p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 300;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 2rem 1.35rem 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-400);
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 300;
}

.faq-item[open] summary::after { content: '–'; }

.faq-item p {
  padding: 0 0 1.4rem;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 40rem;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
}

.contact-meta h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 1.5rem 0 0.4rem;
}

.contact-meta p {
  color: var(--ink-soft);
  font-weight: 300;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-grid label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  border-radius: 0;
  transition: border-color 0.25s;
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  outline: none;
  border-color: var(--gold-500);
}

.form-grid textarea { min-height: 8rem; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin-top: 0.75rem;
}

/* ---------- LEGAL ---------- */
.legal-body {
  max-width: 760px;
  margin-inline: auto;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold-300);
  margin: 2rem 0 0.75rem;
}

.legal-body p,
.legal-body li {
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.legal-body ul {
  padding-left: 1.1rem;
  list-style: disc;
}

.legal-body ul li::marker { color: var(--gold-500); }

/* ---------- FOOTER ---------- */
.site-footer {
  position: relative;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212, 175, 55, 0.1), transparent 55%),
    linear-gradient(180deg, #000515 0%, #00030a 100%);
  padding: clamp(2.75rem, 6vw, 4rem) 0 calc(1.75rem + env(safe-area-inset-bottom, 0px));
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(12rem, 40vw);
  height: 1px;
  background: var(--grad-gold-soft);
  opacity: 0.65;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.15fr 1.85fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 2.5rem;
  align-items: start;
}

.footer-brand-mark {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.footer-brand img {
  width: 4.25rem;
  height: 4.25rem;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px var(--line-strong), 0 12px 32px rgba(0, 0, 0, 0.4);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  line-height: 1.1;
}

.footer-brand-text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--grad-gold-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-brand-text span {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silver-muted);
}

.footer-brand p {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 22rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
}

.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.85rem;
}

.footer-col a {
  display: block;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.35rem 0;
  line-height: 1.45;
  transition: color 0.25s, transform 0.25s var(--ease);
}

.footer-col a:hover {
  color: var(--gold-300);
  transform: translateX(3px);
}

.footer-col--visit a:first-of-type {
  margin-bottom: 0.75rem;
}

.footer-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 0.35rem;
  padding: 0.65rem 1.1rem !important;
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-950) !important;
  background: var(--grad-gold-soft);
  border-radius: 999px;
  box-shadow: var(--shadow-gold);
  transform: none !important;
}

.footer-cta:hover {
  color: var(--navy-950) !important;
  transform: translateY(-2px) !important;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--ink-faint);
}

.pillars-inline {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.pillars-inline span:not(:last-child)::after {
  content: '•';
  margin-left: 1rem;
  opacity: 0.6;
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- JOIN PANEL ---------- */
.join-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  overflow: hidden;
}

.join-panel > div {
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.join-panel .panel-a {
  background: rgba(0, 8, 28, 0.8);
  border-right: 1px solid var(--line);
}

.join-panel .panel-b {
  background:
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.18), transparent 45%),
    rgba(0, 5, 21, 0.95);
}

.join-price {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1;
  margin: 0.75rem 0 0.5rem;
  background: var(--grad-gold-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.check-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.check-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 0.95rem;
}

.check-list li::before {
  content: '';
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--grad-gold-soft);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
}

/* ---------- ANIMATIONS ---------- */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, 1%, 0); }
}

@keyframes sparklePulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@keyframes scrollLine {
  0% { transform: scaleY(0.35); transform-origin: top; opacity: 0; }
  40% { opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  :root {
    --nav-h: 4.75rem;
  }

  .nav-links { display: none; }
  .nav-toggle { display: grid; }

  .site-nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
    padding: 1rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
    background:
      radial-gradient(ellipse 80% 40% at 50% 0%, rgba(212, 175, 55, 0.08), transparent 55%),
      rgba(0, 5, 21, 0.98);
    border-bottom: 1px solid var(--line);
    gap: 0;
    align-items: stretch;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav.is-open .nav-links a {
    padding: 0.95rem 0.15rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  }

  .site-nav.is-open .nav-links a.is-active {
    color: var(--gold-300);
  }

  .site-nav.is-open .nav-links a.is-active::after {
    transform: scaleX(1);
  }

  .site-nav.is-open .nav-links a:last-child,
  .site-nav.is-open .nav-links .nav-cta {
    border-bottom: none;
  }

  .site-nav.is-open .nav-cta {
    margin-top: 0.75rem;
    width: 100%;
    min-height: 3.25rem;
  }

  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2n) { border-right: none; }
  .trust-item { border-bottom: 1px solid var(--line); }

  .split,
  .contact-grid,
  .join-panel,
  .footer-top { grid-template-columns: 1fr; }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1.25rem;
  }

  .footer-col--visit {
    grid-column: 1 / -1;
    padding: 1.15rem 1.25rem;
    border: 1px solid var(--line);
    background: rgba(212, 175, 55, 0.04);
  }

  .split-media {
    min-height: 20rem;
    order: -1;
  }

  .split-media img {
    min-height: 20rem;
  }

  .join-panel .panel-a { border-right: none; border-bottom: 1px solid var(--line); }

  .collection-rail {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1.25rem;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: -1.25rem;
    padding-inline: 1.25rem;
  }

  .collection-rail::-webkit-scrollbar { display: none; }

  .collection-card {
    flex: 0 0 min(72vw, 300px);
    scroll-snap-align: start;
  }

  .privilege-grid,
  .slab-grid,
  .steps { grid-template-columns: 1fr; }

  .plan-nav-inner {
    padding-bottom: 0.75rem;
  }

  .data-table-wrap table.data {
    min-width: 520px;
  }

  .data-table-wrap--wide table.data {
    min-width: 640px;
  }

  .privilege-cell {
    padding: 1.5rem 1.25rem;
  }

  .highlight-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .section-head {
    margin-bottom: 2.25rem;
  }

  .hero-content {
    max-width: none;
  }

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .nav-inner {
    width: min(100% - 1.25rem, 1280px);
  }

  .brand img {
    width: 2.75rem;
    height: 2.75rem;
  }

  .brand-word { display: none; }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    align-items: end;
  }

  .hero-media img {
    object-position: 62% 12%;
    transform: scale(1.05);
    animation: none;
  }

  .hero-veil {
    background:
      linear-gradient(180deg, rgba(0, 5, 21, 0.72) 0%, rgba(0, 3, 10, 0.25) 38%, rgba(0, 3, 10, 0.94) 100%),
      linear-gradient(90deg, rgba(0, 3, 10, 0.9) 0%, rgba(0, 5, 21, 0.45) 55%, rgba(0, 3, 10, 0.65) 100%);
  }

  .hero-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 0.75rem 1.75rem;
    padding-bottom: max(1.75rem, env(safe-area-inset-bottom, 0px));
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 7.8vw, 2.55rem);
    line-height: 1.22;
    margin-bottom: 1rem;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  }

  .hero-line + .hero-line {
    margin-top: 0.28em;
  }

  .hero h1 em {
    padding-bottom: 0.1em;
  }

  .hero-lead {
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: none;
    margin-bottom: 1.65rem;
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
  }

  .hero-scroll {
    display: none !important;
  }

  .hero .btn-row {
    flex-direction: column;
    gap: 0.7rem;
  }

  .hero .btn-row .btn {
    width: 100%;
    min-height: 3.35rem;
    letter-spacing: 0.12em;
  }

  .btn-row:not(.hero .btn-row) .btn {
    flex: 1 1 auto;
    min-width: min(100%, 14rem);
  }

  .btn-row--center .btn {
    width: 100%;
    max-width: 22rem;
  }

  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-item {
    padding: 1.35rem 1rem;
    border-right: none;
  }

  .trust-item:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-bottom: none;
  }

  .trust-item strong {
    font-size: 1.15rem;
  }

  .trust-item span {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .section {
    padding: clamp(3.25rem, 8vw, 5rem) 0;
  }

  .section-title {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
  }

  .section-lead {
    font-size: 0.98rem;
  }

  .collection-rail {
    margin-inline: -0.75rem;
    padding-inline: 0.75rem;
    scroll-padding-inline: 0.75rem;
  }

  .collection-card {
    flex: 0 0 min(78vw, 280px);
  }

  .collection-card-caption {
    padding: 1.15rem 1rem 1rem;
  }

  .collection-card-title {
    font-size: 1.2rem;
  }

  .privilege-cell {
    padding: 1.5rem 1.25rem;
  }

  .step {
    padding-top: 0.75rem;
  }

  .step::before {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .step h3 {
    font-size: 1.25rem;
  }

  .highlight-list li {
    padding: 0.85rem 0;
  }

  .cta-band {
    padding: clamp(3rem, 8vw, 4.5rem) 0;
  }

  .cta-band .btn-row {
    flex-direction: column;
    align-items: center;
  }

  .footer-top {
    gap: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .footer-brand {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
  }

  .footer-brand-mark {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
  }

  .footer-brand p {
    max-width: none;
    margin-inline: auto;
    font-size: 0.9rem;
  }

  .pillars-inline {
    justify-content: center;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1rem;
  }

  .footer-col h4 {
    margin-bottom: 0.65rem;
  }

  .footer-col a {
    font-size: 0.88rem;
    padding: 0.3rem 0;
  }

  .footer-col--visit {
    text-align: center;
  }

  .footer-cta {
    width: 100%;
    max-width: 16rem;
    margin-inline: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    font-size: 0.72rem;
    line-height: 1.5;
  }

  .section-cta {
    margin-top: 1.75rem;
  }
}

@media (max-width: 380px) {
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item:nth-child(odd) { border-right: none; }
  .trust-item:not(:last-child) { border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: none; }
}
