:root {
  --bg: #06111f;
  --bg-soft: #0a1830;
  --panel: rgba(10, 24, 48, 0.82);
  --panel-solid: #0b1930;
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(148, 163, 184, 0.28);
  --text: #e5eefc;
  --muted: #a9b8d5;
  --brand: #5ebeff;
  --brand-2: #4fe3d1;
  --brand-3: #8af54c;
  --danger: #fb7185;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  --radius-lg: 28px;
  --radius-md: 22px;
  --container: min(1180px, calc(100% - 32px));
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(79, 227, 209, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(94, 190, 255, 0.15), transparent 30%),
    linear-gradient(180deg, #040b15 0%, #071121 38%, #08152a 100%);
}
body.theme-nyx {
  background:
    radial-gradient(circle at 20% 0%, rgba(244, 63, 94, 0.20), transparent 26%),
    radial-gradient(circle at 90% 10%, rgba(59, 130, 246, 0.22), transparent 32%),
    linear-gradient(180deg, #050310 0%, #09051c 38%, #080f2a 100%);
  --brand: #64b8ff;
  --brand-2: #ff4fb3;
  --brand-3: #c084fc;
}
body.theme-timer {
  background:
    radial-gradient(circle at 8% 0%, rgba(52, 211, 153, 0.16), transparent 26%),
    radial-gradient(circle at 90% 0%, rgba(96, 165, 250, 0.18), transparent 30%),
    linear-gradient(180deg, #071019 0%, #091627 44%, #0a172c 100%);
  --brand: #60a5fa;
  --brand-2: #6ee7b7;
  --brand-3: #bef264;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: var(--container); margin: 0 auto; }
.skip-link {
  position: absolute; left: 16px; top: -48px; z-index: 30;
  padding: 10px 14px; border-radius: 14px; background: #fff; color: #04111f;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(3, 10, 20, 0.74);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}
.nav-shell {
  min-height: 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 14px 0;
}
.brand {
  display: inline-flex; align-items: center; gap: 14px; min-width: 0;
}
.brand img { width: 154px; height: auto; }
.brand-lockup {
  display: flex; flex-direction: column; gap: 2px;
  min-width: 0;
}
.brand-lockup strong {
  font-size: 0.92rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.brand-lockup span {
  color: var(--muted);
  font-size: 0.92rem;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  color: var(--text);
  border-radius: 14px;
  padding: 10px 12px;
  font: inherit;
  font-weight: 600;
}
.site-nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.site-nav a {
  padding: 10px 14px; border-radius: 999px; color: var(--muted);
  transition: background .2s ease, color .2s ease, transform .2s ease;
  font-weight: 600; font-size: 0.96rem;
}
.site-nav a:hover, .site-nav a:focus-visible {
  color: var(--text); background: rgba(255,255,255,0.05); transform: translateY(-1px);
}
.site-nav a.cta-link {
  color: #05111f;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 12px 30px rgba(79, 227, 209, 0.18);
}

main { display: block; }
.hero {
  padding: 78px 0 54px;
  position: relative;
  overflow: clip;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.04), transparent 58%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow, .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #dbe7ff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.hero-copy h1, .page-title {
  margin: 16px 0 14px;
  font-size: clamp(2.7rem, 6vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.hero-copy p.lead, .intro-copy {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 760px;
  margin: 0;
}
.hero-actions, .inline-actions {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px;
}
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary {
  color: #05101f;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 18px 40px rgba(59,130,246,.20);
}
.button-secondary {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255,255,255,0.02);
}
.button-ghost {
  color: var(--muted);
  border-color: transparent;
  background: transparent;
  padding-left: 0;
}
.hero-panel, .card, .legal-card, .notice {
  background: linear-gradient(180deg, rgba(9, 20, 39, 0.95), rgba(8, 18, 33, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hero-panel { padding: 28px; }
.hero-panel img.product-icon {
  width: clamp(108px, 18vw, 152px);
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(0,0,0,0.28);
  margin-bottom: 18px;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.metric {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(148, 163, 184, 0.14);
}
.metric strong { display: block; font-size: 1.2rem; margin-bottom: 4px; }
.metric span { color: var(--muted); font-size: 0.95rem; }

.section { padding: 54px 0; }
.section.compact { padding-top: 32px; }
.section-header {
  margin-bottom: 24px;
  max-width: 820px;
}
.section-header h2, .section-header h1 {
  margin: 12px 0 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.section-header p, .muted {
  color: var(--muted);
  margin: 0;
  font-size: 1.02rem;
}
.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 20px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .legal-card, .notice { padding: 24px; }
.card h3, .legal-card h2, .legal-card h3 { margin: 0 0 12px; line-height: 1.2; }
.card p:last-child, .notice p:last-child { margin-bottom: 0; }
.pill-row {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px;
}
.pill {
  display: inline-flex; align-items: center;
  padding: 8px 12px; border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.16);
  background: rgba(255,255,255,0.03);
  color: #d4e3ff;
  font-size: 0.88rem; font-weight: 700;
}
.product-grid .card {
  position: relative;
  overflow: hidden;
}
.product-grid .card::after {
  content: "";
  position: absolute; inset: auto -20% -35% auto;
  width: 180px; height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 68%);
  pointer-events: none;
}
.product-card-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.product-card-header img {
  width: 68px; height: 68px; border-radius: 18px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.22);
}
.product-card-header .timer-glyph {
  width: 68px; height: 68px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(96,165,250,.18), rgba(52,211,153,.16));
  display: grid; place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.18);
}
.product-card-header .timer-glyph::before {
  content: "";
  width: 34px; height: 34px; border-radius: 999px;
  border: 3px solid #eff6ff;
  box-shadow: 0 0 0 6px rgba(110,231,183,.18);
  display: block;
  position: relative;
  transform: translateY(2px);
}
.product-card-header .timer-glyph::after {
  content: "";
  position: absolute;
  width: 4px; height: 14px; border-radius: 999px;
  background: #eff6ff;
  transform: translate(0, -2px) rotate(30deg);
}
.eyebrow-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 16px rgba(94,190,255,.5);
}
ul.clean-list {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: grid; gap: 10px;
}
ul.clean-list li {
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--muted);
}
ul.clean-list li::before {
  content: "";
  width: 8px; height: 8px; margin-top: 0.55rem;
  border-radius: 999px; flex: none;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 14px rgba(79,227,209,.35);
}
.split-panel {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr); gap: 24px; align-items: stretch;
}
.visual-stack {
  display: grid; gap: 18px;
}
.mock-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(10, 20, 38, 0.96), rgba(5, 14, 28, 0.96));
  border: 1px solid rgba(148,163,184,0.12);
  box-shadow: var(--shadow);
}
.mock-card h3, .mock-card p { position: relative; z-index: 2; }
.arena-mock::before {
  content: "";
  position: absolute; inset: 24px 24px 24px 24px;
  border-radius: 22px;
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    radial-gradient(circle at 50% 30%, rgba(255,79,179,.25), transparent 30%),
    radial-gradient(circle at 60% 68%, rgba(96,165,250,.22), transparent 34%),
    linear-gradient(180deg, rgba(17, 8, 45, 0.95), rgba(4, 8, 18, 0.98));
  background-size: 28px 28px, 28px 28px, auto, auto, auto;
  opacity: 0.95;
}
.arena-mock .player-dot, .arena-mock .enemy-dot {
  position: absolute; z-index: 2; border-radius: 50%;
  filter: drop-shadow(0 0 14px rgba(255,255,255,0.24));
}
.arena-mock .player-dot {
  width: 22px; height: 22px; background: #ffffff; left: 56%; top: 52%;
  box-shadow: 0 0 24px rgba(255,255,255,.85);
}
.arena-mock .enemy-dot { width: 18px; height: 18px; background: #ff4fb3; }
.arena-mock .e1 { left: 28%; top: 38%; }
.arena-mock .e2 { left: 68%; top: 32%; background: #60a5fa; }
.arena-mock .e3 { left: 36%; top: 72%; background: #c084fc; }
.arena-mock .status-bar {
  position: absolute; left: 34px; right: 34px; bottom: 30px; z-index: 2;
  display: flex; justify-content: space-between; gap: 14px;
  color: #dbeafe; font-size: 0.92rem; font-weight: 700;
}
.device-mock {
  min-height: 360px;
  border-radius: 36px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(148,163,184,.18);
  box-shadow: var(--shadow);
}
.device-screen {
  height: 100%; min-height: 320px;
  border-radius: 28px; padding: 20px;
  background: linear-gradient(180deg, rgba(8,18,34,.98), rgba(3,10,20,.98));
  border: 1px solid rgba(148,163,184,.12);
  position: relative; overflow: hidden;
}
.device-screen::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,.05), transparent 45%);
  pointer-events: none;
}
.screen-top {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  color: #dce8ff; font-weight: 700; position: relative; z-index: 2;
}
.screen-chip {
  padding: 6px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.06); color: var(--muted); font-size: 0.82rem;
  border: 1px solid rgba(148,163,184,.14);
}
.timer-rings {
  margin: 22px auto 18px;
  width: 190px; height: 190px; position: relative;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,255,255,.06), transparent 58%);
}
.timer-rings::before, .timer-rings::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 14px solid transparent;
}
.timer-rings::before {
  border-top-color: #60a5fa; border-right-color: #60a5fa;
  transform: rotate(42deg);
  box-shadow: 0 0 28px rgba(96,165,250,.26);
}
.timer-rings::after {
  inset: 18px;
  border-bottom-color: #6ee7b7; border-left-color: #6ee7b7;
  transform: rotate(-22deg);
  box-shadow: 0 0 24px rgba(52,211,153,.22);
}
.timer-core {
  position: absolute; inset: 44px; border-radius: 50%;
  background: linear-gradient(180deg, rgba(10,17,29,.98), rgba(5,10,19,.98));
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px rgba(148,163,184,.12);
  color: #f8fbff; font-weight: 800; font-size: 2.4rem; letter-spacing: -0.04em;
}
.timer-sub { font-size: 0.9rem; color: var(--muted); font-weight: 700; }
.tracker-list {
  display: grid; gap: 12px;
  position: relative; z-index: 2;
}
.tracker-item {
  padding: 14px 16px; border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(148,163,184,.12);
  display: flex; justify-content: space-between; gap: 12px; align-items: center;
}
.tracker-item strong { display: block; }
.tracker-item span { color: var(--muted); font-size: 0.92rem; }
.status-tag {
  padding: 7px 10px; border-radius: 999px; font-size: 0.8rem; font-weight: 800;
  background: rgba(96,165,250,0.14); color: #d9ecff;
  border: 1px solid rgba(96,165,250,.22);
}
.status-tag.live { background: rgba(52,211,153,.14); border-color: rgba(52,211,153,.22); color: #d7fff0; }
.status-tag.soon { background: rgba(250,204,21,.14); border-color: rgba(250,204,21,.22); color: #fff4c7; }
.quote-card {
  padding: 24px;
  border-left: 4px solid var(--brand);
  background: rgba(255,255,255,.03);
  border-radius: 24px;
  color: #d9e6ff;
}
.logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.logo-row img { width: 42px; height: 42px; border-radius: 14px; }
.footer {
  padding: 28px 0 42px;
  border-top: 1px solid rgba(148,163,184,0.12);
  background: rgba(4, 10, 20, 0.56);
  margin-top: 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.footer h3 { margin: 0 0 10px; font-size: 1rem; }
.footer p, .footer li, .footer small { color: var(--muted); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer a:hover { color: var(--text); }
.legal-shell {
  padding: 52px 0 70px;
}
.legal-shell .section-header { max-width: 900px; }
.legal-layout {
  display: grid; gap: 18px;
}
.legal-card h2 { font-size: 1.28rem; }
.legal-card p, .legal-card li { color: var(--muted); }
.legal-card ul { padding-left: 20px; margin-bottom: 0; }
.link-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.support-layout { display: grid; gap: 18px; }
.support-line {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  color: var(--muted);
  margin-top: 10px;
}
.callout {
  padding: 18px 20px; border-radius: 20px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(148,163,184,.14);
}
.back-row { margin-bottom: 16px; }
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); font-weight: 700;
}
.back-link:hover { color: var(--text); }
.contact-list {
  display: grid; gap: 14px; margin-top: 18px;
}
.contact-list a.mail-link {
  color: #d9ecff;
  font-weight: 800;
}
.small-note { color: var(--muted); font-size: 0.92rem; }
.product-route {
  display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-size: 0.95rem; font-weight: 700;
}
.product-route::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 12px rgba(94,190,255,.45);
}
.not-found {
  min-height: calc(100vh - 220px);
  display: grid; place-items: center;
  text-align: center;
}
.not-found .hero-panel { max-width: 720px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); overflow: hidden;
}
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute; top: calc(100% + 10px); right: 16px;
    width: min(320px, calc(100vw - 32px));
    padding: 14px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(5, 12, 24, 0.98);
    box-shadow: var(--shadow);
    flex-direction: column; align-items: stretch;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { width: 100%; }
  .hero-grid, .split-panel, .grid-3, .grid-2, .link-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .metric-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 60px; }
  .brand img { width: 138px; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1180px); }
  .hero-copy h1, .page-title { font-size: clamp(2.2rem, 11vw, 3.35rem); }
  .section-header h2, .section-header h1 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .card, .hero-panel, .legal-card, .notice, .mock-card { padding: 20px; }
  .device-mock { padding: 14px; border-radius: 28px; }
  .device-screen { padding: 16px; border-radius: 22px; }
  .timer-rings { width: 160px; height: 160px; }
  .timer-core { inset: 36px; font-size: 2rem; }
}

.form-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}
.form-field {
  display: grid;
  gap: 8px;
}
.form-field label {
  font-weight: 700;
  color: var(--text);
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font: inherit;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted);
}
.form-field textarea {
  min-height: 140px;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 2px solid rgba(94,190,255,0.35);
  outline-offset: 2px;
  border-color: rgba(94,190,255,0.55);
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.info-list {
  display: grid;
  gap: 14px;
  margin: 0;
}
.info-list strong {
  display: block;
  margin-bottom: 4px;
}
@media (max-width: 720px) {
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
