/* ADA landing — neon identity, readable product story, no build step. */
:root {
  --bg: #07080d;
  --surface: #0c0e16;
  --surface-raised: #11141e;
  --text: #f2f4fa;
  --muted: #a8afc1;
  --dim: #858da3;
  --pink: #ff277f;
  --cyan: #43deed;
  --green: #b4f66a;
  --edge: rgba(179, 193, 220, 0.15);
  --sans: "Inter", system-ui, sans-serif;
  --mono: "Fira Code", monospace;
  color-scheme: dark;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body,
h1,
h2,
h3,
p,
figure,
ul {
  margin: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-font-smoothing: antialiased;
}
body {
  background: var(--bg);
  color: var(--text);
  font: 16px/1.7 var(--sans);
}
main {
  overflow: clip;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: rgba(67, 222, 237, 0.15);
  touch-action: manipulation;
}
button {
  color: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  border: 0;
  background: transparent;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 5px;
}
::selection {
  color: white;
  background: #94305d;
}
svg.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.container {
  width: min(100%, 1408px);
  margin-inline: auto;
  padding-inline: clamp(24px, 4.4vw, 64px);
}
.section {
  padding-block: 110px;
  position: relative;
}
.mono,
.eyebrow {
  font-family: var(--mono);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "//";
  color: var(--dim);
}
h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(44px, 4.65vw, 72px);
  font-weight: 800;
}
h2 {
  font-size: clamp(34px, 3.65vw, 56px);
  font-weight: 700;
}
h3 {
  font-weight: 600;
}
p {
  text-wrap: pretty;
}
.pink {
  color: var(--pink);
}
.cyan {
  color: var(--cyan);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 64px;
  margin-bottom: 52px;
}
.section-heading > div {
  flex: 1 1 55%;
}
.section-heading > p {
  flex: 0 1 370px;
  color: var(--muted);
  font-size: 16px;
}
.section-description {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin-top: 28px;
}
#ambient,
.cyber-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.cyber-grid {
  background-image:
    linear-gradient(rgba(67, 222, 237, 0.023) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67, 222, 237, 0.023) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(#000, transparent 85%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0 3px,
    rgba(0, 0, 0, 0.035) 3px 4px
  );
  pointer-events: none;
  z-index: 8;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  transform: translateY(-200%);
  background: var(--cyan);
  color: var(--bg);
  padding: 12px 20px;
  z-index: 300;
}
.skip-link:focus {
  transform: none;
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--edge);
  background: rgba(7, 8, 13, 0.92);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font: 700 24px var(--mono);
  letter-spacing: -0.06em;
  flex-shrink: 0;
}
.brand-suffix {
  font-size: 10px;
  font-weight: 400;
  color: var(--dim);
  letter-spacing: 0.035em;
  margin-left: 10px;
}
.desktop-nav {
  display: flex;
  gap: 28px;
}
.desktop-nav a {
  color: var(--muted);
  font-size: 12px;
  transition: color 0.2s;
}
.desktop-nav a:hover,
.footer-actions a:hover {
  color: var(--cyan);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.fx-toggle {
  font: 10px var(--mono);
  color: var(--cyan);
  min-width: 36px;
  min-height: 40px;
  border: 1px solid var(--edge);
  border-radius: 3px;
}
.fx-toggle[aria-pressed="true"] {
  color: var(--dim);
}
.fx-toggle:hover {
  border-color: var(--cyan);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--cyan);
  margin: 6px 0;
  transition: transform 0.2s;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}
.mobile-menu {
  padding: 8px 24px 24px;
  border-top: 1px solid var(--edge);
  background: var(--bg);
  max-height: calc(100svh - 84px);
  overflow: auto;
}
.mobile-menu a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--edge);
  font: 500 15px var(--mono);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.button-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 0 30px rgba(255, 39, 127, 0.12);
}
.button-primary:hover {
  background: #d91462;
  box-shadow: 0 0 34px rgba(255, 39, 127, 0.28);
  transform: translateY(-2px);
}
.button-outline {
  color: var(--cyan);
  border-color: rgba(67, 222, 237, 0.4);
  background: rgba(67, 222, 237, 0.035);
}
.button-outline:hover {
  border-color: var(--cyan);
  background: rgba(67, 222, 237, 0.1);
  transform: translateY(-2px);
}
.button-small {
  min-height: 40px;
  padding: 8px 15px;
  font-size: 11px;
  gap: 12px;
}
.button-small .icon {
  width: 18px;
  height: 18px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--cyan);
  transition: color 0.2s;
}
.text-link:hover {
  color: #fff;
}

/* Hero and recurring chromatic glitch */
.hero {
  padding-top: 76px;
  padding-bottom: 0;
}
.hero::before {
  content: "";
  position: absolute;
  width: 750px;
  height: 700px;
  right: -180px;
  top: -130px;
  background: radial-gradient(
    ellipse,
    rgba(121, 35, 122, 0.14),
    transparent 65%
  );
  pointer-events: none;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1.13fr;
  align-items: center;
  gap: 38px;
  min-height: 510px;
}
.hero-copy,
.hero-visual {
  min-width: 0;
}
.hero-status {
  margin-bottom: 28px;
  color: var(--muted);
}
.hero-status::before {
  display: none;
}
.status-dot,
.rec-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(180, 246, 106, 0.5);
}
.rec-dot {
  background: var(--pink);
  box-shadow: 0 0 12px rgba(255, 39, 127, 0.5);
}
.glitch {
  position: relative;
  display: inline-block;
  color: var(--pink);
  text-shadow: 0 0 35px rgba(255, 39, 127, 0.15);
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  pointer-events: none;
}
.glitch::before {
  color: var(--cyan);
  clip-path: inset(18% 0 61% 0);
  animation: glitch-top 3.2s steps(1, end) infinite;
}
.glitch::after {
  color: var(--pink);
  clip-path: inset(65% 0 13% 0);
  animation: glitch-bottom 3.8s steps(1, end) infinite;
}
@keyframes glitch-top {
  0%,
  8%,
  24%,
  100% {
    transform: none;
    opacity: 0;
  }
  10%,
  18% {
    transform: translate(-4px, -1px);
    opacity: 0.95;
  }
  14% {
    transform: translate(4px, 1px);
    opacity: 0.95;
  }
  22% {
    transform: translate(2px, 0);
    opacity: 0.9;
  }
}
@keyframes glitch-bottom {
  0%,
  12%,
  28%,
  100% {
    transform: none;
    opacity: 0;
  }
  14%,
  22% {
    transform: translate(4px, 1px);
    opacity: 0.9;
  }
  18% {
    transform: translate(-3px, 0);
    opacity: 0.9;
  }
  26% {
    transform: translate(2px, -1px);
    opacity: 0.85;
  }
}
.hero-description {
  margin-top: 30px;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
  color: var(--muted);
}
.hero-description strong {
  font-weight: 500;
  color: var(--text);
}
.hero-detail {
  margin-top: 16px;
  color: var(--dim);
  font-size: 14px;
  max-width: 440px;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
}
.hero-footnote {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--dim);
  font-size: 10px;
  margin-top: 26px;
}
.hero-footnote .mono {
  color: var(--cyan);
}
.hero-visual {
  position: relative;
  padding: 32px 0;
}
.visual-coordinates {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--dim);
  margin-bottom: 15px;
}
.visual-coordinates span:last-child {
  color: var(--green);
}
.product-window {
  display: block;
  background: var(--surface);
  border: 1px solid rgba(136, 166, 212, 0.25);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.3);
  transition: border-color 0.2s;
}
.product-window:hover {
  border-color: var(--cyan);
}
.hero-window {
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transform-origin: left center;
  width: calc(100% + 62px);
  box-shadow:
    -15px 0 80px rgba(255, 39, 127, 0.04),
    0 12px 70px #0007;
}
.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 9px 15px;
  gap: 18px;
  color: var(--muted);
  font: 10px var(--mono);
  border-bottom: 1px solid var(--edge);
}
.window-bar .icon {
  width: 14px;
  height: 14px;
  color: var(--cyan);
}
.window-dots {
  display: flex;
  gap: 5px;
}
.window-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
}
.window-dots i:nth-child(2) {
  background: var(--cyan);
}
.window-dots i:nth-child(3) {
  background: var(--green);
}
.hero-window img {
  width: 100%;
}
.visual-caption {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  font-size: 9px;
  color: var(--muted);
}
.visual-caption .mono {
  margin-left: auto;
  color: var(--dim);
}
.hero-orbit {
  position: absolute;
  width: 80px;
  height: 2px;
  background: var(--pink);
  right: -34px;
  top: 45px;
  opacity: 0.65;
}
.orbit-two {
  width: 50px;
  background: var(--cyan);
  right: auto;
  left: -20px;
  top: auto;
  bottom: 64px;
}
.hero-bottom {
  display: flex;
  align-items: center;
  gap: 35px;
  min-height: 100px;
  margin-top: 72px;
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
}
.hero-bottom > .mono {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--dim);
}
.hero-bottom > div {
  display: flex;
  gap: 27px;
  flex: 1;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}
.hero-bottom > div span::before {
  content: "+";
  color: var(--pink);
  font-family: var(--mono);
  margin-right: 10px;
}
.hero-bottom > a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
}
.down-arrow {
  transform: rotate(90deg);
}

/* Product capabilities */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--edge);
  border-radius: 3px;
  background: linear-gradient(
    140deg,
    rgba(17, 20, 30, 0.94),
    rgba(10, 12, 19, 0.94)
  );
}
.feature-card::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--pink);
  border-left: 2px solid var(--pink);
  opacity: 0.65;
}
.feature-card:nth-child(3n + 2)::before {
  border-color: var(--cyan);
}
.feature-card:nth-child(3n)::before {
  border-color: var(--green);
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--pink);
  margin-bottom: 32px;
  font-size: 9px;
  letter-spacing: 0.06em;
}
.feature-card:nth-child(3n + 2) .card-top {
  color: var(--cyan);
}
.feature-card:nth-child(3n) .card-top {
  color: var(--green);
}
.feature-card h3 {
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.feature-card p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 26px;
}
.tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: auto;
}
.tags span {
  font: 9px var(--mono);
  color: var(--dim);
  padding: 5px 7px;
  border: 1px solid var(--edge);
  border-radius: 2px;
}

/* Real product screenshots */
.gallery-section {
  background: rgba(12, 14, 22, 0.75);
  border-block: 1px solid var(--edge);
}
.screen-tabs {
  display: flex;
  border-bottom: 1px solid var(--edge);
  margin-bottom: 25px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.screen-tabs button {
  flex: 1;
  min-height: 52px;
  padding: 12px 20px;
  color: var(--muted);
  font: 500 12px var(--mono);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.screen-tabs button:hover {
  color: var(--text);
}
.screen-tabs button[aria-selected="true"] {
  border-color: var(--pink);
  color: var(--pink);
  background: linear-gradient(transparent, rgba(255, 39, 127, 0.045));
}
.screen-tabs button:focus-visible {
  outline-offset: -5px;
}
.screens figure + figure {
  margin-top: 30px;
}
.screens.is-enhanced figure {
  margin-top: 0;
}
.screens .product-window {
  max-width: 1100px;
  margin-inline: auto;
}
.screens .product-window img {
  width: 100%;
}
.window-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
figcaption {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  padding-top: 22px;
  max-width: 1100px;
  margin-inline: auto;
}
figcaption strong {
  font-size: 15px;
  font-weight: 500;
}
figcaption > span {
  font-size: 13px;
  color: var(--muted);
  max-width: 600px;
}

/* On-site video: locally hosted H.264, native fallback, custom controls beside it. */
.live-section {
  padding-block: 56px;
  background: radial-gradient(
    ellipse at 90% 50%,
    rgba(255, 39, 127, 0.05),
    transparent 58%
  );
}
.live-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 100px;
}
.live-copy h2 {
  font-size: clamp(32px, 3.4vw, 52px);
}
.live-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 36px 0;
}
.live-points article {
  display: flex;
  gap: 18px;
}
.line-icon {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  height: 44px;
  border: 1px solid rgba(67, 222, 237, 0.25);
  color: var(--cyan);
  background: #43deed08;
}
.live-points h3 {
  font-size: 17px;
  letter-spacing: -0.02em;
  margin-bottom: 7px;
}
.live-points p {
  color: var(--muted);
  font-size: 13px;
}
.video-context {
  font-size: 11px;
  color: var(--dim);
  margin: 0 0 22px;
  line-height: 1.8;
}
.video-column {
  width: clamp(260px, calc((100svh - 240px) * 0.5625), 440px);
}
.video-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 9px;
  margin-bottom: 13px;
}
.video-meta > span:last-child {
  margin-left: auto;
  color: var(--pink);
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  border: 1px solid rgba(255, 39, 127, 0.45);
  border-radius: 5px;
  background: #08090d;
  box-shadow: 0 0 60px rgba(255, 39, 127, 0.1);
}
#event-video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 4px;
}
.video-cover {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #07080d38;
}
.video-start {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  font: 500 12px var(--mono);
  background: linear-gradient(transparent, #07080d80);
}
.video-start .icon {
  width: 62px;
  height: 62px;
  padding: 17px;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  border-radius: 50%;
}
.video-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 15px;
}
.video-toolbar button,
.video-toolbar a {
  min-height: 36px;
  font: 10px var(--mono);
  color: var(--muted);
}
.video-toolbar button {
  padding: 8px 0;
}
.video-toolbar button:disabled {
  cursor: default;
  opacity: 0.45;
}
.video-toolbar button:not(:disabled):hover,
.video-toolbar a:hover {
  color: var(--cyan);
}
.video-toolbar a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.video-toolbar .icon {
  width: 14px;
  height: 14px;
}
.video-buttons {
  display: flex;
  gap: 17px;
}
.video-status {
  min-height: 18px;
  color: var(--dim);
  font-size: 10px;
}

/* Organization and venues */
.ownership-section {
  border-block: 1px solid var(--edge);
  background: rgba(12, 14, 22, 0.6);
}
.ownership-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
  gap: 60px;
}
.ownership-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.ownership-copy article {
  display: flex;
  gap: 20px;
}
.ownership-copy article > .mono {
  color: var(--cyan);
  font-size: 11px;
  padding-top: 5px;
}
.ownership-copy h3 {
  font-size: 20px;
  margin-bottom: 11px;
}
.ownership-copy p {
  font-size: 13px;
  color: var(--muted);
}
.hall-strip {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: center;
  gap: 52px;
  padding: 32px;
  margin-top: 64px;
  border: 1px solid var(--edge);
  background: linear-gradient(110deg, #111822b3, #11121c);
}
.hall-image {
  display: block;
  overflow: hidden;
  border: 1px solid var(--edge);
}
.hall-strip h3 {
  font-size: 28px;
  margin-bottom: 18px;
}
.hall-strip p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

/* Offers: no invented prices, unlimited tiers or SLA. */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.offer-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  border: 1px solid var(--edge);
  border-radius: 4px;
  padding: 40px;
  background: var(--surface);
}
.offer-card.featured {
  border-color: rgba(255, 39, 127, 0.4);
  background: linear-gradient(
    140deg,
    rgba(255, 39, 127, 0.055),
    var(--surface) 65%
  );
  position: relative;
}
.offer-card.featured::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  background: var(--pink);
  top: -1px;
  left: 40px;
  box-shadow: 0 0 12px #ff277f66;
}
.offer-card h3 {
  font-size: 29px;
  margin-bottom: 22px;
}
.offer-description {
  color: var(--muted);
  font-size: 14px;
  max-width: 430px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 34px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 9px 0;
  font-size: 13px;
}
.check-list .icon {
  color: var(--green);
  width: 17px;
  height: 17px;
}
.offer-card .button {
  margin-top: auto;
}
.launch-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.launch-steps > div {
  border-top: 1px solid var(--edge);
  padding-top: 22px;
}
.launch-steps .mono {
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: 0.04em;
}
.launch-steps p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

/* FAQ and final conversion */
.faq-section {
  border-top: 1px solid var(--edge);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 86px;
}
.faq-layout .section-description {
  font-size: 15px;
  max-width: 330px;
}
.stack-label {
  color: var(--cyan);
  font-size: 11px;
  line-height: 2.3;
  margin-top: 34px;
}
.stack-label span {
  color: var(--dim);
  font-size: 10px;
}
.faq-items details {
  border-bottom: 1px solid var(--edge);
}
.faq-items details:first-child {
  border-top: 1px solid var(--edge);
}
.faq-items summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  gap: 24px;
  padding: 23px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.faq-items summary::-webkit-details-marker {
  display: none;
}
.faq-items summary:hover {
  color: var(--cyan);
}
.faq-items summary span {
  font: 400 22px var(--mono);
  color: var(--pink);
}
.faq-items details[open] summary span {
  transform: rotate(45deg);
}
.faq-items details p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.9;
}
.contact-section {
  padding-block: 105px 80px;
  border-top: 1px solid rgba(255, 39, 127, 0.3);
  background: radial-gradient(
    ellipse at 50% 20%,
    rgba(255, 39, 127, 0.085),
    transparent 65%
  );
  text-align: center;
}
.contact-inner .eyebrow {
  justify-content: center;
}
.contact-section h2 {
  font-size: clamp(34px, 4vw, 60px);
}
.contact-section p {
  color: var(--muted);
  margin: 27px auto 34px;
  font-size: 16px;
}
.contact-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.contact-code {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--dim);
  margin-top: 50px;
}
.cursor {
  color: var(--green);
  animation: cursor 2s steps(1) infinite;
}
@keyframes cursor {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}
.site-footer {
  padding-block: 28px;
  border-top: 1px solid var(--edge);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.footer-copy {
  color: var(--dim);
  font-size: 10px;
}
.footer-actions {
  display: flex;
  gap: 25px;
  align-items: center;
  font: 10px var(--mono);
  color: var(--muted);
}
.footer-actions a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-actions button {
  font: inherit;
  padding: 10px 0;
  color: var(--muted);
}
.footer-actions button:hover {
  color: var(--cyan);
}
.footer-actions .icon {
  width: 14px;
  height: 14px;
}

/* Native modal owns focus and keyboard; screenshots remain ordinary links without JS. */
.lightbox {
  width: min(95vw, 1600px);
  max-width: none;
  padding: 12px;
  background: var(--surface);
  color: var(--text);
  border: 1px solid rgba(67, 222, 237, 0.3);
  border-radius: 5px;
  max-height: 95svh;
  overscroll-behavior: contain;
}
.lightbox::backdrop {
  background: rgba(3, 4, 8, 0.93);
  backdrop-filter: blur(10px);
}
.lightbox-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font: 12px var(--mono);
  padding: 0 4px 12px 10px;
}
.icon-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  border: 1px solid var(--edge);
}
.icon-button:hover {
  border-color: var(--cyan);
}
.lightbox img {
  width: auto;
  max-width: 100%;
  max-height: calc(95svh - 110px);
  margin-inline: auto;
  object-fit: contain;
}
.lightbox-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  color: var(--dim);
  font-size: 10px;
}
body.modal-open {
  overflow: hidden;
}
.reveal {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: no-preference) {
  .motion-on .reveal.is-pending {
    opacity: 0;
    transform: translateY(18px);
  }
  .motion-on .reveal {
    transition:
      opacity 0.6s,
      transform 0.6s;
  }
}
.motion-off *,
.motion-off *::before,
.motion-off *::after {
  animation: none !important;
  scroll-behavior: auto !important;
  transition: none !important;
}
.motion-off .glitch::before,
.motion-off .glitch::after {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .glitch::before,
  .glitch::after {
    display: none;
  }
}

@media (min-width: 1600px) {
  .hero {
    padding-top: 105px;
  }
  .hero-layout {
    min-height: 550px;
  }
}
@media (max-width: 1150px) {
  .desktop-nav {
    gap: 18px;
  }
  .brand-suffix {
    display: none;
  }
  .hero-layout {
    gap: 24px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-window {
    width: calc(100% + 30px);
  }
  .live-layout {
    gap: 55px;
  }
  .ownership-grid {
    gap: 35px;
  }
  .faq-layout {
    gap: 45px;
  }
  .feature-card {
    padding: 24px;
  }
}
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    padding-top: 52px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .hero-copy {
    max-width: 680px;
  }
  h1 {
    font-size: clamp(42px, 7.5vw, 66px);
  }
  .hero-description {
    font-size: 20px;
  }
  .hero-visual {
    max-width: 740px;
    padding-top: 20px;
  }
  .hero-window {
    width: 100%;
    transform: none;
  }
  .hero-bottom {
    margin-top: 18px;
    gap: 22px;
    flex-wrap: wrap;
    padding-block: 22px;
  }
  .hero-bottom > div {
    gap: 20px;
  }
  .hero-bottom > a {
    display: none;
  }
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section {
    padding-block: 76px;
  }
  .hero {
    padding-bottom: 0;
  }
  .section-heading {
    gap: 28px;
  }
  .section-heading > p {
    flex-basis: 290px;
    font-size: 14px;
  }
  .live-layout {
    gap: 30px;
  }
  .video-column {
    width: 300px;
  }
  .live-copy h2 {
    font-size: 34px;
  }
  .live-points {
    gap: 22px;
  }
  .ownership-grid {
    grid-template-columns: 1fr;
  }
  .ownership-copy {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  .ownership-copy article {
    display: block;
  }
  .ownership-copy h3 {
    margin-top: 10px;
    font-size: 18px;
  }
  .hall-strip {
    gap: 30px;
    padding: 24px;
  }
  .offer-card {
    padding: 28px;
  }
  .offer-card h3 {
    font-size: 25px;
  }
  .offer-card .button {
    padding: 12px 18px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .faq-layout .section-description {
    max-width: 100%;
  }
  .footer-inner {
    flex-wrap: wrap;
  }
}
@media (max-width: 640px) {
  .header-inner {
    min-height: 72px;
    gap: 15px;
  }
  .brand {
    font-size: 21px;
  }
  .brand img {
    width: 33px;
    height: 33px;
  }
  .header-cta {
    display: none;
  }
  .header-actions {
    margin-left: auto;
  }
  .section-heading {
    display: block;
    margin-bottom: 34px;
  }
  .section-heading > p {
    margin-top: 22px;
  }
  .section {
    padding-block: 60px;
  }
  .hero {
    padding-top: 40px;
    padding-bottom: 0;
  }
  h1 {
    font-size: clamp(37px, 9.8vw, 58px);
  }
  h2 {
    font-size: 34px;
  }
  .hero-description {
    margin-top: 25px;
    font-size: 17px;
  }
  .hero-detail {
    font-size: 13px;
  }
  .hero-actions {
    align-items: start;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
  }
  .hero-actions .button {
    min-height: 50px;
  }
  .hero-footnote {
    gap: 12px;
    font-size: 9px;
  }
  .hero-visual {
    padding-bottom: 10px;
  }
  .visual-coordinates {
    font-size: 8px;
  }
  .visual-caption {
    font-size: 8px;
    margin-top: 13px;
    flex-wrap: wrap;
  }
  .visual-caption .mono {
    display: none;
  }
  .hero-bottom {
    min-height: 90px;
  }
  .hero-bottom > div {
    gap: 10px 20px;
    font-size: 11px;
  }
  .hero-bottom > .mono {
    flex-basis: 100%;
    font-size: 8px;
  }
  .hero-bottom > div span::before {
    margin-right: 6px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .feature-card {
    padding: 25px;
  }
  .card-top {
    margin-bottom: 23px;
  }
  .feature-card h3 {
    font-size: 24px;
  }
  .feature-card p {
    margin-bottom: 20px;
  }
  .screen-tabs {
    margin-inline: -24px;
    padding-inline: 24px;
  }
  .screen-tabs button {
    flex: none;
    padding-inline: 18px;
    font-size: 11px;
  }
  .window-bar {
    min-height: 30px;
    padding: 7px 10px;
    font-size: 8px;
    gap: 12px;
  }
  .window-hint {
    font-size: 0;
    gap: 0;
  }
  figcaption {
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
  }
  figcaption > span {
    font-size: 12px;
  }
  .live-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .live-copy h2 {
    font-size: 35px;
  }
  .section-description {
    font-size: 16px;
  }
  .live-points {
    margin: 27px 0;
  }
  .video-column {
    width: min(100%, 380px);
    margin-inline: auto;
  }
  .video-frame {
    max-height: none;
  }
  .ownership-copy {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .ownership-copy article {
    display: flex;
  }
  .ownership-copy h3 {
    margin-top: 0;
  }
  .hall-strip {
    grid-template-columns: 1fr;
    margin-top: 38px;
    padding: 20px;
    gap: 24px;
  }
  .hall-strip h3 {
    font-size: 26px;
  }
  .hall-strip .eyebrow {
    font-size: 9px;
  }
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .offer-card {
    padding: 28px;
  }
  .offer-card h3 {
    font-size: 27px;
  }
  .launch-steps {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 30px;
  }
  .faq-items summary {
    font-size: 13px;
    padding-block: 20px;
  }
  .contact-section {
    padding-block: 70px 50px;
  }
  .contact-section h2 {
    font-size: 34px;
  }
  .contact-section p {
    font-size: 14px;
  }
  .contact-actions {
    flex-direction: column;
    gap: 25px;
  }
  .desktop-only {
    display: none;
  }
  .footer-inner {
    gap: 20px;
  }
  .footer-copy {
    max-width: 210px;
    margin-left: auto;
    text-align: right;
  }
  .footer-actions {
    width: 100%;
    justify-content: space-between;
  }
  .lightbox {
    width: 98vw;
    padding: 8px;
  }
  .lightbox-heading {
    font-size: 10px;
    padding-left: 3px;
  }
}
