:root {
  --brand: #0EA5E9;
  --brand2: #38BDF8;
  --brand-glow: rgba(14,165,233,0.2);
  --green: #10B981;
  --green-glow: rgba(16,185,129,0.15);
  --red: #EF4444;
  --red-glow: rgba(239,68,68,0.15);
  --amber: #F59E0B;
  --purple: #8B5CF6;
  --bg0: #020810;
  --bg1: #060E1C;
  --bg2: #0A1525;
  --bg3: #0F1D30;
  --panel: #0C1828;
  --panel2: #101F35;
  --border: #142238;
  --border2: #1C3048;
  --text: #ECF6FF;
  --text2: #BDD7EB;
  --muted: #6F97B5;
  --dim: #355B79;
  --font-brand: 'Orbitron', monospace;
  --font-head: 'Barlow Semi Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-mono: 'Fira Code', monospace;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.6);
  --transition: 0.2s ease;
}


html[data-theme="light"] {
  --brand: #0284C7;
  --brand2: #0369A1;
  --brand-glow: rgba(2,132,199,0.16);
  --green: #059669;
  --green-glow: rgba(5,150,105,0.10);
  --red: #DC2626;
  --red-glow: rgba(220,38,38,0.10);
  --amber: #D97706;
  --purple: #7C3AED;
  --bg0: #F4FAFF;
  --bg1: #EAF4FB;
  --bg2: #E2EEF8;
  --bg3: #D7E7F4;
  --panel: #FFFFFF;
  --panel2: #F4FAFF;
  --border: #C9DCEC;
  --border2: #B7CEE1;
  --text: #0B1D2F;
  --text2: #32516A;
  --muted: #557791;
  --dim: #87A3B9;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg0);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--brand); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand2); }
button { cursor: pointer; font-family: inherit; }
img { max-width: 100%; }
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: var(--bg1); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--brand), var(--purple));
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.logo-name {
  font-family: var(--font-brand);
  font-size: 16px; font-weight: 700; letter-spacing: 0.5px;
  color: var(--text);
}
.logo-sub {
  font-size: 8px; color: var(--muted);
  letter-spacing: 2px; margin-top: 1px;
}

.btn-ghost {
  padding: 8px 20px; border-radius: var(--radius-sm);
  border: 1px solid var(--border2); background: transparent;
  color: var(--text2); font-family: var(--font-head);
  font-size: 13px; font-weight: 600; letter-spacing: 0.3px;
  transition: all var(--transition); display: inline-flex; align-items: center;
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

.btn-primary {
  padding: 8px 22px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--brand), #0369A1);
  color: #fff; font-family: var(--font-head);
  font-size: 13px; font-weight: 700; letter-spacing: 0.3px;
  transition: all var(--transition); border: none;
  display: inline-flex; align-items: center;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 16px var(--brand-glow); color: #fff; }

.btn-hero {
  padding: 14px 32px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand), #0369A1);
  color: #fff; font-family: var(--font-head);
  font-size: 16px; font-weight: 700; border: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s;
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--brand-glow); color: #fff; }

.btn-hero-outline {
  padding: 14px 32px; border-radius: var(--radius);
  border: 1px solid var(--border2); background: var(--panel);
  color: var(--text2); font-family: var(--font-head);
  font-size: 16px; font-weight: 600; display: inline-flex; align-items: center;
  transition: all 0.3s;
}
.btn-hero-outline:hover { border-color: var(--brand); color: var(--brand); }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s, border-color 0.3s;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-links { display: flex; gap: 32px; }
.nav-link {
  font-family: var(--font-head); font-size: 14px; font-weight: 500;
  color: var(--text2); letter-spacing: 0.3px; transition: color var(--transition);
}
.nav-link:hover { color: var(--brand); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-burger {
  display: none; background: none; border: none;
  color: var(--text2); font-size: 20px; padding: 6px;
}
.nav-scrolled {
  background: rgba(2,8,16,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 12px 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  padding: 12px 20px; color: var(--text2);
  font-family: var(--font-head); font-size: 15px; font-weight: 500;
}
.nav-mobile-link:hover { color: var(--brand); background: var(--bg3); }

.nt-body.landing-body { background: var(--bg0); }

.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 60px;
  max-width: 1280px; margin: 0 auto;
  padding: 100px 5% 80px;
  position: relative;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 60% at 30% 40%, rgba(14,165,233,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(139,92,246,0.07) 0%, transparent 60%);
}
.hero-grid {
  position: fixed; inset: 0; pointer-events: none; z-index: -1;
  background-image:
    linear-gradient(rgba(14,165,233,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; max-width: 600px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 16px; border-radius: 20px;
  border: 1px solid rgba(14,165,233,0.3);
  background: rgba(14,165,233,0.07);
  font-family: var(--font-mono); font-size: 10px;
  color: var(--brand2); letter-spacing: 2px; margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}
.hero-title {
  font-family: var(--font-brand);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -1px; margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-accent { color: var(--brand); }
.hero-sub {
  font-size: 18px; color: var(--text2); margin-bottom: 36px;
  line-height: 1.7; font-weight: 300;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-stats {
  display: flex; align-items: center; gap: 24px;
  animation: fadeUp 0.8s 0.4s ease both;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-brand); font-size: 28px;
  font-weight: 700; color: var(--brand);
}
.stat-lbl { font-size: 10px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

.hero-card {
  background: var(--panel);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 24px; min-width: 280px;
  box-shadow: 0 0 60px rgba(14,165,233,0.1);
  position: relative; z-index: 1;
  animation: fadeUp 0.8s 0.5s ease both;
}
.hc-header { display: flex; justify-content: space-between; margin-bottom: 16px; }
.hc-symbol { font-family: var(--font-brand); font-size: 20px; font-weight: 700; }
.hc-market { font-size: 10px; color: var(--muted); align-self: center; letter-spacing: 1px; }
.hc-decision {
  font-family: var(--font-brand); font-size: 28px; font-weight: 900;
  text-align: center; padding: 12px; border-radius: var(--radius-sm);
  margin-bottom: 16px; letter-spacing: -0.5px;
}
.hc-decision.buy { color: var(--green); background: var(--green-glow); }
.hc-conf { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); margin-bottom: 6px; }
.hc-conf-val { color: var(--green); font-weight: 700; }
.hc-bar { height: 5px; background: var(--border); border-radius: 3px; overflow: hidden; margin-bottom: 20px; }
.hc-fill { height: 100%; background: linear-gradient(90deg, var(--green), var(--brand)); border-radius: 3px; }
.hc-levels { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.hc-level { display: flex; justify-content: space-between; font-size: 12px; }
.hc-level span { color: var(--muted); }
.hc-level strong { font-family: var(--font-mono); font-size: 13px; }
.pos { color: var(--green); }
.neg { color: var(--red); }
.hc-footer { display: flex; gap: 8px; }
.hc-ai {
  flex: 1; text-align: center; padding: 5px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 10px; color: var(--muted);
}

.providers-bar {
  background: var(--bg1); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 5%; display: flex; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.providers-label { font-size: 10px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-right: 8px; }
.provider-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--border2); background: var(--panel);
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  color: var(--text2); transition: all var(--transition);
}
.provider-badge:hover { border-color: var(--brand); color: var(--text); }
.provider-co { font-size: 10px; color: var(--muted); font-weight: 400; }

.section { padding: 100px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.bg-alt { background: var(--bg1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-label {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--brand); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 12px; text-align: center;
}
.section-title {
  font-family: var(--font-brand); font-size: clamp(26px,4vw,46px);
  font-weight: 700; text-align: center; margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.section-sub {
  text-align: center; color: var(--text2); font-size: 17px;
  max-width: 700px; margin: 0 auto 60px; line-height: 1.7;
}

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-card:hover::before { opacity: 1; }
.fc-wide { grid-column: span 2; }
.feature-top { display: flex; gap: 20px; margin-bottom: 20px; }
.feature-icon { font-size: 32px; margin-bottom: 14px; line-height: 1; }
.feature-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-desc { font-size: 14px; color: var(--text2); line-height: 1.7; }
.feature-tag {
  display: inline-block; margin-top: 16px;
  padding: 3px 10px; border-radius: 4px;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
}
.tag-blue   { background: rgba(14,165,233,0.15); color: var(--brand); }
.tag-purple { background: rgba(139,92,246,0.15); color: var(--purple); }
.tag-amber  { background: rgba(245,158,11,0.15); color: var(--amber); }
.tag-green  { background: rgba(16,185,129,0.15); color: var(--green); }
.feature-layers { display: flex; align-items: center; gap: 16px; }
.fl-item { display: flex; align-items: flex-start; gap: 16px; flex: 1; }
.fl-num {
  font-family: var(--font-brand); font-size: 28px; font-weight: 900;
  color: var(--border2); line-height: 1; flex-shrink: 0;
}
.fl-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.fl-desc { font-size: 12px; color: var(--text2); }
.fl-arrow { font-size: 24px; color: var(--brand); flex-shrink: 0; }

.steps-grid { display: flex; align-items: flex-start; gap: 0; }
.step { flex: 1; text-align: center; padding: 0 20px; }
.step-num {
  font-family: var(--font-brand); font-size: 11px;
  color: var(--brand); letter-spacing: 2px; margin-bottom: 16px;
}
.step-icon { font-size: 36px; margin-bottom: 16px; }
.step-title { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step-desc { font-size: 13px; color: var(--text2); line-height: 1.6; }
.step-arrow { font-size: 24px; color: var(--border2); padding-top: 60px; flex-shrink: 0; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; align-items: start;
}
.price-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px;
  position: relative; transition: all 0.3s;
}
.price-card-popular {
  border-color: var(--brand);
  background: linear-gradient(180deg, rgba(14,165,233,0.08), var(--panel));
}
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  color: #fff; font-size: 10px; font-weight: 700;
  padding: 4px 16px; border-radius: 10px; letter-spacing: 1px; white-space: nowrap;
}
.price-plan { font-family: var(--font-brand); font-size: 12px; font-weight: 700; letter-spacing: 2px; margin-bottom: 16px; }
.price-amount { font-family: var(--font-brand); font-size: 44px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.price-amount sup { font-size: 20px; vertical-align: top; margin-top: 10px; }
.price-amount span { font-size: 14px; color: var(--muted); font-weight: 400; }
.price-note { font-size: 11px; color: var(--muted); margin-bottom: 24px; }
.price-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 9px; }
.pf-yes, .pf-no { font-size: 13px; display: flex; align-items: flex-start; gap: 8px; }
.pf-yes { color: var(--text2); }
.pf-no { color: var(--dim); }
.price-btn {
  display: block; width: 100%; padding: 12px;
  border-radius: var(--radius-sm); text-align: center;
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  letter-spacing: 0.3px; transition: all 0.2s; color: #fff;
}
.price-btn:hover { transform: translateY(-1px); filter: brightness(1.1); color: #fff; }

.cta-section {
  padding: 100px 5%;
  background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(139,92,246,0.06));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-title { font-family: var(--font-brand); font-size: clamp(28px,4vw,44px); font-weight: 800; margin-bottom: 16px; }
.cta-sub { font-size: 17px; color: var(--text2); margin-bottom: 36px; line-height: 1.7; }

.footer { padding: 60px 5% 40px; background: var(--bg1); border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap;
  padding-bottom: 40px; border-bottom: 1px solid var(--border);
}
.footer-tagline { font-size: 13px; color: var(--muted); margin-top: 12px; max-width: 240px; line-height: 1.6; }
.footer-links-group { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-family: var(--font-head); font-size: 12px; font-weight: 700; color: var(--text); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: var(--muted); }
.footer-col a:hover { color: var(--brand); }
.footer-bottom {
  max-width: 1200px; margin: 28px auto 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 11px; color: var(--dim);
}
.footer-disclaimer { max-width: 500px; }

.auth-body { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; }
.auth-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(14,165,233,0.1), transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(139,92,246,0.07), transparent 60%);
}
.auth-grid {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(14,165,233,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.auth-wrap {
  width: 100%; max-width: 520px;
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 20px; align-items: center;
}
.auth-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.auth-card {
  width: 100%; background: var(--panel);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.auth-card-header {
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(14,165,233,0.05), transparent);
}
.auth-title { font-family: var(--font-brand); font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.auth-subtitle { font-size: 14px; color: var(--text2); }
.auth-form { padding: 28px 32px; display: flex; flex-direction: column; gap: 20px; }
.auth-footer { padding: 0 32px 28px; text-align: center; font-size: 13px; color: var(--muted); }
.auth-disclaimer { font-size: 10px; color: var(--dim); text-align: center; max-width: 400px; line-height: 1.6; }

.trial-banner {
  width: 100%; padding: 12px 20px; border-radius: var(--radius-sm);
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3);
  color: var(--green); font-size: 13px; text-align: center;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--text2); letter-spacing: 0.5px; text-transform: uppercase; }
.form-input {
  width: 100%; padding: 11px 14px;
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: var(--radius-sm); color: var(--text);
  font-family: var(--font-body); font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(14,165,233,0.1); }
.form-input::placeholder { color: var(--muted); }
.btn-submit {
  width: 100%; padding: 13px;
  background: linear-gradient(135deg, var(--brand), #0369A1);
  border: none; border-radius: var(--radius-sm);
  color: #fff; font-family: var(--font-head);
  font-size: 15px; font-weight: 700; letter-spacing: 0.3px;
  cursor: pointer; transition: all var(--transition);
}
.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 4px 20px var(--brand-glow); }

.alert {
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 13px; display: flex; align-items: center; gap: 10px;
}
.alert-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #FCA5A5; }

.dashboard-shell {
  min-height: 100vh;
  padding: 110px 5% 60px;
  background:
    radial-gradient(ellipse 60% 60% at 30% 20%, rgba(14,165,233,0.08) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}
.dashboard-panel {
  max-width: 1200px; margin: 0 auto;
  background: rgba(12,24,40,0.8);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.dashboard-panel-head {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.dashboard-panel-title {
  font-family: var(--font-brand);
  font-size: 28px;
  font-weight: 700;
}
.dashboard-panel-sub {
  font-size: 14px;
  color: var(--text2);
}
.dashboard-content {
  padding: 28px;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dashboard-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.dashboard-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  margin-bottom: 10px;
}
.dashboard-card p,
.dashboard-card li {
  color: var(--text2);
  font-size: 14px;
}
.dashboard-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.market-switch {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.market-pill {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border2);
  background: var(--bg2);
  color: var(--text2);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
}
.market-pill.active,
.market-pill:hover {
  border-color: var(--brand);
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #0369A1);
}
.form-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.inline-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.muted-note {
  color: var(--muted);
  font-size: 12px;
}
.request-link {
  display: block;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--text);
}
.request-link:hover {
  border-color: var(--brand);
  color: var(--text);
}
.request-meta {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}
.request-shell {
  min-height: 100vh;
  padding: 110px 5% 60px;
}
.request-wrap {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.request-card {
  background: var(--panel);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 24px;
}
.request-title {
  font-family: var(--font-brand);
  font-size: 28px;
  margin-bottom: 10px;
}
.request-mono {
  font-family: var(--font-mono);
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: var(--bg2);
  color: var(--text2);
}
.badge.buy { color: var(--green); border-color: rgba(16,185,129,0.35); background: rgba(16,185,129,0.08); }
.badge.sell { color: var(--red); border-color: rgba(239,68,68,0.35); background: rgba(239,68,68,0.08); }
.badge.hold { color: var(--amber); border-color: rgba(245,158,11,0.35); background: rgba(245,158,11,0.08); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .fc-wide { grid-column: span 2; }
  .dashboard-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: block; }
  .steps-grid { flex-direction: column; }
  .step-arrow { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .fc-wide { grid-column: span 1; }
  .feature-top { flex-direction: column; }
  .footer-links-group { flex-wrap: wrap; gap: 28px; }
  .footer-inner { flex-direction: column; }
  .dashboard-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .auth-form { padding: 20px; }
  .auth-card-header { padding: 24px 20px 20px; }
  .auth-footer { padding: 0 20px 20px; }
}

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border2);
  background: var(--panel);
  color: var(--text2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all var(--transition);
}
.theme-toggle:hover {
  border-color: var(--brand);
  color: var(--brand);
  box-shadow: 0 4px 16px var(--brand-glow);
}
