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

:root {
  --gold:    #C9A84C;
  --gold-lt: #E8C96A;
  --gold-dk: #9A7A2E;
  --bg:      #07070d;
  --bg2:     #0f0f1a;
  --bg3:     #161625;
  --card:    #12121f;
  --border:  rgba(201,168,76,0.15);
  --text:    #e8e8f0;
  --muted:   #8888a8;
  --white:   #ffffff;
  --radius:  12px;
  --font:    'Inter', sans-serif;
  --serif:   'Playfair Display', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

.gold { color: var(--gold); }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; margin-bottom: 1.2rem; }
h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; }

p { color: var(--muted); font-size: 1rem; }

a { color: inherit; text-decoration: none; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #07070d;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary.full-width { width: 100%; text-align: center; padding: 16px; font-size: 1rem; }

.btn-ghost {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 6px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(201,168,76,0.07); }

.btn-nav {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn-nav:hover { background: rgba(201,168,76,0.1); }

/* ── NAV ────────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0;
  transition: background 0.3s, box-shadow 0.3s;
}
#nav.scrolled {
  background: rgba(7,7,13,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
}
.logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
}
.logo span { color: var(--gold); }

.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--muted); transition: color 0.2s; letter-spacing: 0.03em; }
.nav-links a:hover { color: var(--white); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ── HERO ───────────────────────────────────────────────────── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; padding-top: 80px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 40% 40% at 80% 80%, rgba(201,168,76,0.04) 0%, transparent 50%);
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black 40%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 780px; margin: 0 auto;
  padding: 60px 24px 40px;
  text-align: center;
}
.hero-tag {
  color: var(--gold); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-content h1 { margin-bottom: 24px; color: var(--white); }
.hero-sub { font-size: 1.1rem; max-width: 580px; margin: 0 auto 40px; line-height: 1.8; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-ticker {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(201,168,76,0.03);
  overflow: hidden; padding: 12px 0;
  margin-top: auto;
}
.ticker-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em;
  color: var(--muted);
}
.ticker-track span.up { color: #4ade80; }
.ticker-track span.down { color: #f87171; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── STATS ──────────────────────────────────────────────────── */
#stats {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
}
.stats-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat { text-align: center; padding: 16px 48px; }
.stat-num {
  display: block; font-family: var(--serif);
  font-size: 3rem; font-weight: 700; color: var(--gold);
  line-height: 1;
}
.stat-pct { font-family: var(--serif); font-size: 3rem; font-weight: 700; line-height: 1; }
.stat-label { display: block; font-size: 0.78rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 8px; }
.stat-divider { width: 1px; height: 60px; background: var(--border); }

/* ── SECTIONS SHARED ────────────────────────────────────────── */
section { padding: 100px 0; }
.section-tag {
  display: inline-block;
  color: var(--gold); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 16px;
  padding: 4px 12px; border: 1px solid var(--border);
  border-radius: 20px; background: rgba(201,168,76,0.05);
}
.section-tag.center { display: block; text-align: center; }
.section-sub { max-width: 560px; margin: 0 auto 60px; font-size: 1rem; line-height: 1.8; text-align: center; }

/* ── ABOUT ──────────────────────────────────────────────────── */
#about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-text p { margin-bottom: 20px; font-size: 1rem; line-height: 1.85; }
.about-text h2 { margin-bottom: 28px; }
.about-cards { display: flex; flex-direction: column; gap: 20px; }
.about-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.about-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.card-icon { font-size: 1.4rem; color: var(--gold); margin-bottom: 12px; }
.about-card p { font-size: 0.92rem; }

/* ── APPROACH ───────────────────────────────────────────────── */
#approach { background: var(--bg2); }
.approach-pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 16px; margin-bottom: 48px; }
.pillar {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.pillar::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.pillar:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-3px); }
.pillar:hover::before { opacity: 1; }
.pillar-icon { font-size: 2.5rem; font-family: var(--serif); color: rgba(201,168,76,0.2); font-weight: 700; margin-bottom: 12px; }
.pillar h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; font-family: var(--font); font-weight: 600; }
.pillar p { font-size: 0.92rem; }
.asset-classes { text-align: center; }
.ac-label { font-size: 0.75rem; font-weight: 700; color: var(--muted); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 16px; }
.ac-tags { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.ac-tags span {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em;
  padding: 8px 20px; border-radius: 30px;
  border: 1px solid var(--border); color: var(--gold);
  background: rgba(201,168,76,0.06);
}

/* ── PERFORMANCE ─────────────────────────────────────────────── */
#performance { background: var(--bg); }
.perf-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.chart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.chart-live { font-size: 0.75rem; font-weight: 700; color: #4ade80; letter-spacing: 0.1em; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.monthly-table-wrap { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; margin-bottom: 40px; }
.monthly-table-wrap .chart-label { margin-bottom: 20px; }
#monthlyTable { overflow-x: auto; }
#monthlyTable table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
#monthlyTable th { color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; padding: 8px 12px; border-bottom: 1px solid var(--border); text-align: center; }
#monthlyTable td { padding: 10px 12px; text-align: center; border-bottom: 1px solid rgba(201,168,76,0.05); }
#monthlyTable td.pos { color: #4ade80; font-weight: 600; }
#monthlyTable td.neg { color: #f87171; font-weight: 600; }
#monthlyTable td.neu { color: var(--muted); }
.perf-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px; text-align: center;
}
.perf-card.highlight { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.05); }
.perf-label { display: block; font-size: 0.75rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.perf-val { display: block; font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--white); }

.chart-placeholder {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px;
  margin-bottom: 40px;
}
.chart-label { font-size: 0.8rem; font-weight: 600; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; }
#equityChart { width: 100%; height: 280px; }
.chart-note { font-size: 0.82rem; text-align: center; margin-top: 20px; }

.report-cta { text-align: center; }
.report-cta p { margin-bottom: 20px; font-size: 1rem; }

/* ── VISION ──────────────────────────────────────────────────── */
#vision {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.vision-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.vision-quote { padding: 20px 0; }
.quote-mark { font-family: var(--serif); font-size: 6rem; color: var(--gold); line-height: 0.6; display: block; margin-bottom: 24px; opacity: 0.6; }
.vision-quote p { font-size: 1.3rem; font-family: var(--serif); color: var(--white); line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.vision-attr { font-size: 0.82rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }

.vision-timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item { display: flex; gap: 20px; padding-bottom: 36px; position: relative; }
.tl-item:not(:last-child)::after {
  content: ''; position: absolute; left: 7px; top: 20px; bottom: 0;
  width: 1px; background: var(--border);
}
.tl-dot {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid var(--border); background: var(--bg2);
  flex-shrink: 0; margin-top: 4px; transition: border-color 0.3s;
  position: relative; z-index: 1;
}
.tl-item.active .tl-dot { border-color: var(--gold); background: var(--gold); box-shadow: 0 0 12px rgba(201,168,76,0.5); }
.tl-item.pending .tl-dot { border-color: rgba(136,136,168,0.25); background: transparent; }
.tl-item.pending .tl-content h4 { color: var(--muted); }
.tl-item.pending .tl-content p { color: rgba(136,136,168,0.45); font-style: italic; }
.tl-pending {
  display: inline-block; margin-left: 10px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(136,136,168,0.12); color: var(--muted);
  border: 1px solid rgba(136,136,168,0.2); border-radius: 4px;
  padding: 2px 8px; vertical-align: middle; font-family: var(--font);
}
.tl-active-badge {
  display: inline-block; margin-left: 10px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(201,168,76,0.12); color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3); border-radius: 4px;
  padding: 2px 8px; vertical-align: middle; font-family: var(--font);
  animation: pulse 2s ease-in-out infinite;
}

/* ── ACCOUNTS TRANSPARENCY NOTE ──────────────────────────────── */
.acc-transparency-note {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(201,168,76,0.04); border: 1px solid rgba(201,168,76,0.12);
  border-radius: 8px; padding: 14px 20px;
  margin-top: 20px; margin-bottom: 0;
  font-size: 0.82rem; color: var(--muted); line-height: 1.7;
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.atn-icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.tl-content h4 { font-size: 1rem; color: var(--white); margin-bottom: 6px; font-family: var(--font); font-weight: 600; }
.tl-content p { font-size: 0.9rem; }

/* ── ACCOUNTS ─────────────────────────────────────────────────── */
#accounts { background: var(--bg2); }
.acc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.acc-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; cursor: pointer;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column; gap: 0;
}
.acc-card:hover {
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.acc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.acc-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.acc-status.live { font-size: 0.72rem; font-weight: 700; color: #4ade80; letter-spacing: 0.06em; }
.acc-capital {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 700;
  color: var(--white); line-height: 1; margin-bottom: 6px;
}
.acc-currency { font-size: 0.75rem; color: var(--muted); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 28px; }
.acc-metrics { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.acc-m { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; border-bottom: 1px solid rgba(201,168,76,0.07); }
.acc-m:last-child { border-bottom: none; padding-bottom: 0; }
.acc-ml { font-size: 0.8rem; color: var(--muted); font-weight: 500; }
.acc-mv { font-size: 0.95rem; color: var(--white); font-weight: 700; }
.acc-btn {
  margin-top: auto; background: transparent;
  border: 1px solid var(--border); border-radius: 8px;
  color: var(--gold); font-size: 0.82rem; font-weight: 700;
  padding: 12px; cursor: pointer; letter-spacing: 0.04em;
  transition: background 0.2s, border-color 0.2s;
  font-family: var(--font);
}
.acc-card:hover .acc-btn { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.4); }

/* ── ACCOUNT MODAL ─────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(7,7,13,0.85); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 16px; padding: 48px 44px;
  max-width: 600px; width: 100%; position: relative;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(136,136,168,0.12); border: none;
  color: var(--muted); font-size: 0.9rem; font-weight: 700;
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: rgba(201,168,76,0.15); color: var(--gold); }
.modal-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.modal-title { font-size: 1.6rem; color: var(--white); margin-bottom: 32px; }
.modal-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px;
}
.modal-item {
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  padding: 18px 16px; display: flex; flex-direction: column; gap: 6px;
}
.modal-item-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.modal-item-val { font-size: 1.2rem; font-weight: 700; color: var(--white); font-family: var(--serif); }
.modal-note { font-size: 0.78rem; color: rgba(136,136,168,0.5); }

/* ── UPDATES ──────────────────────────────────────────────────── */
#updates { background: var(--bg2); }
.updates-list { display: flex; flex-direction: column; gap: 28px; margin-top: 56px; }
.update-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 40px;
  position: relative; overflow: hidden;
}
.update-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dk));
}
.update-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.update-date {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold);
}
.update-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(201,168,76,0.12); color: var(--gold-lt);
  border: 1px solid rgba(201,168,76,0.25); border-radius: 4px; padding: 2px 9px;
}
.update-card h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 12px; }
.update-card > p { font-size: 0.95rem; line-height: 1.75; }
.update-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border);
}
.us-item { display: flex; flex-direction: column; gap: 4px; }
.us-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.us-val { font-size: 1.1rem; font-weight: 700; color: var(--white); font-family: var(--serif); }
.updates-cta { text-align: center; margin-top: 52px; }
.updates-cta p { margin-bottom: 18px; font-size: 0.95rem; }

/* ── CONTACT ──────────────────────────────────────────────────── */
#contact { background: var(--bg); }
.contact-form { max-width: 720px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { margin-bottom: 28px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 14px 16px;
  color: var(--text); font-family: var(--font); font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; }
::placeholder { color: var(--muted); }
option { background: var(--card); }

/* ── FOUNDER ──────────────────────────────────────────────────── */
#founder { padding: 100px 0; }
.founder-grid {
  display: grid; grid-template-columns: 1fr 380px; gap: 80px; align-items: center;
}
.founder-bio { color: var(--muted); margin-bottom: 20px; line-height: 1.8; }
.founder-stats { display: flex; gap: 40px; margin-top: 40px; }
.founder-stat { display: flex; flex-direction: column; gap: 4px; }
.founder-stat-num { font-size: 1.6rem; font-weight: 700; font-family: var(--serif); }
.founder-stat-label { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

.founder-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 2px; box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.founder-card-inner {
  background: linear-gradient(145deg, rgba(201,168,76,0.04), transparent);
  border-radius: 18px; padding: 48px 40px; text-align: center;
}
.founder-initials {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--bg); font-size: 2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-family: var(--serif);
}
.founder-name { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.founder-role { font-size: 0.85rem; color: var(--gold); margin-bottom: 0; }
.founder-divider { height: 1px; background: var(--border); margin: 28px 0; }
.founder-list { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 12px; }
.founder-list li { font-size: 0.88rem; color: var(--muted); padding-left: 20px; position: relative; }
.founder-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* ── FAQ ──────────────────────────────────────────────────────── */
#faq { padding: 100px 0; background: var(--bg2); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 56px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(201,168,76,0.4); }
.faq-item summary {
  padding: 22px 24px; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; color: var(--gold); font-size: 1.4rem; font-weight: 300;
  flex-shrink: 0; transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 22px; color: var(--muted); font-size: 0.9rem; line-height: 1.75; }

/* ── FOOTER ───────────────────────────────────────────────────── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px; flex-wrap: wrap; gap: 24px;
}
.footer-brand p { font-size: 0.85rem; margin-top: 8px; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 0.85rem; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-legal { border-top: 1px solid var(--border); padding-top: 24px; }
.footer-legal p { font-size: 0.75rem; line-height: 1.7; }
.footer-legal p + p { margin-top: 6px; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .about-grid,
  .vision-inner { grid-template-columns: 1fr; gap: 48px; }

  .strategy-grid { grid-template-columns: 1fr; }

  .perf-grid { grid-template-columns: repeat(2, 1fr); }

  .form-row { grid-template-columns: 1fr; }

  .stats-inner { flex-direction: column; gap: 8px; }
  .stat-divider { width: 60px; height: 1px; }

  .founder-grid { grid-template-columns: 1fr; gap: 48px; }
  .founder-card { max-width: 380px; margin: 0 auto; }
  .founder-stats { gap: 24px; flex-wrap: wrap; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 16px; }
  .update-stats { grid-template-columns: repeat(2, 1fr); }
  .update-card { padding: 28px 24px; }
  .acc-grid { grid-template-columns: 1fr; }
  .modal { padding: 36px 24px; }
  .modal-grid { grid-template-columns: repeat(2, 1fr); }

  section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .perf-grid { grid-template-columns: 1fr 1fr; }
}

/* ── TRADINGVIEW WIDGETS ──────────────────────────────────────── */
#calendar, #news { background: var(--bg-dark); }
.tv-widget-wrap {
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(201,168,76,0.12);
  margin-top: 36px;
}
.tv-widget-wrap iframe { display: block; width: 100%; min-height: 600px; }

/* ── SCROLL ANIMATIONS ────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
