:root {
  --bg:       #070B16;
  --bg-card:  #0D1425;
  --gold:     #C9A84C;
  --border:   rgba(201,168,76,0.12);
  --text:     #EDF0F5;
  --muted:    #6B80A3;
  --font:     'Inter', sans-serif;
}

* { margin:0; padding:0; box-sizing:border-box; }

html { font-size: 22px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed;
  top:0; left:0; right:0;
  z-index: 100;
  height: 80px;
  border-bottom: 1px solid var(--border);
  background: rgba(7,11,22,0.95);
  backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--text);
  text-decoration: none;
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn-gold {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-gold:hover { background: var(--gold); color: #070B16; }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 160px 48px 100px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-content { max-width: 900px; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}
.hero h1 {
  font-size: 140px;
  font-weight: 200;
  line-height: 0.95;
  letter-spacing: -4px;
  color: var(--text);
  margin-bottom: 48px;
}
.hero-sub {
  color: var(--muted);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 56px;
}

/* ── DIVIDER ─────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* ── STATS BAR ───────────────────────────────────── */
.stats-bar {
  display: flex;
  align-items: stretch;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-val {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.stat-lbl {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── ABOUT ───────────────────────────────────────── */
.about { padding: 120px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.about-left h2 {
  font-size: 56px;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 36px;
  letter-spacing: -1px;
}
.about-left p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.9;
  margin-bottom: 22px;
}
.info-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border);
}
.info-row:last-child { border-bottom: none; }
.info-key {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.info-val { font-size: 17px; font-weight: 500; }

/* ── CTA ─────────────────────────────────────────── */
.cta {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  padding: 80px 48px;
}
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta h3 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.cta p  { color: var(--muted); font-size: 20px; }

/* ── FOOTER ──────────────────────────────────────── */
footer {
  padding: 60px 48px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer-logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 6px;
  margin-bottom: 24px;
}
.disclaimer {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  max-width: 720px;
  margin: 0 auto;
}

/* ── QUALIFIED INVESTOR GATE ─────────────────────── */
#qi-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(7,11,22,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  backdrop-filter: blur(8px);
}
.qi-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 64px 56px;
  max-width: 560px;
  width: 100%;
  text-align: center;
}
.qi-logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 6px;
  margin-bottom: 28px;
}
.qi-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.qi-text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: left;
}
.qi-text strong { color: var(--text); font-weight: 600; }
.qi-actions {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.qi-confirm { padding: 16px 40px; font-size: 13px; }
.qi-decline {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 1px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.qi-decline:hover { color: var(--text); border-color: var(--muted); }

/* ── COOKIE BANNER ───────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
#cookie-banner p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  flex: 1;
}
.cookie-btn { padding: 10px 24px; font-size: 11px; white-space: nowrap; }

/* ── INVESTOR GATE ───────────────────────────────── */
.gate-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: radial-gradient(ellipse at 50% 40%, rgba(201,168,76,0.04) 0%, transparent 65%);
}
.gate-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 64px 56px;
  max-width: 440px;
  width: 100%;
  text-align: center;
}
.gate-sub {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.gate-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 36px;
}
.pw-input {
  width: 100%;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  letter-spacing: 3px;
  text-align: center;
  outline: none;
  transition: border-color 0.2s;
}
.pw-input:focus { border-color: var(--gold); }
.pw-input::placeholder { letter-spacing: 1px; color: var(--muted); font-size: 14px; }
.pw-btn { width: 100%; margin-top: 14px; padding: 16px; }
.pw-err { color: #E05252; font-size: 13px; margin-top: 14px; display: none; }

/* ── PORTAL CONTENT ──────────────────────────────── */
.portal-hero {
  padding: 140px 48px 64px;
  border-bottom: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}
.portal-hero h1 {
  font-size: 56px;
  font-weight: 200;
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.portal-hero p  { color: var(--muted); font-size: 16px; }

.portal-body { padding: 72px 0 100px; }

.doc-section { margin-bottom: 60px; }
.doc-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.doc-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  margin-bottom: 10px;
  transition: border-color 0.2s;
}
.doc-card:hover { border-color: rgba(201,168,76,0.3); }
.doc-icon { font-size: 26px; opacity: 0.8; }
.doc-info { flex: 1; display: flex; flex-direction: column; }
.doc-name { font-size: 17px; font-weight: 500; }
.doc-meta { font-size: 13px; color: var(--muted); margin-top: 5px; }

.portal-disclaimer {
  border: 1px solid var(--border);
  padding: 24px 28px;
  margin-top: 56px;
}
.portal-disclaimer p { font-size: 13px; color: var(--muted); line-height: 1.9; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .hero h1 { font-size: 80px; letter-spacing: -2px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-inner { flex-direction: column; }
  .stats-bar { flex-wrap: wrap; }
  .stat { flex: 1 1 50%; border-bottom: 1px solid var(--border); }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 56px; letter-spacing: -1px; }
  .hero { padding: 140px 24px 80px; }
  .container { padding: 0 24px; }
}
