:root {
  --font-base: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --bg: #000000;
  --bg-hero-top: #121212;
  --bg-hero-mid: #080808;
  --surface-card: #0d0d0d;
  --surface-card-hover: #171717;
  --surface-chip: rgba(255, 255, 255, 0.08);
  --surface-control-strong: rgba(255, 255, 255, 0.16);
  --text: #ffffff;
  --text-muted: #a1a1aa;
  --border: rgba(255, 255, 255, 0.12);
  --primary: #ffffff;
  --primary-hover: #e4e4e7;
  --primary-text: #000000;
  --ok: #86efac;
  --down: #fca5a5;
  --warn: #fde68a;
  --gutter: clamp(12px, 5vw, 120px);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 280px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-base);
  -webkit-font-smoothing: antialiased;
}
ul, li { list-style: none !important; }
a { color: inherit; text-decoration: none !important; }
button { font: inherit; border: 0; background: none; }
.brand-logo-img { height: clamp(28px, 4vw, 38px); width: auto; display: block; object-fit: contain; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #ffffff, #52525b); border-radius: 4px; }
.crt-overlay::after {
  content: " "; position: fixed; inset: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.35) 50%);
  background-size: 100% 4px; pointer-events: none; z-index: 999; opacity: 0.2;
}
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 40%, transparent 70%);
  pointer-events: none; transform: translate(-50%, -50%); z-index: 9998; mix-blend-mode: screen;
}
.spot-card { position: relative; }
.spot-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.3), transparent 40%);
  z-index: -1; opacity: 0; transition: opacity 0.25s;
}
.spot-card:hover::before { opacity: 1; }
@media (hover: none), (pointer: coarse) {
  .cursor-glow { display: none !important; }
  .spot-card:hover::before, .spot-card:active::before { opacity: 0 !important; }
}
.page { width: 100%; margin: 0 auto; position: relative; }
.container { width: 100%; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); max-width: 1400px; }
.hero {
  position: relative; width: calc(100% - clamp(16px, 4vw, 32px)); min-height: 72vh; margin: 16px auto 0;
  border-radius: clamp(20px, 4vw, 36px); display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--border); box-shadow: inset 0 1px 0 var(--surface-control-strong), 0 30px 120px rgba(0,0,0,0.9);
  background: radial-gradient(circle at 50% 20%, rgba(255,255,255,0.1), transparent 50%),
              linear-gradient(180deg, var(--bg-hero-top) 0%, var(--bg-hero-mid) 60%, var(--bg) 100%);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.glow { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.06); filter: blur(140px); }
.glow-center { width: min(800px, 100vw); height: 400px; left: 50%; top: 30%; transform: translateX(-50%); }
.glow-left { width: 300px; height: 300px; left: -50px; top: 20%; }
.glow-right { width: 300px; height: 300px; right: -50px; top: 30%; }
.navbar-wrap { position: relative; z-index: 10; padding: clamp(16px, 3vw, 32px) var(--gutter) 0; }
.navbar { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-links { display: flex; gap: clamp(12px, 2vw, 28px); }
.nav-link { font-size: 15px; font-weight: 500; color: var(--text-muted); transition: color 0.2s; white-space: nowrap; }
.nav-link:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: clamp(10px, 2vw, 20px); }
.nav-login { font-size: 15px; color: var(--text-muted); white-space: nowrap; }
.burger-menu { display: none; flex-direction: column; justify-content: space-between; width: 28px; height: 20px; cursor: pointer; z-index: 1001; }
.burger-menu span { width: 100%; height: 2px; background: #ffffff; border-radius: 2px; transition: all 0.3s ease; }
.burger-menu.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger-menu.active span:nth-child(2) { opacity: 0; }
.burger-menu.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; font-weight: 700; border-radius: 14px; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary); color: var(--primary-text);
  padding: clamp(10px, 2.5vw, 14px) clamp(18px, 4vw, 28px);
  font-size: clamp(13px, 2vw, 15px);
  box-shadow: 0 4px 25px rgba(255, 255, 255, 0.2);
}
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-3px) scale(1.02); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.hero-content { position: relative; z-index: 5; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: clamp(30px, 6vw, 60px) var(--gutter); }
.hero-meta { display: flex; align-items: center; gap: clamp(8px, 1.5vw, 12px); margin-bottom: clamp(16px, 3vw, 28px); flex-wrap: wrap; justify-content: center; }
.hero-pill { display: inline-flex; align-items: center; gap: 8px; padding: clamp(6px, 1.5vw, 10px) clamp(12px, 2vw, 18px); border-radius: 50px; background: var(--surface-chip); border: 1px solid var(--border); }
.hero-title { font-size: clamp(34px, 6vw, 72px); font-weight: 900; letter-spacing: -1.5px; max-width: 16ch; line-height: 1.05; }
.hero-sub { margin-top: 18px; color: var(--text-muted); font-size: clamp(14px, 2vw, 18px); max-width: 720px; line-height: 1.5; }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; width: min(720px, 100%); margin-top: 36px; }
.stat-card { background: var(--surface-card); border: 1px solid var(--border); border-radius: 18px; padding: 16px 12px; }
.stat-card b { display: block; font-size: clamp(20px, 3vw, 28px); margin-bottom: 4px; }
.stat-card span { color: var(--text-muted); font-size: 12px; }
.section { padding: clamp(40px, 8vw, 90px) 0; }
.section-title { font-size: clamp(22px, 4vw, 38px); font-weight: 800; margin-bottom: clamp(18px, 4vw, 32px); letter-spacing: -0.5px; text-align: center; }
.section-note { text-align: center; color: var(--text-muted); margin: -12px 0 28px; font-size: 14px; }
.cards-six { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: clamp(14px, 2.5vw, 24px); }
.card { position: relative; padding: clamp(18px, 3vw, 28px); border-radius: 24px; background: var(--surface-card); border: 1px solid var(--border); overflow: hidden; }
.card-kicker { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.card-title { font-size: clamp(16px, 2.2vw, 20px); font-weight: 800; margin-bottom: 8px; }
.card-text { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; background: #52525b; }
.dot.ok { background: var(--ok); box-shadow: 0 0 12px rgba(134, 239, 172, 0.4); }
.dot.down { background: var(--down); box-shadow: 0 0 12px rgba(252, 165, 165, 0.4); }
.dot.warn { background: var(--warn); }
.faq-list { display: grid; gap: 12px; }
.faq-item { border-radius: 18px; background: var(--surface-card); border: 1px solid var(--border); overflow: hidden; }
.faq-item summary {
  padding: clamp(14px, 2.5vw, 22px) clamp(16px, 3vw, 28px); font-size: clamp(14px, 2vw, 17px); font-weight: 700; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon-svg { display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; color: #ffffff; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-icon-svg svg { width: 100%; height: 100%; }
.faq-item[open] .faq-icon-svg { transform: rotate(45deg); }
.faq-content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease-out; }
.faq-item[open] .faq-content { grid-template-rows: 1fr; }
.faq-content-inner { overflow: hidden; padding: 0 clamp(16px, 3vw, 28px) clamp(16px, 2.5vw, 22px); color: var(--text-muted); font-size: clamp(13px, 1.8vw, 15px); line-height: 1.6; }
.summary-left { display: flex; align-items: center; gap: 12px; min-width: 0; }
.mini-flag { width: 28px; height: 18px; border-radius: 3px; overflow: hidden; flex-shrink: 0; }
.mini-flag svg { width: 100%; height: 100%; display: block; }
.summary-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.summary-meta { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 12px; font-weight: 600; }
.site-row { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--border); padding: 10px 0; }
.site-row:last-child { border-bottom: 0; }
.site-ok { color: var(--ok); }
.site-down { color: var(--down); }
.join { position: relative; text-align: center; padding: clamp(50px, 10vw, 100px) var(--gutter); background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%); }
.join-title { font-size: clamp(24px, 4vw, 54px); font-weight: 900; margin-bottom: 16px; }
.join-sub { color: var(--text-muted); font-size: clamp(14px, 2vw, 18px); margin-bottom: 30px; }
.join-actions { display: flex; justify-content: center; }
.footer { border-top: 1px solid var(--border); padding: clamp(40px, 6vw, 60px) var(--gutter) clamp(80px, 12vw, 100px); background: var(--surface-card); }
.footer-container { display: flex; justify-content: space-between; gap: 30px; max-width: 1400px; margin: 0 auto; }
.footer-brand { max-width: 350px; }
.brand-info { color: var(--text-muted); font-size: 14px; margin-top: 16px; line-height: 1.5; }
.footer-nav { display: flex; gap: clamp(30px, 6vw, 60px); }
.footer-column { display: flex; flex-direction: column; gap: 12px; }
.column-heading { color: var(--text); font-size: 15px; font-weight: 700; }
.column-link { color: var(--text-muted); font-size: 14px; }
@media (max-width: 1200px) { .cards-six { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
  .burger-menu { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 300px; height: 100vh;
    background: rgba(13, 13, 13, 0.98); flex-direction: column; justify-content: center; align-items: center; gap: 24px; padding: 40px;
    transition: right 0.3s ease; z-index: 1000;
  }
  .nav-links.active { right: 0; }
  .nav-login, .topbar-cta { display: none; }
  .cards-six, .hero-stats { grid-template-columns: 1fr; }
  .footer-container { flex-direction: column; }
}
