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

:root {
  /* Backgrounds */
  --bg:            #f9fafb;
  --bg-white:      #ffffff;
  --bg-surface:    #f3f4f6;
  --bg-dark:       #0a0f1e;

  /* Borders */
  --border:        #e5e7eb;
  --border-strong: #d1d5db;

  /* Logo palette */
  --teal:          #00b4cc;
  --teal-dark:     #0090a8;
  --teal-dim:      rgba(0,180,204,0.08);
  --teal-glow:     rgba(0,180,204,0.15);
  --rose:          #c06080;
  --olive:         #9aaa64;
  --logo-gradient: linear-gradient(90deg, #5bbfc9 0%, #9aaa64 50%, #c06080 100%);

  /* Text */
  --text:          #0a0f1e;
  --text-dim:      #374151;
  --text-muted:    #6b7280;
  --text-light:    #9ca3af;
  --green:         #059669;
  --red:           #dc2626;

  /* Spacing & shape */
  --radius:        6px;
  --radius-lg:     10px;
  --shadow:        0 1px 4px rgba(10,15,30,0.06), 0 4px 16px rgba(10,15,30,0.06);
  --shadow-md:     0 2px 8px rgba(10,15,30,0.08), 0 8px 32px rgba(10,15,30,0.08);
  --shadow-teal:   0 0 32px rgba(0,180,204,0.14);

  /* Fonts */
  --font:          'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:     'JetBrains Mono', 'Fira Code', monospace;
  --max:           1120px;
  --transition:    0.18s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

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

/* ── Typography ───────────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.025em; font-weight: 700; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-muted); line-height: 1.75; }

a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }

/* ── Layout ───────────────────────────────────────────────────── */
.container  { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 60px 0; }
.center     { text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  font-family: var(--font-mono);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--logo-gradient);
  border-radius: 1px;
}

.section-heading { margin-bottom: 14px; }
.section-sub { max-width: 600px; margin: 0 auto 52px; font-size: 1.05rem; }

/* ── Divider ──────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-gold {
  background: var(--logo-gradient);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(0,180,204,0.25);
}
.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,180,204,0.30);
  color: #ffffff;
  opacity: 0.92;
}
.btn-outline {
  background: var(--bg-white);
  color: var(--text-dim);
  border: 1.5px solid var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-dim);
}
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

/* ── Navigation ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow);
}

/* Gradient top accent bar */
.nav::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--logo-gradient);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 34px;
  width: auto;
  padding: 2px 4px;
  flex-shrink: 0;
}
.nav-logo-name {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text);
}
.nav-hamburger svg { display: block; }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-white);
}

/* Fine teal grid, cyber feel */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 10%, rgba(0,180,204,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 5%,  rgba(192,96,128,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,180,204,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,204,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 0%, black 0%, transparent 75%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-logo-wrap { margin-bottom: 32px; }
.hero-logo-img {
  height: 96px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(0,180,204,0.12));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 8px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  background: var(--bg-white);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  box-shadow: var(--shadow);
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 6px var(--teal);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--teal); }
  50%       { opacity: 0.5; box-shadow: 0 0 2px var(--teal); }
}

.hero-title { margin-bottom: 20px; }
.hero-title .line2 {
  display: block;
  background: var(--logo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-stats > div {
  flex: 1;
  padding: 0 24px 0 0;
  border-right: 1px solid var(--border);
  margin-right: 24px;
}
.hero-stats > div:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  font-family: var(--font-mono);
}
.hero-stat-label { font-size: 11px; color: var(--text-light); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── Hero terminal panel ──────────────────────────────────────── */
.hero-panel { position: relative; }
.terminal-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
/* Gradient top bar on terminal */
.terminal-card::before {
  content: '';
  display: block;
  height: 3px;
  background: var(--logo-gradient);
}
.terminal-bar {
  background: var(--bg-surface);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.terminal-dot { width: 8px; height: 8px; border-radius: 50%; }
.terminal-bar-label {
  margin-left: 8px;
  font-size: 10px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.terminal-body { padding: 16px 20px; font-family: var(--font-mono); font-size: 11.5px; }
.t-row  { display: flex; gap: 10px; margin-bottom: 9px; align-items: center; }
.t-time { color: var(--text-light); min-width: 52px; }
.t-symbol     { color: var(--teal); font-weight: 700; min-width: 50px; }
.t-side-buy   { color: var(--green); font-weight: 700; min-width: 36px; }
.t-side-sell  { color: var(--red);   font-weight: 700; min-width: 36px; }
.t-status-active { color: var(--green); }
.t-status-wait   { color: var(--text-light); }
.t-label { color: var(--text-muted); }
.t-bar { height: 2px; flex: 1; border-radius: 1px; background: var(--border); }
.t-bar-fill { height: 100%; border-radius: 1px; background: var(--logo-gradient); transition: width 2s ease; }
.terminal-footer {
  background: var(--bg-surface);
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.terminal-status { color: var(--green); display: flex; align-items: center; gap: 6px; font-weight: 600; }

.float-badge {
  position: absolute;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 11px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  font-family: var(--font-mono);
}
.float-badge-top    { top: -14px; right: -16px; }
.float-badge-bottom { bottom: -14px; left: -16px; }
.float-badge-value  { font-weight: 700; font-size: 14px; color: var(--text); }
.float-badge-label  { color: var(--text-light); font-size: 10px; margin-top: 1px; text-transform: uppercase; letter-spacing: 0.05em; }
.up   { color: var(--green); }
.down { color: var(--red); }

/* ── Logos strip ──────────────────────────────────────────────── */
.logos-strip {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-white);
}
.logos-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.logos-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
  font-family: var(--font-mono);
}
.logo-chip {
  padding: 6px 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
}

/* ── Engine grid ──────────────────────────────────────────────── */
.engine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 52px;
}
.engine-cell {
  background: var(--bg-white);
  padding: 32px 28px;
  transition: background var(--transition);
  position: relative;
}
.engine-cell::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--logo-gradient);
  opacity: 0;
  transition: opacity var(--transition);
}
.engine-cell:hover { background: var(--bg); }
.engine-cell:hover::after { opacity: 1; }
.engine-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: var(--teal-dim);
  border: 1px solid rgba(0,180,204,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--teal);
}
.engine-cell h3 { margin-bottom: 8px; font-size: 0.95rem; color: var(--text); }
.engine-cell p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ── Risk section ─────────────────────────────────────────────── */
.risk-section { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.risk-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.risk-visual { position: relative; }
.risk-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.risk-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--logo-gradient);
}
.risk-card-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
  font-family: var(--font-mono);
}
.risk-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.risk-row:last-child { border-bottom: none; }
.risk-row-label { font-size: 12px; color: var(--text-muted); }
.risk-row-value { font-size: 12px; font-weight: 700; font-family: var(--font-mono); }
.risk-row-value.ok  { color: var(--green); }
.risk-row-value.cap { color: var(--teal); }
.risk-row-value.off { color: var(--text-light); }

.risk-list { list-style: none; margin-top: 28px; }
.risk-list li { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.risk-list li:last-child { border-bottom: none; }
.risk-bullet {
  width: 20px; height: 20px;
  border-radius: 4px;
  background: var(--teal-dim);
  border: 1px solid rgba(0,180,204,0.25);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-mono);
}
.risk-list-text h4 { font-size: 0.875rem; margin-bottom: 2px; color: var(--text); }
.risk-list-text p  { font-size: 0.82rem; color: var(--text-muted); }

/* ── Benefits grid ────────────────────────────────────────────── */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.benefit-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--logo-gradient);
  opacity: 0;
  transition: opacity var(--transition);
}
.benefit-card:hover { border-color: rgba(0,180,204,0.25); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.benefit-card:hover::before { opacity: 1; }
.benefit-number {
  font-size: 10px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  font-family: var(--font-mono);
}
.benefit-card h3 { margin-bottom: 8px; font-size: 0.95rem; color: var(--text); }
.benefit-card p  { font-size: 0.85rem; color: var(--text-muted); }

/* ── Audience ─────────────────────────────────────────────────── */
.audience-section { background: var(--bg); border-top: 1px solid var(--border); }
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 52px; }
.audience-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color var(--transition);
}
.audience-card:hover { border-color: rgba(0,180,204,0.3); }
.audience-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--teal-dim);
  border: 1px solid rgba(0,180,204,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.audience-card h3 { margin-bottom: 6px; font-size: 0.95rem; color: var(--text); }
.audience-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ── Performance ──────────────────────────────────────────────── */
.perf-section { background: var(--bg-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.perf-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.perf-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.perf-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.perf-stat::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--logo-gradient);
}
.perf-stat-value {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
  font-family: var(--font-mono);
}
.perf-stat-value sup { font-size: 0.7rem; vertical-align: super; color: var(--teal); }
.perf-stat-label { font-size: 10px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-mono); }

.perf-chart-placeholder {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.perf-chart-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); font-family: var(--font-mono); }
.perf-chart-svg { flex: 1; }

.perf-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 20px;
  padding: 14px 14px 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid var(--teal);
  background: var(--teal-dim);
  font-family: var(--font-mono);
}

/* ── CTA section ──────────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 112px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,180,204,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,204,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,180,204,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: 14px; color: #f1f5f9; }
.cta-section p  { font-size: 1.05rem; margin-bottom: 36px; color: #94a3b8; }
.cta-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.cta-input {
  flex: 1;
  min-width: 200px;
  padding: 13px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: #f1f5f9;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  font-family: var(--font);
}
.cta-input:focus { border-color: var(--teal); }
.cta-input::placeholder { color: #475569; }
.cta-note { font-size: 11px; color: #475569; margin-top: 14px; font-family: var(--font-mono); }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-section { background: var(--bg-white); }
.faq-list { max-width: 720px; margin: 52px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font);
  gap: 16px;
  transition: color var(--transition);
}
.faq-trigger:hover { color: var(--teal); }
.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: all var(--transition);
  font-family: var(--font-mono);
}
.faq-item.open .faq-icon { border-color: var(--teal); color: var(--teal); background: var(--teal-dim); transform: rotate(45deg); }
.faq-body { display: none; padding-bottom: 18px; font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }
.faq-item.open .faq-body { display: block; }

/* ── Footer ───────────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  padding: 52px 0 28px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--logo-gradient);
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.footer-brand p { font-size: 0.85rem; color: #4b5563; max-width: 280px; line-height: 1.7; margin-top: 12px; }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #6b7280; margin-bottom: 14px; font-family: var(--font-mono); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.85rem; color: #4b5563; transition: color var(--transition); }
.footer-links a:hover { color: var(--teal); }
.footer-bottom { padding-top: 22px; border-top: 1px solid #1f2937; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-legal { font-size: 10px; color: #374151; line-height: 1.6; max-width: 680px; font-family: var(--font-mono); }
.footer-copy   { font-size: 11px; color: #374151; white-space: nowrap; font-family: var(--font-mono); }

/* Footer logo needs white bg on dark footer */
.footer .nav-logo-img {
  background: rgba(255,255,255,0.88);
  border-radius: 6px;
  padding: 3px 5px;
}

/* ── Access form ──────────────────────────────────────────────── */
.access-form-card {
  max-width: 540px;
  margin: 80px auto;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.access-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--logo-gradient);
}
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 12px; font-weight: 600; color: var(--text-dim); margin-bottom: 6px; letter-spacing: 0.03em; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font);
  outline: none;
  transition: border-color var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-dim); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-light); }
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 96px; }
.form-select option { background: #ffffff; color: var(--text); }

/* ── Toast ────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 13px;
  box-shadow: var(--shadow-md);
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.28s ease;
  z-index: 999;
  max-width: 300px;
  color: var(--text);
  font-family: var(--font-mono);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 3px solid var(--green); }
.toast.error   { border-left: 3px solid var(--red); }

/* ── Bots grid ────────────────────────────────────────────────── */
.bots-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.bot-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.bot-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.bot-card-new {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal-glow), var(--shadow);
}

.bot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.bot-asset-class {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.bot-status {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 20px;
  font-family: var(--font-mono);
}
.bot-status-live {
  background: rgba(5, 150, 105, 0.1);
  color: var(--green);
  border: 1px solid rgba(5, 150, 105, 0.25);
}

.bot-symbol {
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.bot-detail {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
  line-height: 1.5;
}
.bot-label {
  color: var(--text-light);
  min-width: 70px;
  font-family: var(--font-mono);
  font-size: 11px;
}

/* ── Form validation ─────────────────────────────────────────── */
.form-error {
  display: none;
  color: var(--red);
  font-size: 12px;
  margin-top: 4px;
  line-height: 1.4;
}
.form-hint {
  display: block;
  color: var(--text-light);
  font-size: 11px;
  margin-top: 4px;
}

/* ── Password strength bar ───────────────────────────────────── */
.password-strength {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}
.password-strength-bar {
  height: 100%;
  width: 0;
  border-radius: 2px;
  transition: width 0.3s ease, background 0.3s ease;
  background: var(--border-strong);
}
.password-strength-bar.weak   { background: var(--red); }
.password-strength-bar.fair   { background: #f59e0b; }
.password-strength-bar.good   { background: #10b981; }
.password-strength-bar.strong { background: var(--green); }

/* ── Pricing grid ────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
}
.pricing-card.featured {
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
  background: linear-gradient(180deg, var(--teal-dim) 0%, var(--bg-white) 60%);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 12px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.pricing-header { margin-bottom: 24px; }
.pricing-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}
.pricing-period {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}
.pricing-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}
.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}
.pricing-features li {
  font-size: 0.82rem;
  color: var(--text-dim);
  padding: 6px 0;
  border-bottom: 1px solid var(--bg-surface);
  line-height: 1.5;
}
.pricing-features li::before {
  content: '\2713  ';
  color: var(--green);
  font-weight: 700;
}
.pricing-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
  display: inline-flex;
  margin-top: auto;
}

/* ── Modal ────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 30, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
}
.modal-overlay[hidden] { display: none; }
.modal-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-md);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}
.modal-close:hover { color: var(--text); }

/* ── Responsive ───────────────────────────────────────────────── */
/* ── Upgrade banner ───────────────────────────────────────────── */
.upgrade-banner {
  background: linear-gradient(90deg, var(--teal-dim) 0%, rgba(192,96,128,0.06) 100%);
  border: 1px solid rgba(0,180,204,0.2);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.upgrade-banner-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dim);
}
.upgrade-banner-text strong {
  color: var(--teal);
}

@media (max-width: 900px) {
  .hero-inner    { grid-template-columns: 1fr; gap: 48px; }
  .hero-panel    { display: none; }
  .engine-grid   { grid-template-columns: 1fr; }
  .risk-inner    { grid-template-columns: 1fr; gap: 40px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .perf-inner    { grid-template-columns: 1fr; gap: 40px; }
  .footer-top    { grid-template-columns: 1fr 1fr; }
  .bots-grid     { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: repeat(2, 1fr); }
  .social-stats  { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .nav-links     { display: none; }
  .nav-hamburger { display: block; }
  .benefits-grid { grid-template-columns: 1fr; }
  .perf-stats    { grid-template-columns: 1fr; }
  .hero-stats    { gap: 16px; flex-wrap: wrap; }
  .footer-top    { grid-template-columns: 1fr; }
  .access-form-card { padding: 24px 18px; margin: 40px auto; }
  .logos-inner   { gap: 20px; }
  .bots-grid     { grid-template-columns: 1fr 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .social-stats  { grid-template-columns: 1fr 1fr !important; }
  .upgrade-banner { flex-direction: column; text-align: center; }
}
