/*
 * KGF Terminal — elitemacro.io
 * Design System: "Vault at Night"
 * Philosophy: Swiss Private Banking meets Bloomberg Terminal
 * Dark navy/black hero, gold accents, Source Serif 4 headings, Inter body
 * Every element signals exclusivity, scarcity, and institutional trust.
 */

/* ─── FONT FACES ─────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Serif 4';
  src: url('/fonts/source-serif-4-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Serif 4';
  src: url('/fonts/source-serif-4-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Serif 4';
  src: url('/fonts/source-serif-4-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ─── DESIGN TOKENS ──────────────────────────────────────────────────────── */
:root {
  /* Core palette */
  --navy-deepest:  #020810;
  --navy-deep:     #050d1a;
  --navy-mid:      #0a1f44;
  --navy-light:    #0f2d5e;
  --navy-surface:  #0d1e38;

  /* Gold system */
  --gold:          #c8a951;
  --gold-light:    #dfc27a;
  --gold-pale:     #f0dfa0;
  --gold-dim:      #8a7235;
  --gold-glow:     rgba(200, 169, 81, 0.15);
  --gold-glow-strong: rgba(200, 169, 81, 0.30);

  /* Text */
  --text-primary:  #f0ece4;
  --text-secondary: #a8b4c8;
  --text-muted:    #5a6a82;
  --text-gold:     #c8a951;

  /* Surfaces */
  --surface-0:     #020810;
  --surface-1:     #07111f;
  --surface-2:     #0d1e38;
  --surface-3:     #132540;
  --surface-card:  rgba(13, 30, 56, 0.8);
  --surface-glass: rgba(10, 31, 68, 0.6);

  /* Borders */
  --border-gold:   rgba(200, 169, 81, 0.3);
  --border-gold-strong: rgba(200, 169, 81, 0.6);
  --border-navy:   rgba(255, 255, 255, 0.06);
  --border-navy-mid: rgba(255, 255, 255, 0.10);

  /* Semantic */
  --green:         #2ecc71;
  --green-dim:     rgba(46, 204, 113, 0.15);
  --red:           #e74c3c;
  --red-dim:       rgba(231, 76, 60, 0.15);

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Typography */
  --font-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:  'SF Mono', 'Fira Code', 'Cascadia Code', monospace;

  /* Radii */
  --radius-sm:  2px;
  --radius-md:  4px;
  --radius-lg:  8px;
  --radius-xl:  12px;

  /* Shadows */
  --shadow-gold: 0 0 40px rgba(200, 169, 81, 0.12);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4), 0 1px 4px rgba(0, 0, 0, 0.3);
  --shadow-deep: 0 8px 48px rgba(0, 0, 0, 0.6);

  /* Transitions */
  --transition: 0.2s ease;
  --transition-slow: 0.4s ease;
}

/* ─── RESET & BASE ───────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--surface-0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); }
input, select, textarea { font-family: var(--font-sans); }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.display-xl {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.display-lg {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.display-md {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.015em;
}
.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.body-lg { font-size: 1.125rem; line-height: 1.7; }
.body-md { font-size: 1rem; line-height: 1.65; }
.body-sm { font-size: 0.875rem; line-height: 1.6; }
.caption  { font-size: 0.75rem; line-height: 1.5; color: var(--text-muted); }

.text-gold    { color: var(--gold); }
.text-muted   { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-center  { text-align: center; }
.text-right   { text-align: right; }

/* ─── LAYOUT ─────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
.container--wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.section {
  padding: var(--sp-24) 0;
}
.section--tight {
  padding: var(--sp-16) 0;
}
.section--dark {
  background: var(--surface-1);
}
.section--darker {
  background: var(--surface-0);
}
.section--card {
  background: var(--surface-2);
}

/* ─── NAV ────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background var(--transition-slow), border-color var(--transition-slow);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(2, 8, 16, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border-gold);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
}
.nav__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-deepest);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav__logo-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.nav__logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}
.nav__link:hover { color: var(--gold); }
.nav__cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-deepest);
  background: var(--gold);
  padding: var(--sp-2) var(--sp-5);
  border: none;
  transition: background var(--transition), transform var(--transition);
}
.nav__cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: var(--sp-2);
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* ─── SCARCITY TICKER ────────────────────────────────────────────────────── */
.ticker {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border-gold);
  padding: var(--sp-2) 0;
  overflow: hidden;
  position: relative;
}
.ticker__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-10);
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  flex-shrink: 0;
}
.ticker__item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
.ticker__item .dot--red {
  background: var(--red);
}
.ticker__item strong {
  color: var(--gold);
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy-deepest);
  overflow: hidden;
  padding-top: 64px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(10, 31, 68, 0.9) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(200, 169, 81, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(10, 31, 68, 0.5) 0%, transparent 60%),
    linear-gradient(180deg, #020810 0%, #050d1a 40%, #07111f 100%);
  z-index: 0;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 169, 81, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 81, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}
.hero__glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(200, 169, 81, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: var(--sp-20) 0 var(--sp-16);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(200, 169, 81, 0.1);
  border: 1px solid var(--border-gold);
  padding: var(--sp-1) var(--sp-4);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__badge .live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: var(--sp-6);
  max-width: 820px;
}
.hero__headline .accent {
  color: var(--gold);
  font-style: italic;
}
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: var(--sp-10);
}
.hero__ctas {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
}
.hero__scarcity {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border-navy-mid);
}
.scarcity-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.scarcity-item__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scarcity-item__value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.scarcity-item__value span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.scarcity-item__sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ─── COUNTDOWN ──────────────────────────────────────────────────────────── */
.countdown-bar {
  background: linear-gradient(90deg, rgba(200,169,81,0.08) 0%, rgba(10,31,68,0.8) 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: var(--sp-4) 0;
}
.countdown-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.countdown-bar__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.countdown-bar__label strong {
  color: var(--gold);
}
.countdown-units {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.countdown-unit__num {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 2.5ch;
  text-align: center;
}
.countdown-unit__label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.countdown-sep {
  font-size: 1.4rem;
  color: var(--gold-dim);
  font-weight: 300;
  margin-bottom: 12px;
}
.countdown-bar__warning {
  font-size: 0.72rem;
  color: var(--red);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.06); }

.btn--primary {
  background: var(--gold);
  color: var(--navy-deepest);
  font-size: 0.78rem;
  padding: var(--sp-4) var(--sp-8);
}
.btn--primary:hover {
  background: var(--gold-light);
  color: var(--navy-deepest);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 169, 81, 0.35);
}
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-gold-strong);
  font-size: 0.78rem;
  padding: var(--sp-4) var(--sp-8);
}
.btn--outline:hover {
  background: var(--gold-glow);
  color: var(--gold-light);
  border-color: var(--gold);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.75rem;
  padding: var(--sp-3) var(--sp-5);
}
.btn--ghost:hover { color: var(--text-primary); }

.btn--lg {
  font-size: 0.85rem;
  padding: var(--sp-5) var(--sp-10);
}
.btn--sm {
  font-size: 0.7rem;
  padding: var(--sp-2) var(--sp-5);
}

/* ─── SPOT COUNTER BARS ──────────────────────────────────────────────────── */
.spot-bars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin: var(--sp-10) 0;
}
.spot-bar {
  background: var(--surface-2);
  border: 1px solid var(--border-navy);
  padding: var(--sp-5) var(--sp-6);
  position: relative;
  overflow: hidden;
}
.spot-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}
.spot-bar__tier {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
}
.spot-bar__count {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.spot-bar__count .taken {
  color: var(--red);
}
.spot-bar__count .total {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.spot-bar__track {
  height: 3px;
  background: var(--surface-3);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: var(--sp-2);
}
.spot-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  border-radius: 2px;
  transition: width 1s ease;
}
.spot-bar__fill--critical {
  background: linear-gradient(90deg, #c0392b, var(--red));
}
.spot-bar__remaining {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.spot-bar__remaining strong {
  color: var(--text-secondary);
}

/* ─── WEALTH PROJECTION ──────────────────────────────────────────────────── */
.wealth-section {
  background: var(--surface-0);
  position: relative;
  overflow: hidden;
}
.wealth-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}
.wealth-chart-wrapper {
  position: relative;
  background: var(--surface-1);
  border: 1px solid var(--border-navy-mid);
  border-top: 2px solid var(--gold-dim);
  padding: var(--sp-8);
  margin: var(--sp-8) 0;
}
.wealth-chart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--sp-6);
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.wealth-input-group {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.wealth-input-group label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.wealth-input {
  background: var(--surface-2);
  border: 1px solid var(--border-navy-mid);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  padding: var(--sp-2) var(--sp-4);
  width: 140px;
  outline: none;
  transition: border-color var(--transition);
}
.wealth-input:focus { border-color: var(--gold); }
.wealth-canvas-container {
  position: relative;
  height: 280px;
  margin-bottom: var(--sp-6);
}
#wealthChart {
  width: 100%;
  height: 100%;
}
.wealth-legend {
  display: flex;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.wealth-legend-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.wealth-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.wealth-legend-item span {
  font-size: 0.78rem;
  color: var(--text-secondary);
}
.wealth-pain-box {
  background: linear-gradient(135deg, rgba(231,76,60,0.08) 0%, rgba(200,169,81,0.05) 100%);
  border: 1px solid rgba(231,76,60,0.25);
  border-left: 3px solid var(--red);
  padding: var(--sp-5) var(--sp-6);
  margin-top: var(--sp-6);
}
.wealth-pain-box__headline {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}
.wealth-pain-box__headline .pain-number {
  color: var(--red);
}
.wealth-pain-box__sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.wealth-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.wealth-outcome {
  background: var(--surface-2);
  border: 1px solid var(--border-navy);
  padding: var(--sp-5);
  text-align: center;
  position: relative;
}
.wealth-outcome--kgf {
  border-color: var(--border-gold);
  background: linear-gradient(135deg, rgba(200,169,81,0.06) 0%, var(--surface-2) 100%);
}
.wealth-outcome--kgf::before {
  content: 'BESTE OPTION';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-deepest);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 2px 8px;
  white-space: nowrap;
}
.wealth-outcome__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
}
.wealth-outcome__rate {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: var(--sp-3);
}
.wealth-outcome__value {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.wealth-outcome--kgf .wealth-outcome__value { color: var(--gold); }
.wealth-outcome__gain {
  font-size: 0.8rem;
  font-weight: 600;
}
.wealth-outcome__gain--positive { color: var(--green); }
.wealth-outcome__gain--kgf { color: var(--gold); }

/* ─── PRODUCT FEATURES ───────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-4);
  margin-top: var(--sp-10);
}
.feature-card {
  background: var(--surface-card);
  border: 1px solid var(--border-navy-mid);
  padding: var(--sp-8);
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
  backdrop-filter: blur(8px);
}
.feature-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.feature-card__icon {
  width: 40px;
  height: 40px;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  font-size: 1.1rem;
}
.feature-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
}
.feature-card__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}
.feature-card__compare {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
  font-style: italic;
  border-top: 1px solid var(--border-navy);
  padding-top: var(--sp-3);
  margin-top: var(--sp-3);
}

/* Bloomberg comparison banner */
.bloomberg-banner {
  background: linear-gradient(135deg, rgba(200,169,81,0.08) 0%, rgba(10,31,68,0.6) 100%);
  border: 1px solid var(--border-gold);
  border-left: 4px solid var(--gold);
  padding: var(--sp-8) var(--sp-10);
  margin: var(--sp-10) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.bloomberg-banner__text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  max-width: 600px;
}
.bloomberg-banner__text .highlight { color: var(--gold); }
.bloomberg-banner__badge {
  background: var(--gold);
  color: var(--navy-deepest);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--sp-2) var(--sp-5);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── PRICING TIERS ──────────────────────────────────────────────────────── */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-10);
  align-items: start;
}
.tier-card {
  background: var(--surface-card);
  border: 1px solid var(--border-navy-mid);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
}
.tier-card--featured {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}
.tier-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
}
.tier-card__badge {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  background: var(--gold);
  color: var(--navy-deepest);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
}
.tier-card__header {
  padding: var(--sp-8);
  border-bottom: 1px solid var(--border-navy);
}
.tier-card__name {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
}
.tier-card__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
}
.tier-card__portfolio {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-5);
}
.tier-card__pricing {
  display: flex;
  align-items: flex-end;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.tier-card__price-normal {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  line-height: 1;
}
.tier-card__price-beta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tier-card__price-amount {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.tier-card__price-period {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tier-card__price-tag {
  background: rgba(46,204,113,0.12);
  border: 1px solid rgba(46,204,113,0.3);
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  align-self: flex-start;
}
.tier-card__annual {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: var(--sp-2);
}
.tier-card__annual del { color: var(--text-muted); }
.tier-card__body {
  padding: var(--sp-6) var(--sp-8) var(--sp-8);
}
.tier-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.tier-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.tier-feature__check {
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}
.tier-feature__check--green { color: var(--green); }
.tier-card__cooldown {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.72rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-navy);
  padding-top: var(--sp-4);
  margin-bottom: var(--sp-6);
}
.tier-card__cooldown-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-dim);
  flex-shrink: 0;
}
.tier-card__cta {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--sp-4);
  border: none;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.tier-card__cta--primary {
  background: var(--gold);
  color: var(--navy-deepest);
}
.tier-card__cta--primary:hover {
  background: var(--gold-light);
  color: var(--navy-deepest);
}
.tier-card__cta--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-gold);
}
.tier-card__cta--outline:hover {
  background: var(--gold-glow);
  color: var(--gold-light);
}

/* ─── TRUST SIGNALS ──────────────────────────────────────────────────────── */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-10);
  flex-wrap: wrap;
  padding: var(--sp-8) 0;
  border-top: 1px solid var(--border-navy);
  border-bottom: 1px solid var(--border-navy);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.trust-item__icon {
  font-size: 1rem;
  color: var(--gold);
}

/* ─── SOCIAL PROOF / REJECTION BANNER ───────────────────────────────────── */
.rejection-banner {
  background: linear-gradient(135deg, rgba(231,76,60,0.06) 0%, rgba(200,169,81,0.04) 100%);
  border: 1px solid rgba(231,76,60,0.2);
  padding: var(--sp-8) var(--sp-10);
  text-align: center;
  margin: var(--sp-10) 0;
}
.rejection-banner__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
}
.rejection-banner__sub {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto var(--sp-4);
}
.rejection-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-10);
  flex-wrap: wrap;
  margin-top: var(--sp-5);
}
.rejection-stat {
  text-align: center;
}
.rejection-stat__num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.rejection-stat__label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: var(--sp-1);
}

/* ─── APPLICATION FORM ───────────────────────────────────────────────────── */
.form-section {
  background: var(--surface-1);
  position: relative;
}
.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}
.form-wrapper {
  max-width: 680px;
  margin: 0 auto;
}
.form-header {
  text-align: center;
  margin-bottom: var(--sp-10);
}
.form-card {
  background: var(--surface-2);
  border: 1px solid var(--border-navy-mid);
  border-top: 2px solid var(--gold-dim);
  padding: var(--sp-10);
}
.form-group {
  margin-bottom: var(--sp-6);
}
.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--sp-2);
}
.form-label .required {
  color: var(--gold);
  margin-left: 2px;
}
.form-input,
.form-select {
  width: 100%;
  background: var(--surface-3);
  border: 1px solid var(--border-navy-mid);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: var(--sp-4) var(--sp-5);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,81,0.1);
}
.form-input::placeholder { color: var(--text-muted); }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6a82' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--sp-4) center;
  padding-right: var(--sp-10);
  cursor: pointer;
}
.form-select option {
  background: var(--surface-2);
  color: var(--text-primary);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
.form-hint {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: var(--sp-2);
}
.form-warning {
  display: none;
  background: rgba(231,76,60,0.08);
  border: 1px solid rgba(231,76,60,0.3);
  border-left: 3px solid var(--red);
  padding: var(--sp-4) var(--sp-5);
  margin-top: var(--sp-3);
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.form-warning.visible { display: block; }
.form-warning strong { color: var(--red); }
.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.form-checkbox {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.form-checkbox-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.form-checkbox-label a {
  color: var(--gold);
}
.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy-deepest);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--sp-5) var(--sp-8);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.form-submit:hover:not(:disabled) {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,169,81,0.35);
}
.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.form-submit .spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: var(--navy-deepest);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-right: var(--sp-2);
}
.form-submit.loading .spinner { display: inline-block; }
.form-submit.loading .btn-text { opacity: 0.7; }
@keyframes spin {
  to { transform: rotate(360deg); }
}
.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-10);
}
.form-success.visible { display: block; }
.form-success__icon {
  width: 60px;
  height: 60px;
  background: rgba(200,169,81,0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  font-size: 1.5rem;
}
.form-success__number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-3);
}
.form-success__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-4);
}
.form-success__message {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 440px;
  margin: 0 auto;
}
.form-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: var(--sp-5);
  line-height: 1.5;
}

/* ─── INSTITUTIONAL SECTION ──────────────────────────────────────────────── */
.institutional-banner {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-surface) 100%);
  border: 1px solid var(--border-gold);
  padding: var(--sp-10) var(--sp-12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.institutional-banner__text h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}
.institutional-banner__text p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  max-width: 480px;
}

/* ─── CREDENTIALS ────────────────────────────────────────────────────────── */
.credentials-bar {
  background: var(--surface-2);
  border-top: 1px solid var(--border-navy);
  border-bottom: 1px solid var(--border-navy);
  padding: var(--sp-5) 0;
}
.credentials-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-12);
  flex-wrap: wrap;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.credential-item__logo {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  opacity: 0.6;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-deepest);
  border-top: 1px solid var(--border-gold);
  padding: var(--sp-16) 0 var(--sp-8);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}
.footer__brand {}
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  text-decoration: none;
}
.footer__brand-mark {
  width: 32px;
  height: 32px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy-deepest);
}
.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}
.footer__brand-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--sp-5);
  max-width: 280px;
}
.footer__col-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer__link {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__link:hover { color: var(--text-secondary); }
.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: var(--sp-3);
}
.footer__contact-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer__contact-value {
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.footer__contact-value a {
  color: var(--text-secondary);
  text-decoration: none;
}
.footer__contact-value a:hover { color: var(--gold); }
.footer__divider {
  height: 1px;
  background: var(--border-navy);
  margin-bottom: var(--sp-6);
}
.footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.footer__copyright {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 640px;
}
.footer__copyright strong { color: var(--text-secondary); }
.footer__copyright .gold { color: var(--gold); }
.footer__legal-links {
  display: flex;
  gap: var(--sp-5);
  flex-wrap: wrap;
  flex-shrink: 0;
}
.footer__legal-link {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__legal-link:hover { color: var(--gold); }
.footer__finma-disclaimer {
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border-navy);
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 900px;
}

/* ─── LEGAL PAGE STYLES ──────────────────────────────────────────────────── */
.legal-page {
  padding-top: 64px;
  min-height: 100vh;
  background: var(--surface-0);
}
.legal-hero {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-gold);
  padding: var(--sp-16) 0 var(--sp-10);
}
.legal-hero__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}
.legal-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
}
.legal-hero__meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.legal-content {
  padding: var(--sp-16) 0 var(--sp-24);
}
.legal-body {
  max-width: 760px;
}
.legal-body h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: var(--sp-10) 0 var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border-navy-mid);
}
.legal-body h3 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: var(--sp-6) 0 var(--sp-3);
}
.legal-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}
.legal-body ul {
  list-style: none;
  margin-bottom: var(--sp-4);
}
.legal-body ul li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: var(--sp-5);
  position: relative;
  margin-bottom: var(--sp-2);
}
.legal-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
}
.legal-body a { color: var(--gold); }
.legal-body a:hover { color: var(--gold-light); }
.legal-highlight {
  background: rgba(200,169,81,0.06);
  border: 1px solid var(--border-gold);
  border-left: 3px solid var(--gold);
  padding: var(--sp-5) var(--sp-6);
  margin: var(--sp-6) 0;
}
.legal-highlight p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.65;
}
.legal-warning {
  background: rgba(231,76,60,0.06);
  border: 1px solid rgba(231,76,60,0.25);
  border-left: 3px solid var(--red);
  padding: var(--sp-5) var(--sp-6);
  margin: var(--sp-6) 0;
}
.legal-warning p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.65;
}
.legal-warning strong { color: var(--red); }

/* ─── UTILITY ────────────────────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--sp-2); }
.gap-4 { gap: var(--sp-4); }
.gap-6 { gap: var(--sp-6); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mt-10 { margin-top: var(--sp-10); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-8 { margin-bottom: var(--sp-8); }
.hidden { display: none !important; }

/* ─── ANIMATIONS ─────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-fade-in-up {
  animation: fadeInUp 0.7s ease forwards;
}
.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }
.animate-delay-4 { animation-delay: 0.4s; opacity: 0; }
.animate-delay-5 { animation-delay: 0.5s; opacity: 0; }

/* Gold shimmer text */
.text-shimmer {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-pale) 40%, var(--gold) 60%, var(--gold-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tiers-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .wealth-outcomes { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .spot-bars { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav.menu-open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(2,8,16,0.98);
    backdrop-filter: blur(12px);
    padding: var(--sp-6);
    gap: var(--sp-5);
    border-bottom: 1px solid var(--border-gold);
    z-index: 99;
  }
  .nav.menu-open .nav__cta {
    display: block;
    margin-top: var(--sp-4);
    text-align: center;
    padding: var(--sp-4);
  }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__scarcity { gap: var(--sp-5); }
  .bloomberg-banner { flex-direction: column; text-align: center; }
  .institutional-banner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .countdown-bar__inner { justify-content: center; text-align: center; }
  .trust-row { gap: var(--sp-5); }
  .credentials-inner { gap: var(--sp-6); }
  .rejection-stats { gap: var(--sp-6); }
  .features-grid { grid-template-columns: 1fr; }
  .form-card { padding: var(--sp-6); }
  .section { padding: var(--sp-16) 0; }
}
@media (max-width: 480px) {
  .container { padding: 0 var(--sp-4); }
  .hero__headline { font-size: 2.2rem; }
  .wealth-chart-header { flex-direction: column; }
  .countdown-units { gap: var(--sp-3); }
  .countdown-unit__num { font-size: 1.3rem; }
}

/* ─── SCROLLBAR ──────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface-0); }
::-webkit-scrollbar-thumb { background: var(--navy-mid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }

/* ─── SELECTION ──────────────────────────────────────────────────────────── */
::selection { background: rgba(200,169,81,0.2); color: var(--text-primary); }
