/* =============================================
   LiveSetup — Main Stylesheet
   Theme: Dark tech / trading terminal aesthetic
   ============================================= */

:root {
  --bg: #0a0b0f;
  --bg2: #0f1118;
  --bg3: #13151f;
  --surface: #181b26;
  --border: rgba(255,255,255,0.07);
  --accent: #00e5ff;
  --accent2: #7c3aed;
  --green: #00c97d;
  --red: #ff4757;
  --yellow: #ffd32a;
  --text: #e8eaf0;
  --text2: #8b92a8;
  --text3: #4a5068;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 32px rgba(0,0,0,0.4);
}

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

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  display: inline-block;
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }

.btn-ghost {
  color: var(--text2);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.btn-ghost:hover { color: var(--text); background: var(--surface); }

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-lg { font-size: 16px; padding: 14px 32px; border-radius: 10px; }
.w-full { width: 100%; text-align: center; }
.btn-danger { background: var(--red); color: #fff; font-weight: 600; padding: 8px 18px; border-radius: 8px; border: none; cursor: pointer; font-size: 13px; }
.btn-sm { font-size: 13px; padding: 7px 16px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,11,15,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; gap: 32px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 32px; height: 32px; background: var(--accent);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 13px; color: #000;
}
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 18px; }

.nav-links { display: flex; gap: 4px; list-style: none; margin-left: auto; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text2);
  padding: 8px 12px; border-radius: 6px; transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: 16px; }
.hamburger { display: none; background: none; border: none; color: var(--text); font-size: 20px; cursor: pointer; margin-left: auto; }

/* ── HERO ── */
.hero {
  min-height: 100vh; padding-top: 120px; padding-bottom: 80px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.glow {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .3;
}
.glow-1 { width: 600px; height: 600px; background: var(--accent2); top: -200px; right: -100px; }
.glow-2 { width: 400px; height: 400px; background: var(--accent); bottom: -100px; left: -100px; opacity: .15; }

.hero .container { position: relative; z-index: 1; max-width: 680px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,229,255,.08); border: 1px solid rgba(0,229,255,.2);
  color: var(--accent); font-family: var(--font-mono); font-size: 12px;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
}

.hero-h1 {
  font-family: var(--font-display); font-size: clamp(40px, 6vw, 72px);
  font-weight: 700; line-height: 1.1; letter-spacing: -1.5px;
  margin-bottom: 24px; color: #fff;
}
.accent { color: var(--accent); }

.hero-sub {
  font-size: 18px; color: var(--text2); max-width: 560px;
  margin-bottom: 36px; line-height: 1.7;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-n { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: #fff; }
.stat-l { font-size: 12px; color: var(--text3); font-family: var(--font-mono); margin-top: 2px; }
.stat-div { width: 1px; height: 32px; background: var(--border); }

.hero-terminal {
  position: absolute; right: 24px; bottom: 80px; z-index: 1;
  width: 440px;
}
.terminal {
  background: rgba(15,17,24,0.92);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  backdrop-filter: blur(20px); overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,229,255,.08);
}
.term-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.term-dot { width: 12px; height: 12px; border-radius: 50%; }
.term-dot.r { background: #ff5f57; }
.term-dot.y { background: #febc2e; }
.term-dot.g { background: #28c840; }
.term-title { font-family: var(--font-mono); font-size: 12px; color: var(--text3); margin-left: 8px; }
.term-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; }
.term-line { font-family: var(--font-mono); font-size: 12px; color: var(--text2); line-height: 1.5; }
.t-time { color: var(--text3); }
.t-ok { color: var(--green); font-weight: 500; }
.t-info { color: var(--accent); }
.blink::after { content: '█'; animation: blink 1s infinite; color: var(--accent); }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── TRUST BAR ── */
.trust-bar {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg2); padding: 16px 0;
}
.trust-inner {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 13px; color: var(--text3); font-family: var(--font-mono);
}
.trust-item { color: var(--text2); }
.trust-sep { color: var(--text3); }

/* ── SECTIONS ── */
.section { padding: 100px 0; }
.section-dark { background: var(--bg2); }

.section-tag {
  font-family: var(--font-mono); font-size: 12px; color: var(--accent);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
}
.section-h2 {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px);
  font-weight: 700; letter-spacing: -1px; line-height: 1.15;
  margin-bottom: 20px; color: #fff;
}
.section-sub { color: var(--text2); font-size: 17px; max-width: 580px; line-height: 1.7; margin-bottom: 56px; }

/* ── FLOW ── */
.flow {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0; align-items: start; margin-top: 56px;
}
.flow-step {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px; position: relative;
}
.flow-icon { font-size: 28px; margin-bottom: 12px; }
.flow-num {
  font-family: var(--font-mono); font-size: 11px; color: var(--accent);
  letter-spacing: 1px; margin-bottom: 8px;
}
.flow-step h3 { font-family: var(--font-display); font-weight: 600; font-size: 16px; margin-bottom: 8px; color: #fff; }
.flow-step p { font-size: 14px; color: var(--text2); line-height: 1.6; }
.flow-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 24px; padding: 0 12px; padding-top: 60px;
}

/* ── STRATEGY ── */
.strategy-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 40px;
}
.strat-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: border-color .2s;
}
.strat-card:hover { border-color: rgba(0,229,255,.3); }
.strat-icon { font-size: 28px; margin-bottom: 14px; }
.strat-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 16px; margin-bottom: 10px; color: #fff; }
.strat-card p { font-size: 14px; color: var(--text2); line-height: 1.6; }

.strat-params {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
}
.params-label { font-family: var(--font-mono); font-size: 12px; color: var(--text3); letter-spacing: 1px; margin-bottom: 20px; }
.params-grid { display: flex; gap: 32px; flex-wrap: wrap; }
.param { display: flex; flex-direction: column; gap: 4px; }
.pk { font-family: var(--font-mono); font-size: 11px; color: var(--text3); letter-spacing: .5px; }
.pv { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--accent); }

/* ── PRICING ── */
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 720px; margin: 0 auto 24px;
}
.price-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 32px; position: relative;
}
.price-pro {
  border-color: var(--accent); background: rgba(0,229,255,.04);
  box-shadow: 0 0 40px rgba(0,229,255,.1);
}
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #000; font-family: var(--font-display);
  font-weight: 700; font-size: 11px; padding: 4px 14px; border-radius: 100px;
}
.price-tier { font-family: var(--font-mono); font-size: 12px; color: var(--text3); letter-spacing: 1px; margin-bottom: 12px; }
.price-amt { font-family: var(--font-display); font-weight: 700; font-size: 48px; color: #fff; line-height: 1; margin-bottom: 4px; }
.price-period { font-size: 13px; color: var(--text2); margin-bottom: 28px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.price-features li { font-size: 14px; color: var(--text2); }
.price-features li:first-child { color: var(--text); }
.pricing-note { text-align: center; font-size: 13px; color: var(--text3); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 2px; max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; font-weight: 500; color: var(--text);
  font-size: 15px; transition: color .2s;
}
.faq-q:hover { color: var(--accent); }
.faq-arr { font-size: 20px; color: var(--text3); transition: transform .2s; }
.faq-q.open .faq-arr { transform: rotate(45deg); color: var(--accent); }
.faq-a {
  font-size: 14px; color: var(--text2); line-height: 1.7;
  max-height: 0; overflow: hidden; transition: max-height .3s, padding .3s;
}
.faq-a.open { max-height: 200px; padding-bottom: 20px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(124,58,237,.3) 0%, rgba(0,229,255,.15) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 0; text-align: center;
}
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(28px,4vw,48px); font-weight: 700; color: #fff; margin-bottom: 16px; }
.cta-banner p { color: var(--text2); font-size: 17px; margin-bottom: 36px; }

/* ── FOOTER ── */
.footer { background: var(--bg); padding: 64px 0 0; border-top: 1px solid var(--border); }
.footer-inner { display: grid; grid-template-columns: 1.5fr 2fr; gap: 64px; padding-bottom: 48px; }
.footer-brand p { color: var(--text2); font-size: 14px; margin-top: 16px; max-width: 280px; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: #fff; margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--text2); transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
  display: flex;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--text3); flex-wrap: wrap; gap: 8px;
}
.footer-disc { max-width: 400px; text-align: right; }

/* ── AUTH PAGES ── */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 80px 24px; background: var(--bg);
  background-image: radial-gradient(ellipse at 70% 20%, rgba(124,58,237,.15) 0%, transparent 60%);
}
.auth-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px; width: 100%; max-width: 440px;
}
.auth-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 32px; }
.auth-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.auth-sub { font-size: 14px; color: var(--text2); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--text2); margin-bottom: 8px; }
.form-input {
  width: 100%; background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 14px; color: var(--text);
  font-size: 14px; font-family: var(--font-body); transition: border-color .2s;
  outline: none;
}
.form-input:focus { border-color: var(--accent); }
.form-input::placeholder { color: var(--text3); }
.form-error { font-size: 12px; color: var(--red); margin-top: 6px; display: none; }
.auth-footer { text-align: center; margin-top: 24px; font-size: 14px; color: var(--text2); }
.auth-footer a { color: var(--accent); }
.auth-divider { text-align: center; color: var(--text3); font-size: 13px; margin: 20px 0; position: relative; }
.auth-divider::before { content:''; position: absolute; left:0; top:50%; width:42%; height:1px; background: var(--border); }
.auth-divider::after { content:''; position: absolute; right:0; top:50%; width:42%; height:1px; background: var(--border); }

/* ── DASHBOARD ── */
.dash-layout { display: flex; min-height: 100vh; padding-top: 64px; }
.sidebar {
  width: 240px; background: var(--bg2); border-right: 1px solid var(--border);
  padding: 24px 0; position: fixed; top: 64px; bottom: 0; overflow-y: auto;
}
.sidebar-section { padding: 8px 16px; font-family: var(--font-mono); font-size: 10px; color: var(--text3); letter-spacing: 1px; margin-top: 16px; }
.sidebar-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; font-size: 14px; color: var(--text2);
  cursor: pointer; transition: all .2s; border-radius: 0;
}
.sidebar-item:hover { color: var(--text); background: rgba(255,255,255,.04); }
.sidebar-item.active { color: var(--accent); background: rgba(0,229,255,.08); border-right: 2px solid var(--accent); }
.sidebar-icon { font-size: 16px; width: 20px; text-align: center; }

.dash-main { margin-left: 240px; flex: 1; padding: 32px; }
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.dash-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: #fff; }
.dash-sub { color: var(--text2); font-size: 14px; margin-top: 4px; }

.cards-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
}
.card-label { font-size: 12px; color: var(--text3); font-family: var(--font-mono); margin-bottom: 8px; }
.card-value { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: #fff; }
.card-value.green { color: var(--green); }
.card-value.red { color: var(--red); }
.card-sub { font-size: 12px; color: var(--text3); margin-top: 4px; }

.status-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.status-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; }
.status-card h3 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 16px; }
.status-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.status-item:last-child { border: none; }
.status-key { color: var(--text2); }
.status-val { font-family: var(--font-mono); color: var(--text); }
.badge { padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 600; font-family: var(--font-mono); }
.badge-green { background: rgba(0,201,125,.15); color: var(--green); }
.badge-red { background: rgba(255,71,87,.15); color: var(--red); }
.badge-yellow { background: rgba(255,211,42,.15); color: var(--yellow); }
.badge-blue { background: rgba(0,229,255,.12); color: var(--accent); }

.webhook-box {
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 16px; font-family: var(--font-mono); font-size: 12px;
  color: var(--accent); word-break: break-all; margin-top: 12px;
}

/* ── ADMIN PANEL ── */
.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-table th {
  text-align: left; padding: 12px 16px; font-size: 11px; font-weight: 600;
  color: var(--text3); font-family: var(--font-mono); letter-spacing: .5px;
  border-bottom: 1px solid var(--border); background: var(--bg2);
}
.admin-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); color: var(--text2); vertical-align: middle; }
.admin-table tr:hover td { background: rgba(255,255,255,.02); }
.admin-table td:first-child { color: var(--text); font-weight: 500; }

.toggle-switch { position: relative; width: 40px; height: 22px; }
.toggle-switch input { display: none; }
.toggle-slider {
  position: absolute; inset: 0; background: var(--text3);
  border-radius: 100px; cursor: pointer; transition: background .2s;
}
.toggle-slider::before {
  content: ''; position: absolute; width: 16px; height: 16px;
  background: #fff; border-radius: 50%; top: 3px; left: 3px; transition: transform .2s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--green); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(18px); }

.table-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.table-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.table-title { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: #fff; }

/* ── CHAT WIDGET ── */
.chat-widget {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
}
.chat-btn {
  width: 56px; height: 56px; background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 8px 24px rgba(0,229,255,.4);
  font-size: 22px; color: #000; border: none; transition: transform .2s;
}
.chat-btn:hover { transform: scale(1.08); }
.chat-panel {
  position: absolute; bottom: 68px; right: 0; width: 340px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  display: none; flex-direction: column; overflow: hidden;
}
.chat-panel.open { display: flex; }
.chat-head {
  padding: 16px 20px; background: var(--bg2); border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.chat-head-title { font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.chat-head-sub { font-size: 12px; color: var(--green); margin-top: 2px; }
.chat-close { background: none; border: none; color: var(--text3); cursor: pointer; font-size: 18px; }
.chat-messages { padding: 16px; min-height: 200px; max-height: 300px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.chat-msg { font-size: 13px; line-height: 1.5; }
.chat-msg.bot { color: var(--text); }
.chat-msg.user { color: var(--accent); text-align: right; }
.chat-msg-bubble {
  display: inline-block; padding: 8px 14px; border-radius: 12px;
  max-width: 80%;
}
.bot .chat-msg-bubble { background: var(--bg2); }
.user .chat-msg-bubble { background: rgba(0,229,255,.15); }
.chat-input-row { display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--border); }
.chat-input { flex: 1; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; color: var(--text); font-size: 13px; outline: none; }
.chat-send { background: var(--accent); border: none; border-radius: 8px; width: 36px; height: 36px; cursor: pointer; color: #000; font-size: 16px; }

/* ── ALERT / TOAST ── */
.toast {
  position: fixed; top: 80px; right: 24px; z-index: 300;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 20px; font-size: 14px;
  box-shadow: var(--shadow); opacity: 0; transform: translateY(-10px);
  transition: all .3s; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { border-color: var(--green); color: var(--green); }
.toast.error { border-color: var(--red); color: var(--red); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-terminal { display: none; }
  .flow { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); padding: 8px 0 8px 0; }
  .strategy-grid { grid-template-columns: 1fr 1fr; }
  .cards-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: block; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column; position: fixed;
    top: 64px; left: 0; right: 0; background: var(--bg2);
    padding: 16px; border-bottom: 1px solid var(--border); z-index: 99;
  }
  .strategy-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .status-row { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .dash-main { margin-left: 0; padding: 16px; }
  .cards-row { grid-template-columns: 1fr 1fr; }
  .flow { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); }
}
