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

:root {
  --arch: #1793d1;
  --arch-light: #4db8f0;
  --arch-dark: #0f6fa3;
  --gold: #f5c542;
  --gold-dark: #d4a017;
  --red: #e05555;
  --bg: #0d0d0d;
  --bg2: #111214;
  --bg3: #17191c;
  --bg4: #1e2024;
  --border: #2a2d33;
  --text: #e8e8e8;
  --text-muted: #888;
  --text-dim: #555;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
}

html { scroll-behavior: smooth; }

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

a { color: var(--arch-light); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── VIP Ticker ────────────────────────────────── */
#vip-ticker {
  background: var(--arch-dark);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 0;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
#vip-ticker span {
  display: inline-block;
  animation: ticker 30s linear infinite;
}
@keyframes ticker { 0% { transform: translateX(100vw); } 100% { transform: translateX(-100%); } }

/* ─── Header / Nav ──────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon { font-size: 1.6rem; }
.logo-arch { color: var(--arch-light); font-weight: 900; font-size: 1.2rem; letter-spacing: 0.05em; }
.logo-btw { color: var(--gold); font-weight: 900; font-size: 1.2rem; letter-spacing: 0.05em; }
.logo-sub { font-size: 0.55rem; color: var(--text-muted); letter-spacing: 0.15em; text-transform: uppercase; }
.nav-links { list-style: none; display: flex; gap: 0.5rem; align-items: center; }
.nav-links a { color: var(--text-muted); font-size: 0.9rem; padding: 0.4rem 0.75rem; border-radius: 6px; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-cta {
  background: var(--arch);
  color: #fff !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 6px !important;
  font-weight: 600;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--arch-dark) !important; }

/* ─── Hero ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 4rem;
}
.hero-bg-text {
  position: fixed;
  top: 10%;
  right: -5%;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(23,147,209,0.04);
  line-height: 1.1;
  word-break: break-all;
  width: 55%;
  pointer-events: none;
  z-index: 0;
  letter-spacing: 0.1em;
}
.hero-content { flex: 1; position: relative; z-index: 1; }
.badge {
  display: inline-block;
  background: rgba(245,197,66,0.12);
  border: 1px solid rgba(245,197,66,0.35);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.highlight {
  background: linear-gradient(135deg, var(--arch-light), var(--arch));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 2rem; max-width: 480px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.btn-primary {
  background: var(--arch);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}
.btn-primary:hover { background: var(--arch-dark); text-decoration: none; color: #fff; }
.btn-primary.large { font-size: 1.05rem; padding: 0.9rem 2.2rem; }
.btn-primary.full { width: 100%; text-align: center; }
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--arch); color: var(--arch-light); text-decoration: none; }
.hero-fine { font-size: 0.72rem; color: var(--text-dim); max-width: 420px; }

/* Terminal widget */
.hero-terminal {
  flex: 0 0 480px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  font-family: var(--mono);
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(23,147,209,0.15);
}
.terminal-bar {
  background: var(--bg3);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.terminal-title { margin-left: auto; font-size: 0.75rem; color: var(--text-dim); margin-right: auto; }
.terminal-body { padding: 1rem 1.25rem 1.25rem; line-height: 1.7; }
.t-line { display: flex; gap: 0.5rem; }
.t-prompt { color: var(--arch-light); }
.t-cmd { color: #fff; }
.t-output { color: var(--text-muted); margin: 0.3rem 0; }
.t-logo pre { font-size: 0.8rem; color: var(--text-muted); }
.t-logo pre { white-space: pre; }
.cursor { color: var(--arch-light); animation: blink 1s step-start infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ─── Trust Bar ─────────────────────────────────── */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.trust-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--arch-light);
  font-family: var(--mono);
}
.trust-label { font-size: 0.8rem; color: var(--text-muted); }

/* ─── Sections ──────────────────────────────────── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 6rem 2rem; }
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--arch);
  font-family: var(--mono);
  margin-bottom: 1rem;
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}
h2 em { color: var(--arch-light); font-style: normal; }
.center { text-align: center; }
.center h2 { margin-bottom: 1rem; }
.center p { color: var(--text-muted); margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-fine { font-size: 0.75rem; color: var(--text-dim); margin-top: 1rem !important; }

/* About */
.about { border-bottom: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-text p { color: var(--text-muted); margin-bottom: 1.1rem; font-size: 1rem; }
.about-text strong { color: var(--text); }
blockquote {
  border-left: 3px solid var(--arch);
  padding: 0.75rem 1.25rem;
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-style: italic;
  background: var(--bg2);
  border-radius: 0 8px 8px 0;
}
blockquote cite { display: block; font-size: 0.8rem; margin-top: 0.5rem; font-style: normal; color: var(--text-dim); }

/* Fake screenshot */
.fake-screenshot {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.fs-bar {
  background: var(--bg3);
  padding: 0.55rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.fs-title { margin: 0 auto; font-size: 0.72rem; color: var(--text-dim); }
.fs-body { display: flex; min-height: 220px; }
.fs-sidebar { width: 160px; border-right: 1px solid var(--border); padding: 0.75rem 0; }
.fs-item { padding: 0.5rem 1rem; font-size: 0.8rem; color: var(--text-muted); cursor: pointer; }
.fs-item.active { background: rgba(23,147,209,0.15); color: var(--arch-light); border-left: 2px solid var(--arch); }
.fs-content { flex: 1; padding: 0.75rem 1rem; }
.fs-row { display: flex; justify-content: space-between; padding: 0.45rem 0; font-size: 0.82rem; border-bottom: 1px solid var(--border); }
.fs-row:last-child { border: none; }
.fs-val { font-family: var(--mono); color: var(--text); }
.fs-val.gold { color: var(--gold); }
.fs-val.red { color: var(--red); }

/* Features */
.features { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: var(--arch); transform: translateY(-2px); }
.feat-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.85rem; color: var(--text-muted); }
.feat-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  background: rgba(23,147,209,0.15);
  color: var(--arch-light);
  border: 1px solid rgba(23,147,209,0.3);
}
.feat-tag:contains("PLATINUM") { background: rgba(245,197,66,0.12); color: var(--gold); border-color: rgba(245,197,66,0.3); }

/* Tiers */
.tiers { border-bottom: 1px solid var(--border); }
.tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.tier-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
}
.tier-card.featured {
  border-color: var(--arch);
  background: var(--bg3);
  box-shadow: 0 0 0 1px var(--arch), 0 16px 40px rgba(23,147,209,0.1);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--arch);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
}
.tier-name { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; color: var(--text-muted); margin-bottom: 0.5rem; font-family: var(--mono); }
.tier-price { font-size: 2.2rem; font-weight: 900; margin-bottom: 0.75rem; }
.tier-price span { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); }
.tier-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.tier-features { list-style: none; margin-bottom: 2rem; }
.tier-features li { font-size: 0.85rem; padding: 0.35rem 0; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.tier-features li:last-child { border: none; }
.tier-features li:first-child ~ li:nth-child(-n+3) { color: var(--text); }
.tier-btn {
  display: block;
  text-align: center;
  padding: 0.7rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--bg4);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.2s;
}
.tier-btn:hover { border-color: var(--arch); color: var(--arch-light); text-decoration: none; }
.tier-btn.featured-btn { background: var(--arch); border-color: var(--arch); color: #fff; }
.tier-btn.featured-btn:hover { background: var(--arch-dark); }
.tier-fine { font-size: 0.7rem; color: var(--text-dim); text-align: center; margin-top: 0.75rem; }

/* Testimonials */
.testimonials { background: var(--bg2); border-bottom: 1px solid var(--border); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
}
.testimonial p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1rem; font-style: italic; }
.testimonial p::before { content: '"'; color: var(--arch); font-size: 1.5rem; line-height: 0; vertical-align: -0.4em; margin-right: 0.2rem; }
.test-author { display: flex; gap: 0.75rem; align-items: center; }
.test-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--arch);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0;
}
.test-author strong { display: block; font-size: 0.85rem; }
.test-author span { font-size: 0.75rem; color: var(--text-dim); }

/* Live Stats */
.stats-section { border-bottom: 1px solid var(--border); }
.live-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.live-stat {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  text-align: center;
}
.ls-num { font-size: 1.8rem; font-weight: 900; color: var(--arch-light); font-family: var(--mono); margin-bottom: 0.5rem; }
.ls-label { font-size: 0.8rem; color: var(--text-muted); }
.stats-fine { font-size: 0.75rem; color: var(--text-dim); text-align: center; }

/* CTA section */
.cta-section { background: var(--bg2); border-bottom: 1px solid var(--border); }

/* Footer */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-logo { font-size: 1.4rem; font-weight: 900; margin-bottom: 0.75rem; }
.footer-copy { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.footer-dis { font-size: 0.72rem; color: var(--text-dim); max-width: 600px; margin: 0 auto 1.5rem; line-height: 1.6; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.footer-links a { font-size: 0.8rem; color: var(--text-dim); }
.footer-links a:hover { color: var(--arch-light); }

/* ─── Login Page ────────────────────────────────── */
body.login-page { background: var(--bg); }
.login-wrap {
  display: flex;
  min-height: calc(100vh - 30px);
}
.login-left {
  flex: 0 0 520px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-right: 1px solid var(--border);
  position: relative;
}
.back-link { font-size: 0.82rem; color: var(--text-dim); display: flex; align-items: center; gap: 0.4rem; }
.back-link:hover { color: var(--arch-light); }
.login-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
}
.login-header { margin-bottom: 1.5rem; }
.login-header h2 { font-size: 1.6rem; font-weight: 900; margin-bottom: 0.25rem; }
.login-header p { color: var(--text-muted); font-size: 0.9rem; }

/* Error box */
.error-box {
  background: rgba(224,85,85,0.1);
  border: 1px solid rgba(224,85,85,0.35);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  animation: shake 0.4s ease;
}
@keyframes shake {
  0%,100%{transform:translateX(0)} 20%{transform:translateX(-6px)} 40%{transform:translateX(6px)} 60%{transform:translateX(-4px)} 80%{transform:translateX(4px)}
}
.error-icon { font-size: 1.1rem; flex-shrink: 0; }
.error-text strong { display: block; color: var(--red); font-size: 0.88rem; }
.error-text span { font-size: 0.82rem; color: var(--text-muted); }

/* Form */
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 0.45rem; color: var(--text-muted); }
.form-group input {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus { border-color: var(--arch); }
.form-group input.error { border-color: var(--red); }
.pass-wrap { position: relative; }
.pass-wrap input { padding-right: 2.8rem; }
.toggle-pass {
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.toggle-pass:hover { opacity: 1; }
.form-extras { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.checkbox-label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--text-muted); cursor: pointer; }
.checkbox-label input { width: auto; margin: 0; }
.forgot-link { font-size: 0.82rem; }
.login-footer-note { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.login-footer-note p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.login-footer-note .fine { font-size: 0.72rem; color: var(--text-dim); }

/* Security badge */
.security-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  color: var(--text-dim);
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  margin-top: auto;
}
.sec-detail { margin-left: auto; font-family: var(--mono); color: var(--arch); }

/* Login right panel */
.login-right {
  flex: 1;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.login-right::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  height: 80%;
  background: radial-gradient(circle, rgba(23,147,209,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.login-right-inner {
  padding: 4rem 3rem;
  max-width: 540px;
  position: relative;
  z-index: 1;
}
.lr-badge {
  display: inline-block;
  background: rgba(245,197,66,0.12);
  border: 1px solid rgba(245,197,66,0.35);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.login-right-inner h3 {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.portal-features { list-style: none; }
.portal-features li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.portal-features li:last-child { border: none; }
.pf-icon { font-size: 1.5rem; flex-shrink: 0; }
.portal-features strong { display: block; font-size: 0.9rem; margin-bottom: 0.2rem; }
.portal-features span { font-size: 0.8rem; color: var(--text-muted); }
.lr-footer { display: flex; gap: 2rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.lr-stat { font-size: 0.78rem; color: var(--text-muted); }
.lr-stat span { display: block; font-size: 1.4rem; font-weight: 900; color: var(--arch-light); font-family: var(--mono); }

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.5rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.2s;
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none; border: none;
  color: var(--text-muted); font-size: 1rem;
  cursor: pointer;
}
.modal-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.modal h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.modal p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.modal-fine { font-size: 0.75rem; color: var(--text-dim); margin-bottom: 1.5rem !important; }
#modal-ok { margin-top: 0; }

/* Spinner */
@keyframes spin { to { transform: rotate(360deg); } }
#btn-spinner { display: inline-block; animation: spin 0.6s linear infinite; }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { flex-direction: column; gap: 2.5rem; min-height: auto; padding-top: 3rem; }
  .hero-terminal { flex: none; width: 100%; }
  .about-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .tiers-grid { grid-template-columns: 1fr; gap: 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .live-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .live-stats { grid-template-columns: 1fr 1fr; }
  .login-wrap { flex-direction: column; }
  .login-left { flex: none; border-right: none; border-bottom: 1px solid var(--border); padding: 1.5rem; }
  .login-right-inner { padding: 2rem 1.5rem; }
  .lr-footer { flex-wrap: wrap; gap: 1rem; }
}
