:root {
  --bg: #05070a;
  --bg-2: #0b0f14;
  --panel: #10161d;
  --ink: #e8edf2;
  --ink-2: #b4bec8;
  --muted: #7d8894;
  --line: #1c252f;
  --line-2: #2a3542;
  --acid: #c8f542;
  --acid-2: #9bc41f;
  --cyan: #5eead4;
  --header: 64px;
  --max: 1200px;
  --sans: "Space Grotesk", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; }
body.menu-open { overflow: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body::after {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 245, 66, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 245, 66, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 70% 0%, #000 20%, transparent 70%);
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; background: transparent; }
::selection { background: var(--acid); color: #05070a; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.mono {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acid);
  font-weight: 500;
}

h1, h2, h3 { font-weight: 500; letter-spacing: -0.04em; margin: 0 0 12px; }
h1 { font-size: clamp(2.6rem, 8vw, 5.4rem); line-height: 0.95; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 1.1; }
h3 { font-size: 1.15rem; letter-spacing: -0.02em; }
p { color: var(--ink-2); margin: 0 0 1em; }
.lead { font-size: 1.08rem; max-width: 36rem; color: var(--ink-2); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--header);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 10, 0.9);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo svg { width: 28px; height: 28px; }
.logo-name { font-size: 14px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.logo-name span { display: block; font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.16em; font-weight: 400; }

.nav { display: flex; gap: 22px; }
.nav a { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.nav a.active, .nav a:hover { color: var(--acid); }

.header-cta { display: flex; align-items: center; gap: 8px; }

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-2);
  cursor: pointer;
  place-items: center;
  z-index: 81;
}
.menu-btn span, .menu-btn span::before, .menu-btn span::after {
  display: block; width: 16px; height: 1px; background: var(--ink); position: relative; margin: auto;
}
.menu-btn span::before, .menu-btn span::after { content: ""; position: absolute; left: 0; }
.menu-btn span::before { top: -5px; }
.menu-btn span::after { top: 5px; }
.menu-btn.is-open span { background: transparent; }
.menu-btn.is-open span::before { top: 0; transform: rotate(45deg); }
.menu-btn.is-open span::after { top: 0; transform: rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 18px;
  border: 1px solid var(--acid);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
.btn-acid { background: var(--acid); color: #05070a; font-weight: 600; }
.btn-ghost { background: transparent; color: var(--acid); }
.btn-lg { height: 52px; padding: 0 22px; }

.ticker {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
  z-index: 1;
}
.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: tick 32s linear infinite;
  padding: 10px 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.ticker b { color: var(--acid); font-weight: 500; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.hero { padding: 48px 0 28px; position: relative; z-index: 1; }
.hero-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.status { color: var(--acid); }

.hero h1 span {
  display: block;
  color: var(--acid);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: end;
  margin-top: 28px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 0; }

.term {
  background: var(--panel);
  border: 1px solid var(--line-2);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.7;
}
.term-bar {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.term-body { padding: 16px; color: var(--ink-2); }
.term-body .ok { color: var(--acid); }
.term-body .no { color: #ff6b6b; }

.matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  margin-top: 48px;
}
.matrix div {
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.matrix div:nth-child(4n) { border-right: 0; }
.matrix kbd {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--acid);
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.matrix b {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.matrix span { color: var(--muted); font-size: 13px; }

.section { padding: 64px 0; position: relative; z-index: 1; }
.section-line { border-top: 1px solid var(--line); }

.rows { display: grid; gap: 0; border-top: 1px solid var(--line); }
.row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.row strong { color: var(--ink); font-size: 1.2rem; font-weight: 500; display: block; margin-bottom: 6px; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
}
.split > * { padding: 32px; }
.split > :first-child { border-right: 1px solid var(--line); background: var(--bg-2); }

.regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  margin-top: 28px;
}
.regions article {
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.regions article:nth-child(3n) { border-right: 0; }
.regions h3 { font-size: 1.05rem; margin-bottom: 8px; }
.regions p { margin: 0; font-size: 14px; }

.bodies { margin: 0; padding: 0; list-style: none; }
.bodies li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.bodies li strong {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acid);
  font-weight: 500;
}
.bodies li span { color: var(--ink-2); font-size: 15px; }
.deny-list li {
  font-family: var(--mono);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.deny-list li::before { content: "×  "; color: #ff6b6b; }

.allow-list { list-style: none; margin: 18px 0 0; padding: 0; }
.allow-list li {
  font-family: var(--mono);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.allow-list li::before { content: "+  "; color: var(--acid); }

.cta {
  margin: 0;
  padding: 40px;
  background: var(--acid);
  color: #05070a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.cta h2, .cta p { color: #05070a; }
.cta p { margin: 8px 0 0; max-width: 480px; }
.cta .btn { border-color: #05070a; color: #05070a; background: transparent; }
.cta .btn:hover { background: #05070a; color: var(--acid); }

.page-hero { padding: 48px 0 8px; position: relative; z-index: 1; }

.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%;
  border: 0;
  text-align: left;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--ink);
}
.faq-item .plus { font-family: var(--mono); color: var(--acid); }
.faq-item .answer { display: none; padding: 0 0 20px; color: var(--ink-2); max-width: 720px; }
.faq-item.open .answer { display: block; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  padding: 12px 14px;
  outline: none;
  color: var(--ink);
  border-radius: 0;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--acid); }
.check { display: flex; gap: 10px; font-size: 14px; color: var(--ink-2); grid-column: 1 / -1; align-items: flex-start; }
.form-success { display: none; border: 1px solid var(--acid); padding: 22px; color: var(--acid); background: rgba(200,245,66,.06); }
.form-success.show { display: block; }
.claim-form.hide { display: none; }

.claim-wrap { width: min(560px, calc(100% - 40px)); }
.claim-form .btn { width: 100%; }
.claim-loading, .claim-miss, .claim-match {
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  padding: 28px 24px;
}
.claim-loading h3, .claim-miss h3, .claim-match h3 { margin-bottom: 10px; }
.scan-bar {
  height: 3px;
  background: var(--line);
  margin: 22px 0 16px;
  overflow: hidden;
}
.scan-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--acid);
  animation: scan 1.1s ease-in-out infinite;
}
@keyframes scan {
  from { transform: translateX(-100%); }
  to { transform: translateX(280%); }
}
.scan-status { font-family: var(--mono); font-size: 12px; color: var(--muted); margin: 0; }
.match-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  padding: 14px;
  margin: 16px 0 20px;
  background: var(--bg);
}
.match-card span {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.match-card b { font-weight: 500; color: var(--ink); }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 24px;
  position: relative;
  z-index: 1;
  background: var(--bg);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; margin-bottom: 28px; }
.footer-grid h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--acid); margin: 0 0 12px; font-weight: 500; }
.footer-grid a, .footer-grid p { display: block; font-size: 14px; color: var(--muted); margin: 8px 0; }
.legal { border-top: 1px solid var(--line); padding-top: 16px; font-size: 12px; color: var(--muted); display: flex; justify-content: space-between; gap: 16px; }

.mobile-nav { position: fixed; inset: 0; z-index: 70; display: none; }
.mobile-nav.open { display: block; }
.mobile-nav-backdrop { position: absolute; inset: 0; border: 0; background: rgba(0,0,0,.7); }
.mobile-nav-panel {
  position: absolute; top: 0; right: 0; width: min(100%, 360px); height: 100dvh;
  background: var(--bg); border-left: 1px solid var(--line);
  padding: calc(var(--header) + 16px) 22px 28px;
  display: flex; flex-direction: column;
}
.mobile-nav-panel a:not(.btn) {
  display: block; padding: 16px 0; font-family: var(--mono); letter-spacing: 0.12em; text-transform: uppercase;
  border-bottom: 1px solid var(--line); font-size: 14px;
}
.mobile-nav-panel .btn { margin-top: 20px; width: 100%; }

@media (max-width: 980px) {
  .nav { display: none; }
  .header-cta .btn { display: none; }
  .menu-btn { display: grid; }
  .hero-grid, .split, .matrix, .footer-grid, .form-grid, .regions { grid-template-columns: 1fr; }
  .split > :first-child { border-right: 0; border-bottom: 1px solid var(--line); }
  .matrix div:nth-child(4n) { border-right: 1px solid var(--line); }
  .regions article { border-right: 1px solid var(--line); }
  .bodies li { grid-template-columns: 1fr; gap: 6px; }
  .cta { flex-direction: column; align-items: stretch; padding: 28px 20px; }
  .cta .btn { width: 100%; }
  .hero-actions .btn { width: 100%; }
  .row { grid-template-columns: 1fr; gap: 8px; }
  .legal { flex-direction: column; }
}
@media (max-width: 640px) {
  .wrap, .header-inner { width: min(var(--max), calc(100% - 24px)); }
  h1 { font-size: 2.3rem; }
  .mobile-nav-panel { width: 100%; }
  .hero-top { flex-direction: column; }
}
