/* VYREX marketing & auth pages */
:root {
  --site-bg: #03060f;
  --site-card: rgba(12, 18, 32, 0.92);
  --site-border: rgba(77, 124, 255, 0.2);
  --site-accent: #4d7cff;
  --site-text: #e8ecf4;
  --site-muted: #7a8aad;
  --site-font: "Outfit", system-ui, sans-serif;
  --site-display: "Syne", var(--site-font);
}

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

html { scroll-behavior: smooth; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.2); }
* { scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, 0.1) transparent; }

::selection {
  background: rgba(77, 124, 255, 0.35);
  color: #fff;
}

*:focus-visible {
  outline: 2px solid rgba(77, 124, 255, 0.85);
  outline-offset: 2px;
  border-radius: 4px;
}

body.site-body {
  margin: 0;
  min-height: 100vh;
  background-color: #010208;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(77, 124, 255, 0.15), transparent 40%),
    radial-gradient(circle at 85% 40%, rgba(155, 114, 239, 0.15), transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(0, 232, 148, 0.08), transparent 40%),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  background-attachment: fixed;
  color: var(--site-text);
  font-family: var(--site-font);
  font-size: 16px;
  line-height: 1.55;
  animation: moveGrid 30s linear infinite, pulseGlow 15s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { background-color: #010208; }
  100% { background-color: #030514; }
}

@keyframes moveGrid {
  0% { background-position: 0% 0%, 0% 0%, 0% 0%, 0 0, 0 0; }
  100% { background-position: 0% 0%, 0% 0%, 0% 0%, 0 40px, 0 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body.site-body { animation: none; }
  .site-hex,
  .site-hero,
  .site-hero h1,
  .site-btn-primary,
  .site-price.featured,
  .site-cmd-strip::after {
    animation: none !important;
  }
  .site-reveal,
  .site-card,
  .site-btn,
  .site-nav-overlay,
  .auth-card,
  .status-row {
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  .site-card:hover {
    transform: none;
  }
  .site-nav .site-nav-links.site-nav-drawer {
    transition-duration: 0.01ms !important;
  }
  .site-hero h1 {
    -webkit-text-fill-color: var(--site-text);
    background: none;
  }
}

.site-nav {
  position: sticky;
  top: 20px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
  margin: 20px auto 40px;
  max-width: 1120px;
  width: calc(100% - 40px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(10, 15, 30, 0.4);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.03);
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--site-text);
}

.site-hex {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--site-accent), #9b72ef);
  display: grid;
  place-items: center;
  font-family: var(--site-display);
  font-weight: 900;
  font-size: 13px;
  color: #fff;
  animation: floatSiteHex 4s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(77,124,255,.4);
}
@keyframes floatSiteHex {
  0%, 100% { transform: translateY(0) rotate(0deg); box-shadow: 0 4px 20px rgba(77,124,255,.4); }
  50% { transform: translateY(-3px) rotate(3deg); box-shadow: 0 10px 25px rgba(77,124,255,.6); }
}

/* Muted body copy (homepage sections, etc.) */
.muted {
  color: var(--site-muted);
}

.site-brand-txt { font-family: var(--site-display); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }
.site-brand-sub { font-size: 11px; color: var(--site-muted); margin-top: 2px; }

.site-nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
}

.site-nav-links a {
  color: var(--site-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.site-nav-links a:hover { color: var(--site-text); }
.site-nav-links a:focus-visible {
  color: var(--site-text);
  border-radius: 6px;
}

.site-nav-actions { display: flex; align-items: center; gap: 10px; }

.site-live-ping {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--site-muted);
  padding: 6px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}
.site-live-ping:hover { background: rgba(255, 255, 255, 0.08); }
.site-live-ping .dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00e894;
  box-shadow: 0 0 8px #00e894;
  animation: pulsePing 2s infinite;
}
@keyframes pulsePing {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.site-btn:active { transform: scale(0.96); }

.site-btn-ghost {
  background: transparent;
  color: var(--site-text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.site-btn-ghost:hover { border-color: var(--site-border); background: rgba(77, 124, 255, 0.08); transform: translateY(-1px); }

.site-btn-primary {
  background: linear-gradient(135deg, var(--site-accent), #9b72ef, #00d4ff, var(--site-accent));
  background-size: 300% 300%;
  animation: gradientFlow 4s ease infinite;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(77, 124, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.site-btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: 0.5s;
}
.site-btn-primary:hover::before {
  left: 150%;
  transition: 0.7s ease-in-out;
}
.site-btn-primary:hover { 
  box-shadow: 0 12px 40px rgba(77, 124, 255, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.5); 
  transform: translateY(-3px) scale(1.05); 
  filter: brightness(1.2);
}

.site-main { max-width: 1120px; margin: 0 auto; padding: 48px 24px 80px; }

.site-hero {
  text-align: center;
  padding: 32px 0 56px;
  animation: floatSiteHero 8s ease-in-out infinite;
}

@keyframes floatSiteHero {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.site-hero h1 {
  font-family: var(--site-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
  background: linear-gradient(to right, #fff 20%, #a8c4ff 50%, #fff 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  to { background-position: 200% center; }
}

.site-hero-lead {
  font-size: 1.15rem;
  color: var(--site-muted);
  max-width: 560px;
  margin: 0 auto 28px;
}

.site-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.site-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(77, 124, 255, 0.15);
  color: #a8c4ff;
  border: 1px solid var(--site-border);
  margin-bottom: 16px;
}

.site-cmd-strip {
  margin: 40px auto 0;
  max-width: 520px;
  background: var(--site-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px 20px;
  text-align: left;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.site-cmd-strip::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  animation: sweep 4s ease-in-out infinite;
}
@keyframes sweep {
  0% { left: -100%; }
  50%, 100% { left: 200%; }
}
.site-cmd-strip .p { color: #00e894; }
.site-cmd-strip .a { color: var(--site-muted); }

.site-section { margin-top: 72px; }
.site-section h2 {
  font-family: var(--site-display);
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 10px;
}
.site-section > p { color: var(--site-muted); margin: 0 0 28px; max-width: 640px; }

.site-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  perspective: 1000px;
}

.site-card {
  background: rgba(15, 20, 35, 0.4);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform-style: preserve-3d;
}
.site-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0.5;
}
.site-card:hover {
  transform: translateY(-10px) scale(1.03) rotateX(4deg) rotateY(-2deg);
  border-color: rgba(77, 124, 255, 0.6);
  background: rgba(20, 25, 45, 0.6);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(77, 124, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.site-card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.site-card p { margin: 0; font-size: 14px; color: var(--site-muted); }

.site-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.site-price {
  background: var(--site-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}
.site-price.featured {
  border-color: rgba(77, 124, 255, 0.45);
  box-shadow: 0 0 30px rgba(77, 124, 255, 0.15), inset 0 0 20px rgba(77, 124, 255, 0.05);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 30px rgba(77, 124, 255, 0.15), inset 0 0 20px rgba(77, 124, 255, 0.05); border-color: rgba(77, 124, 255, 0.45); }
  50% { box-shadow: 0 0 50px rgba(77, 124, 255, 0.25), inset 0 0 30px rgba(77, 124, 255, 0.1); border-color: rgba(77, 124, 255, 0.7); }
}
.site-price .amt { font-family: var(--site-display); font-size: 2rem; font-weight: 900; }
.site-price .per { color: var(--site-muted); font-size: 14px; }
.site-price ul { padding-left: 18px; color: var(--site-muted); font-size: 14px; margin: 16px 0 20px; }

.site-footer {
  margin-top: 100px;
  padding: 36px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  color: var(--site-muted);
  font-size: 13px;
}
.site-footer a { color: #a8c4ff; text-decoration: none; margin: 0 10px; }
.site-footer a:hover { text-decoration: underline; }

/* Auth pages */
.auth-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: rgba(12, 18, 32, 0.72);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 38px 34px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 28px 90px rgba(0, 0, 0, 0.5);
}

.auth-card h1 {
  font-family: var(--site-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.auth-sub { color: var(--site-muted); font-size: 14px; margin: 0 0 24px; }

.auth-field { margin-bottom: 16px; }
.auth-field label { display: block; font-size: 12px; font-weight: 600; color: var(--site-muted); margin-bottom: 6px; }
.auth-field input,
.auth-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.38);
  color: var(--site-text);
  font-family: inherit;
  font-size: 15px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.auth-field input:focus,
.auth-field textarea:focus {
  outline: none;
  border-color: rgba(77, 124, 255, 0.55);
  background: rgba(0, 0, 0, 0.48);
  box-shadow: 0 0 0 3px rgba(77, 124, 255, 0.22), inset 0 2px 6px rgba(0, 0, 0, 0.12);
}

.auth-submit { width: 100%; margin-top: 8px; }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  color: var(--site-muted);
  font-size: 12px;
}
.auth-divider::before, .auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.auth-discord {
  width: 100%;
  background: #5865f2;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.auth-discord:hover { filter: brightness(1.06); }

.auth-foot { margin-top: 20px; text-align: center; font-size: 14px; color: var(--site-muted); }
.auth-foot a { color: #a8c4ff; }

.auth-note {
  margin-top: 16px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.25);
  font-size: 12px;
  color: #e8c48a;
}

/* Docs / legal simple */
.doc-page { max-width: 720px; margin: 0 auto; padding: 48px 24px 100px; }
.doc-page h1 { font-family: var(--site-display); font-size: clamp(1.75rem, 4vw, 2.25rem); margin-top: 0; letter-spacing: -0.02em; line-height: 1.2; }
.doc-page h2 { font-size: 1.2rem; margin-top: 36px; color: var(--site-text); font-weight: 700; }
.doc-page p, .doc-page li { color: var(--site-muted); line-height: 1.65; }
.doc-page code { background: rgba(77, 124, 255, 0.12); padding: 2px 8px; border-radius: 6px; font-size: 0.9em; border: 1px solid rgba(255, 255, 255, 0.06); }

.status-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: rgba(12, 18, 32, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.status-row:hover {
  border-color: rgba(77, 124, 255, 0.25);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

/* Shared with dashboard tokens when styles.css loads first */
body.site-body .offline-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  text-align: center;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(245, 166, 35, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 166, 35, 0.35);
  color: #f5d4a0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
body.site-body .offline-banner.hidden { display: none !important; }
body.site-nav-open { overflow: hidden; }

.site-hero-search-wrap { max-width: 420px; margin: 0 auto 20px; }
.site-hero-search {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: var(--site-text);
  font-family: var(--site-font);
  font-size: 15px;
}
.site-hero-search:focus {
  outline: none;
  border-color: var(--site-accent);
  box-shadow: 0 0 0 3px rgba(77, 124, 255, 0.2);
}

.site-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: -24px auto 48px;
  padding: 0 8px;
}
.site-stat {
  background: var(--site-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.site-stat:hover {
  transform: translateY(-2px);
  border-color: rgba(77, 124, 255, 0.25);
}
.site-stat-val {
  font-family: var(--site-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: #a8c4ff;
  display: block;
}
.site-stat-lbl { font-size: 11px; color: var(--site-muted); text-transform: uppercase; letter-spacing: 0.06em; }

.site-steps {
  max-width: 640px;
  padding-left: 20px;
  color: var(--site-muted);
  line-height: 1.8;
}
.site-steps li { margin-bottom: 12px; }
.site-steps strong { color: var(--site-text); }

.site-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 720px;
}
.site-compare-col {
  background: var(--site-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px;
}
.site-compare-col h3 { margin: 0 0 12px; font-size: 1rem; }
.site-compare-col ul { margin: 0; padding-left: 18px; color: var(--site-muted); font-size: 14px; }
.site-compare-win {
  border-color: rgba(77, 124, 255, 0.35);
  box-shadow: 0 12px 40px rgba(77, 124, 255, 0.08);
}

.site-quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.site-quote {
  margin: 0;
  background: var(--site-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px;
}
.site-quote p { margin: 0 0 12px; color: var(--site-text); font-size: 14px; line-height: 1.55; }
.site-quote footer { font-size: 12px; color: var(--site-muted); }

.site-faq { max-width: 720px; }
.site-faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--site-card);
}
.site-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: transparent;
  border: none;
  color: var(--site-text);
  font-family: var(--site-font);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.site-faq-ico { transition: transform 0.2s; color: var(--site-muted); }
.site-faq-item.open .site-faq-ico { transform: rotate(90deg); }
.site-faq-a {
  display: none;
  padding: 0 18px 16px;
  font-size: 13px;
  color: var(--site-muted);
  line-height: 1.6;
}
.site-faq-item.open .site-faq-a { display: block; }

.site-cta-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 28px;
  margin-top: 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(77, 124, 255, 0.2), rgba(155, 114, 239, 0.12));
  border: 1px solid rgba(77, 124, 255, 0.25);
}
.site-cta-banner h2 { margin: 0 0 6px; font-family: var(--site-display); font-size: 1.35rem; }
.site-cta-sub { margin: 0; color: var(--site-muted); font-size: 14px; }
.site-cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.site-newsletter-section .site-newsletter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 480px;
}
.site-newsletter input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: var(--site-text);
  font-family: inherit;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 24px;
  text-align: left;
}
.site-footer-h {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--site-muted);
  margin-bottom: 10px;
}
.site-footer-grid a {
  display: block;
  margin: 6px 0;
  color: #a8c4ff;
  text-decoration: none;
  font-size: 14px;
}
.site-footer-grid a:hover { text-decoration: underline; }
.site-footer-grid a:focus-visible {
  text-decoration: underline;
  border-radius: 4px;
}
.site-footer-desc { font-size: 13px; color: var(--site-muted); line-height: 1.5; margin: 0; }
.site-footer-desc a { color: #a8c4ff; }
.site-footer-copy {
  margin-top: 20px;
  font-size: 12px;
  color: var(--site-muted);
  text-align: center;
}

.site-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.site-reveal-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.site-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  position: relative;
}
.site-menu-btn::before,
.site-menu-btn::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--site-text);
  border-radius: 1px;
}
.site-menu-btn::before { top: 13px; box-shadow: 0 6px 0 var(--site-text); }
.site-menu-btn::after { bottom: 13px; }

.site-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 45;
  opacity: 0;
  transition: opacity 0.2s;
}
.site-nav-overlay.show {
  display: block;
  opacity: 1;
}

.site-search-label { display: none; }

.site-top-search {
  width: 140px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
  color: var(--site-text);
  font-size: 12px;
  font-family: var(--site-font);
}
.site-top-search:focus {
  outline: none;
  border-color: var(--site-accent);
  width: 180px;
}

@media (max-width: 960px) {
  .site-stats { grid-template-columns: repeat(2, 1fr); }
  .site-compare { grid-template-columns: 1fr; }
  .site-top-search { display: none; }
}

@media (max-width: 720px) {
  .site-nav .site-nav-links.site-nav-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 88vw);
    height: 100vh;
    margin: 0;
    padding: 72px 20px 24px;
    background: rgba(3, 6, 15, 0.97);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 50;
    gap: 4px;
  }
  .site-nav-drawer.open { transform: translateX(0); }
  .site-nav .site-nav-links.site-nav-drawer a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .site-menu-btn { display: block; }
  .site-nav-actions { gap: 6px; }
  .site-nav-actions .site-btn-ghost { padding: 8px 12px; font-size: 13px; }
}

@media (prefers-contrast: more) {
  .muted {
    color: #a8b8d8;
  }
  .site-nav,
  .site-card,
  .site-price,
  .auth-card {
    border-color: rgba(255, 255, 255, 0.28);
  }
  .site-nav-links a,
  .site-footer-grid a {
    color: #c5d0e8;
  }
  .site-btn-ghost {
    border-color: rgba(255, 255, 255, 0.22);
  }
}

@media print {
  body.site-body { background: #fff; color: #111; }
  .offline-banner { display: none !important; }
  .site-nav { position: static; background: transparent; border-bottom: 1px solid #ccc; backdrop-filter: none; }
}

/* ════════════════════════════════════════════════════════════
   AUTH — SPLIT PANEL LAYOUT
════════════════════════════════════════════════════════════ */
.auth-body { padding: 0; margin: 0; min-height: 100vh; }

.auth-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* Left brand panel */
.auth-panel-left {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(4,10,28,0.98) 0%, rgba(8,15,36,0.98) 100%);
  border-right: 1px solid rgba(77,124,255,0.15);
  padding: 0;
  display: flex;
  flex-direction: column;
}

.auth-panel-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(28px, 5vh, 52px) clamp(28px, 4vw, 52px);
}

.auth-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.auth-glow-1 {
  width: 400px; height: 400px;
  top: -80px; left: -80px;
  background: rgba(77,124,255,0.25);
}
.auth-glow-2 {
  width: 300px; height: 300px;
  bottom: 60px; right: -60px;
  background: rgba(155,114,239,0.2);
}

/* Right form panel */
.auth-panel-right {
  background: var(--site-bg, #03060f);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vh, 48px) clamp(20px, 4vw, 52px);
}

.auth-form-wrap {
  width: 100%;
  max-width: 420px;
}

/* Logo */
.auth-logo-link, .auth-logo-mobile {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--site-text, #e8ecf4);
  margin-bottom: 36px;
}
.auth-logo-mobile { display: none; }
.auth-logo-hex {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #4d7cff, #9b72ef);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--site-display, "Syne", sans-serif);
  font-size: 12px; font-weight: 900; color: #fff;
  box-shadow: 0 4px 18px rgba(77,124,255,0.45);
  flex-shrink: 0;
}
.auth-logo-name {
  font-family: var(--site-display, "Syne", sans-serif);
  font-size: 18px; font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--site-text, #e8ecf4);
}

/* Panel headline */
.auth-panel-headline {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 32px;
}
.auth-panel-headline h2 {
  font-family: var(--site-display, "Syne", sans-serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: var(--site-text, #e8ecf4);
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.auth-panel-headline p {
  font-size: 15px;
  color: var(--site-muted, #7a8aad);
  line-height: 1.6;
  margin: 0;
  max-width: 340px;
}

/* Trust list */
.auth-trust-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.auth-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.auth-trust-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.auth-trust-green { background: rgba(0,232,148,0.15); color: #00e894; }
.auth-trust-blue  { background: rgba(77,124,255,0.15); color: #4d7cff; }
.auth-trust-violet{ background: rgba(155,114,239,0.15); color: #9b72ef; }
.auth-trust-list li > div:last-child { min-width: 0; }
.auth-trust-list strong { display: block; font-size: 13px; font-weight: 700; color: var(--site-text, #e8ecf4); margin-bottom: 2px; }
.auth-trust-list span { font-size: 12px; color: var(--site-muted, #7a8aad); line-height: 1.4; }

/* Panel stats bar */
.auth-panel-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.auth-pstat { flex: 1; text-align: center; }
.auth-pstat strong { display: block; font-family: var(--site-display,"Syne",sans-serif); font-size: 16px; font-weight: 800; color: var(--site-text,#e8ecf4); }
.auth-pstat span { font-size: 10px; color: var(--site-muted,#7a8aad); text-transform: uppercase; letter-spacing: 0.08em; }
.auth-pstat-sep { width: 1px; height: 32px; background: rgba(255,255,255,0.1); flex-shrink: 0; margin: 0 4px; }

/* Form head */
.auth-form-head { margin-bottom: 24px; }
.auth-form-head h1 {
  font-family: var(--site-display,"Syne",sans-serif);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 900;
  color: var(--site-text,#e8ecf4);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.auth-sub { font-size: 14px; color: var(--site-muted,#7a8aad); margin: 0; line-height: 1.5; }
.auth-link { color: #4d7cff; text-decoration: none; font-weight: 500; transition: color 0.15s; }
.auth-link:hover { color: #7fa0ff; text-decoration: underline; }

/* Discord button (large) */
.auth-discord-lg {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 12px;
  background: #5865f2;
  color: #fff;
  font-family: var(--site-font,"Outfit",sans-serif);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.2,0.8,0.2,1);
  box-shadow: 0 4px 16px rgba(88,101,242,0.4);
  margin-bottom: 4px;
}
.auth-discord-lg:hover { background: #4752c4; box-shadow: 0 8px 28px rgba(88,101,242,0.55); transform: translateY(-2px); }
.auth-discord-lg:active { transform: scale(0.98); }
.auth-discord-lg:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Divider */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--site-muted,#7a8aad);
  font-size: 13px;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

/* Form fields */
.auth-field {
  margin-bottom: 16px;
}
.auth-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--site-text,#e8ecf4);
  margin-bottom: 6px;
}
.auth-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.auth-label-row label { margin-bottom: 0; }
.auth-forgot { font-size: 12px; color: var(--site-muted,#7a8aad); text-decoration: none; transition: color 0.15s; }
.auth-forgot:hover { color: #4d7cff; }

.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.auth-input-icon {
  position: absolute;
  left: 13px;
  color: var(--site-muted,#7a8aad);
  pointer-events: none;
  flex-shrink: 0;
}
.auth-input-wrap input {
  width: 100%;
  padding: 11px 42px 11px 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 11px;
  color: var(--site-text,#e8ecf4);
  font-size: 14px;
  font-family: var(--site-font,"Outfit",sans-serif);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.auth-input-wrap input::placeholder { color: rgba(122,138,173,0.6); }
.auth-input-wrap input:focus {
  border-color: rgba(77,124,255,0.6);
  box-shadow: 0 0 0 3px rgba(77,124,255,0.15);
  background: rgba(255,255,255,0.07);
}
.auth-field-invalid .auth-input-wrap input { border-color: rgba(255,64,96,0.55); }
.auth-field-invalid .auth-input-wrap input:focus { box-shadow: 0 0 0 3px rgba(255,64,96,0.12); }
.auth-field-valid .auth-input-wrap input { border-color: rgba(0,232,148,0.45); }

.auth-pw-toggle {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  color: var(--site-muted,#7a8aad);
  cursor: pointer;
  padding: 4px;
  border-radius: 5px;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-pw-toggle:hover { color: var(--site-text,#e8ecf4); }

.auth-field-err {
  display: block;
  font-size: 12px;
  color: #f87171;
  margin-top: 5px;
  min-height: 16px;
}

/* Password strength */
.pw-strength-wrap {
  margin-top: 8px;
  opacity: 0;
  transition: opacity 0.25s;
}
.pw-strength-bar {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 5px;
}
.pw-strength-fill {
  height: 100%;
  border-radius: 99px;
  transition: width 0.35s cubic-bezier(0.2,0.8,0.2,1), background 0.35s;
  width: 0%;
}
.pw-strength-fill.pw-weak     { background: #ff4060; }
.pw-strength-fill.pw-fair     { background: #f5a623; }
.pw-strength-fill.pw-good     { background: #fbbf24; }
.pw-strength-fill.pw-strong   { background: #00e894; }
.pw-strength-fill.pw-excellent{ background: linear-gradient(90deg,#00e894,#4d7cff); }
.pw-strength-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.pw-strength-lbl.pw-weak     { color: #ff4060; }
.pw-strength-lbl.pw-fair     { color: #f5a623; }
.pw-strength-lbl.pw-good     { color: #fbbf24; }
.pw-strength-lbl.pw-strong   { color: #00e894; }
.pw-strength-lbl.pw-excellent{ color: #4d7cff; }

/* ToS checkbox row */
.auth-tos-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  cursor: pointer;
  font-size: 13px;
  color: var(--site-muted,#7a8aad);
  line-height: 1.5;
}
.auth-tos-row input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #4d7cff;
  cursor: pointer;
}

/* Submit button with loading state */
.auth-submit {
  width: 100%;
  justify-content: center;
  margin-bottom: 14px;
  position: relative;
  min-height: 46px;
}
.auth-submit .btn-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.auth-submit.btn-loading .btn-label { opacity: 0; }
.auth-submit.btn-loading .btn-spinner { display: block; position: absolute; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Alert boxes */
.auth-alert {
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.auth-alert-error { background: rgba(255,64,96,0.1); border: 1px solid rgba(255,64,96,0.3); color: #fca5a5; }
.auth-alert-info  { background: rgba(77,124,255,0.1); border: 1px solid rgba(77,124,255,0.3); color: #bfdbfe; }

/* Terms line */
.auth-terms { font-size: 11px; color: var(--site-muted,#7a8aad); text-align: center; margin: 0; line-height: 1.5; }

/* Responsive: stack on mobile */
@media (max-width: 860px) {
  .auth-split { grid-template-columns: 1fr; }
  .auth-panel-left { display: none; }
  .auth-panel-right { padding: 32px 24px; min-height: 100vh; align-items: flex-start; padding-top: 40px; }
  .auth-logo-mobile { display: inline-flex; }
  .auth-logo-link { display: none; }
  .auth-form-wrap { max-width: 440px; margin: 0 auto; width: 100%; }
}
@media (max-width: 480px) {
  .auth-panel-right { padding: 24px 20px; }
  .auth-form-head h1 { font-size: 22px; }
}

/* ════════════════════════════════════════════════════════════
   IMPROVED HERO SECTION
════════════════════════════════════════════════════════════ */
.site-hero {
  text-align: center;
  padding: clamp(60px, 8vw, 100px) 20px clamp(48px, 6vw, 72px);
  max-width: 800px;
  margin: 0 auto;
}
.site-hero h1 {
  font-family: var(--site-display,"Syne",sans-serif);
  font-size: clamp(36px, 6.5vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 16px 0 22px;
  background: linear-gradient(135deg, #fff 30%, #9b72ef 70%, #4d7cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.site-hero-lead {
  font-size: clamp(15px, 1.8vw, 19px);
  color: var(--site-muted,#7a8aad);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.site-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(77,124,255,0.1);
  border: 1px solid rgba(77,124,255,0.3);
  color: #7fa0ff;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.site-hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.site-hero-search-wrap { margin-bottom: 24px; }
.site-hero-search {
  width: min(100%, 440px);
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--site-text,#e8ecf4);
  font-size: 14px;
  font-family: var(--site-font,"Outfit",sans-serif);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.site-hero-search:focus {
  border-color: rgba(77,124,255,0.5);
  box-shadow: 0 0 0 3px rgba(77,124,255,0.12);
}

/* Command strip */
.site-cmd-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}
.site-cmd-strip .p { color: #4d7cff; font-weight: 600; }
.site-cmd-strip .a { color: var(--site-muted,#7a8aad); }
.site-cmd-strip > div { display: flex; gap: 6px; align-items: center; }

/* ════════════════════════════════════════════════════════════
   IMPROVED STATS SECTION
════════════════════════════════════════════════════════════ */
.site-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 0 20px;
}
.site-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 24px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.25s, border-color 0.25s;
  position: relative;
}
.site-stat:first-child { border-radius: 14px 0 0 14px; }
.site-stat:last-child  { border-radius: 0 14px 14px 0; }
.site-stat:hover { background: rgba(77,124,255,0.07); border-color: rgba(77,124,255,0.2); }
.site-stat-val {
  font-family: var(--site-display,"Syne",sans-serif);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 900;
  background: linear-gradient(135deg, #fff, #9b72ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.site-stat-lbl { font-size: 12px; color: var(--site-muted,#7a8aad); text-align: center; }

/* ════════════════════════════════════════════════════════════
   IMPROVED FEATURES GRID
════════════════════════════════════════════════════════════ */
.site-section { max-width: 1080px; margin: 0 auto; padding: clamp(48px,6vw,80px) 20px; }
.site-section > h2 {
  font-family: var(--site-display,"Syne",sans-serif);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  color: var(--site-text,#e8ecf4);
  text-align: center;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.site-section > p {
  text-align: center;
  color: var(--site-muted,#7a8aad);
  margin: 0 auto 40px;
  max-width: 580px;
  font-size: 16px;
  line-height: 1.6;
}
.site-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.site-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px 22px;
  transition: all 0.25s cubic-bezier(0.2,0.8,0.2,1);
  position: relative;
  overflow: hidden;
}
.site-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--cx,-500px) var(--cy,-500px), rgba(77,124,255,0.08), transparent 40%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.site-card:hover { border-color: rgba(77,124,255,0.3); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.3); }
.site-card:hover::before { opacity: 1; }
.site-card h3 { font-size: 15px; font-weight: 700; color: var(--site-text,#e8ecf4); margin: 0 0 8px; }
.site-card p { font-size: 13px; color: var(--site-muted,#7a8aad); margin: 0; line-height: 1.6; }
.site-card code { font-family: "JetBrains Mono",monospace; font-size: 11px; background: rgba(77,124,255,0.15); padding: 1px 5px; border-radius: 4px; color: #7fa0ff; }

/* ════════════════════════════════════════════════════════════
   IMPROVED PRICING
════════════════════════════════════════════════════════════ */
.site-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}
.site-price {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.25s;
  position: relative;
}
.site-price.featured {
  background: rgba(77,124,255,0.08);
  border-color: rgba(77,124,255,0.4);
  box-shadow: 0 0 0 1px rgba(77,124,255,0.2), 0 16px 48px rgba(77,124,255,0.15);
}
.site-price.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg,#4d7cff,#9b72ef);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.site-price:hover { border-color: rgba(77,124,255,0.35); transform: translateY(-2px); }
.site-price h3 { font-family: var(--site-display,"Syne",sans-serif); font-size: 18px; font-weight: 800; color: var(--site-text,#e8ecf4); margin: 0 0 12px; }
.site-price .amt { font-family: var(--site-display,"Syne",sans-serif); font-size: 36px; font-weight: 900; color: var(--site-text,#e8ecf4); }
.site-price .per { font-size: 14px; color: var(--site-muted,#7a8aad); }
.site-price ul { list-style: none; padding: 0; margin: 18px 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.site-price ul li { font-size: 14px; color: var(--site-muted,#7a8aad); display: flex; gap: 8px; align-items: flex-start; line-height: 1.4; }
.site-price ul li::before { content: '✓'; color: #00e894; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ════════════════════════════════════════════════════════════
   IMPROVED COMPARISON
════════════════════════════════════════════════════════════ */
.site-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 700px;
  margin: 0 auto;
}
.site-compare-col {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px 22px;
}
.site-compare-win { border-color: rgba(77,124,255,0.35); background: rgba(77,124,255,0.06); }
.site-compare-col h3 { font-size: 15px; font-weight: 700; color: var(--site-text,#e8ecf4); margin: 0 0 16px; }
.site-compare-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-compare-col ul li { font-size: 13px; color: var(--site-muted,#7a8aad); display: flex; gap: 8px; }
.site-compare-col ul li::before { content: '✗'; color: #ff4060; font-weight: 700; flex-shrink: 0; }
.site-compare-win ul li::before { content: '✓'; color: #00e894; }
.site-compare-col code { font-family: "JetBrains Mono",monospace; font-size: 11px; background: rgba(77,124,255,0.15); padding: 1px 5px; border-radius: 4px; color: #7fa0ff; }

/* ════════════════════════════════════════════════════════════
   IMPROVED FAQ
════════════════════════════════════════════════════════════ */
.site-faq { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.site-faq-item { border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; overflow: hidden; background: rgba(255,255,255,0.02); transition: border-color 0.2s; }
.site-faq-item:hover { border-color: rgba(77,124,255,0.25); }
.site-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--site-text,#e8ecf4);
  font-family: var(--site-font,"Outfit",sans-serif);
  text-align: left;
  gap: 12px;
  transition: color 0.15s;
}
.site-faq-q:hover { color: #4d7cff; }
.site-faq-ico { font-size: 18px; color: var(--site-muted,#7a8aad); transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1); flex-shrink: 0; }
.site-faq-item.open .site-faq-ico { transform: rotate(90deg); color: #4d7cff; }
.site-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  font-size: 14px;
  color: var(--site-muted,#7a8aad);
  line-height: 1.65;
  padding: 0 18px;
}
.site-faq-item.open .site-faq-a { max-height: 300px; padding: 0 18px 16px; }
.site-faq-a code { font-family: "JetBrains Mono",monospace; font-size: 11px; background: rgba(77,124,255,0.15); padding: 1px 5px; border-radius: 4px; color: #7fa0ff; }

/* ════════════════════════════════════════════════════════════
   IMPROVED CTA BANNER
════════════════════════════════════════════════════════════ */
.site-cta-banner {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(36px,5vw,60px) clamp(24px,4vw,52px);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(77,124,255,0.12) 0%, rgba(155,114,239,0.12) 100%);
  border: 1px solid rgba(77,124,255,0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.site-cta-banner::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(77,124,255,0.2), transparent 70%);
  pointer-events: none;
}
.site-cta-banner h2 {
  font-family: var(--site-display,"Syne",sans-serif);
  font-size: clamp(20px,2.8vw,28px);
  font-weight: 900;
  color: var(--site-text,#e8ecf4);
  margin: 0 0 6px;
}
.site-cta-sub { font-size: 15px; color: var(--site-muted,#7a8aad); margin: 0; }
.site-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════
   IMPROVED FOOTER
════════════════════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: clamp(40px,5vw,64px) 20px clamp(24px,3vw,36px);
  max-width: 1080px;
  margin: 40px auto 0;
}
.site-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer-desc {
  font-size: 13px;
  color: var(--site-muted,#7a8aad);
  line-height: 1.6;
  margin: 8px 0 0;
  max-width: 260px;
}
.site-footer-h {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--site-text,#e8ecf4);
  margin-bottom: 14px;
}
.site-footer-grid > div { display: flex; flex-direction: column; gap: 0; }
.site-footer-grid > div:not(:first-child) { gap: 2px; }
.site-footer-grid a {
  font-size: 13px;
  color: var(--site-muted,#7a8aad);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.15s;
  width: fit-content;
}
.site-footer-grid a:hover { color: var(--site-text,#e8ecf4); }
.site-footer-copy {
  font-size: 12px;
  color: rgba(122,138,173,0.5);
  text-align: center;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ════════════════════════════════════════════════════════════
   HOW-IT-WORKS STEPS
════════════════════════════════════════════════════════════ */
.site-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  counter-reset: steps;
  max-width: 640px;
  margin: 0 auto;
}
.site-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 18px 20px;
  counter-increment: steps;
  font-size: 14px;
  color: var(--site-muted,#7a8aad);
  line-height: 1.6;
  transition: border-color 0.2s;
}
.site-steps li:hover { border-color: rgba(77,124,255,0.3); }
.site-steps li::before {
  content: counter(steps);
  width: 28px; height: 28px;
  background: linear-gradient(135deg,#4d7cff,#9b72ef);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.site-steps li strong { color: var(--site-text,#e8ecf4); }
.site-steps li code { font-family: "JetBrains Mono",monospace; font-size: 11px; background: rgba(77,124,255,0.15); padding: 1px 5px; border-radius: 4px; color: #7fa0ff; }

/* ════════════════════════════════════════════════════════════
   TOAST IMPROVEMENTS (shared with auth pages)
════════════════════════════════════════════════════════════ */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 99999; display: flex; flex-direction: column; gap: 8px; pointer-events: none; max-width: 360px; }
.toast { display: flex; align-items: flex-start; gap: 10px; padding: 13px 16px; border-radius: 12px; font-size: 13px; font-weight: 500; line-height: 1.45; backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08); animation: toastIn 0.32s cubic-bezier(0.34,1.56,0.64,1) both; pointer-events: auto; word-break: break-word; border: 1px solid; }
.toast-success { background: rgba(0,232,148,0.12); border-color: rgba(0,232,148,0.3); color: #a7f3d0; }
.toast-error   { background: rgba(255,64,96,0.12);  border-color: rgba(255,64,96,0.3);  color: #fca5a5; }
.toast-warning { background: rgba(245,166,35,0.12); border-color: rgba(245,166,35,0.3); color: #fde68a; }
.toast-info    { background: rgba(77,124,255,0.12); border-color: rgba(77,124,255,0.3); color: #bfdbfe; }
@keyframes toastIn { from { opacity: 0; transform: translateY(14px) scale(0.93); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* ════════════════════════════════════════════════════════════
   OFFLINE BANNER (marketing)
════════════════════════════════════════════════════════════ */
.offline-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  text-align: center; padding: 10px 16px;
  font-size: 13px; font-weight: 500;
  background: rgba(245,166,35,0.12);
  border-bottom: 1px solid rgba(245,166,35,0.3);
  color: #fde68a;
  backdrop-filter: blur(12px);
}
.offline-banner.hidden { display: none !important; }

/* ════════════════════════════════════════════════════════════
   SITE BUTTONS (improved)
════════════════════════════════════════════════════════════ */
.site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--site-font,"Outfit",sans-serif);
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.2,0.8,0.2,1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.site-btn-primary {
  background: linear-gradient(135deg, #4d7cff 0%, #7b5ea7 50%, #4d7cff 100%);
  background-size: 200% 200%;
  animation: gradientFlow 4s ease infinite;
  color: #fff;
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 4px 18px rgba(77,124,255,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.site-btn-primary:hover { box-shadow: 0 8px 32px rgba(77,124,255,0.6), 0 0 12px rgba(77,124,255,0.3); transform: translateY(-2px) scale(1.02); filter: brightness(1.12); }
.site-btn-primary:active { transform: scale(0.97); }
.site-btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--site-text,#e8ecf4);
  border-color: rgba(255,255,255,0.12);
}
.site-btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); transform: translateY(-1px); }
.site-btn-ghost:active { transform: scale(0.97); }
@keyframes gradientFlow { 0%,100% { background-position:0% 50%; } 50% { background-position:100% 50%; } }

/* ════════════════════════════════════════════════════════════
   SKIP LINK
════════════════════════════════════════════════════════════ */
.skip-link {
  position: fixed; left: 12px; top: -100px; z-index: 10000;
  padding: 10px 16px; background: #4d7cff; color: #fff;
  font-weight: 700; font-size: 13px; border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: top 0.2s; text-decoration: none;
}
.skip-link:focus { top: 12px; outline: 2px solid #fff; outline-offset: 2px; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE IMPROVEMENTS
════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .site-stats { grid-template-columns: repeat(2, 1fr); }
  .site-stats .site-stat:nth-child(2) { border-radius: 0 14px 0 0; }
  .site-stats .site-stat:nth-child(3) { border-radius: 0 0 0 14px; }
  .site-grid { grid-template-columns: repeat(2, 1fr); }
  .site-pricing { grid-template-columns: 1fr; max-width: 400px; }
  .site-compare { grid-template-columns: 1fr; }
  .site-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-top-search { display: none; }
}
@media (max-width: 640px) {
  .site-grid { grid-template-columns: 1fr; }
  .site-stats { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .site-hero-cta { gap: 8px; }
  .site-cta-banner { flex-direction: column; align-items: flex-start; }
  .site-cta-actions { width: 100%; }
  .site-footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .site-pricing { max-width: 100%; }
}
@media (max-width: 720px) {
  .site-nav .site-nav-links.site-nav-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: min(300px, 88vw);
    height: 100vh;
    margin: 0;
    padding: 72px 20px 24px;
    background: rgba(3,6,15,0.97);
    border-left: 1px solid rgba(255,255,255,0.08);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 50;
    gap: 4px;
  }
  .site-nav-drawer.open { transform: translateX(0); }
  .site-nav .site-nav-links.site-nav-drawer a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .site-menu-btn { display: block; }
  .site-nav-actions { gap: 6px; }
  .site-nav-actions .site-btn-ghost { padding: 8px 12px; font-size: 13px; }
}

