/* Multify — Dark Fintech Theme */

:root {
  --bg: #050810;
  --surface: #0b1221;
  --surface-2: #101929;
  --border: rgba(255,255,255,0.07);
  --text: #c8d8ee;
  --text-muted: #5a7a9a;
  --accent: #00FF87;
  --accent-dim: rgba(0,255,135,0.12);
  --red: #ff4757;
  --font-head: 'Sora', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-body: 'Figtree', sans-serif;
}

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

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

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,8,16,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.3px;
}
.nav-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── HERO ── */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 24px 72px;
  text-align: center;
}
.hero-eyebrow { margin-bottom: 28px; }
.eyebrow-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,255,135,0.2);
  padding: 5px 14px;
  border-radius: 20px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 24px;
}
.hero-highlight { color: var(--accent); }
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 40px;
  font-weight: 400;
}
.hero-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.logo-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 4px;
  transition: all 0.2s;
}
.logo-tag:last-child { color: var(--accent); border-color: rgba(0,255,135,0.2); }

/* ── TRADE DIAGRAM ── */
.diagram-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.diagram-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 28px;
}
.trade-flow {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  overflow-x: auto;
}
.flow-step { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; }
.flow-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
}
.master-icon { background: rgba(200,216,238,0.1); color: var(--text); }
.multify-icon { background: var(--accent-dim); color: var(--accent); font-size: 20px; }
.flow-info { text-align: center; }
.flow-label { font-size: 12px; font-weight: 600; color: #fff; display: block; }
.flow-platform { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); }
.flow-arrow {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
  min-width: 60px;
}
.flow-time {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
}
.arrow-line {
  width: 100%;
  height: 2px;
  background: var(--border);
  position: relative;
}
.flow-arrow:last-child { min-width: 40px; }
.flow-accounts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.account-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 80px;
}
.account-name { font-size: 12px; font-weight: 700; color: #fff; display: block; }
.account-contracts { font-family: var(--font-mono); font-size: 10px; color: var(--accent); }
.diagram-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 20px;
}

/* ── FEATURES ── */
.features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 96px;
}
.features-header { text-align: center; margin-bottom: 56px; }
.features-header h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}
.features-header p { color: var(--text-muted); font-size: 16px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.feature-card {
  background: var(--surface);
  padding: 36px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--surface-2); }
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── PLATFORMS ── */
.platforms {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 80px;
  text-align: center;
}
.platforms-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.platforms-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.platform-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.platform-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}
.tradingview { background: #1e2d4a; }
.ninjatrader { background: #1a2540; }
.rithmic { background: #162238; }
.tradovate { background: #1d2b40; }
.projectx { background: #141f30; }
.platforms-note { font-size: 12px; color: var(--text-muted); }

/* ── CLOSING ── */
.closing {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 96px;
  border-top: 1px solid var(--border);
}
.closing-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 48px;
}
.closing-stat {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.closing-stat:last-child { border-right: none; }
.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.5;
}
.closing-tagline {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}
.closing-tagline em { color: var(--text); font-style: normal; }

/* ── FOOTER ── */
.footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.footer-note { font-size: 13px; color: var(--text-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .trade-flow { flex-direction: column; gap: 16px; }
  .flow-arrow { transform: rotate(90deg); min-width: 40px; }
  .closing-inner { grid-template-columns: 1fr; gap: 24px; }
  .closing-stat { border-right: none; padding: 0; }
  .hero { padding: 64px 24px 48px; }
}
