/* ── Variables ── */
:root {
  --bg: #060810;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.16);
  --accent: #4ef0c4;
  --accent2: #a78bfa;
  --accent-glow: rgba(78,240,196,0.12);
  --accent2-glow: rgba(167,139,250,0.12);
  --text: #e8eaf2;
  --text-muted: #2e3050;
  --text-mid: #6b6e8a;
  --nav-h: 62px;
  --red: #f87171;
  --page-pad: 60px;
  --max-w: 1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Stars canvas ── */
#stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-pad);
  background: rgba(6,8,16,0.7);
  backdrop-filter: blur(32px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
  cursor: pointer;
  letter-spacing: -0.04em;
  user-select: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }

.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--text-mid);
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav-burger:hover { color: var(--text); background: var(--surface); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }

.nav-cta {
  background: var(--accent) !important;
  color: #060810 !important;
  font-weight: 700 !important;
  border-radius: 9px !important;
  margin-left: 4px;
}
.nav-cta:hover { opacity: 0.88 !important; transform: translateY(-1px); }

/* Status badge */
.nav-status {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-mid);
  white-space: nowrap;
  cursor: default;
}
.nav-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: background 0.4s;
  flex-shrink: 0;
}
.nav-status.online .nav-status-dot  { background: var(--accent); box-shadow: 0 0 7px rgba(78,240,196,0.8); animation: pulse-dot 2.4s ease-in-out infinite; }
.nav-status.online .nav-status-label { color: var(--accent); }
.nav-status.offline .nav-status-dot  { background: var(--red); box-shadow: 0 0 6px rgba(248,113,113,0.5); }
.nav-status.offline .nav-status-label { color: var(--red); }

/* ══════════════════════════════════════════
   PAGES
══════════════════════════════════════════ */
.page { display: none; position: relative; z-index: 1; }
.page.active { display: block; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: var(--nav-h) var(--page-pad) 60px;
  max-width: var(--max-w);
  margin: 0 auto;
  overflow: hidden;
}

/* ambient glow orbs */
.hero-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(78,240,196,0.055) 0%, transparent 70%);
  top: -180px; left: -180px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(167,139,250,0.07) 0%, transparent 70%);
  bottom: 40px; right: -60px;
}

.hero-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.55s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.grad {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 11px 20px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
}
.btn-icon { width: 14px; height: 14px; flex-shrink: 0; }
.btn-primary {
  background: var(--accent);
  color: #060810;
  font-weight: 700;
  box-shadow: 0 0 32px rgba(78,240,196,0.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 48px rgba(78,240,196,0.35); }
.btn-ghost {
  background: var(--surface);
  color: var(--text-mid);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--text); border-color: var(--border-hover); transform: translateY(-1px); }
.btn-red {
  background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.18);
  color: var(--red);
}
.btn-red:hover { background: rgba(248,113,113,0.14); transform: translateY(-1px); }

/* ── Hero Pills ── */
.hero-pills {
  flex: 0 0 260px;
  position: relative;
  height: 280px;
  overflow: visible;
  z-index: 1;
  animation: fadeUp 0.55s 0.12s ease both;
}
.pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  white-space: nowrap;
  backdrop-filter: blur(16px);
  transition: border-color 0.2s, color 0.2s;
  animation: floatPill ease-in-out infinite;
}
.pill:hover { border-color: var(--border-hover); color: var(--text); }
.pill-svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--accent); }
.pill-2 .pill-svg, .pill-4 .pill-svg { color: var(--accent2); }
.pill-1 { top: 0px;   left: 0;    animation-duration: 7s;   animation-delay: 0s; }
.pill-2 { top: 72px;  left: 20px; animation-duration: 9s;   animation-delay: -2.5s; }
.pill-3 { top: 144px; left: 4px;  animation-duration: 6.5s; animation-delay: -5s; }
.pill-4 { top: 212px; left: 24px; animation-duration: 8s;   animation-delay: -1.5s; }

/* ══════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════ */
.stats-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.014);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 52px;
  gap: 5px;
}
.stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.025em;
}
.stat-label {
  font-size: 0.66rem;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ══════════════════════════════════════════
   MARQUEE TICKER
══════════════════════════════════════════ */
.marquee-strip {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
  will-change: transform;
}
.marquee-item {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.marquee-sep { color: var(--text-muted); opacity: 0.4; font-size: 0.6rem; }
.tier-s-item { color: #f1c40f; }
.tier-a-item { color: #2ecc71; }
.tier-b-item { color: #3498db; }

/* ══════════════════════════════════════════
   LIVE CHECKER
══════════════════════════════════════════ */
.checker-section {
  position: relative;
  z-index: 1;
  padding: 100px var(--page-pad);
  border-bottom: 1px solid var(--border);
}
.checker-inner {
  max-width: 660px;
  margin: 0 auto;
}
.checker-label-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.checker-sub {
  color: var(--text-mid);
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.checker-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.checker-box:focus-within {
  border-color: rgba(78,240,196,0.35);
  box-shadow: 0 0 40px rgba(78,240,196,0.06);
}
.checker-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}
.checker-icon { width: 16px; height: 16px; color: var(--text-muted); flex-shrink: 0; }
#checkerInput {
  flex: 1;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  min-width: 0;
}
#checkerInput::placeholder { color: var(--text-muted); }
.checker-len { font-size: 0.7rem; color: var(--text-muted); flex-shrink: 0; }

.checker-result {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 22px;
  transition: background 0.2s;
}
.checker-result.hidden { display: none; }
.cr-grade {
  font-family: 'Syne', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  width: 52px;
  text-align: center;
  flex-shrink: 0;
}
.tier-s .cr-grade  { color: #f1c40f; text-shadow: 0 0 20px rgba(241,196,15,0.4); }
.tier-a .cr-grade  { color: #2ecc71; text-shadow: 0 0 20px rgba(46,204,113,0.3); }
.tier-b .cr-grade  { color: #3498db; text-shadow: 0 0 20px rgba(52,152,219,0.3); }
.tier-c .cr-grade  { color: #e67e22; }
.tier-df .cr-grade { color: var(--text-mid); }
.cr-details { flex: 1; min-width: 0; }
.cr-name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cr-bar-wrap {
  height: 3px;
  background: var(--border);
  border-radius: 99px;
  margin-bottom: 10px;
  overflow: hidden;
}
.cr-bar {
  height: 100%;
  border-radius: 99px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transition: width 0.6s cubic-bezier(0.16,1,0.3,1);
}
.cr-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-mid);
  flex-wrap: wrap;
}
.cr-score { color: var(--text); font-weight: 600; }
.cr-sep { opacity: 0.4; }
.cr-val { color: var(--accent); font-weight: 500; }

.checker-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 22px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ══════════════════════════════════════════
   BENTO FEATURES
══════════════════════════════════════════ */
.bento-section {
  position: relative;
  z-index: 1;
  padding: 80px var(--page-pad) 60px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .eyebrow { justify-content: center; margin-bottom: 16px; }
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 14px;
}

/* Card base */
.bento-card {
  position: relative;
  background: rgba(255,255,255,0.028);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.bento-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

/* Grid placements */
.bento-big  { grid-column: span 7; display: flex; flex-direction: row; align-items: stretch; }
.bento-med  { grid-column: span 5; }
.bento-wide { grid-column: span 8; display: flex; flex-direction: row; align-items: stretch; }
.bento-sm   { grid-column: span 4; }

/* Glow overlays */
.bento-card-glow {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.bento-card:hover .bento-card-glow { opacity: 1; }
.bento-glow-green  { background: radial-gradient(ellipse at top left, rgba(78,240,196,0.07) 0%, transparent 60%); }
.bento-glow-purple { background: radial-gradient(ellipse at top left, rgba(167,139,250,0.08) 0%, transparent 60%); }
.bento-glow-mixed  { background: radial-gradient(ellipse at center, rgba(78,240,196,0.05) 0%, rgba(167,139,250,0.05) 50%, transparent 70%); }

.bento-card-inner {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
  flex: 1;
}
.bento-center {
  align-items: center;
  text-align: center;
  justify-content: center;
}

.bento-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bento-icon svg { width: 18px; height: 18px; }
.bento-icon-green  { background: rgba(78,240,196,0.1);  color: var(--accent); }
.bento-icon-purple { background: rgba(167,139,250,0.1); color: var(--accent2); }

.bento-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.bento-card p {
  font-size: 0.855rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Bento tags */
.bento-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.tag {
  font-size: 0.74rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(78,240,196,0.08);
  border: 1px solid rgba(78,240,196,0.15);
  color: var(--accent);
  font-family: 'DM Sans', monospace;
}
.tag-purple {
  background: rgba(167,139,250,0.08);
  border-color: rgba(167,139,250,0.15);
  color: var(--accent2);
}

/* Bento username preview (big card) */
.bento-preview {
  padding: 20px;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  flex-shrink: 0;
  width: 160px;
}
.bp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}
.bp-name { font-size: 0.8rem; font-weight: 600; color: var(--text); font-family: 'Syne', sans-serif; }
.bp-badge {
  font-size: 0.66rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 5px;
  font-family: 'Syne', sans-serif;
}
.bp-s  { background: rgba(241,196,15,0.12);  color: #f1c40f; }
.bp-a  { background: rgba(46,204,113,0.12);  color: #2ecc71; }
.bp-b  { background: rgba(52,152,219,0.12);  color: #3498db; }

/* Bento leaderboard preview */
.bento-lb {
  padding: 20px;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  flex-shrink: 0;
  width: 200px;
}
.lb-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}
.lb-medal { font-size: 0.9rem; flex-shrink: 0; }
.lb-name { font-size: 0.82rem; font-weight: 600; color: var(--text); flex: 1; font-family: 'Syne', sans-serif; }
.lb-score { font-size: 0.72rem; color: var(--accent); font-weight: 600; flex-shrink: 0; }

/* Bento big number */
.bento-big-num {
  font-family: 'Syne', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  background: linear-gradient(120deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.04em;
}
.bento-big-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 4px;
}

/* ══════════════════════════════════════════
   COMMANDS PAGE
══════════════════════════════════════════ */
.cmd-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 52px) var(--page-pad) 80px;
}
.cmd-header {
  margin-bottom: 36px;
}
.cmd-header .eyebrow { margin-bottom: 12px; }
.cmd-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 8px;
}
.cmd-header p { color: var(--text-mid); font-size: 0.9rem; }
.cmd-header code {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 0.85em;
  color: var(--accent);
  font-family: monospace;
}

.cmd-search {
  position: relative;
  margin-bottom: 20px;
}
.cmd-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px; height: 15px;
  color: var(--text-muted);
  pointer-events: none;
}
.cmd-search input {
  width: 100%;
  max-width: 400px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px 12px 44px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
}
.cmd-search input:focus { border-color: rgba(78,240,196,0.3); }
.cmd-search input::placeholder { color: var(--text-muted); }

.cmd-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.cmd-tab {
  background: none;
  border: none;
  color: var(--text-mid);
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 500;
  padding: 10px 16px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.cmd-tab:hover { color: var(--text); }
.cmd-tab.active { color: var(--text); border-bottom-color: var(--accent); }
.tab-count {
  font-size: 0.72rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 1px 7px;
  color: var(--text-mid);
}
.cmd-tab.active .tab-count { background: rgba(78,240,196,0.1); border-color: rgba(78,240,196,0.2); color: var(--accent); }

.cmd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 12px;
}
.cmd-card {
  background: rgba(255,255,255,0.018);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  position: relative;
}
.cmd-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  border-radius: 12px 0 0 12px;
  opacity: 0;
  transition: opacity 0.2s;
}
.cmd-card:hover {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.cmd-card:hover::before { opacity: 1; }
.cmd-name code {
  font-size: 0.85rem;
  color: var(--text);
  font-family: 'Courier New', monospace;
  font-weight: 600;
  word-break: break-all;
  letter-spacing: 0.01em;
}
.cmd-desc { font-size: 0.82rem; color: var(--text-mid); line-height: 1.55; }
.cmd-meta { display: flex; gap: 6px; flex-wrap: wrap; }
.cmd-badge {
  font-size: 0.68rem;
  padding: 3px 8px;
  border-radius: 5px;
  font-weight: 600;
}
.badge-cooldown { background: rgba(248,113,113,0.1); color: var(--red); border: 1px solid rgba(248,113,113,0.2); }
.badge-admin    { background: rgba(167,139,250,0.1); color: var(--accent2); border: 1px solid rgba(167,139,250,0.2); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.01);
}
.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px var(--page-pad) 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
  color: var(--text);
}
.footer-logo span { color: var(--accent); }
.footer-tagline { font-size: 0.855rem; color: var(--text-mid); line-height: 1.5; }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-mid);
  transition: all 0.18s;
}
.footer-social-btn:hover { color: var(--text); border-color: var(--border-hover); transform: translateY(-1px); }
.footer-social-btn-red { color: var(--red) !important; border-color: rgba(248,113,113,0.2) !important; background: rgba(248,113,113,0.06) !important; }
.footer-social-btn-red:hover { background: rgba(248,113,113,0.12) !important; }

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 2px;
}
.footer-col a {
  font-size: 0.855rem;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px var(--page-pad);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-copy a { color: var(--accent); text-decoration: none; }
.footer-copy a:hover { text-decoration: underline; }
.footer-ver {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.site-footer-sm .footer-bottom { padding: 22px var(--page-pad); }

/* ══════════════════════════════════════════
   DISCORD BOT MOCK CARD
══════════════════════════════════════════ */
.discord-card-wrap {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.55s 0.12s ease both;
}
.discord-card {
  width: 100%;
  background: rgba(28,30,40,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04) inset;
  transition: transform 0.3s, box-shadow 0.3s;
}
.discord-card:hover { transform: translateY(-4px); box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 40px rgba(78,240,196,0.06); }
.dc-header { display: flex; align-items: center; gap: 10px; }
.dc-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(78,240,196,0.12); border: 1px solid rgba(78,240,196,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dc-header-text { display: flex; flex-direction: column; gap: 1px; }
.dc-botname { font-size: 0.82rem; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 5px; }
.dc-badge { font-size: 0.58rem; font-weight: 700; padding: 2px 5px; border-radius: 4px; background: rgba(88,101,242,0.75); color: #fff; letter-spacing: 0.04em; }
.dc-ts { font-size: 0.68rem; color: var(--text-muted); }
.dc-cmd-line { font-family: 'DM Mono','Fira Code',monospace; font-size: 0.82rem; padding: 8px 12px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 8px; color: var(--text-mid); }
.dc-prefix { color: var(--accent); font-weight: 700; }
.dc-cmd { color: var(--text); }
.dc-arg { color: var(--accent2); }
.dc-embed { display: flex; border-radius: 6px; overflow: hidden; background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06); }
.dc-embed-bar { width: 4px; background: linear-gradient(180deg, var(--accent) 0%, var(--accent2) 100%); flex-shrink: 0; }
.dc-embed-body { padding: 12px 14px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.dc-embed-title { display: flex; align-items: center; gap: 10px; }
.dc-grade { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 800; line-height: 1; }
.dc-grade-s { color: #f1c40f; text-shadow: 0 0 16px rgba(241,196,15,0.5); }
.dc-embed-name { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text); }
.dc-embed-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.dc-field { display: flex; flex-direction: column; gap: 2px; }
.dc-field-name { font-size: 0.63rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.dc-field-val { font-size: 0.8rem; font-weight: 600; color: var(--text); }
.dc-val-accent { color: var(--accent); }
.dc-val-green { color: #4ade80; }
.dc-bar-wrap { height: 3px; background: rgba(255,255,255,0.07); border-radius: 99px; overflow: hidden; }
.dc-bar-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--accent), var(--accent2)); animation: barGrow 1.2s 0.8s cubic-bezier(0.16,1,0.3,1) both; }
@keyframes barGrow { from { width: 0 !important; } }
.dc-platforms { display: flex; flex-wrap: wrap; gap: 5px; }
.dc-plat { font-size: 0.65rem; padding: 2px 8px; border-radius: 5px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); color: var(--text-mid); }
.dc-plat-more { color: var(--accent2); border-color: rgba(167,139,250,0.2); background: rgba(167,139,250,0.06); }
.hero-mini-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.mini-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--text-mid); padding: 5px 12px; border-radius: 99px; border: 1px solid var(--border); background: var(--surface); backdrop-filter: blur(10px); }
.mini-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.dot-green { background: var(--accent); box-shadow: 0 0 6px rgba(78,240,196,0.7); animation: pulse 2.5s ease-in-out infinite; }
.dot-purple { background: var(--accent2); box-shadow: 0 0 6px rgba(167,139,250,0.7); animation: pulse 2.5s 0.8s ease-in-out infinite; }

/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
.how-section { position: relative; z-index: 1; padding: 96px var(--page-pad); border-bottom: 1px solid var(--border); }
.how-inner { max-width: 900px; margin: 0 auto; }
.how-header { text-align: center; margin-bottom: 52px; }
.how-header .eyebrow { justify-content: center; margin-bottom: 12px; }
.how-header .section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.how-steps { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; background: rgba(255,255,255,0.015); }
.how-step { position: relative; padding: 36px 30px; display: flex; flex-direction: column; gap: 14px; border-right: 1px solid var(--border); transition: background 0.2s; }
.how-step:last-child { border-right: none; }
.how-step:hover { background: rgba(255,255,255,0.02); }
.step-num { font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800; line-height: 1; letter-spacing: -0.04em; background: linear-gradient(120deg, var(--accent) 0%, var(--accent2) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; opacity: 0.75; }
.how-step-accent { opacity: 1; }
.step-content h3 { font-family: 'Syne', sans-serif; font-size: 0.98rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.step-content p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.6; }
.step-content code { background: rgba(78,240,196,0.08); border: 1px solid rgba(78,240,196,0.15); color: var(--accent); padding: 1px 6px; border-radius: 5px; font-size: 0.79rem; }
.step-arrow { position: absolute; top: 36px; right: -10px; font-size: 1rem; color: var(--border-hover); z-index: 2; }
.step-arrow-hidden { display: none; }

/* ══════════════════════════════════════════
   PLATFORMS SECTION
══════════════════════════════════════════ */
.platforms-section { position: relative; z-index: 1; padding: 80px var(--page-pad); border-bottom: 1px solid var(--border); text-align: center; }
.platforms-inner { max-width: 800px; margin: 0 auto; }
.platforms-sub { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 36px; }
.platform-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.plat-chip { font-size: 0.8rem; font-weight: 500; padding: 7px 16px; border-radius: 99px; border: 1px solid var(--border); background: rgba(255,255,255,0.03); color: var(--text-mid); transition: color 0.15s, border-color 0.15s, background 0.15s; cursor: default; }
.plat-chip:hover { color: var(--text); border-color: var(--border-hover); background: rgba(255,255,255,0.055); }
.plat-chip-more { color: var(--accent2); border-color: rgba(167,139,250,0.25); background: rgba(167,139,250,0.06); }

/* ══════════════════════════════════════════
   BOTTOM CTA SECTION
══════════════════════════════════════════ */
.cta-section { position: relative; z-index: 1; padding: 120px var(--page-pad); text-align: center; overflow: hidden; border-top: 1px solid var(--border); }
.cta-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(100px); }
.cta-orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(78,240,196,0.08) 0%, transparent 70%); top: -120px; left: 50%; transform: translateX(-70%); }
.cta-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(167,139,250,0.08) 0%, transparent 70%); bottom: -80px; right: 10%; }
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-title { font-family: 'Syne', sans-serif; font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.04em; margin-bottom: 18px; }
.cta-sub { font-size: 1rem; color: var(--text-mid); line-height: 1.65; max-width: 480px; margin: 0 auto 36px; }
.cta-buttons { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

/* Mobile overrides for new sections */
@media (max-width: 768px) {
  .discord-card-wrap { width: 100%; flex: none; }
  .dc-embed-row { grid-template-columns: repeat(3,1fr); gap: 5px; }
  .dc-field-val { font-size: 0.72rem; }
  .how-section { padding: 60px var(--page-pad); }
  .how-steps { grid-template-columns: 1fr; border-radius: 16px; }
  .how-step { border-right: none; border-bottom: 1px solid var(--border); padding: 26px 22px; flex-direction: row; align-items: flex-start; gap: 16px; }
  .how-step:last-child { border-bottom: none; }
  .step-num { font-size: 1.5rem; min-width: 34px; }
  .step-arrow { display: none; }
  .platforms-section { padding: 56px var(--page-pad); }
  .plat-chip { font-size: 0.75rem; padding: 6px 13px; }
  .cta-section { padding: 72px var(--page-pad); }
  .cta-title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .cta-sub { font-size: 0.9rem; }
}
@media (max-width: 400px) {
  .dc-embed-row { grid-template-columns: 1fr 1fr; }
  .how-step { padding: 20px 16px; gap: 12px; }
  .plat-chip { font-size: 0.72rem; padding: 5px 11px; }
}

/* ══════════════════════════════════════════
   LEGAL PAGES (ToS & Privacy)
══════════════════════════════════════════ */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 64px) var(--page-pad) 80px;
  position: relative;
  z-index: 1;
}
.legal-header { margin-bottom: 52px; }
.legal-header .eyebrow { margin-bottom: 14px; }
.legal-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 10px;
}
.legal-updated { color: var(--text-mid); font-size: 0.85rem; }
.legal-body { display: flex; flex-direction: column; gap: 0; }
.legal-section { padding: 28px 0; border-bottom: 1px solid var(--border); }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.legal-section p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.75; margin-bottom: 8px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section strong { color: var(--text); font-weight: 600; }

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatPill {
  0%   { transform: translateY(0px); }
  25%  { transform: translateY(-7px); }
  50%  { transform: translateY(-2px); }
  75%  { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   RESPONSIVE — Tablet 1100px
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  :root { --page-pad: 36px; }
  .bento-big  { grid-column: span 12; flex-direction: column; }
  .bento-med  { grid-column: span 6; }
  .bento-wide { grid-column: span 12; flex-direction: column; }
  .bento-sm   { grid-column: span 6; }
  .bento-preview, .bento-lb { border-left: none; border-top: 1px solid var(--border); width: 100%; flex-direction: row; flex-wrap: wrap; padding: 16px 20px; gap: 8px; }
  .bp-row, .lb-row { flex: 1 1 120px; }
  .bento-lb { width: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — Mobile 768px
══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --page-pad: 18px; }

  /* Nav */
  nav { padding: 0 18px; }
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(6,8,16,0.98);
    backdrop-filter: blur(28px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 10px 16px 18px;
    gap: 2px;
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; width: 100%; padding: 11px 14px; font-size: 0.92rem; }
  .nav-cta { text-align: center; margin-top: 6px; margin-left: 0; display: block !important; width: 100%; }
  .nav-status { width: 100%; justify-content: flex-start; padding: 11px 14px; border-radius: 10px; border-color: transparent; background: transparent; font-size: 0.92rem; }

  /* Hero */
  .hero {
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100svh;
    padding: calc(var(--nav-h) + 44px) var(--page-pad) 48px;
    gap: 36px;
  }
  h1 { font-size: clamp(2rem, 9vw, 2.8rem); line-height: 1.1; }
  .hero-sub { font-size: 0.9rem; max-width: 100%; }
  .btn { font-size: 0.82rem; padding: 10px 16px; }
  .hero-pills {
    width: 100%; height: auto; position: static;
    display: flex; flex-wrap: wrap; gap: 8px;
  }
  .pill {
    position: static !important;
    animation: none !important;
    transform: none !important;
    font-size: 0.77rem;
    padding: 8px 14px;
  }

  /* Stats */
  .stats-bar { flex-wrap: wrap; }
  .stat { padding: 20px 16px; flex: 1 1 50%; min-width: 0; }
  .stat:nth-child(1), .stat:nth-child(3) { border-right: 1px solid var(--border); }
  .stat-divider { display: none; }
  .stat-val { font-size: 1.5rem; }

  /* Checker */
  .checker-section { padding: 60px var(--page-pad); }
  .checker-input-wrap { padding: 14px 16px; }
  #checkerInput { font-size: 0.92rem; }
  .checker-result { gap: 12px; padding: 16px; }
  .cr-grade { font-size: 2rem; width: 42px; }
  .cr-meta { font-size: 0.7rem; gap: 5px; }
  .cr-sep { display: none; }

  /* Bento */
  .bento-section { padding: 60px var(--page-pad); }
  .section-header { margin-bottom: 40px; }
  .bento-grid { grid-template-columns: 1fr; gap: 10px; }
  .bento-big, .bento-med, .bento-wide, .bento-sm { grid-column: span 1; }
  .bento-preview, .bento-lb { border-top: 1px solid var(--border); width: 100%; flex-direction: row; flex-wrap: wrap; padding: 14px 18px; gap: 8px; }
  .bento-card-inner { padding: 22px 20px; }

  /* Commands */
  .cmd-page { padding: calc(var(--nav-h) + 28px) var(--page-pad) 60px; }
  .cmd-grid { grid-template-columns: 1fr; gap: 8px; }
  .cmd-search input { max-width: 100%; }
  .cmd-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 2px; -webkit-overflow-scrolling: touch; }
  .cmd-tab { padding: 10px 12px; font-size: 0.76rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 40px var(--page-pad) 32px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-copy { font-size: 0.78rem; }

  /* Legal */
  .legal-page { padding-top: calc(var(--nav-h) + 36px); }
}

/* ══════════════════════════════════════════
   RESPONSIVE — Small 400px
══════════════════════════════════════════ */
@media (max-width: 400px) {
  :root { --page-pad: 14px; }
  h1 { font-size: 1.85rem; }
  .btn { padding: 9px 13px; font-size: 0.79rem; }
  .stat-val { font-size: 1.3rem; }
  .cr-grade { font-size: 1.8rem; width: 36px; }
  .bento-big-num { font-size: 2.4rem; }
}

/* ── Two-card hero layout ────────────────────────────────────────── */
.hero-cards-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  flex-shrink: 0;
}
.hero-cards-wrap .discord-card-wrap {
  width: 340px;
}
.hero-mini-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ── Browser card ────────────────────────────────────────────────── */
.browser-card { }
.browser-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--fg);
  margin-bottom: 2px;
}
.browser-sub {
  font-size: 0.72rem;
  color: var(--fg-muted);
  margin-bottom: 10px;
}
.browser-plat-row {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}
.browser-plat-btn {
  font-size: 0.68rem;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  color: var(--fg-muted);
  border: 1px solid var(--border);
  cursor: default;
  transition: all 0.2s;
}
.browser-plat-active {
  background: rgba(78,240,196,0.12);
  color: var(--accent);
  border-color: rgba(78,240,196,0.3);
}
.browser-names {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-bottom: 10px;
}
.bn {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  padding: 4px 6px;
  border-radius: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  text-align: center;
  color: var(--fg-muted);
  transition: opacity 0.4s;
}
.bn-s { color: #f1c40f; border-color: rgba(241,196,15,0.2); background: rgba(241,196,15,0.06); }
.bn-a { color: #2ecc71; border-color: rgba(46,204,113,0.2); background: rgba(46,204,113,0.06); }
.bn-b { color: #3498db; border-color: rgba(52,152,219,0.2); background: rgba(52,152,219,0.06); }
.browser-footer-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.67rem;
  color: var(--fg-muted);
  opacity: 0.7;
  border-top: 1px solid var(--border);
  padding-top: 6px;
}

/* ── Responsive tweaks for two cards ────────────────────────────── */
@media (max-width: 1100px) {
  .hero-cards-wrap { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .hero-cards-wrap .discord-card-wrap { width: 300px; }
}
@media (max-width: 680px) {
  .hero-cards-wrap { width: 100%; }
  .hero-cards-wrap .discord-card-wrap { width: 100%; max-width: 340px; }
  .browser-card-wrap { display: none; }
}

/* Browser names fade transition */
.browser-names {
  transition: opacity 0.35s ease;
}

/* Override old single-card wrap when inside hero-cards-wrap */
.hero-cards-wrap .discord-card-wrap {
  flex: none;
  width: 300px;
  animation: fadeUp 0.55s 0.12s ease both;
}
.hero-cards-wrap .browser-card-wrap {
  animation: fadeUp 0.55s 0.25s ease both;
}

/* ── Hero inline stats row ────────────────────────────────────────── */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 32px;
  padding: 18px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  max-width: 480px;
}
.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 3px;
}
.hero-stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.025em;
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 0.62rem;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 680px) {
  .hero-stats-row { max-width: 100%; padding: 14px 16px; }
  .hero-stat-val { font-size: 1.2rem; }
}

/* ── Popped hero buttons ──────────────────────────────────────────── */
.btn-commands {
  background: rgba(167,139,250,0.1);
  color: #c4b5fd;
  border: 1.5px solid rgba(167,139,250,0.55);
  font-weight: 700;
  box-shadow: 0 0 20px rgba(167,139,250,0.08);
}
.btn-commands:hover {
  background: rgba(167,139,250,0.18);
  border-color: rgba(167,139,250,0.8);
  color: #ddd6fe;
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(167,139,250,0.2);
}
.btn-support {
  background: rgba(88,101,242,0.1);
  color: #97a5f7;
  border: 1.5px solid rgba(88,101,242,0.55);
  font-weight: 700;
  box-shadow: 0 0 20px rgba(88,101,242,0.08);
}
.btn-support:hover {
  background: rgba(88,101,242,0.18);
  border-color: rgba(88,101,242,0.8);
  color: #b8c2fb;
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(88,101,242,0.22);
}
