/* ================================================
   TRADERS A.I. — MAIN STYLESHEET
   Deep navy-black · Electric cyan · Warm gold
   Fonts: Cormorant Garant (display) · Syne (ui) · JetBrains Mono (data)
   ================================================ */

/* ===== TOKENS ===== */
:root {
  --bg-0:        #020912;
  --bg-1:        #050E1C;
  --bg-2:        #081628;
  --bg-3:        #0D2040;
  --border-dim:  rgba(12, 50, 88, 0.7);
  --border-mid:  rgba(18, 72, 120, 0.6);
  --border-hi:   rgba(0, 205, 240, 0.25);

  --cyan:        #00CEFF;
  --cyan-bright: #40DFFF;
  --cyan-glow:   rgba(0, 206, 255, 0.14);
  --cyan-soft:   rgba(0, 206, 255, 0.07);
  --gold:        #F6B83A;
  --gold-bright: #FFCD6A;
  --gold-glow:   rgba(246, 184, 58, 0.14);
  --green:       #00E59B;
  --green-glow:  rgba(0, 229, 155, 0.14);
  --red:         #FF4565;
  --red-glow:    rgba(255, 69, 101, 0.14);

  --text-bright: #EAF3FC;
  --text-main:   #BACFE6;
  --text-sub:    #6E94B5;
  --text-muted:  #2E5070;

  --section-py: 110px;
  --max-w:      1240px;
  --pad:        clamp(20px, 4vw, 48px);

  --font-d:  'Cormorant Garant', Georgia, serif;
  --font-ui: 'Syne', sans-serif;
  --font-m:  'JetBrains Mono', 'Courier New', monospace;

  --r-s:  6px;
  --r-m:  12px;
  --r-l:  20px;
  --r-xl: 32px;

  --sh-card:  0 0 0 1px var(--border-mid), 0 8px 32px rgba(0,0,0,0.5);
  --sh-glow:  0 0 60px rgba(0,206,255,0.12), 0 0 120px rgba(0,206,255,0.04);
  --sh-gold:  0 0 60px rgba(246,184,58,0.12), 0 0 120px rgba(246,184,58,0.04);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:  cubic-bezier(0.64, 0, 0.78, 0);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-0);
  color: var(--text-main);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
strong { color: var(--text-bright); font-weight: 600; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-1); }
::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }

/* ===== UTILITIES ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section {
  padding: var(--section-py) 0;
  position: relative;
}
.section-alt { background: var(--bg-1); }

.section-eyebrow {
  font-family: var(--font-m);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 600;
  color: var(--text-bright);
  line-height: 1.12;
  margin-bottom: 24px;
}
.section-intro {
  font-size: 17px;
  color: var(--text-sub);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 64px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: var(--r-m);
  padding: 13px 28px;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  white-space: nowrap;
  border: none;
}
.btn-primary {
  background: var(--cyan);
  color: var(--bg-0);
  box-shadow: 0 0 0 1px rgba(0,206,255,0.4), 0 4px 20px rgba(0,206,255,0.3);
}
.btn-primary:hover {
  background: var(--cyan-bright);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(0,206,255,0.5), 0 8px 28px rgba(0,206,255,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--text-bright);
  border: 1px solid var(--border-mid);
}
.btn-ghost:hover {
  border-color: var(--border-hi);
  background: var(--cyan-soft);
  color: var(--cyan);
}
.btn-nav {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--border-hi);
  padding: 10px 22px;
  font-size: 12px;
}
.btn-nav:hover {
  background: var(--cyan-soft);
  box-shadow: 0 0 16px rgba(0,206,255,0.2);
}
.btn-full { width: 100%; justify-content: center; margin-top: 24px; }

/* ===== NAVIGATION ===== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: all 0.3s var(--ease-out);
}
#nav.scrolled {
  background: rgba(2, 9, 18, 0.88);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid var(--border-dim);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--cyan), rgba(0,150,200,0.6));
  border-radius: var(--r-s);
  font-family: var(--font-m);
  font-size: 11px;
  font-weight: 600;
  color: var(--bg-0);
  letter-spacing: 0.05em;
  box-shadow: 0 0 20px rgba(0,206,255,0.3);
}
.logo-text {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-bright);
  letter-spacing: -0.01em;
}
.logo-text em { font-style: normal; color: var(--cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sub);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--cyan);
  transition: right 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--text-bright); }
.nav-links a:hover::after { right: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--text-sub);
  border-radius: 1px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-0);
  padding: 100px 0 60px;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-m);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid;
}
.badge-live {
  color: var(--green);
  border-color: rgba(0,229,155,0.3);
  background: rgba(0,229,155,0.06);
}
.badge-cfa {
  color: var(--gold);
  border-color: rgba(246,184,58,0.3);
  background: rgba(246,184,58,0.06);
}
.live-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-d);
  font-size: clamp(44px, 5.5vw, 78px);
  font-weight: 600;
  color: var(--text-bright);
  line-height: 1.07;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-sub);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stat-card {
  background: var(--bg-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-l);
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
}
.stat-positive::before { background: linear-gradient(90deg, transparent, var(--green), transparent); }
.stat-negative::before { background: linear-gradient(90deg, transparent, var(--red), transparent); }
.stat-neutral::before { background: linear-gradient(90deg, transparent, var(--cyan), transparent); }
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--sh-card); }
.stat-label {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.stat-value {
  font-family: var(--font-d);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-value.positive { color: var(--green); }
.stat-value.negative { color: var(--red); }
.stat-value.mono { font-family: var(--font-m); font-size: 40px; color: var(--cyan); }
.stat-unit { font-size: 18px; color: var(--text-sub); margin-left: 4px; }
.stat-caption { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.stat-footnote { font-size: 11px; color: var(--text-muted); font-family: var(--font-m); }
.stat-bar-bg {
  height: 3px;
  background: var(--bg-3);
  border-radius: 2px;
  overflow: hidden;
}
.stat-bar-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 1.2s var(--ease-out);
}
.green-fill { background: var(--green); box-shadow: 0 0 8px var(--green); }
.red-fill   { background: var(--red);   box-shadow: 0 0 8px var(--red); }

.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  z-index: 1;
  animation: fade-cue 2s 2s both;
}
@keyframes fade-cue {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.scroll-arrow {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--border-mid), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-arrow::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%; height: 100%;
  background: var(--cyan);
  animation: scroll-pulse 2s 2.5s infinite;
}
@keyframes scroll-pulse {
  0% { top: -100%; }
  100% { top: 200%; }
}

/* ===== TICKER BAR ===== */
.ticker-wrap {
  background: var(--bg-1);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  height: 44px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-track:hover { animation-play-state: paused; }
.tick-item {
  font-family: var(--font-m);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-sub);
  padding: 0 24px;
}
.tick-pos  { color: var(--green); }
.tick-neg  { color: var(--red); }
.tick-gold { color: var(--gold); }
.tick-sep  { color: var(--text-muted); font-size: 8px; }

/* ===== BREAKTHROUGH ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.feature-card {
  background: var(--bg-1);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-l);
  padding: 32px;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cyan-soft);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: var(--r-l);
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--border-hi); box-shadow: var(--sh-glow); }
.feature-card:hover::after { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-m);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 28px; height: 28px; }
.cyan-icon { background: var(--cyan-glow); color: var(--cyan); border: 1px solid rgba(0,206,255,0.2); }
.gold-icon { background: var(--gold-glow); color: var(--gold); border: 1px solid rgba(246,184,58,0.2); }
.feature-card h3 {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 12px;
}
.feature-card p { font-size: 14px; color: var(--text-sub); line-height: 1.7; position: relative; z-index: 1; }
.feature-card p em { color: var(--gold); font-style: normal; font-weight: 600; }

.proof-banner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, rgba(0,206,255,0.06), rgba(0,206,255,0.02));
  border: 1px solid var(--border-hi);
  border-radius: var(--r-l);
  padding: 28px 32px;
  box-shadow: var(--sh-glow);
}
.proof-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--cyan-glow);
  border-radius: 50%;
  border: 1px solid rgba(0,206,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
}
.proof-icon svg { width: 20px; height: 20px; }
.proof-text { font-size: 15px; color: var(--text-sub); line-height: 1.7; }
.proof-text strong { color: var(--cyan); font-size: 17px; }

/* ===== PERFORMANCE ===== */
.perf-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.perf-comparison {
  background: var(--bg-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--sh-card);
}
.perf-card-header {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.perf-bars { display: flex; flex-direction: column; gap: 28px; margin-bottom: 28px; }
.perf-bar-row {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  align-items: center;
  gap: 14px;
}
.perf-bar-label { font-family: var(--font-m); font-size: 12px; color: var(--text-sub); text-align: right; }
.perf-bar-track {
  height: 8px;
  background: var(--bg-3);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.perf-bar-track-neg {
  direction: rtl; /* fill from right for negative */
}
.perf-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1.4s var(--ease-out);
}
.perf-green { background: linear-gradient(90deg, var(--green), rgba(0,229,155,0.6)); box-shadow: 0 0 12px var(--green); }
.perf-red   { background: linear-gradient(90deg, var(--red), rgba(255,69,101,0.6)); box-shadow: 0 0 12px var(--red); }
.perf-bar-value { font-family: var(--font-m); font-size: 14px; font-weight: 600; text-align: left; }
.positive { color: var(--green); }
.negative { color: var(--red); }

.perf-delta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(0,229,155,0.06);
  border: 1px solid rgba(0,229,155,0.2);
  border-radius: var(--r-m);
  margin-bottom: 16px;
}
.perf-delta-label { font-size: 13px; color: var(--text-sub); }
.perf-delta-value { font-family: var(--font-m); font-size: 20px; font-weight: 600; }

.perf-note { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

.perf-timeline {
  background: var(--bg-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-xl);
  padding: 36px;
}
.timeline-header {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.timeline-items { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline-items::before {
  content: '';
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--border-mid) 70%, transparent);
}
.tl-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 24px;
  position: relative;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  flex-shrink: 0;
  width: 15px; height: 15px;
  border-radius: 50%;
  border: 1.5px solid var(--border-mid);
  background: var(--bg-2);
  position: relative;
  z-index: 1;
  margin-top: 2px;
}
.tl-dot-active { border-color: var(--cyan); background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.tl-dot-gold   { border-color: var(--gold); background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.tl-content { display: flex; flex-direction: column; gap: 4px; }
.tl-date { font-family: var(--font-m); font-size: 11px; color: var(--cyan); letter-spacing: 0.06em; }
.tl-event { font-size: 13px; color: var(--text-sub); line-height: 1.5; }
.tl-event-highlight { color: var(--gold); font-weight: 500; }

/* ===== TECHNOLOGY ===== */
.tech-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 56px;
}
.tech-card {
  background: var(--bg-1);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-xl);
  padding: 36px;
  transition: all 0.3s var(--ease-out);
}
.tech-card:first-child { border-right: none; border-radius: var(--r-xl) 0 0 var(--r-xl); }
.tech-card:last-child { border-left: none; border-radius: 0 var(--r-xl) var(--r-xl) 0; }
.tech-card:first-child:hover { box-shadow: var(--sh-glow); border-color: var(--border-hi); }
.tech-card:last-child:hover { box-shadow: var(--sh-gold); border-color: rgba(246,184,58,0.3); }
.tech-card-badge {
  display: inline-block;
  font-family: var(--font-m);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.tech-card-badge.cyan { background: var(--cyan-glow); color: var(--cyan); border: 1px solid rgba(0,206,255,0.25); }
.tech-card-badge.gold { background: var(--gold-glow); color: var(--gold); border: 1px solid rgba(246,184,58,0.25); }
.tech-card h3 {
  font-family: var(--font-d);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 20px;
}
.tech-list { display: flex; flex-direction: column; gap: 10px; }
.tech-list li {
  font-size: 14px;
  color: var(--text-sub);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}
.tech-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 12px;
}
.tech-card:last-child .tech-list li::before { color: var(--gold); }
.tech-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--bg-2);
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  font-family: var(--font-d);
  font-size: 32px;
  color: var(--text-bright);
  position: relative;
  z-index: 1;
  box-shadow: var(--sh-card);
  flex-shrink: 0;
}

.moat-section {
  background: var(--bg-1);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-xl);
  padding: 36px 40px;
}
.moat-header {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.moat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.moat-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.55;
}
.moat-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--cyan);
  opacity: 0.7;
  margin-top: 1px;
}
.moat-icon svg { width: 14px; height: 14px; }

/* ===== CFA VALIDATION ===== */
.cfa-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: center;
}
.cfa-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.cfa-badge {
  width: 120px; height: 120px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-gold);
}
.cfa-logo-text {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.cfa-meta { display: flex; flex-direction: column; gap: 8px; }
.cfa-date { font-family: var(--font-m); font-size: 11px; color: var(--text-muted); letter-spacing: 0.1em; }
.cfa-title { font-size: 14px; color: var(--text-sub); line-height: 1.6; font-style: italic; }
.cfa-link {
  font-family: var(--font-m);
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 0.06em;
  transition: opacity 0.2s;
}
.cfa-link:hover { opacity: 0.7; }

.cfa-right p { font-size: 16px; color: var(--text-sub); line-height: 1.75; margin-bottom: 28px; }
.cfa-callout {
  background: linear-gradient(135deg, rgba(246,184,58,0.08), rgba(246,184,58,0.03));
  border: 1px solid rgba(246,184,58,0.25);
  border-radius: var(--r-l);
  padding: 24px 28px;
  margin-bottom: 28px;
  box-shadow: var(--sh-gold);
}
.cfa-callout-label {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.cfa-callout-word {
  font-family: var(--font-d);
  font-size: 48px;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
}
.cfa-note { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== MARKET ===== */
.market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.market-stat {
  background: var(--bg-1);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-l);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
}
.market-stat:hover { border-color: var(--border-hi); transform: translateY(-3px); box-shadow: var(--sh-glow); }
.market-stat-value {
  font-family: var(--font-d);
  font-size: 52px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.market-stat-value.mono-val {
  font-family: var(--font-m);
  font-size: 52px;
  color: var(--text-muted);
}
.market-stat-label { font-size: 13px; color: var(--text-sub); line-height: 1.4; }
.market-body {
  max-width: 680px;
  font-size: 17px;
  color: var(--text-sub);
  line-height: 1.75;
  padding: 28px 32px;
  background: var(--bg-1);
  border: 1px solid var(--border-dim);
  border-left: 3px solid var(--cyan);
  border-radius: 0 var(--r-m) var(--r-m) 0;
}

/* ===== VISION ===== */
.vision-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}
.vision-etf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.etf-item {
  background: var(--bg-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-m);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.etf-item:hover { transform: translateY(-2px); border-color: var(--border-hi); }
.etf-live {
  border-color: rgba(0,229,155,0.4);
  background: rgba(0,229,155,0.05);
}
.etf-live::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}
.etf-more {
  border-color: var(--border-hi);
  background: var(--cyan-soft);
}
.etf-ticker { font-family: var(--font-m); font-size: 13px; font-weight: 600; color: var(--text-bright); }
.etf-live .etf-ticker { color: var(--green); }
.etf-more .etf-ticker { color: var(--cyan); font-size: 18px; }
.etf-index  { font-size: 11px; color: var(--text-muted); line-height: 1.4; }
.etf-status-tag {
  position: absolute;
  top: 10px; right: 10px;
  font-family: var(--font-m);
  font-size: 8px;
  letter-spacing: 0.14em;
  color: var(--green);
  background: rgba(0,229,155,0.12);
  border: 1px solid rgba(0,229,155,0.25);
  border-radius: 100px;
  padding: 2px 7px;
}
.etf-pipeline { opacity: 0.55; }
.etf-pipeline:hover { opacity: 1; }

.vision-copy { display: flex; flex-direction: column; gap: 32px; }
.vision-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.vp-num {
  flex-shrink: 0;
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 0.1em;
  padding-top: 4px;
}
.vp-text { font-size: 14px; color: var(--text-sub); line-height: 1.7; }
.vp-text strong { display: block; color: var(--text-bright); font-size: 15px; margin-bottom: 6px; }

/* ===== SERIES A ===== */
.series-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}
.proceeds-section {
  background: var(--bg-1);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-xl);
  padding: 36px 40px;
}
.proceeds-header {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.proceeds-bars { display: flex; flex-direction: column; gap: 22px; }
.proc-row { display: flex; flex-direction: column; gap: 8px; }
.proc-info {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.proc-label { font-size: 14px; color: var(--text-sub); flex: 1; }
.proc-pct { font-family: var(--font-m); font-size: 16px; font-weight: 600; color: var(--text-bright); }
.proc-amt { font-family: var(--font-m); font-size: 13px; color: var(--text-muted); }
.proc-bar-track {
  height: 6px;
  background: var(--bg-3);
  border-radius: 3px;
  overflow: hidden;
}
.proc-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1.4s var(--ease-out);
}
.proc-bar-fill[data-color="cyan"] { background: linear-gradient(90deg, var(--cyan), rgba(0,206,255,0.5)); }
.proc-bar-fill[data-color="gold"] { background: linear-gradient(90deg, var(--gold), rgba(246,184,58,0.5)); }
.proc-bar-fill[data-color="muted"] { background: linear-gradient(90deg, var(--text-muted), rgba(46,80,112,0.5)); }

.dd-section {
  background: var(--bg-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-xl);
  padding: 32px;
}
.dd-header {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.dd-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.dd-list li {
  font-size: 13px;
  color: var(--text-sub);
  padding-left: 16px;
  position: relative;
  line-height: 1.55;
}
.dd-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 11px;
}
.dd-why-now {
  padding: 20px;
  background: rgba(0,206,255,0.05);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-m);
  margin-bottom: 4px;
}
.dd-why-now strong {
  display: block;
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-bottom: 8px;
}
.dd-why-now p { font-size: 13px; color: var(--text-sub); line-height: 1.65; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal-section { overflow: hidden; }
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-item[data-delay="100"] { transition-delay: 0.1s; }
.reveal-item[data-delay="150"] { transition-delay: 0.15s; }
.reveal-item[data-delay="200"] { transition-delay: 0.2s; }
.reveal-item[data-delay="300"] { transition-delay: 0.3s; }

/* ===== FOOTER ===== */
#footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border-dim);
  padding: 72px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  margin-bottom: 64px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-tagline { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.footer-ticker-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.08em;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-head {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 13px;
  color: var(--text-sub);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--border-dim);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-copy {
  font-family: var(--font-m);
  font-size: 12px;
  color: var(--text-muted);
}
.footer-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 780px;
  opacity: 0.65;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .hero-stats .stat-card { flex: 1; min-width: 200px; }
  .cfa-layout { grid-template-columns: 1fr; gap: 40px; }
  .cfa-left { flex-direction: row; align-items: center; }
  .vision-layout { grid-template-columns: 1fr; }
  .moat-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; gap: 16px; }
  .market-grid { grid-template-columns: repeat(2, 1fr); }
  .series-layout { grid-template-columns: 1fr; }
  .perf-layout { grid-template-columns: 1fr; }
  .tech-layout { grid-template-columns: 1fr; gap: 20px; }
  .tech-card:first-child { border-radius: var(--r-xl); border: 1px solid var(--border-dim); }
  .tech-card:last-child  { border-radius: var(--r-xl); border: 1px solid var(--border-dim); }
  .tech-plus { display: none; }
}
@media (max-width: 768px) {
  :root { --section-py: 72px; }
  .nav-links { 
    display: none; 
    position: absolute; 
    top: 72px; left: 0; right: 0; 
    background: var(--bg-1); 
    border-bottom: 1px solid var(--border-dim);
    flex-direction: column;
    padding: 20px var(--pad);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 10px 0; border-bottom: 1px solid var(--border-dim); }
  .nav-links a::after { display: none; }
  .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-stats { flex-direction: column; }
  .hero-ctas { flex-direction: column; }
  .hero-headline { font-size: clamp(36px, 8vw, 54px); }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .market-grid { grid-template-columns: repeat(2, 1fr); }
  .vision-etf-grid { grid-template-columns: repeat(3, 1fr); }
  .moat-grid { grid-template-columns: 1fr; }
  .section-title { font-size: clamp(28px, 7vw, 44px); }
}
@media (max-width: 480px) {
  .hero-headline { font-size: clamp(32px, 9vw, 46px); }
  .market-grid { grid-template-columns: 1fr 1fr; }
  .vision-etf-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
}
