/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #020408;
  --surface: #080d14;
  --surface2: #0d1520;
  --cobalt: #1a6bff;
  --cobalt2: #0f4fd4;
  --glow: rgba(26,107,255,0.4);
  --accent: #00f5c8;
  --accent2: #ff3d6b;
  --text: #e8edf5;
  --muted: #5a6a82;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(26,107,255,0.28);
  --mono: 'Space Mono', monospace;
  --sans: 'Outfit', sans-serif;
}
html { scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--cobalt); color: white; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--cobalt2); border-radius: 2px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(0.85); }
}
@keyframes blink {
  0%,100% { opacity:1; } 50% { opacity:0; }
}
@keyframes orb1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(80px,-60px) scale(1.1); }
  66%     { transform: translate(-40px,80px) scale(0.9); }
}
@keyframes orb2 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(-60px,40px) scale(0.95); }
  66%     { transform: translate(100px,-30px) scale(1.05); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes chartPulse {
  0%,100% { filter: drop-shadow(0 0 6px var(--cobalt)); }
  50%     { filter: drop-shadow(0 0 14px var(--cobalt)); }
}
@keyframes gridMove {
  from { transform: translateY(0); }
  to   { transform: translateY(60px); }
}

.anim-fadeup {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

/* ── BACKGROUNDS ── */
#noise-canvas {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: 0.5; mix-blend-mode: screen;
}
.grid-bg {
  position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
  background-image:
    linear-gradient(rgba(26,107,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,107,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 10s linear infinite alternate;
}
.orb {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 0;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,107,255,0.16) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: orb1 22s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,245,200,0.09) 0%, transparent 70%);
  bottom: 0; right: -80px;
  animation: orb2 28s ease-in-out infinite;
}
.orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,61,107,0.07) 0%, transparent 70%);
  top: 50%; right: 20%;
  animation: orb1 34s ease-in-out infinite reverse;
}

/* ── NAV ──---------------------------------------------- */
nav {
   position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(2,4,8,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-weight: 700; font-size: 18px; color: white;
  text-decoration: none; letter-spacing: -0.5px;
}
.nav-logo-dot {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--cobalt);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px var(--glow);
  position: relative;
}
.nav-logo-dot::after {
  content: ''; width: 10px; height: 10px;
  border-radius: 50%; background: white;
}
.nav-version {
  font-family: var(--mono); font-size: 10px;
  color: var(--cobalt); opacity: 0.8; letter-spacing: 2px; margin-left: 2px;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--muted); font-size: 14px; text-decoration: none;
  letter-spacing: 0.02em; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--cobalt); color: white; border: none; cursor: pointer;
  padding: 10px 22px; border-radius: 6px; font-size: 13px; font-weight: 600;
  font-family: var(--sans); letter-spacing: 0.05em; transition: all 0.25s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--cobalt2);
  transform: translateY(-1px);
}
.btn-glow {
  box-shadow: 0 0 32px var(--glow);
  font-size: 15px; padding: 15px 34px;
}
.btn-glow:hover {
  box-shadow: 0 0 55px var(--glow);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent; color: var(--muted);
  border: 1px solid var(--border);
  cursor: pointer; padding: 15px 34px; border-radius: 6px;
  font-size: 15px; font-weight: 400; font-family: var(--sans);
  transition: all 0.25s; text-decoration: none; display: inline-block;
}
.btn-ghost:hover { border-color: var(--border2); color: var(--text); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 120px 24px 80px;
  text-align: center; position: relative; z-index: 10;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: min(900px, 100vw); height: 900px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,107,255,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--border2); padding: 8px 18px; border-radius: 4px;
  margin-bottom: 40px;
  background: rgba(26,107,255,0.06); backdrop-filter: blur(8px);
  font-family: var(--mono); font-size: 11px; color: var(--accent);
  letter-spacing: 0.15em; text-transform: uppercase;
  animation: fadeUp 0.6s 0.05s ease both;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
  display: inline-block;
}
.hero-h1-top {
  font-family: var(--sans); font-weight: 900;
  font-size: clamp(44px, 6.5vw, 88px);
  line-height: 1.0; letter-spacing: -3px; color: white;
  max-width: 900px;
  word-break: break-word;
}
.hero-h1-gradient {
  font-family: var(--sans); font-weight: 900;
  font-size: clamp(44px, 6.5vw, 88px);
  line-height: 1.0; letter-spacing: -3px;
  max-width: 900px; margin-bottom: 32px;
  background: linear-gradient(90deg, var(--cobalt), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cursor {
  -webkit-text-fill-color: var(--cobalt);
  animation: blink 1s infinite;
}
.hero-sub {
  font-size: 18px; color: var(--muted); max-width: 520px; line-height: 1.7;
  margin-bottom: 44px; font-weight: 300;
}
.hero-cta { display: flex; gap: 14px; align-items: center; margin-bottom: 72px; }
.hero-stats {
  display: flex; gap: 0; align-items: center;
  border: 1px solid var(--border); border-radius: 10px;
  background: rgba(255,255,255,0.02); backdrop-filter: blur(10px);
  overflow: hidden;
}
.hero-stat { padding: 20px 48px; text-align: center; }
.hero-stat-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }
.stat-num {
  display: block; font-family: var(--mono); font-size: 28px;
  font-weight: 700; color: white; letter-spacing: -1px;
}
.stat-label {
  display: block; font-size: 12px; color: var(--muted);
  letter-spacing: 0.04em; margin-top: 5px;
}

/* ── TICKER ── */
.ticker-wrap {
  overflow: hidden; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 13px 0; background: rgba(26,107,255,0.04);
  position: relative; z-index: 10;
}
.ticker-track {
  display: flex; gap: 64px; width: max-content;
  animation: ticker 35s linear infinite;
}
.ticker-item {
  display: flex; align-items: center; gap: 12px; white-space: nowrap;
}
.ticker-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--cobalt); display: inline-block; flex-shrink: 0;
}
.ticker-text {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* ── DASHBOARD ── */
.dashboard-section {
  padding: 80px 48px 120px;
  position: relative; z-index: 10;
  max-width: 1200px; margin: 0 auto;
}
.dashboard-frame {
  border-radius: 16px; border: 1px solid var(--border2);
  overflow: hidden; background: var(--surface);
  box-shadow: 0 60px 160px rgba(0,0,0,0.8), 0 0 80px rgba(26,107,255,0.1);
  position: relative;
}
.dashboard-scanlines {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0,0,0,0.025) 2px, rgba(0,0,0,0.025) 4px
  );
}
.db-chrome {
  background: var(--surface2); border-bottom: 1px solid var(--border);
  padding: 13px 20px; display: flex; align-items: center; gap: 12px;
}
.db-dots { display: flex; gap: 7px; }
.dot-r { width:12px;height:12px;border-radius:50%;background:#ff5f56;opacity:.75; }
.dot-y { width:12px;height:12px;border-radius:50%;background:#ffbd2e;opacity:.75; }
.dot-g { width:12px;height:12px;border-radius:50%;background:#27c93f;opacity:.75; }
.db-url {
  flex: 1; text-align: center;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 6px; padding: 5px 20px;
  font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.04em;
}
.db-secure { font-family: var(--mono); font-size: 10px; color: var(--cobalt); opacity: 0.6; }
.db-body { display: grid; grid-template-columns: 200px 1fr; min-height: 400px; }
.db-sidebar { border-right: 1px solid var(--border); padding: 16px 0; }
.db-sidebar-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 18px;
  cursor: pointer; font-size: 13px; color: var(--muted); font-weight: 400;
  border-left: 2px solid transparent; transition: all 0.2s;
}
.db-sidebar-item:hover { color: var(--text); background: rgba(255,255,255,0.03); }
.db-sidebar-item.active {
  background: rgba(26,107,255,0.1); border-left: 2px solid var(--cobalt);
  color: var(--text); font-weight: 500;
}
.db-icon { color: var(--cobalt); font-size: 14px; }
.db-genius-item .db-icon { color: var(--accent); }
.genius-badge {
  margin-left: auto; background: rgba(0,245,200,0.12);
  border: 1px solid rgba(0,245,200,0.2); color: var(--accent);
  font-size: 9px; padding: 2px 6px; border-radius: 3px;
  font-family: var(--mono); letter-spacing: 0.1em;
}
.db-main { padding: 22px; }
.db-topbar { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.db-greeting { font-size: 18px; font-weight: 700; color: white; }
.db-date { font-size: 11px; color: var(--muted); margin-top: 3px; font-family: var(--mono); }
.db-revenue-badge {
  background: rgba(0,245,200,0.08); border: 1px solid rgba(0,245,200,0.2);
  color: var(--accent); padding: 6px 14px; border-radius: 4px;
  font-size: 12px; font-weight: 600; font-family: var(--mono);
}
.db-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 18px; }
.db-kpi {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 8px; padding: 14px;
}
.db-kpi-label { font-size: 10px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.db-kpi-val { font-size: 20px; font-weight: 700; color: white; font-family: var(--mono); letter-spacing: -1px; }
.db-kpi-chg { font-size: 11px; font-weight: 600; margin-top: 5px; }
.blue { color: var(--cobalt); } .green { color: var(--accent); } .red { color: var(--accent2); }
.db-chart-wrap {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 8px; padding: 14px;
}
.db-chart-label { font-size: 10px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.db-chart { width: 100%; height: 80px; }
.chart-dot { animation: chartPulse 2s infinite; }

/* ── SECTION COMMON ── */
.section-label {
  display: inline-block; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 3px; margin-bottom: 18px;
}
.blue-label  { color: var(--cobalt);  border: 1px solid var(--border2);         background: rgba(26,107,255,0.05); }
.green-label { color: var(--accent);  border: 1px solid rgba(0,245,200,0.2);    background: rgba(0,245,200,0.04); }
.red-label   { color: var(--accent2); border: 1px solid rgba(255,61,107,0.2);   background: rgba(255,61,107,0.04); }

.section-title {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 1.08; letter-spacing: -2px; color: white; margin-bottom: 16px;
}
.section-title.left { text-align: left; }
.section-sub {
  font-size: 17px; color: var(--muted); line-height: 1.65; max-width: 500px;
  margin: 0 auto 56px;
}
.section-sub.left { margin: 0 0 32px; text-align: left; }
.gradient-text {
  background: linear-gradient(90deg, var(--cobalt), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── FEATURES ── */
.features-section {
  padding: 80px 48px 120px;
  position: relative; z-index: 10;
  max-width: 1200px; margin: 0 auto;
  text-align: center;
}
.features-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
}
.feat-card {
  padding: 30px; background: var(--surface); cursor: default;
  transition: background 0.3s;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feat-card:nth-child(3n) { border-right: none; }
.feat-card:nth-child(4),.feat-card:nth-child(5),.feat-card:nth-child(6) { border-bottom: none; }
.feat-card:hover { background: var(--surface2); }
.feat-icon { font-size: 26px; margin-bottom: 14px; }
.blue-icon  { color: var(--cobalt); }
.green-icon { color: var(--accent); }
.red-icon   { color: var(--accent2); }
.feat-title { font-size: 15px; font-weight: 600; color: white; margin-bottom: 10px; letter-spacing: -0.3px; }
.feat-body  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── TWO-COL ── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ── GENIUS ── */
.genius-section { padding: 80px 48px 120px; position: relative; z-index: 10; }
.genius-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.genius-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); }
.check {
  width: 20px; height: 20px; border-radius: 4px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 10px;
}
.green-check { background: rgba(0,245,200,0.1); border: 1px solid rgba(0,245,200,0.2); color: var(--accent); }

/* Chat Widget */
.chat-widget {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 0 60px rgba(26,107,255,0.1);
}
.chat-header {
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  background: var(--surface2); display: flex; align-items: center; gap: 12px;
}
.chat-avatar {
  width: 30px; height: 30px; border-radius: 6px;
  background: linear-gradient(135deg, var(--cobalt), var(--accent));
  display: flex; align-items: center; justify-content: center; font-size: 14px; color: white;
}
.chat-name { font-size: 13px; font-weight: 600; color: white; }
.chat-status { font-size: 10px; color: var(--accent); font-family: var(--mono); margin-top: 1px; }
.chat-messages {
  padding: 18px; height: 260px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 14px;
}
.chat-msg {
  max-width: 84%; padding: 10px 14px; border-radius: 8px;
  font-size: 13px; line-height: 1.55;
}
.chat-msg.ai {
  background: rgba(26,107,255,0.1); color: var(--text);
  border: 1px solid var(--border2); align-self: flex-start;
}
.chat-msg.user {
  background: var(--cobalt); color: white;
  align-self: flex-end;
}
.chat-thinking {
  display: flex; gap: 5px; padding: 10px 14px;
  background: rgba(26,107,255,0.08); border: 1px solid var(--border2);
  border-radius: 8px; width: fit-content; align-self: flex-start;
}
.chat-thinking span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--cobalt);
  display: inline-block;
}
.chat-input-row {
  padding: 12px 14px; border-top: 1px solid var(--border);
  display: flex; gap: 10px;
}
.chat-input-row input {
  flex: 1; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 10px 14px; color: var(--text); font-size: 13px;
  font-family: var(--sans); outline: none; transition: border 0.2s;
}
.chat-input-row input:focus { border-color: var(--border2); }
.chat-send-btn {
  background: var(--cobalt); border: none; border-radius: 6px;
  padding: 10px 16px; color: white; cursor: pointer; font-size: 14px; font-weight: 600;
  font-family: var(--sans); box-shadow: 0 0 16px var(--glow); transition: all 0.2s;
}
.chat-send-btn:hover { box-shadow: 0 0 28px var(--glow); transform: translateY(-1px); }

/* ── ALERTS ── */
.alerts-section { padding: 80px 48px 120px; position: relative; z-index: 10; }
.col-alerts { display: flex; flex-direction: column; gap: 12px; }
.alert-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px 16px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.alert-card:hover { transform: translateX(5px); }
.glow-red { box-shadow: 0 0 28px rgba(255,61,107,0.1); border-color: rgba(255,61,107,0.15); }
.alert-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.alert-content { flex: 1; min-width: 0; }
.alert-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; gap: 10px; }
.alert-title { font-size: 13px; font-weight: 600; color: white; }
.alert-time { font-size: 10px; color: var(--muted); font-family: var(--mono); flex-shrink: 0; }
.alert-body { font-size: 12px; color: var(--muted); line-height: 1.5; }
.alert-actions { display: flex; gap: 6px; flex-shrink: 0; align-self: center; }
.alert-btn-dismiss {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--muted); padding: 5px 10px; border-radius: 4px;
  font-size: 11px; cursor: pointer; font-family: var(--sans); transition: all 0.2s;
}
.alert-btn-dismiss:hover { border-color: var(--border2); color: var(--text); }
.alert-btn-act {
  border: none; color: white; padding: 5px 10px; border-radius: 4px;
  font-size: 11px; cursor: pointer; font-family: var(--sans); font-weight: 600; transition: all 0.2s;
}
.blue-act  { background: var(--cobalt); }
.green-act { background: rgba(0,245,200,0.7); }
.red-act   { background: var(--accent2); }
.alert-btn-act:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── CTA ── */
.cta-section {
  padding: 120px 48px; position: relative; z-index: 10;
  text-align: center; overflow: hidden;
}
.cta-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(26,107,255,0.12) 0%, transparent 70%);
}
.cta-inner { max-width: 680px; margin: 0 auto; position: relative; }
.cta-title {
  font-family: var(--sans); font-weight: 900;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.0; letter-spacing: -2.5px; color: white;
  margin-bottom: 20px;
}
.cta-sub { font-size: 17px; color: var(--muted); margin-bottom: 40px; line-height: 1.65; }
.cta-form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; }
.cta-form input {
  flex: 1; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border2); border-radius: 6px;
  padding: 14px 18px; color: var(--text); font-size: 14px;
  font-family: var(--sans); outline: none; transition: border 0.2s;
}
.cta-form input:focus { border-color: var(--cobalt); }
.cta-form button {
  background: var(--cobalt); color: white; border: none; cursor: pointer;
  padding: 14px 24px; border-radius: 6px; font-size: 14px; font-weight: 600;
  font-family: var(--sans); box-shadow: 0 0 40px var(--glow);
  white-space: nowrap; transition: all 0.25s;
}
.cta-form button:hover { box-shadow: 0 0 60px var(--glow); transform: translateY(-1px); }
.cta-success {
  display: none; background: rgba(0,245,200,0.08);
  border: 1px solid rgba(0,245,200,0.25); border-radius: 8px;
  padding: 14px 28px; color: var(--accent);
  font-family: var(--mono); font-size: 14px;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 36px 48px; position: relative; z-index: 10;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin: 0 auto 16px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-weight: 700; font-size: 16px; color: white;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  font-family: var(--mono); font-size: 10px;
  color: rgba(255,255,255,0.15); line-height: 1.8;
  max-width: 1200px; margin: 0 auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 100px 20px 60px; }
  .hero-stats { flex-direction: column; gap: 0; }
  .hero-stat { padding: 16px 32px; }
  .hero-stat-divider { width: 80%; height: 1px; }
  .dashboard-section { padding: 40px 20px 80px; }
  .db-body { grid-template-columns: 1fr; }
  .db-sidebar { display: none; }
  .db-kpis { grid-template-columns: 1fr; }
  .features-section { padding: 60px 20px 80px; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-card { border-right: none !important; }
  .feat-card:nth-child(n) { border-bottom: 1px solid var(--border); }
  .feat-card:last-child { border-bottom: none; }
  .genius-section,.alerts-section { padding: 60px 20px 80px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .cta-section { padding: 80px 20px; }
  .cta-form { flex-direction: column; }
  .footer { padding: 28px 20px; }
  .footer-top { flex-direction: column; gap: 16px; align-items: flex-start; }
}
