* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: #0a1628;
}
html {
  scroll-behavior: smooth;
  /* Prevent any rubber-band/overscroll showing through above the header */
  background-color: #0a1628;
  overscroll-behavior-y: none;
}
body {
  overflow-x: hidden;
  color: #e8eaf0;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  min-height: 100vh;
}

/* Belt-and-suspenders: the sticky header must always sit flush against the top */
.site-header {
  margin-top: 0;
  padding-top: 0;
}
.site-header > *:first-child {
  margin-top: 0;
}

:root {
  --bg: #0a1628;
  --bg-2: #0f1d33;
  --bg-3: #142847;
  --bg-deep: #050d1a;
  --gold: #c9a45c;
  --gold-light: #e4c884;
  --gold-deep: #a88848;
  --cream: #f5f0e6;
  --text: #e8eaf0;
  --text-dim: #8a96ad;
  --text-soft: #c2cad8;
  --border: rgba(201, 164, 92, 0.15);
  --border-soft: rgba(255, 255, 255, 0.06);
  --success: #4ade80;
  --danger: #f87171;
}

.display { font-family: 'Cormorant Garamond', serif; }

/* ==================
   ANNOUNCEMENT BAR
   ================== */
.announce {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 12px;
}
.announce-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.announce-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
}
.announce-left .pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.announce-left strong { color: var(--gold); font-weight: 500; }
.announce-right {
  display: flex;
  gap: 24px;
  color: var(--text-dim);
}
.announce-right a {
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.announce-right a:hover { color: var(--gold); }

/* ==================
   LIVE TICKER (Prominent + Sticky)
   ================== */
.ticker {
  background: linear-gradient(180deg, #050d1a, #081427);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.ticker::before, .ticker::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, #050d1a, transparent); }
.ticker::after { right: 0; background: linear-gradient(-90deg, #050d1a, transparent); }

.ticker-label {
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-deep);
  padding: 6px 12px;
  border: 1px solid var(--gold);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.ticker-label .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulse 2s infinite;
}

.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 80s linear infinite;
  width: max-content;
  padding-left: 140px;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.tick {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  border-right: 1px solid var(--border);
  font-size: 14px;
}
.tick .sym {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 13px;
}
.tick .price {
  color: var(--text);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}
.tick .chg {
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 2px;
}
.tick .chg.up {
  color: var(--success);
  background: rgba(74, 222, 128, 0.08);
}
.tick .chg.dn {
  color: var(--danger);
  background: rgba(248, 113, 113, 0.08);
}
.tick .arrow { font-size: 10px; }

/* TradingView ticker tape integration */
.ticker.has-tv,
.ticker:has(.ticker-tv) {
  padding: 0;
}
.ticker .ticker-tv {
  padding-left: 140px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.ticker .ticker-tv .tradingview-widget-container__widget {
  background: transparent;
}
.ticker .ticker-tv iframe {
  vertical-align: middle;
}
/* On mobile the "Live Markets" badge is hidden, so remove the left offset */
@media (max-width: 640px) {
  .ticker .ticker-tv {
    padding-left: 0;
  }
}

/* ==================
   NAVIGATION
   ================== */
nav {
  position: sticky;
  top: 60px;
  z-index: 100;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
/* Just CFD Capital Markets — final logo placement */
.logo-img {
  height: 64px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.4));
}
.logo-img.footer-logo-img {
  height: 120px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links .caret {
  font-size: 9px;
  margin-left: 4px;
  opacity: 0.7;
  transition: transform 0.3s;
}
.nav-links .has-dd { position: relative; }
.nav-links .has-dd:hover .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  margin-top: 18px;
  min-width: 200px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 200;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}
.has-dd:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 12px 20px;
  color: var(--text-soft) !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.2s;
  border-left: 2px solid transparent;
}
.dropdown a::after { display: none; }
.dropdown a:hover {
  color: var(--gold) !important;
  background: rgba(201, 164, 92, 0.06);
  border-left-color: var(--gold);
}
.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}
/* Match WhatsApp + Sign In to one height in the desktop header */
.nav-cta .btn-gold,
.nav-cta .btn-whatsapp {
  box-sizing: border-box;
  height: 42px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1.2;
}

/* ==================
   BUTTONS
   ================== */
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.5px;
  font-family: inherit;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 1px solid var(--gold);
  color: var(--bg);
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.5px;
  font-family: inherit;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
}
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}
.btn-gold:hover::before { left: 100%; }
.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(201, 164, 92, 0.3);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 1px solid var(--gold);
  color: var(--bg);
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: inherit;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-whatsapp:hover {
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(201, 164, 92, 0.3);
}
.btn-whatsapp-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}
.btn-whatsapp.btn-large {
  width: 100%;
}
.btn-large {
  padding: 16px 32px;
  font-size: 14px;
}

/* ==================
   HERO
   ================== */
.hero {
  position: relative;
  padding: 12px 32px 32px;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -300px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 164, 92, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.hero > * { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  color: var(--cream);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}
.hero p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 18px;
  max-width: 540px;
  font-weight: 300;
}
.hero-taglines {
  list-style: none;
  margin-bottom: 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-taglines li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.2px;
}
.hero-taglines .tag-icon {
  color: var(--gold);
  font-size: 11px;
  font-style: normal;
  transform: rotate(45deg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--gold);
  flex-shrink: 0;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: 40px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.trust-item .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1px;
}
.trust-item .num em { font-style: italic; font-size: 20px; opacity: 0.8; }
.trust-item .lbl {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 6px;
  font-weight: 500;
}

/* ==================
   HERO VISUAL — Trading Dashboard Mock
   ================== */
.hero-visual {
  position: relative;
  height: 460px;
}
.chart-card {
  position: absolute;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--border);
  padding: 26px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
}
.chart-main {
  top: 0;
  left: 150px;
  right: 0;
  height: 340px;
}
.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.chart-pair {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.5px;
}
.chart-pair span { color: var(--gold); }
.chart-price {
  font-size: 28px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--gold);
  margin-top: 6px;
  letter-spacing: -0.5px;
}
.chart-change {
  font-size: 12px;
  color: var(--success);
  margin-top: 4px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.chart-tabs { display: flex; gap: 4px; }
.chart-tab {
  font-size: 10px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-dim);
  cursor: pointer;
  letter-spacing: 1px;
  font-weight: 500;
  transition: all 0.2s;
}
.chart-tab.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 164, 92, 0.08);
}
.chart-svg {
  width: 100%;
  height: 220px;
  margin-top: 10px;
}
.chart-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.chart-stat .l {
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.chart-stat .v {
  font-size: 14px;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  margin-top: 4px;
  font-weight: 500;
}

.side-card {
  bottom: 0;
  right: 0;
  width: 260px;
  padding: 22px;
}
.side-card .ttl {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.side-card .ttl span {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 2px 6px;
  font-weight: 500;
}
.side-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 12px;
  border-bottom: 1px solid var(--border);
}
.side-row:last-child { border-bottom: none; }
.side-row .s { color: var(--text); font-weight: 500; }
.side-row .right { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.side-row .p { color: var(--text-soft); font-variant-numeric: tabular-nums; font-size: 12px; }
.side-row .pct { font-size: 10px; }
.side-row .pct.up { color: var(--success); }
.side-row .pct.dn { color: var(--danger); }

/* ================
   PHONE MOCKUP (Mobile Platform — v2 style, half on chart half below)
   ================ */
.phone-mockup {
  position: absolute;
  bottom: -20px;
  right: -10px;
  width: 220px;
  z-index: 4;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}
.phone-frame {
  width: 100%;
  background: linear-gradient(160deg, #1a1f2e, #0a0d15);
  border: 1px solid rgba(201, 164, 92, 0.25);
  border-radius: 32px;
  padding: 12px 10px;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: #050a14;
  border-radius: 0 0 14px 14px;
  z-index: 5;
}
.phone-screen {
  background: linear-gradient(180deg, #0a1628, #050d1a);
  border-radius: 22px;
  padding: 28px 14px 14px;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}
.phone-screen::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(201,164,92,0.12), transparent 70%);
  border-radius: 50%;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  color: var(--text-soft);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  position: relative;
}
.phone-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  position: relative;
}
.phone-hi {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--text);
  font-weight: 600;
  line-height: 1;
}
.phone-sub {
  font-size: 9px;
  color: var(--text-dim);
  margin-top: 4px;
  letter-spacing: 0.5px;
}
.phone-avatar {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
}
.phone-balance-card {
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--border);
  padding: 14px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.phone-balance-card::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 60px; height: 60px;
  background: radial-gradient(circle, rgba(201,164,92,0.2), transparent 70%);
}
.phone-bal-lbl {
  font-size: 9px;
  color: var(--text-dim);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.phone-bal-amt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: -0.5px;
  position: relative;
}
.phone-bal-chg {
  font-size: 9px;
  color: var(--success);
  margin-top: 2px;
  font-weight: 600;
}
.phone-section-ttl {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}
.phone-pos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.phone-pos:last-of-type { border-bottom: none; }
.phone-pos-pair {
  font-size: 11px;
  color: var(--text);
  font-weight: 600;
}
.phone-pos-meta {
  font-size: 8px;
  color: var(--text-dim);
  margin-top: 2px;
  letter-spacing: 0.3px;
}
.phone-pos-right { text-align: right; }
.phone-pos-pnl {
  font-size: 11px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.phone-pos-pct {
  font-size: 8px;
  margin-top: 2px;
}
.phone-pos-pnl.up, .phone-pos-pct.up { color: var(--success); }
.phone-pos-pnl.dn, .phone-pos-pct.dn { color: var(--danger); }
.phone-cta {
  margin-top: 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--bg);
  text-align: center;
  padding: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

/* Floating award badge — sits cleanly to the left of chart */
.award-badge {
  position: absolute;
  top: 100px;
  left: -30px;
  width: 160px;
  height: 160px;
  background: var(--bg-deep);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  padding: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 80px rgba(201, 164, 92, 0.3), inset 0 0 30px rgba(201, 164, 92, 0.08);
}
.award-badge::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(201, 164, 92, 0.3);
  border-radius: 50%;
}
/* Three USP highlight circles tightly clustered around the badge */
.award-orbit {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  animation: orbitRotate 30s linear infinite;
}
@keyframes orbitRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.usp-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(10, 14, 22, 0.95);
  border: 1.5px solid rgba(201, 164, 92, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 164, 92, 0.15);
}
.usp-circle::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px dashed rgba(201, 164, 92, 0.35);
  border-radius: 50%;
}
.usp-circle .usp-text {
  font-family: 'Inter', sans-serif;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1.2;
  position: relative;
  /* Counter-rotate the inner text so it stays upright as the orbit spins */
  animation: orbitCounterRotate 30s linear infinite;
}
@keyframes orbitCounterRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
/* Three USP circles at 12, 4, and 8 o'clock around badge centre.
   Orbit radius ~110px. translate(-50%, -50%) centres each circle on its anchor. */
.usp-circle.usp-1 {
  /* 12 o'clock: x=0, y=-110 */
  transform: translate(-50%, -50%) translate(0, -110px);
}
.usp-circle.usp-2 {
  /* 4 o'clock: x=+95, y=+55 (110*sin(120°)≈95, 110*cos(120°)=-55 inverted to +55 below) */
  transform: translate(-50%, -50%) translate(95px, 55px);
}
.usp-circle.usp-3 {
  /* 8 o'clock: x=-95, y=+55 */
  transform: translate(-50%, -50%) translate(-95px, 55px);
}
/* Outer dashed ring around badge for extra prominence */
.award-ring {
  position: absolute;
  inset: -22px;
  border: 1px dashed rgba(201, 164, 92, 0.3);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: ringRotate 60s linear infinite;
}
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.award-badge .star {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 4px;
  filter: drop-shadow(0 0 8px rgba(201, 164, 92, 0.6));
}
.award-badge .top {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--gold-light);
  font-style: italic;
  line-height: 1.1;
}
.award-badge .yr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--text);
  font-weight: 600;
  margin: 6px 0;
  line-height: 1;
  text-shadow: 0 0 12px rgba(201, 164, 92, 0.3);
}
.award-badge .lbl {
  font-size: 9px;
  letter-spacing: 1.8px;
  color: var(--text-soft);
  text-transform: uppercase;
}

/* ==================
   SECTION HEADINGS
   ================== */
section { position: relative; }
.section-wrap {
  padding: 80px 32px;
  max-width: 1320px;
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: 60px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-eye {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.section-eye::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.section-head.center .section-eye::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -1px;
  color: var(--cream);
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.section-sub {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}
.section-head.left .section-sub { margin-left: 0; }

/* ==================
   PLATFORMS SECTION
   ================== */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.platform-card {
  background: linear-gradient(180deg, var(--bg-2) 0%, transparent 100%);
  border: 1px solid var(--border);
  padding: 44px 36px;
  position: relative;
  transition: all 0.4s;
  cursor: pointer;
  overflow: hidden;
}
.platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 0.6s;
}
.platform-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.platform-card:hover::before { width: 100%; }
.platform-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 28px;
  letter-spacing: 2px;
}
.platform-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--cream);
  letter-spacing: -0.3px;
}
.platform-card > p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.platform-features {
  list-style: none;
  margin-bottom: 32px;
}
.platform-features li {
  font-size: 13px;
  color: var(--text-soft);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.platform-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.platform-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s;
}
.platform-card:hover .platform-link { gap: 16px; }

/* ==================
   ACCOUNT TIERS
   ================== */
.tiers-section {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.tiers-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  background: var(--bg);
}
.tier {
  padding: 44px 28px;
  border-right: 1px solid var(--border);
  transition: background 0.4s;
  position: relative;
}
.tier:last-child { border-right: none; }
.tier:hover { background: rgba(201, 164, 92, 0.04); }
.tier.featured {
  background: linear-gradient(180deg, rgba(201, 164, 92, 0.08), transparent);
  position: relative;
}
.tier.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  background: var(--bg);
  padding: 4px 10px;
  border: 1px solid var(--gold);
  font-weight: 600;
}
.tier-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--cream);
}
.tier-desc {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 28px;
  line-height: 1.5;
}
.tier-min {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1;
}
.tier-min .currency {
  font-size: 22px;
  vertical-align: top;
  margin-right: 2px;
  opacity: 0.8;
}
.tier-min-lbl {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 8px 0 32px;
  font-weight: 500;
}
.tier-features {
  list-style: none;
  margin-bottom: 36px;
}
.tier-features li {
  font-size: 13px;
  padding: 12px 0;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border);
}
.tier-features li strong {
  color: var(--gold);
  font-weight: 500;
}
.tier .btn-tier {
  width: 100%;
  text-align: center;
}

/* ==================
   WHY CHOOSE US
   ================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-list {
  display: grid;
  gap: 36px;
}
.why-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
}
.why-icn {
  width: 60px;
  height: 60px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  position: relative;
}
.why-icn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--gold);
  opacity: 0.2;
}
.why-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--cream);
  letter-spacing: -0.3px;
}
.why-item p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}
.why-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid var(--gold);
  opacity: 0.3;
}
.why-visual::after {
  content: '';
  position: absolute;
  inset: 36px;
  border: 1px dashed rgba(201, 164, 92, 0.2);
}
.why-shield {
  width: 220px;
  height: 260px;
  position: relative;
  z-index: 2;
}
.why-corners {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold);
}
.why-corners.tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.why-corners.tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.why-corners.bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.why-corners.br { bottom: 12px; right: 12px; border-left: none; border-top: none; }

/* ==================
   STATS
   ================== */
.stats-section {
  background: var(--bg-deep);
  padding: 100px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(201, 164, 92, 0.06), transparent 70%);
}
.stats-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}
.stat {
  text-align: center;
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}
.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -2px;
}
.stat .num em { font-style: italic; font-size: 60px; }
.stat .lbl {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 16px;
  font-weight: 500;
}

/* ==================
   TESTIMONIALS
   ================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 44px 36px;
  position: relative;
  transition: all 0.3s;
}
.testi:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.testi::before {
  content: '"';
  position: absolute;
  top: 8px;
  right: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  font-style: italic;
}
.testi-stars {
  color: var(--gold);
  margin-bottom: 18px;
  font-size: 14px;
  letter-spacing: 2px;
}
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.6;
  font-style: italic;
  color: var(--text);
  margin-bottom: 32px;
  font-weight: 400;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-weight: 600;
  font-size: 17px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.testi-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.testi-role {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}

/* ==================
   EDUCATION / INSIGHTS
   ================== */
.edu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.edu-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
  background: var(--bg-2);
}
.edu-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}
.edu-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.edu-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201, 164, 92, 0.18), transparent 70%);
}
.edu-img::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(201, 164, 92, 0.15);
}
.edu-img-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 110px;
  font-weight: 500;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  position: relative;
  font-style: italic;
}
.edu-body { padding: 32px; }
.edu-tag {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}
.edu-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--cream);
  letter-spacing: -0.3px;
}
.edu-card > .edu-body > p {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.edu-meta {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.edu-meta .arr { color: var(--gold); font-size: 14px; }

/* ==================
   FAQ
   ================== */
.faq {
  max-width: 920px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  cursor: pointer;
  transition: padding 0.3s;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.3px;
}
.faq-q .pl {
  color: var(--gold);
  font-size: 28px;
  transition: transform 0.4s;
  font-weight: 300;
  margin-left: 24px;
  flex-shrink: 0;
}
.faq-item.open .faq-q .pl { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, margin 0.4s;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
}
.faq-item.open .faq-a {
  max-height: 240px;
  margin-top: 18px;
}

/* ==================
   CTA
   ================== */
.cta {
  padding: 140px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(201, 164, 92, 0.08), transparent 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
  color: var(--cream);
}
.cta h2 em { font-style: italic; color: var(--gold); }
.cta p {
  color: var(--text-soft);
  font-size: 18px;
  margin-bottom: 44px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================
   FOOTER
   ================== */
footer {
  background: var(--bg-deep);
  padding: 80px 32px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-about .logo { margin-bottom: 24px; }
.footer-about p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 360px;
}
.footer-contact {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-contact > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 12px;
  line-height: 1.65;
}
.footer-contact .fc-icon {
  color: var(--gold);
  flex: 0 0 14px;
  text-align: left;
  font-size: 13px;
  line-height: 1.65;
}
.footer-contact .fc-text {
  flex: 1;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  color: var(--text-dim);
}
.footer-contact .fc-label {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  min-width: 72px;
}
.footer-contact .fc-text a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact .fc-text a:hover { color: var(--gold); }
footer h5 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 600;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 12px; }
footer ul a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
footer ul a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: var(--text-dim);
  text-decoration: none;
}
.footer-bottom-links a:hover { color: var(--gold); }

.risk-warn {
  max-width: 1320px;
  margin: 30px auto 0;
  padding: 20px 0 0;
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  font-weight: 300;
}

/* ==================
   MOBILE NAV TOGGLE (Hamburger)
   ================== */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.25s ease;
}
.nav-toggle:hover { border-color: var(--gold); }
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ==================
   MOBILE DRAWER MENU
   ================== */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 88vw);
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border-left: 1px solid var(--gold);
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  z-index: 1000;
  transform: translateX(105%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 13, 26, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-drawer-backdrop.is-open { opacity: 1; visibility: visible; }
.mobile-drawer-inner { padding: 24px 22px 32px; flex: 1; }
.mobile-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.mobile-drawer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}
.mobile-drawer-close {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
  width: 36px;
  height: 36px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s;
}
.mobile-drawer-close:hover { border-color: var(--gold); background: rgba(201,164,92,0.08); }
.mobile-nav-group {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-nav-group:last-child { border-bottom: none; }
.mobile-nav-label {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.mobile-nav a {
  display: block;
  color: var(--text-soft);
  text-decoration: none;
  padding: 9px 0 9px 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-left: 2px solid transparent;
  padding-left: 12px;
  transition: all 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:active {
  color: var(--gold);
  border-left-color: var(--gold);
  background: rgba(201,164,92,0.04);
}
.mobile-nav .mobile-nav-strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--cream);
  font-weight: 600;
  padding-left: 0;
  border-left: none;
}
.mobile-drawer-actions {
  padding: 20px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border);
}
.mobile-drawer-actions .btn-gold,
.mobile-drawer-actions .btn-ghost {
  text-align: center;
  width: 100%;
}
body.menu-open { overflow: hidden; }

/* ==================
   RESPONSIVE
   ================== */
/* TABLET (<=1024px) */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 50px; padding: 30px 24px 70px; }
  .hero-visual { height: auto; min-height: 480px; max-width: 600px; margin: 0 auto; width: 100%; }
  .award-badge { left: -10px; top: 80px; }
  .chart-main { left: 130px; }
  .phone-mockup { right: 0; bottom: -10px; width: 200px; }
  .platforms-grid, .testi-grid, .edu-grid { grid-template-columns: 1fr 1fr; }
  .tiers-grid { grid-template-columns: 1fr 1fr; }
  .tier { border-right: none; border-bottom: 1px solid var(--border); }
  .tier:nth-child(odd) { border-right: 1px solid var(--border); }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 60px 30px; }
  .stat:nth-child(2)::after { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .announce-right { display: none; }
  .announce-inner { justify-content: center; }
}

/* SMALL TABLET / LARGE PHONE (<=768px) */
@media (max-width: 768px) {
  .nav-inner { padding: 0 18px; }
  .announce-inner { padding: 0 18px; }
  .section-wrap { padding: 64px 22px; }
  footer { padding: 64px 22px 32px; }
  .hero { padding: 24px 22px 56px; gap: 40px; }
  .hero-visual { min-height: 440px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* PHONE (<=640px) */
@media (max-width: 640px) {
  .platforms-grid, .testi-grid, .edu-grid, .tiers-grid, .stats-inner {
    grid-template-columns: 1fr;
  }
  .tier { border-right: none !important; }
  .stat::after { display: none !important; }
  .hero h1 { font-size: clamp(32px, 9vw, 42px); line-height: 1.08; letter-spacing: -1px; }
  .hero h1 br { display: none; }
  .hero p { font-size: 14.5px; }
  .section-title { font-size: clamp(28px, 7.5vw, 34px); }
  .section-head { margin-bottom: 44px; }
  .section-sub { font-size: 14.5px; }
  .cta h2 { font-size: clamp(30px, 8vw, 40px); }
  .cta p { font-size: 15px; }
  .nav-cta .btn-ghost,
  .nav-cta .btn-gold { display: none; }
  .nav-cta .btn-whatsapp {
    padding: 0;
    width: 42px;
    height: 42px;
    border-radius: 4px;
  }
  .nav-cta .btn-whatsapp-label { display: none; }
  .nav-cta .btn-whatsapp-icon { width: 20px; height: 20px; }
  .nav-cta { gap: 8px; }
  .section-wrap { padding: 56px 18px; }
  .hero { padding: 16px 18px 48px; gap: 32px; }
  .hero-trust { gap: 22px; padding-top: 14px; }
  .trust-item .num { font-size: 26px; }
  .award-badge { display: none; }
  .phone-mockup { display: none; }
  .chart-main { left: 0; position: relative; height: auto; }
  .hero-visual { min-height: 0; height: auto; }
  .hero-taglines { margin-bottom: 32px; gap: 12px; }
  .hero-taglines li { font-size: 17px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 2px; gap: 10px; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 20px; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn-gold, .hero-actions .btn-ghost { flex: 1 1 100%; text-align: center; }
  .btn-large { padding: 14px 24px; font-size: 13px; }
  .cta-actions .btn-gold, .cta-actions .btn-ghost { flex: 1 1 100%; text-align: center; }
  .logo-img { height: 44px; }
  .logo-img.footer-logo-img { height: 76px; }
  nav { padding: 6px 0; }
  .nav-inner { padding: 0 16px; min-height: 56px; }
  .announce { padding: 8px 0; font-size: 11px; }
  .announce-inner { padding: 0 16px; }
  .announce-left { gap: 8px; }
  .ticker { padding: 10px 0; }
  .ticker-label { display: none; }
  .ticker-track { padding-left: 16px; }
  .tick { font-size: 12px; gap: 8px; padding: 0 14px; }
  .tick .sym { font-size: 11px; }
  .tick .chg { font-size: 10.5px; padding: 2px 6px; }
  /* Chart card adjustments */
  .chart-card { padding: 18px; }
  .chart-pair { font-size: 18px; }
  .chart-price { font-size: 22px; }
  .chart-svg { height: 170px; }
  .chart-stats { gap: 10px; margin-top: 14px; padding-top: 12px; }
  .chart-stat .v { font-size: 13px; }
  .side-card { display: none; }
  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .footer-about p { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; gap: 14px; padding-top: 24px; }
  .footer-bottom-links { gap: 18px; flex-wrap: wrap; }
  /* Stats */
  .stat .num { font-size: 56px; }
  .stat .num em { font-size: 40px; }
  /* Testimonials */
  .testi { padding: 32px 26px; }
  .testi::before { font-size: 90px; right: 18px; }
  /* Tiers */
  .tier { padding-left: 6vw !important; padding-right: 6vw !important; }
  /* Edu cards */
  .edu-body { padding: 24px; }
  /* Section heads */
  .section-head { padding: 0 4px; }
}

/* SMALL PHONE (<=420px) */
@media (max-width: 420px) {
  .nav-inner { padding: 0 14px; }
  .logo-img { height: 38px; }
  .nav-toggle { width: 38px; height: 38px; }
  .nav-toggle span { width: 18px; }
  .announce { font-size: 10.5px; padding: 7px 0; }
  .announce-left strong { font-size: 11px; }
  .section-wrap { padding: 48px 16px; }
  footer { padding: 48px 16px 28px; }
  .hero { padding: 12px 16px 40px; }
  .hero h1 { font-size: 30px; }
  .hero-taglines li { font-size: 15px; gap: 10px; }
  .hero-taglines .tag-icon { width: 18px; height: 18px; font-size: 9px; }
  .hero-trust { gap: 16px; }
  .trust-item .num { font-size: 22px; }
  .trust-item .lbl { font-size: 9px; letter-spacing: 1px; }
  .section-title { font-size: 26px; }
  .cta h2 { font-size: 28px; }
  .tick { padding: 0 12px; gap: 6px; font-size: 11px; }
  .tick .sym { font-size: 10px; }
  .chart-card { padding: 14px; }
  .chart-svg { height: 150px; }
  .chart-stats { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .chart-stat .l { font-size: 9px; }
  .chart-stat .v { font-size: 12px; }
  .testi { padding: 28px 22px; }
  .stat .num { font-size: 48px; }
  .stat .num em { font-size: 34px; }
  .mobile-drawer { width: 100vw; border-left: none; }
}

/* Subtle entrance animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1, .hero p, .hero-actions, .hero-trust {
  animation: fadeUp 0.8s ease-out backwards;
}
.hero p { animation-delay: 0.1s; }
.hero-actions { animation-delay: 0.2s; }
.hero-trust { animation-delay: 0.3s; }
.hero-visual { animation: fadeUp 1s ease-out 0.4s backwards; }

/* ==================
   CONTACT PAGE
   ================== */
.contact-header {
  position: relative;
  overflow: hidden;
}
.contact-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 164, 92, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.contact-header .section-wrap { position: relative; z-index: 1; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.contact-card {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.contact-card:hover {
  border-color: rgba(201, 164, 92, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(201, 164, 92, 0.15);
}
.contact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  background: rgba(201, 164, 92, 0.05);
}
.contact-card-eye {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}
.contact-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--cream);
  margin-bottom: 16px;
  font-weight: 500;
}
.contact-card-body {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 18px;
}
.contact-card-meta {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}
.contact-link {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}
.contact-link:hover { color: var(--gold-light); }

/* Form */
.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-form-quick {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.quick-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.quick-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 4px;
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  margin-bottom: 18px;
}
.form-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--bg-deep);
  border: 1px solid var(--border-soft);
  color: var(--text);
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  border-radius: 3px;
  transition: border-color 0.2s, background 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg);
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: 'Inter', sans-serif;
}
.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 13px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.form-success {
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: var(--success);
  padding: 14px 18px;
  border-radius: 3px;
  font-size: 13px;
  margin-bottom: 20px;
  display: none;
}
.form-success.show { display: block; }

/* Location Block */
.location-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-2);
}
.location-info {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
}
.location-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}
.location-row:last-child { border-bottom: none; }
.location-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  padding-top: 2px;
}
.location-map {
  min-height: 360px;
  background: var(--bg-deep);
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { grid-template-columns: 1fr; gap: 50px; }
  .location-block { grid-template-columns: 1fr; }
  .location-info { border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 640px) {
  .contact-header h1 { font-size: 40px !important; }
  .contact-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .location-info { padding: 32px 24px; }
  .location-row { grid-template-columns: 1fr; gap: 4px; }
}

/* Clickable dropdown support + generated content pages */
.has-dd.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-links > li > a.active,
.dropdown a.active {
  color: var(--gold) !important;
}
.page-hero {
  max-width: 1320px;
  margin: 0 auto;
  padding: 86px 32px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: -180px auto auto 50%;
  width: 720px;
  height: 720px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201,164,92,0.08), transparent 62%);
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 18px;
}
.page-kicker::before,
.page-kicker::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -1.5px;
}
.page-title em { color: var(--gold); font-style: italic; font-weight: 400; }
.page-lead {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.75;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-card {
  background: linear-gradient(180deg, var(--bg-2), rgba(15,29,51,0.35));
  border: 1px solid var(--border);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all .35s;
}
.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}
.info-card .num {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 18px;
  font-style: italic;
  margin-bottom: 18px;
  letter-spacing: 2px;
}
.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--cream);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 12px;
}
.info-card p, .info-card li {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.75;
}
.info-card ul { list-style: none; margin-top: 18px; }
.info-card li {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.info-card li::before {
  content: '◆';
  color: var(--gold);
  font-size: 9px;
  margin-right: 10px;
}
.band-panel {
  margin-top: 34px;
  padding: 38px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(201,164,92,.08), rgba(15,29,51,.65));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.band-panel h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--cream);
  font-size: 34px;
  font-weight: 500;
}
.band-panel p {
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 680px;
}
@media (max-width: 900px) {
  .info-grid { grid-template-columns: 1fr; }
  .band-panel { flex-direction: column; align-items: flex-start; }
}


/* ==================
   UPDATED CONTENT PAGES
   ================== */
.updated-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.updated-grid.two { grid-template-columns: repeat(2, 1fr); }
.updated-card {
  background: linear-gradient(180deg, var(--bg-2), rgba(15,29,51,0.35));
  border: 1px solid var(--border);
  padding: 34px;
  position: relative;
  overflow: hidden;
  transition: all .35s;
}
.updated-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.updated-card h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--cream);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 12px;
}
.updated-card p, .updated-card li {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.75;
}
.updated-card .eyebrow, .tier-tag {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.updated-card ul { list-style: none; margin-top: 18px; }
.updated-card li { padding: 9px 0; border-bottom: 1px solid var(--border); }
.updated-card li::before { content: '◆'; color: var(--gold); font-size: 9px; margin-right: 10px; }
.tier-table-wrap { overflow-x: auto; border: 1px solid var(--border); background: rgba(5,13,26,.55); }
.tier-table { width: 100%; border-collapse: collapse; min-width: 900px; }
.tier-table th, .tier-table td { border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); padding: 16px 18px; text-align: left; color: var(--text-soft); font-size: 13px; line-height: 1.55; vertical-align: top; }
.tier-table th { color: var(--gold); background: rgba(201,164,92,.07); font-weight: 700; letter-spacing: .8px; text-transform: uppercase; }
.tier-table td:first-child { color: var(--cream); font-weight: 600; }
.tier-table tr:last-child td { border-bottom: 0; }
.tier-price { font-family: 'Cormorant Garamond', serif; color: var(--gold); font-size: 42px; font-weight: 600; margin: 10px 0 6px; }
.resource-list { display: grid; gap: 18px; }
.faq-item, .glossary-item {
  border: 1px solid var(--border);
  background: rgba(15,29,51,.55);
  padding: 22px 24px;
}
.faq-item h3, .glossary-item h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--cream);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}
.faq-item p, .glossary-item p { color: var(--text-soft); line-height: 1.75; font-size: 14px; }
.glossary-letter {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 44px;
  margin: 42px 0 18px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--text-soft);
  line-height: 1.7;
  margin-top: 16px;
}
.contact-detail span { color: var(--gold); }
.nav-links .has-dd.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
@media (max-width: 900px) { .updated-grid, .updated-grid.two { grid-template-columns: 1fr; } }


/* Contract list search + grouping */
.contract-tools {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 18px;
  flex-wrap: wrap;
}
.contract-tools input {
  min-width: min(420px, 100%);
  background: rgba(5,13,26,.75);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
  outline: none;
}
.contract-tools input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,164,92,.08); }
.contract-count { color: var(--gold); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; }
.contract-table .category-row td {
  background: rgba(201,164,92,.13);
  color: var(--gold-light) !important;
  font-weight: 800 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.contract-stat .num { font-size: 38px; }


.site-header { position: sticky; top: 0; z-index: 200; }

/* ── Live Account Modal ── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(5,13,26,0.85); backdrop-filter: blur(6px);
  z-index: 9999; align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--bg-2, #0f1d33);
  border: 1px solid rgba(201,164,92,0.25);
  border-radius: 16px;
  padding: 48px 40px 40px;
  width: 100%; max-width: 480px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}
.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: var(--text-dim, #8a96ad);
  font-size: 22px; cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--gold, #c9a45c); }
.modal-eyebrow {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold, #c9a45c); margin-bottom: 8px;
}
.modal-title {
  font-size: 26px; font-weight: 700; color: var(--text, #e8eaf0);
  margin-bottom: 6px; line-height: 1.2;
}
.modal-sub {
  font-size: 13px; color: var(--text-dim, #8a96ad); margin-bottom: 32px;
}
.modal-field { margin-bottom: 18px; }
.modal-field label {
  display: block; font-size: 12px; font-weight: 500;
  color: var(--text-dim, #8a96ad); letter-spacing: 0.5px;
  margin-bottom: 6px; text-transform: uppercase;
}
.modal-field input {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,164,92,0.2);
  border-radius: 8px; color: var(--text, #e8eaf0);
  font-size: 14px; outline: none;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}
.modal-field input:focus {
  border-color: var(--gold, #c9a45c);
  background: rgba(201,164,92,0.05);
}
.modal-field input::placeholder { color: rgba(138,150,173,0.5); }
.modal-submit {
  width: 100%; padding: 14px;
  background: var(--gold, #c9a45c); color: #0a1628;
  font-size: 14px; font-weight: 700; letter-spacing: 0.5px;
  border: none; border-radius: 8px; cursor: pointer;
  margin-top: 8px; transition: background 0.2s;
}
.modal-submit:hover { background: var(--gold-light, #e4c884); }
.modal-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.modal-success {
  text-align: center; padding: 20px 0;
  display: none;
}
.modal-success .check {
  font-size: 48px; margin-bottom: 16px;
}
.modal-success h3 {
  color: var(--text, #e8eaf0); font-size: 22px; margin-bottom: 8px;
}
.modal-success p {
  color: var(--text-dim, #8a96ad); font-size: 14px;
}
.modal-error {
  color: #f87171; font-size: 13px; margin-top: 10px;
  text-align: center; display: none;
}
