/* ===================================================================
   The Gold Exchange Card (TGXC) — Premium Gold Membership Site
   Visual system matches goldback.com: warm gold, charcoal, ivory
=================================================================== */

:root {
  --gold: #d4af37;
  --gold-light: #e7c769;
  --gold-deep: #b08a1a;
  --gold-glow: #f4d56b;
  --ink: #0a0a0a;
  --ink-2: #161616;
  --ink-3: #1f1f1f;
  --charcoal: #2a2a2a;
  --slate: #4a4a4a;
  --ivory: #f8f5ef;
  --cream: #f1ece0;
  --line: rgba(212, 175, 55, 0.25);
  --line-soft: rgba(0, 0, 0, 0.08);
  --white: #ffffff;
  --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-lg: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 12px 30px -10px rgba(0, 0, 0, 0.3);
  --radius: 4px;
  --radius-lg: 8px;
  --t: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color .25s var(--t); }
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; letter-spacing: -0.01em; }

p { margin: 0 0 1em; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.text-gold { color: var(--gold); }

/* ============ TOPBAR ============ */
.topbar {
  background: #000;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  border-bottom: 1px solid var(--gold-deep);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 38px;
}
.topbar-pill { color: var(--gold-light); }
.topbar-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-size: 12px;
}
.topbar-link .dot {
  width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-glow);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,55,0.18);
  transition: all .3s var(--t);
}
.site-header.scrolled {
  background: rgba(0,0,0,0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 84px; gap: 18px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: #fff;
  flex-shrink: 0;
}
.brand-mark svg { display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; white-space: nowrap; }
.brand-name {
  font-family: var(--serif);
  font-size: 18px; font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}
.brand-tag {
  font-size: 9px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500;
}

.primary-nav { flex: 1; }
.primary-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 2px; flex-wrap: wrap;
  justify-content: center;
}
.primary-nav a {
  color: #e6e6e6;
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 9px;
  border-bottom: 2px solid transparent;
  transition: all .25s var(--t);
  white-space: nowrap;
}
.primary-nav a:hover, .primary-nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.header-cta { display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none;
  background: transparent; border: none;
  width: 40px; height: 40px;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--gold);
  transition: all .3s var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all .3s var(--t);
  text-align: center;
  white-space: nowrap;
}
.btn-sm { padding: 9px 18px; font-size: 11px; }
.btn-lg { padding: 18px 38px; font-size: 14px; }
.btn-block { display: flex; width: 100%; }

.btn-gold {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-glow);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -8px rgba(212,175,55,0.6);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.btn-outline-light {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: #fff; color: #000; }

.btn-outline-dark {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn-outline-dark:hover { background: var(--ink); color: var(--gold); }

.btn-ghost {
  background: transparent; color: #fff;
  border-color: transparent;
}
.btn-ghost:hover { color: var(--gold); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: calc(100vh - 122px);
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-video video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.85) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 120px 24px;
  max-width: 1100px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 24px;
}
.eyebrow-line {
  display: inline-block; width: 36px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 700;
  line-height: 0.95;
  margin: 0 0 24px;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.hero-accent {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 700;
}
.hero-sub {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 30px);
  font-style: italic;
  color: var(--gold-light);
  margin: 0 0 24px;
  font-weight: 400;
}
.hero-lede {
  font-size: 18px;
  line-height: 1.65;
  max-width: 700px;
  color: rgba(255,255,255,0.88);
  margin: 0 0 36px;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-bottom: 60px;
}
.hero-meta {
  display: flex; align-items: center; gap: 36px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(212,175,55,0.3);
  max-width: 800px;
}
.meta-item { display: flex; flex-direction: column; gap: 4px; }
.meta-item strong {
  font-family: var(--serif);
  font-size: 28px; font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.meta-item span {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.meta-divider { width: 1px; height: 36px; background: rgba(212,175,55,0.3); }

.scroll-cue {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 30px; height: 50px;
  border: 2px solid var(--gold);
  border-radius: 14px;
  display: flex; justify-content: center;
  padding-top: 8px;
}
.scroll-cue span {
  width: 3px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollCue 1.6s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

/* ============ SECTIONS ============ */
.section { padding: 110px 0; position: relative; }
.section-light { background: var(--ivory); color: var(--ink); }
.section-dark { background: var(--ink); color: #fff; }
.section-cream { background: var(--cream); color: var(--ink); }

.section-head {
  text-align: center;
  max-width: 800px; margin: 0 auto 70px;
}
.section-head-light { color: #fff; }

.kicker {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.kicker-light { color: var(--gold-light); }
.kicker-gold { color: var(--gold); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 18px;
}
.section-title-light { color: #fff; }
.section-lede {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.7;
  margin: 0;
}
.section-lede-light { color: rgba(255,255,255,0.8); }

/* ============ STEPS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.step-card {
  position: relative;
  background: #fff;
  padding: 36px 28px 32px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: all .35s var(--t);
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width .4s var(--t);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.step-card:hover::before { width: 100%; }

.step-num {
  font-family: var(--serif);
  font-size: 56px; font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  font-style: italic;
}
.step-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 14px;
  color: var(--ink);
}
.step-card p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 20px;
}
.step-link {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.step-link:hover { color: var(--ink); border-color: var(--ink); }

/* ============ VIDEO BANNER ============ */
.video-banner {
  position: relative;
  padding: 140px 0;
  color: #fff;
  overflow: hidden;
}
.video-banner-bg {
  position: absolute; inset: 0; z-index: 0;
}
.video-banner-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.video-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.85) 100%);
}
.video-banner-content {
  position: relative; z-index: 1;
  max-width: 1100px;
}
.display-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 24px;
  color: #fff;
}
.display-lede {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 0 50px;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.quick-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius);
  padding: 24px 20px;
  backdrop-filter: blur(8px);
  transition: all .3s var(--t);
}
.quick-card:hover {
  background: rgba(212,175,55,0.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.quick-icon {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 12px;
}
.quick-card h4 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  line-height: 1.5;
}

/* ============ SPLIT LAYOUT ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-text { padding: 20px 0; }
.split-text .prose { font-size: 16px; color: var(--slate); line-height: 1.75; }
.split-text .sub-h {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold-deep);
  margin: 28px 0 12px;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.cta-row.center { justify-content: center; }

.split-media { position: relative; }
.media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}
.media-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.media-corner {
  position: absolute;
  width: 32px; height: 32px;
  border: 2px solid var(--gold);
}
.media-corner.tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.media-corner.tr { top: 16px; right: 16px; border-left: 0; border-bottom: 0; }
.media-corner.bl { bottom: 16px; left: 16px; border-right: 0; border-top: 0; }
.media-corner.br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }

.denominations {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-top: 20px;
  justify-content: center;
}
.denominations span {
  font-family: var(--serif);
  font-size: 14px; font-weight: 600;
  background: var(--ink);
  color: var(--gold);
  padding: 8px 14px;
  border-radius: 50px;
  border: 1px solid var(--gold);
}

.video-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-frame video {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
}
.play-tag {
  position: absolute; top: 20px; left: 20px;
  background: var(--gold);
  color: #000;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em;
  padding: 8px 16px;
  border-radius: 2px;
}

/* ============ PRICING ============ */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.price-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  transition: all .35s var(--t);
}
.price-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.price-card-feature {
  background: linear-gradient(180deg, rgba(212,175,55,0.12) 0%, rgba(255,255,255,0.04) 100%);
  border-color: var(--gold);
  transform: scale(1.02);
}
.price-ribbon {
  position: absolute; top: -1px; right: 30px;
  background: var(--gold);
  color: #000;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em;
  padding: 8px 18px;
  border-radius: 0 0 4px 4px;
}
.price-name {
  font-family: var(--serif);
  font-size: 22px;
  color: #fff;
  margin: 0 0 24px;
  text-align: center;
}
.price-amount {
  font-family: var(--serif);
  font-size: 64px; font-weight: 700;
  color: var(--gold);
  text-align: center;
  line-height: 1;
  margin: 0 0 8px;
}
.price-currency { font-size: 36px; vertical-align: top; }
.price-suffix { font-size: 18px; color: rgba(255,255,255,0.6); }
.price-period {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}
.price-list {
  list-style: none; padding: 0; margin: 0 0 32px;
}
.price-list li {
  position: relative;
  padding: 12px 0 12px 28px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.price-list li:last-child { border-bottom: 0; }
.price-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 12px;
  color: var(--gold);
  font-weight: 700;
}

.footer-note {
  text-align: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  max-width: 800px;
  margin: 50px auto 0;
  line-height: 1.7;
}

/* ============ COMP GRID ============ */
.comp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 24px 0;
}
.comp-box {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #000;
  padding: 24px 20px;
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 6px;
}
.comp-num {
  font-family: var(--serif);
  font-size: 28px; font-weight: 700;
  line-height: 1;
}
.comp-cap {
  font-size: 12.5px; font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* ============ MERCHANT BAND ============ */
.merchant-band {
  background:
    linear-gradient(135deg, rgba(0,0,0,0.92), rgba(0,0,0,0.96)),
    radial-gradient(circle at top right, rgba(212,175,55,0.15), transparent 50%);
  background-color: #050505;
  padding: 100px 0;
  color: #fff;
}
.merchant-head {
  text-align: center;
  max-width: 800px; margin: 0 auto 60px;
}
.merchant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}
.merch-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all .35s var(--t);
}
.merch-card:hover {
  background: rgba(212,175,55,0.08);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.merch-card h4 {
  font-family: var(--serif);
  font-size: 19px;
  color: #fff;
  margin: 0 0 10px;
}
.merch-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
}

/* ============ GLOBAL COUNTERS ============ */
.global { padding: 100px 0; }
.global-head {
  text-align: center;
  max-width: 800px; margin: 0 auto 60px;
}
.display-title-sm {
  font-family: var(--serif);
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: 0.02em;
}
.display-lede-sm {
  font-size: 16.5px;
  color: var(--slate);
  line-height: 1.7;
  margin: 0;
}
.counters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1100px; margin: 0 auto;
}
.counter {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  position: relative;
  transition: all .3s var(--t);
}
.counter::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 3px;
  background: var(--gold);
  transition: width .4s var(--t);
}
.counter:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.counter:hover::after { width: 100%; }
.counter-num {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 10px;
}
.counter-label {
  font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
}

/* ============ QUOTE CARD ============ */
.quote-card {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
  color: #fff;
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  position: relative;
  border: 1px solid var(--gold);
  margin-bottom: 30px;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 100px; font-weight: 700;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 8px;
}
.quote-card blockquote {
  font-family: var(--display);
  font-size: 28px; font-style: italic;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.3;
}
.quote-card cite {
  font-size: 13px;
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.08em;
}
.quote-foot {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(212,175,55,0.3);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.values {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 24px 0;
}
.value {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em;
  padding: 8px 14px;
  background: var(--ink);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 2px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.trust-item {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 20px 14px;
  border-radius: var(--radius);
  text-align: center;
}
.trust-num {
  display: block;
  font-family: var(--serif);
  font-size: 22px; font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 4px;
}
.trust-cap {
  font-size: 11px;
  color: var(--slate);
  letter-spacing: 0.05em;
  line-height: 1.4;
  display: block;
}

/* ============ VIDEO LIBRARY TEASER ============ */
.video-library-teaser { padding: 100px 0; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.video-tile {
  display: block;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .35s var(--t);
  color: #fff;
}
.video-tile:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  color: var(--gold);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--t);
}
.video-tile:hover .video-thumb img { transform: scale(1.06); }
.video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: rgba(212,175,55,0.92);
  color: #000;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; padding-left: 4px;
  transition: all .3s var(--t);
}
.video-tile:hover .video-play {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
}
.video-tile h4 {
  font-family: var(--serif);
  font-size: 17px;
  margin: 16px 20px 18px;
  color: #fff;
  line-height: 1.3;
}

/* ============ CLOSING CTA ============ */
.closing {
  position: relative;
  padding: 140px 0;
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.closing-bg {
  position: absolute; inset: 0; z-index: 0;
}
.closing-bg video {
  width: 100%; height: 100%; object-fit: cover;
}
.closing-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.85), rgba(0,0,0,0.95));
}
.closing-content {
  position: relative; z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.display-title-light {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 24px;
  color: #fff;
  letter-spacing: 0.01em;
}
.display-lede-light {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin: 0 0 40px;
}

/* ============ FOOTER ============ */
.site-footer {
  background: #050505;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
  border-top: 1px solid rgba(212,175,55,0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}
.foot-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.foot-fine { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.foot-col h5 {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
  font-weight: 600;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: 10px; }
.foot-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.foot-col a:hover { color: var(--gold); }

.footer-bar {
  background: #000;
  border-top: 1px solid rgba(212,175,55,0.1);
  padding: 24px 0;
}
.footer-bar-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  line-height: 1.5;
}

/* ============ MOBILE STICKY ============ */
.mobile-sticky {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 99;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-top: 1px solid var(--gold);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .primary-nav { display: none; position: fixed; top: 122px; left: 0; right: 0;
    background: var(--ink); padding: 20px;
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    max-height: calc(100vh - 122px); overflow-y: auto;
  }
  .primary-nav.open { display: block; }
  .primary-nav ul { flex-direction: column; gap: 0; }
  .primary-nav li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .primary-nav a { display: block; padding: 14px 8px; font-size: 14px; }
  .hamburger { display: flex; }
  .header-cta .btn-ghost { display: none; }

  .split { grid-template-columns: 1fr; gap: 50px; }
  .split-media.order-2 { order: 1; }
  .split-text.order-1 { order: 2; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .container { padding: 0 18px; }
  .topbar { display: none; }
  .header-inner { min-height: 70px; }
  .brand-name { font-size: 18px; }
  .brand-tag { font-size: 9px; }
  .header-cta .btn-gold { display: none; }

  .hero { min-height: 90vh; }
  .hero-content { padding: 80px 18px 100px; }
  .hero-title { font-size: 44px; }
  .hero-sub { font-size: 18px; }
  .hero-lede { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { gap: 18px; }
  .meta-item strong { font-size: 22px; }
  .meta-divider { display: none; }

  .section { padding: 70px 0; }
  .section-title { font-size: 30px; }
  .display-title { font-size: 28px; }
  .steps { grid-template-columns: 1fr; }

  .pricing { grid-template-columns: 1fr; }
  .price-card-feature { transform: none; }
  .price-card { padding: 36px 24px; }

  .comp-grid { grid-template-columns: 1fr; }
  .merchant-grid { grid-template-columns: 1fr; }
  .counters { grid-template-columns: 1fr 1fr; }
  .trust-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bar-inner { flex-direction: column; align-items: flex-start; }

  .mobile-sticky { display: block; }
  body { padding-bottom: 80px; }
  .closing { padding: 80px 0; }
}

/* ============ ANIMATIONS ============ */
/* Hide platform-injected floating badge */
#minimax-floating-ball { display: none !important; }
[data-minimax-analytics] { display: none !important; }
@media (prefers-reduced-motion: no-preference) {
  .step-card, .merch-card, .counter, .video-tile, .price-card, .quick-card {
    opacity: 0; transform: translateY(20px);
    animation: rise .8s var(--t) forwards;
  }
  .step-card:nth-child(1) { animation-delay: 0.05s; }
  .step-card:nth-child(2) { animation-delay: 0.15s; }
  .step-card:nth-child(3) { animation-delay: 0.25s; }
  .step-card:nth-child(4) { animation-delay: 0.35s; }
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* ============ PAGE-SPECIFIC HELPER ============ */
.page-hero {
  position: relative;
  padding: 120px 0 80px;
  background: var(--ink);
  color: #fff;
  text-align: center;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  color: #fff;
  margin: 0 0 16px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.breadcrumb {
  display: flex; justify-content: center; gap: 8px;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold); }

.disclosure-box {
  background: rgba(212,175,55,0.08);
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
  border-radius: 0 4px 4px 0;
  margin: 30px 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
}
.disclosure-box--light {
  background: rgba(212,175,55,0.06);
  color: var(--slate);
  border-color: var(--gold-deep);
}
