:root {
  --bg: #071013;
  --ink: #f2f7f2;
  --primary: #2de2e6;
  --secondary: #f706cf;
  --accent: #f5d547;
  --line: rgba(242, 247, 242, 0.14);
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --shadow: 0 0 0 1px rgba(45, 226, 230, 0.18), 0 0 24px rgba(45, 226, 230, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a, button, summary {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 14px;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(7, 16, 19, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.brand-mini {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mini__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(45, 226, 230, 0.2));
}

.brand-mini__text {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.menu-toggle,
.menu-close {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
}

.menu-toggle {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  box-shadow: var(--shadow);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(45, 226, 230, 0.7);
}

.overlay-menu {
  position: fixed;
  inset: 0;
  background: rgba(7, 16, 19, 0.98);
  z-index: 100;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.overlay-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.overlay-menu__inner {
  width: min(920px, calc(100vw - 32px));
  min-height: min(80vh, 700px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}

.overlay-menu__head,
.overlay-menu__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.overlay-menu__head p,
.overlay-menu__meta p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-close {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 30px;
}

.overlay-menu__links {
  display: grid;
  gap: 18px;
}

.overlay-menu__links a {
  color: var(--ink);
  text-decoration: none;
  font-size: clamp(2rem, 6vw, 5rem);
  line-height: 0.95;
  text-transform: lowercase;
}

.overlay-menu__links a:hover,
.overlay-menu__links a:focus-visible {
  color: var(--primary);
  text-shadow: 0 0 18px rgba(45, 226, 230, 0.35);
}

main {
  padding: 18px;
}

.panel {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.chrome {
  background: linear-gradient(145deg, rgba(242,247,242,0.09), rgba(45,226,230,0.05) 30%, rgba(247,6,207,0.05) 65%, rgba(255,255,255,0.03));
}

.splash {
  padding-top: 12px;
}

.splash__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.splash__left,
.splash__right,
.cta-panel,
.faq-shell,
.slim-panel,
.reason-card {
  border-radius: 22px;
}

.splash__left {
  padding: 24px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
}

.typewrap {
  margin: 0;
  font-size: clamp(2rem, 5vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  max-width: 10ch;
}

.lede {
  max-width: 58ch;
  font-size: 15px;
  color: rgba(242, 247, 242, 0.86);
}

.data-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.data-row div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
}

.label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 6px;
}

.visual-panel {
  overflow: hidden;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.banner-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.signal-box {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(7, 16, 19, 0.72);
  border: 1px solid rgba(242,247,242,0.12);
}

.signal-box p {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 14px var(--primary);
}

.ticker {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 20px 0;
  background: rgba(255,255,255,0.02);
}

.ticker--alt {
  background: rgba(247, 6, 207, 0.05);
}

.ticker__track {
  display: inline-flex;
  gap: 20px;
  padding: 12px 0;
  min-width: max-content;
  animation: tickerMove 22s linear infinite;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
}

.ticker__track span:nth-child(odd) {
  color: var(--primary);
}

.ticker--alt .ticker__track span:nth-child(odd) {
  color: var(--accent);
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.cta-panel {
  padding: 24px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
  align-items: end;
  background: linear-gradient(180deg, rgba(45,226,230,0.06), rgba(247,6,207,0.04));
}

.cta-panel h2,
.section-head h2,
.faq-shell h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.cta-panel p,
.section-head p,
.faq-shell p {
  margin-top: 0;
}

.cta-panel__actions {
  display: grid;
  gap: 12px;
}

.cta-btn {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 16px 18px;
  font: inherit;
  text-transform: lowercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cta-btn:hover,
.cta-btn:focus-visible,
.reason-card:hover,
.reason-card:focus-visible,
details[open] {
  transform: translateY(-2px);
}

.cta-btn.primary {
  color: var(--bg);
  background: var(--primary);
  box-shadow: 0 0 20px rgba(45,226,230,0.28);
}

.cta-btn.secondary {
  color: var(--ink);
  background: transparent;
  border-color: rgba(247, 6, 207, 0.5);
  box-shadow: 0 0 18px rgba(247, 6, 207, 0.12);
}

.copy-feedback {
  margin: 10px 0 0;
  min-height: 1.4em;
  color: var(--accent);
  font-size: 13px;
}

.section-head {
  padding: 20px;
  margin-bottom: 16px;
}

.reasons-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.reason-card {
  padding: 22px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.reason-card:hover,
.reason-card:focus-visible {
  border-color: rgba(45, 226, 230, 0.4);
  box-shadow: 0 0 0 1px rgba(45,226,230,0.28), 0 0 26px rgba(45,226,230,0.12);
}

.reason-num {
  color: var(--secondary);
  font-size: 13px;
  letter-spacing: 0.16em;
}

.reason-card h3 {
  margin: 12px 0 10px;
  font-size: 1.2rem;
}

.reason-card p {
  margin: 0;
  color: rgba(242,247,242,0.82);
}

.faq-shell {
  padding: 24px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  padding: 14px 16px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

details[open] {
  border-color: rgba(245, 213, 71, 0.4);
}

summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 10px 0 0;
  color: rgba(242,247,242,0.8);
}

.footer {
  padding: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .splash__grid,
  .cta-panel,
  .reasons-list {
    grid-template-columns: 1fr;
  }

  .visual-panel {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .topbar,
  main,
  .footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .splash__left,
  .faq-shell,
  .cta-panel,
  .section-head,
  .reason-card {
    padding: 18px;
  }

  .data-row {
    grid-template-columns: 1fr;
  }

  .overlay-menu__inner {
    min-height: auto;
    height: calc(100vh - 28px);
    padding: 18px;
  }

  .overlay-menu__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}