:root {
  color-scheme: dark;
  --ink: #10151f;
  --ink-2: #172033;
  --paper: #f8f4ec;
  --muted: #aab7c7;
  --gold: #ffd36a;
  --rose: #ff6b9a;
  --cyan: #75e6d7;
  --green: #8de28f;
  --violet: #a98bff;
  --electric: #38f8ff;
  --copy: #d8e0eb;
  --line: rgba(248, 244, 236, 0.14);
  --panel: rgba(16, 21, 31, 0.78);
  --panel-deep: rgba(7, 10, 16, 0.62);
  --panel-soft: rgba(248, 244, 236, 0.055);
  --panel-line: rgba(248, 244, 236, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --glow: 0 0 34px rgba(255, 211, 106, 0.28);
  --radius: 8px;
  --max: 1160px;
  --header-height: 72px;
  --hero-y-pad: clamp(24px, 3vw, 36px);
  --hero-strip-height: 44px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  background: var(--ink);
  color: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(117, 230, 215, 0.08), transparent 32%),
    linear-gradient(245deg, rgba(255, 107, 154, 0.08), transparent 38%),
    #10151f;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px) 0 0 / 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 72%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 50;
  transform: translateY(-140%);
  background: var(--gold);
  color: #1b1300;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid transparent;
  background:
    linear-gradient(90deg, rgba(117, 230, 215, 0.08), transparent 26%, rgba(255, 107, 154, 0.08)),
    rgba(16, 21, 31, 0.78);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 44px;
  height: 44px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2.2vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  padding: 8px 2px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--gold), var(--electric));
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 5px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #eef5ff;
  background: rgba(248, 244, 236, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav a,
.language,
.site-footer a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.language:hover,
.site-footer a:hover {
  color: var(--gold);
}

.language {
  display: inline-grid;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 800;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  justify-items: stretch;
  overflow: hidden;
  padding: var(--hero-y-pad) clamp(20px, 5vw, 76px) calc(var(--hero-y-pad) + var(--hero-strip-height));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(120deg, rgba(255, 211, 106, 0.08) 0%, transparent 28%),
    linear-gradient(250deg, rgba(255, 107, 154, 0.12) 0%, transparent 34%),
    radial-gradient(circle at 75% 15%, rgba(117, 230, 215, 0.12), transparent 34%),
    linear-gradient(145deg, #10151f 0%, #151827 44%, #241628 100%);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  min-height: calc(100svh - var(--header-height));
}

.hero-energy {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-energy span {
  position: absolute;
  width: 220px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 211, 106, 0.95), transparent);
  filter: drop-shadow(0 0 14px rgba(255, 211, 106, 0.62));
  transform: rotate(-22deg);
  animation: shoot 8s linear infinite;
}

.hero-energy span:nth-child(1) {
  left: -18%;
  top: 16%;
}

.hero-energy span:nth-child(2) {
  left: 18%;
  top: 54%;
  animation-delay: 2.6s;
  background: linear-gradient(90deg, transparent, rgba(117, 230, 215, 0.9), transparent);
}

.hero-energy span:nth-child(3) {
  left: 46%;
  top: 30%;
  animation-delay: 5.4s;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 154, 0.82), transparent);
}

.hero-landmark {
  position: absolute;
  right: clamp(18px, 7vw, 90px);
  bottom: 0;
  z-index: -1;
  width: min(440px, 44vw);
  height: min(420px, 52vh);
  opacity: 0.38;
  transform: skewX(-8deg);
}

.tower {
  position: absolute;
  bottom: 0;
  width: 22%;
  background: linear-gradient(180deg, rgba(255, 211, 106, 0.26), rgba(16, 21, 31, 0.9));
  border: 1px solid rgba(255, 211, 106, 0.16);
}

.tower::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -22px;
  width: 64%;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 50% 50% 0 0;
  background: rgba(255, 211, 106, 0.24);
}

.tower-left {
  left: 3%;
  height: 38%;
}

.tower-center {
  left: 36%;
  width: 26%;
  height: 78%;
}

.tower-right {
  right: 4%;
  height: 48%;
}

.hero-shell {
  align-self: center;
  width: min(1280px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.68fr);
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
}

.hero-content {
  width: min(820px, 100%);
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: 8.9rem;
  line-height: 1.3;
  letter-spacing: 0;
}

#hero-title {
  position: relative;
  display: inline-block;
  color: transparent;
  background:
    linear-gradient(180deg, #fffaf0 0%, #ffe08a 36%, #75e6d7 72%, #f8f4ec 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family:
    "Arial Black", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 950;
  text-shadow:
    0 0 28px rgba(255, 211, 106, 0.16),
    0 0 54px rgba(117, 230, 215, 0.12);
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.24));
}

h2 {
  margin: 0;
  font-size: 2.18rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.28rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 720px;
  margin: 30px 0 0;
  color: #d9e0ea;
  font-size: 1.3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -35%;
  width: 34%;
  transform: skewX(-20deg);
  background: rgba(255, 255, 255, 0.22);
  transition: left 420ms ease;
}

.button:hover::after {
  left: 120%;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.button.primary {
  background: var(--gold);
  color: #1b1300;
  border-color: var(--gold);
}

.button.ghost {
  background: rgba(248, 244, 236, 0.05);
  color: var(--paper);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(700px, 100%);
  margin: 46px 0 0;
}

.hero-stats div,
.step,
.feature,
.economy,
.trust-item,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 244, 236, 0.055);
}

.hero-stats div {
  position: relative;
  overflow: hidden;
  padding: 16px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

.hero-stats dt {
  color: var(--gold);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.hero-stats dd {
  margin: 7px 0 0;
  color: var(--muted);
}

.hero-stage {
  position: relative;
  min-width: 0;
  min-height: 590px;
  border: 1px solid rgba(248, 244, 236, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(117, 230, 215, 0.14), transparent 28%, rgba(255, 107, 154, 0.1) 72%, transparent),
    linear-gradient(180deg, rgba(248, 244, 236, 0.08), rgba(248, 244, 236, 0.025)),
    rgba(16, 21, 31, 0.64);
  box-shadow:
    0 40px 110px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transform: perspective(1000px) rotateY(-6deg) rotateX(3deg);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 211, 106, 0.12) 0 1px, transparent 1px 18px) 0 0 / 32px 32px,
    linear-gradient(90deg, rgba(248, 244, 236, 0.05) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(rgba(248, 244, 236, 0.045) 1px, transparent 1px) 0 0 / 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-stage::after {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  top: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(117, 230, 215, 0.55), transparent);
  animation: scan 4.4s ease-in-out infinite;
}

.stage-topline {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(248, 244, 236, 0.16);
  border-radius: var(--radius);
  background: rgba(16, 21, 31, 0.78);
  backdrop-filter: blur(12px);
}

.stage-topline {
  left: 20px;
  right: 20px;
  top: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
}

.stage-topline strong {
  font-size: 0.95rem;
}

.stage-topline em {
  margin-left: auto;
  color: var(--cyan);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 900;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(141, 226, 143, 0.12), 0 0 18px rgba(141, 226, 143, 0.9);
  animation: blink 1.8s ease-in-out infinite;
}

.orbit-field {
  position: absolute;
  inset: 82px 28px 142px;
  display: grid;
  place-items: center;
  isolation: isolate;
  perspective: 820px;
  transform-style: preserve-3d;
}

.orbit-field::before,
.orbit-field::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.orbit-field::before {
  inset: 6% 2% 10%;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 211, 106, 0.24), transparent 18%),
    radial-gradient(circle at 34% 42%, rgba(117, 230, 215, 0.22), transparent 28%),
    radial-gradient(circle at 70% 36%, rgba(255, 107, 154, 0.18), transparent 30%);
  filter: blur(2px);
  opacity: 0.72;
  transform: rotateX(58deg);
  animation: fieldBreathe 4.8s ease-in-out infinite;
}

.orbit-field::after {
  inset: 18% 18% 22%;
  z-index: 1;
  border-radius: 50%;
  background:
    conic-gradient(from 45deg, transparent, rgba(117, 230, 215, 0.32), transparent, rgba(255, 211, 106, 0.34), transparent);
  mask-image: radial-gradient(circle, transparent 48%, black 51%, black 58%, transparent 62%);
  transform: rotateX(58deg);
  animation: vortexSpin 8s linear infinite;
}

.orbit-aura {
  position: absolute;
  z-index: 0;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 211, 106, 0.18), transparent 42%),
    radial-gradient(circle, rgba(117, 230, 215, 0.14), transparent 68%);
  filter: blur(10px);
  animation: auraPulse 3.8s ease-in-out infinite;
}

.orbit-ring {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(248, 244, 236, 0.16);
  border-radius: 50%;
  transform: rotateX(58deg) rotateZ(0deg);
  animation: orbitSpin 18s linear infinite;
  box-shadow:
    0 0 30px rgba(117, 230, 215, 0.06),
    inset 0 0 26px rgba(248, 244, 236, 0.04);
}

.orbit-ring::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(117, 230, 215, 0.9);
  transform: translateX(-50%);
}

.ring-one {
  width: 84%;
  aspect-ratio: 1;
}

.ring-two {
  width: 62%;
  aspect-ratio: 1;
  border-color: rgba(117, 230, 215, 0.22);
  animation-duration: 13s;
  animation-direction: reverse;
}

.ring-two::after {
  background: var(--gold);
  box-shadow: 0 0 18px rgba(255, 211, 106, 0.9);
}

.ring-three {
  width: 38%;
  aspect-ratio: 1;
  border-color: rgba(255, 107, 154, 0.22);
  animation-duration: 9s;
}

.ring-three::after {
  background: var(--rose);
  box-shadow: 0 0 18px rgba(255, 107, 154, 0.86);
}

.orbit-core,
.capture-burst {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-core {
  z-index: 3;
  width: 86px;
  height: 86px;
  background:
    conic-gradient(from 0deg, rgba(255, 211, 106, 0.92), rgba(117, 230, 215, 0.72), rgba(255, 107, 154, 0.7), rgba(255, 211, 106, 0.92));
  filter: blur(8px);
  opacity: 0.45;
  animation: coreSpin 5.4s linear infinite;
}

.capture-burst {
  z-index: 4;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(255, 211, 106, 0.34);
  box-shadow:
    inset 0 0 26px rgba(255, 211, 106, 0.14),
    0 0 34px rgba(255, 211, 106, 0.18);
  animation: captureWave 3.2s ease-in-out infinite;
}

.energy-beam {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 58%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(117, 230, 215, 0.92), rgba(255, 211, 106, 0.88), transparent);
  filter: drop-shadow(0 0 12px rgba(117, 230, 215, 0.45));
  transform-origin: center;
  animation: beamCharge 3.8s ease-in-out infinite;
}

.beam-one {
  transform: translate(-50%, -50%) rotate(-19deg);
}

.beam-two {
  width: 44%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 154, 0.82), rgba(255, 211, 106, 0.82), transparent);
  filter: drop-shadow(0 0 12px rgba(255, 107, 154, 0.4));
  transform: translate(-50%, -50%) rotate(32deg);
  animation-delay: 1s;
}

.hero-star {
  position: absolute;
  z-index: 5;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(255, 211, 106, 0.1), 0 0 30px rgba(255, 211, 106, 0.92);
  animation: pulse 2.4s ease-in-out infinite;
}

.star-main {
  width: 32px;
  height: 32px;
}

.hero-star.one {
  left: 16%;
  top: 32%;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(117, 230, 215, 0.1), 0 0 30px rgba(117, 230, 215, 0.92);
}

.hero-star.two {
  right: 18%;
  top: 24%;
  background: var(--rose);
  box-shadow: 0 0 0 8px rgba(255, 107, 154, 0.1), 0 0 30px rgba(255, 107, 154, 0.9);
  animation-delay: 0.5s;
}

.hero-star.three {
  right: 24%;
  bottom: 20%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(141, 226, 143, 0.1), 0 0 30px rgba(141, 226, 143, 0.9);
  animation-delay: 1s;
}

.connection-line {
  position: absolute;
  z-index: 3;
  height: 1px;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(117, 230, 215, 0.9), transparent);
  transform-origin: left center;
  animation: lineGlow 2.4s ease-in-out infinite;
}

.line-one {
  left: 28%;
  top: 42%;
  transform: rotate(16deg);
}

.line-two {
  left: 43%;
  top: 58%;
  transform: rotate(-32deg);
  animation-delay: 0.8s;
}

.comet-trail {
  position: absolute;
  z-index: 4;
  width: 34%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(248, 244, 236, 0.96), rgba(117, 230, 215, 0.9), transparent);
  filter: drop-shadow(0 0 12px rgba(117, 230, 215, 0.7));
  opacity: 0;
  transform-origin: left center;
}

.comet-one {
  left: 13%;
  top: 22%;
  transform: rotate(19deg);
  animation: cometSweep 4.8s ease-in-out infinite;
}

.comet-two {
  right: 6%;
  top: 44%;
  background: linear-gradient(90deg, transparent, rgba(255, 211, 106, 0.95), rgba(255, 107, 154, 0.82), transparent);
  filter: drop-shadow(0 0 12px rgba(255, 107, 154, 0.64));
  transform: rotate(146deg);
  animation: cometSweep 5.8s ease-in-out infinite 1.5s;
}

.orbit-particle {
  position: absolute;
  z-index: 4;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 14px rgba(248, 244, 236, 0.8);
  animation: particleDrift 4.6s ease-in-out infinite;
}

.particle-one {
  left: 24%;
  top: 34%;
  background: var(--cyan);
}

.particle-two {
  right: 26%;
  top: 31%;
  background: var(--gold);
  animation-delay: 0.8s;
}

.particle-three {
  left: 38%;
  bottom: 26%;
  background: var(--rose);
  animation-delay: 1.4s;
}

.particle-four {
  right: 32%;
  bottom: 22%;
  background: var(--green);
  animation-delay: 2.1s;
}

.spark-ribbon {
  position: absolute;
  z-index: 4;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    22px -10px 0 rgba(117, 230, 215, 0.9),
    42px 4px 0 rgba(255, 107, 154, 0.85),
    64px -14px 0 rgba(255, 211, 106, 0.9),
    86px 2px 0 rgba(141, 226, 143, 0.8);
  opacity: 0;
  animation: ribbonSpark 5.2s ease-in-out infinite;
}

.ribbon-one {
  left: 18%;
  top: 56%;
  --spark-rotate: -9deg;
}

.ribbon-two {
  right: 24%;
  top: 24%;
  --spark-rotate: 18deg;
  animation-delay: 1.7s;
}

.selection-reticle {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 50%;
  width: 108px;
  height: 108px;
  border: 1px solid rgba(255, 211, 106, 0.7);
  border-radius: 50%;
  box-shadow:
    0 0 0 10px rgba(255, 211, 106, 0.08),
    0 0 42px rgba(255, 211, 106, 0.34);
  transform: translate(-50%, -50%);
  animation: reticleLock 4s ease-in-out infinite;
}

.selection-reticle::before,
.selection-reticle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 132%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 211, 106, 0.74), transparent);
  transform: translate(-50%, -50%);
}

.selection-reticle::after {
  width: 1px;
  height: 132%;
  background: linear-gradient(180deg, transparent, rgba(255, 211, 106, 0.74), transparent);
}

.hero-slider {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 70px;
  z-index: 5;
  min-height: 228px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 228px;
  padding: 18px;
  border: 1px solid rgba(248, 244, 236, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(117, 230, 215, 0.1), transparent 52%, rgba(255, 107, 154, 0.08)),
    rgba(16, 21, 31, 0.86);
  color: var(--paper);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  animation: heroSlide 12s ease-in-out infinite;
}

.hero-slide:nth-child(2) {
  animation-delay: 4s;
}

.hero-slide:nth-child(3) {
  animation-delay: 8s;
}

.hero-slide > span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-slide strong {
  display: block;
  max-width: 18ch;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.04;
}

.hero-slide p {
  max-width: 44ch;
  margin: 0;
  color: #d8e0eb;
  font-size: 0.95rem;
}

.slide-route,
.video-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.slide-route i,
.video-checklist i {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border: 1px solid rgba(248, 244, 236, 0.12);
  border-radius: var(--radius);
  color: #d8e0eb;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
  background: rgba(248, 244, 236, 0.06);
}

.slide-route i:last-child {
  color: #1b1300;
  background: var(--gold);
}

.hold-meter {
  display: grid;
  gap: 8px;
  max-width: 300px;
  margin-bottom: 18px;
}

.hold-meter span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hold-meter b {
  display: block;
  height: 12px;
  overflow: hidden;
  border: 1px solid rgba(248, 244, 236, 0.12);
  border-radius: 999px;
  background: rgba(248, 244, 236, 0.06);
}

.hold-meter i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--cyan), var(--rose));
  box-shadow: 0 0 22px rgba(117, 230, 215, 0.36);
  animation: holdProgress 4s ease-in-out infinite;
}

.lobby-count {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1px;
  width: 76px;
  height: 76px;
  text-align: center;
  border: 1px solid rgba(255, 211, 106, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 211, 106, 0.18), transparent 66%),
    rgba(255, 211, 106, 0.05);
  box-shadow: 0 0 30px rgba(255, 211, 106, 0.18);
}

.lobby-count strong {
  display: block;
  max-width: none;
  color: var(--gold);
  font-size: 2rem;
  line-height: 0.95;
}

.lobby-count small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.hero-slider-dots {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 34px;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.hero-slider-dots span {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(248, 244, 236, 0.12);
}

.hero-slider-dots span::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--cyan), var(--rose));
  animation: slideDot 12s linear infinite;
}

.hero-slider-dots span:nth-child(2)::before {
  animation-delay: 4s;
}

.hero-slider-dots span:nth-child(3)::before {
  animation-delay: 8s;
}

.video-call-panel {
  position: relative;
  min-width: 0;
  z-index: 4;
  width: 100%;
  min-height: 352px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(117, 230, 215, 0.32);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 107, 154, 0.16), transparent 30%),
    radial-gradient(circle at 18% 22%, rgba(117, 230, 215, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(117, 230, 215, 0.1), rgba(16, 21, 31, 0.88)),
    rgba(16, 21, 31, 0.86);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 22px 70px rgba(56, 248, 255, 0.16),
    0 0 40px rgba(255, 107, 154, 0.1);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.video-call-panel::before {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  top: -30%;
  height: 44%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(248, 244, 236, 0.12), transparent);
  animation: streamSweep 4.8s ease-in-out infinite;
}

.video-call-panel::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border: 1px solid rgba(255, 211, 106, 0.12);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px) 0 0 / 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 86%);
}

.stream-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 30px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.stream-header span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.stream-header i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 7px rgba(255, 107, 154, 0.12), 0 0 18px rgba(255, 107, 154, 0.9);
}

.stream-header strong {
  color: var(--gold);
  font-size: 0.82rem;
}

.stream-status {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.stream-status span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border: 1px solid rgba(248, 244, 236, 0.1);
  border-radius: 6px;
  color: var(--copy);
  background: rgba(7, 10, 16, 0.48);
  font-size: 0.72rem;
  font-weight: 850;
  text-align: center;
}

.stream-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
  min-height: 172px;
  margin-top: 12px;
}

.stream-feed {
  position: relative;
  display: grid;
  align-content: end;
  min-width: 0;
  min-height: 172px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(248, 244, 236, 0.12);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 6px),
    radial-gradient(circle at 50% 34%, rgba(117, 230, 215, 0.18), transparent 25%),
    linear-gradient(145deg, rgba(117, 230, 215, 0.12), rgba(169, 139, 255, 0.08)),
    rgba(8, 13, 23, 0.68);
  box-shadow: inset 0 0 42px rgba(117, 230, 215, 0.06);
}

.stream-feed::before,
.stream-feed::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.stream-feed::before {
  top: 36px;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(248, 244, 236, 0.16), transparent),
    rgba(117, 230, 215, 0.18);
  box-shadow: 0 0 28px rgba(117, 230, 215, 0.2);
}

.stream-feed::after {
  top: 106px;
  width: 118px;
  height: 82px;
  border-radius: 48px 48px 0 0;
  background: linear-gradient(180deg, rgba(248, 244, 236, 0.11), transparent);
}

.stream-feed-secondary {
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 6px),
    radial-gradient(circle at 50% 34%, rgba(255, 107, 154, 0.18), transparent 25%),
    linear-gradient(145deg, rgba(255, 107, 154, 0.12), rgba(255, 211, 106, 0.08)),
    rgba(8, 13, 23, 0.68);
}

.stream-feed-secondary::before {
  background:
    linear-gradient(180deg, rgba(248, 244, 236, 0.16), transparent),
    rgba(255, 107, 154, 0.18);
  box-shadow: 0 0 28px rgba(255, 107, 154, 0.2);
}

.stream-feed span,
.stream-feed strong,
.stream-feed em {
  position: relative;
  z-index: 2;
  display: block;
  line-height: 1.16;
}

.stream-feed em {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(117, 230, 215, 0.2);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(117, 230, 215, 0.08);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.stream-feed-secondary em {
  border-color: rgba(255, 211, 106, 0.24);
  color: var(--gold);
  background: rgba(255, 211, 106, 0.08);
}

.stream-feed span {
  color: var(--paper);
  font-weight: 950;
}

.stream-feed strong {
  margin-top: 4px;
  color: var(--cyan);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stream-feed-secondary strong {
  color: var(--gold);
}

.stream-progress {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 12px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(117, 230, 215, 0.14);
  border-radius: var(--radius);
  background: rgba(7, 10, 16, 0.46);
}

.stream-progress span {
  color: var(--copy);
  font-size: 0.76rem;
  font-weight: 850;
}

.stream-progress strong {
  color: var(--gold);
  font-size: 0.78rem;
  white-space: nowrap;
}

.stream-progress i {
  grid-column: 1 / -1;
  display: block;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(248, 244, 236, 0.08);
}

.stream-progress i::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--cyan), var(--rose));
  box-shadow: 0 0 18px rgba(117, 230, 215, 0.24);
}

.stream-controls {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 12px;
}

.stream-controls span {
  position: relative;
  width: 42px;
  height: 34px;
  border: 1px solid rgba(248, 244, 236, 0.16);
  border-radius: 6px;
  background: rgba(248, 244, 236, 0.07);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.03);
}

.stream-controls span:nth-child(2) {
  width: 52px;
  border-color: rgba(255, 107, 154, 0.32);
  background: rgba(255, 107, 154, 0.18);
}

.stream-controls span::before,
.stream-controls span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.control-mic {
  color: var(--paper);
}

.control-mic::before {
  width: 10px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 999px;
  background: transparent;
}

.control-mic::after {
  width: 16px;
  height: 2px;
  margin-top: 9px;
  border-radius: 999px;
}

.control-end {
  color: var(--rose);
}

.control-end::before {
  width: 22px;
  height: 10px;
  border-radius: 16px 16px 4px 4px;
  transform: translate(-50%, -50%) rotate(180deg);
}

.control-cam {
  color: var(--paper);
}

.control-cam::before {
  width: 18px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 4px;
  background: transparent;
}

.control-cam::after {
  left: calc(50% + 13px);
  width: 7px;
  height: 8px;
  clip-path: polygon(0 0, 100% 24%, 100% 76%, 0 100%);
}

.activity-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(248, 244, 236, 0.12);
  background: rgba(16, 21, 31, 0.74);
  backdrop-filter: blur(12px);
}

.mission-board article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, 0.08) 50%, transparent 58% 100%);
  transform: translateX(-100%);
  animation: panelScan 5.6s ease-in-out infinite;
}

.activity-strip div {
  display: flex;
  width: max-content;
  gap: 36px;
  padding: 13px 0;
  animation: ticker 32s linear infinite;
}

.activity-strip span {
  color: #d8e0eb;
  font-size: 0.9rem;
  white-space: nowrap;
}

section {
  scroll-margin-top: var(--header-height);
  padding: clamp(70px, 10vw, 124px) clamp(20px, 5vw, 76px);
}

.band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 211, 106, 0.055), transparent 28%),
    linear-gradient(118deg, rgba(117, 230, 215, 0.055), transparent 36%),
    linear-gradient(252deg, rgba(255, 107, 154, 0.05), transparent 42%),
    #111823;
}

.band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(90deg, transparent, rgba(255, 211, 106, 0.18), rgba(117, 230, 215, 0.18), transparent);
  opacity: 0.72;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 92%);
}

.band > * {
  position: relative;
  z-index: 1;
}

.section-grid,
.section-heading,
.different,
.early-access,
.site-footer {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.section-grid > *,
.chat-gift-shell > * {
  min-width: 0;
}

.section-copy,
.different-copy p,
.early-access p {
  color: var(--copy);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.section-heading p {
  color: var(--copy);
}

.video-room {
  position: relative;
  overflow: hidden;
}

.video-room::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(117, 230, 215, 0.08), transparent 36%),
    linear-gradient(250deg, rgba(255, 107, 154, 0.08), transparent 42%);
}

.video-room > * {
  position: relative;
  z-index: 1;
}

.video-room-shell {
  width: min(var(--max), 100%);
  margin: clamp(34px, 5vw, 58px) auto 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1.28fr);
  gap: 18px;
  align-items: stretch;
}

.video-rules {
  position: relative;
  overflow: hidden;
  min-height: 304px;
  padding: 22px;
  border: 1px solid rgba(248, 244, 236, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 211, 106, 0.1), transparent 52%, rgba(117, 230, 215, 0.08)),
    rgba(16, 21, 31, 0.78);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.video-rules > span {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-rules strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(1.35rem, 2.8vw, 2.25rem);
  line-height: 1.04;
}

.video-rules p {
  margin: 14px 0 22px;
  color: #d8e0eb;
}

.video-checklist {
  gap: 10px;
}

.video-checklist i {
  border-color: rgba(117, 230, 215, 0.2);
  color: var(--paper);
  background: rgba(117, 230, 215, 0.08);
}

.chat-gifts {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(255, 211, 106, 0.07), transparent 34%),
    linear-gradient(252deg, rgba(117, 230, 215, 0.08), transparent 42%),
    #10151f;
}

.chat-gifts::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(180deg, transparent, rgba(16, 21, 31, 0.74));
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 92%);
}

.chat-gifts::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 211, 106, 0.68), rgba(117, 230, 215, 0.68), transparent);
}

.chat-gifts > * {
  position: relative;
  z-index: 1;
}

.chat-gift-shell {
  width: min(var(--max), 100%);
  max-width: 100%;
  margin: clamp(34px, 5vw, 58px) auto 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1.08fr);
  gap: 16px 18px;
  align-items: stretch;
}

.chat-matchbar {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 12px 16px;
  overflow: hidden;
  border: 1px solid rgba(248, 244, 236, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(117, 230, 215, 0.1), transparent 38%, rgba(255, 107, 154, 0.08)),
    rgba(7, 10, 16, 0.64);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.chat-matchbar::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 211, 106, 0.72), rgba(117, 230, 215, 0.72), transparent);
  opacity: 0.58;
}

.chat-matchbar span,
.chat-matchbar strong,
.chat-matchbar em {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.chat-matchbar span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chat-matchbar span i {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(141, 226, 143, 0.1), 0 0 20px rgba(141, 226, 143, 0.58);
}

.chat-matchbar strong {
  justify-self: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 211, 106, 0.24);
  border-radius: var(--radius);
  color: var(--gold);
  background: rgba(255, 211, 106, 0.08);
  font-size: 0.9rem;
  line-height: 1.1;
  text-align: center;
}

.chat-matchbar em {
  justify-self: end;
  color: var(--copy);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 850;
  text-align: right;
}

.chat-panel,
.gift-panel {
  position: relative;
  overflow: hidden;
  min-height: 372px;
  width: 100%;
  max-width: 100%;
  padding: 20px;
  border: 1px solid rgba(248, 244, 236, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(117, 230, 215, 0.08), transparent 48%, rgba(255, 107, 154, 0.08)),
    rgba(16, 21, 31, 0.82);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  isolation: isolate;
}

.chat-panel::before,
.gift-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(117, 230, 215, 0.08) 50%, transparent 100%);
  opacity: 0.42;
  transform: translateY(-72%);
  animation: panel-scan 7s ease-in-out infinite;
}

.gift-panel::before {
  animation-delay: 1.8s;
}

.chat-panel {
  display: flex;
  min-height: 528px;
  flex-direction: column;
}

.chat-topline,
.gift-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(248, 244, 236, 0.1);
  border-radius: var(--radius);
  background: rgba(7, 10, 16, 0.62);
  color: #d8e0eb;
  font-size: 0.86rem;
  font-weight: 850;
  min-width: 0;
}

.chat-topline strong,
.gift-topline strong {
  color: var(--cyan);
  font-size: 1rem;
  text-shadow: 0 0 18px rgba(117, 230, 215, 0.36);
  white-space: nowrap;
}

.chat-topline span,
.gift-topline span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.chat-status-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(141, 226, 143, 0.68);
}

.chat-profile-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(248, 244, 236, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 211, 106, 0.08), transparent),
    rgba(7, 10, 16, 0.48);
}

.chat-profile-strip > div,
.chat-person > div {
  min-width: 0;
}

.chat-person,
.chat-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.chat-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(117, 230, 215, 0.26);
  border-radius: 50%;
  color: var(--paper);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 211, 106, 0.92), transparent 18%),
    linear-gradient(135deg, rgba(117, 230, 215, 0.42), rgba(255, 107, 154, 0.24));
  box-shadow: 0 0 26px rgba(117, 230, 215, 0.2);
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
}

.chat-person b,
.chat-person span {
  display: block;
}

.chat-person b {
  color: var(--paper);
  font-size: 1rem;
  line-height: 1.15;
}

.chat-person span {
  color: #aab7c7;
  font-size: 0.78rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.chat-level {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(117, 230, 215, 0.22);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(117, 230, 215, 0.08);
  font-size: 0.72rem;
  font-weight: 950;
  white-space: nowrap;
}

.camera-request {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 211, 106, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 211, 106, 0.1);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.camera-request:hover,
.camera-request:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 211, 106, 0.62);
  background: rgba(255, 211, 106, 0.16);
  outline: none;
}

.camera-icon {
  position: relative;
  width: 22px;
  height: 13px;
}

.camera-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 4px;
  background: radial-gradient(circle at 50% 50%, currentColor 0 2px, transparent 2.5px);
}

.camera-icon::after {
  content: "";
  position: absolute;
  right: 0;
  top: 3px;
  width: 5px;
  height: 7px;
  clip-path: polygon(0 0, 100% 22%, 100% 78%, 0 100%);
  background: currentColor;
}

.chat-video-gate {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(117, 230, 215, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(117, 230, 215, 0.08), transparent 52%, rgba(255, 107, 154, 0.08)),
    rgba(7, 10, 16, 0.42);
}

.chat-video-gate span {
  display: block;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chat-video-gate strong {
  display: block;
  margin-top: 4px;
  color: var(--paper);
  font-size: 0.9rem;
  line-height: 1.25;
}

.chat-video-gate i {
  position: relative;
  display: block;
  min-height: 56px;
  overflow: hidden;
  border: 1px solid rgba(248, 244, 236, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 34%, rgba(248, 244, 236, 0.72) 0 13%, transparent 14%),
    radial-gradient(ellipse at 50% 100%, rgba(117, 230, 215, 0.28) 0 34%, transparent 35%),
    linear-gradient(135deg, rgba(117, 230, 215, 0.18), rgba(255, 107, 154, 0.12)),
    rgba(7, 10, 16, 0.74);
  box-shadow: inset 0 0 24px rgba(117, 230, 215, 0.08);
}

.chat-video-gate i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(117, 230, 215, 0.24), transparent);
  animation: streamSweep 4.2s ease-in-out infinite;
}

.chat-thread {
  position: relative;
  z-index: 2;
  display: grid;
  flex: 1;
  align-content: end;
  gap: 12px;
  min-height: 278px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(248, 244, 236, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(117, 230, 215, 0.045), transparent 44%),
    rgba(7, 10, 16, 0.34);
  isolation: isolate;
}

.chat-bubble {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 4px;
  width: fit-content;
  max-width: min(92%, 420px);
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(248, 244, 236, 0.12);
  border-radius: var(--radius);
  color: #eef5ff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  animation: bubble-pop 520ms ease both;
}

.chat-bubble time {
  color: rgba(238, 245, 255, 0.66);
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1;
}

.chat-bubble.incoming {
  background: linear-gradient(135deg, rgba(117, 230, 215, 0.34), rgba(117, 230, 215, 0.14));
}

.chat-bubble.outgoing {
  justify-self: end;
  background: linear-gradient(135deg, rgba(255, 107, 154, 0.34), rgba(255, 107, 154, 0.14));
  animation-delay: 120ms;
}

.chat-bubble.system {
  justify-self: center;
  max-width: 100%;
  color: #1d1606;
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 211, 106, 0.98), rgba(141, 226, 143, 0.92));
  animation-delay: 240ms;
}

.voice-message,
.media-message {
  display: flex;
  align-items: center;
  min-width: min(260px, 100%);
  gap: 10px;
}

.voice-message time,
.media-message time {
  margin-left: auto;
}

.voice-wave {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 44px;
  height: 28px;
  border-radius: 999px;
  background: rgba(7, 10, 16, 0.34);
}

.voice-wave i {
  display: block;
  width: 3px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(117, 230, 215, 0.5);
  animation: voice-bars 1.2s ease-in-out infinite;
}

.voice-wave i:nth-child(1) {
  height: 8px;
}

.voice-wave i:nth-child(2) {
  height: 16px;
  animation-delay: 120ms;
}

.voice-wave i:nth-child(3) {
  height: 11px;
  animation-delay: 240ms;
}

.voice-wave i:nth-child(4) {
  height: 18px;
  animation-delay: 360ms;
}

.photo-preview {
  flex: 0 0 auto;
  width: 42px;
  height: 32px;
  border: 1px solid rgba(248, 244, 236, 0.24);
  border-radius: 6px;
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 211, 106, 0.96) 0 10%, transparent 11%),
    linear-gradient(135deg, rgba(117, 230, 215, 0.78), rgba(255, 107, 154, 0.62));
  box-shadow: 0 0 18px rgba(255, 107, 154, 0.24);
}

.chat-composer {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 42px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px;
  border: 1px solid rgba(248, 244, 236, 0.12);
  border-radius: var(--radius);
  background: rgba(7, 10, 16, 0.58);
}

.chat-tool,
.chat-send {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(248, 244, 236, 0.12);
  border-radius: var(--radius);
  color: var(--paper);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.chat-tool {
  width: 42px;
  height: 42px;
  background: rgba(248, 244, 236, 0.06);
}

.chat-tool:hover,
.chat-tool:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(117, 230, 215, 0.46);
  background: rgba(117, 230, 215, 0.12);
  outline: none;
}

.chat-send:hover {
  transform: none;
  border-color: rgba(248, 244, 236, 0.12);
  background: linear-gradient(135deg, rgba(255, 211, 106, 0.98), rgba(117, 230, 215, 0.9));
}

.chat-send:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.chat-tool::after {
  content: attr(data-tip);
  display: none;
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  z-index: 5;
  min-width: max-content;
  padding: 6px 8px;
  border: 1px solid rgba(248, 244, 236, 0.14);
  border-radius: 6px;
  background: rgba(7, 10, 16, 0.92);
  color: #d8e0eb;
  font-size: 0.72rem;
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.chat-tool:hover::after,
.chat-tool:focus-visible::after {
  display: block;
  opacity: 1;
  transform: translate(-50%, 0);
}

.chat-tool span {
  position: relative;
  display: block;
}

.tool-photo span {
  width: 18px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.tool-photo span::before {
  content: "";
  position: absolute;
  right: 2px;
  top: 2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.tool-photo span::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 2px;
  height: 5px;
  clip-path: polygon(0 100%, 38% 28%, 58% 68%, 76% 42%, 100% 100%);
  background: currentColor;
}

.tool-voice span {
  width: 14px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.tool-voice span::before,
.tool-voice span::after {
  content: "";
  position: absolute;
  left: 50%;
  background: currentColor;
  transform: translateX(-50%);
}

.tool-voice span::before {
  bottom: -7px;
  width: 2px;
  height: 7px;
}

.tool-voice span::after {
  bottom: -9px;
  width: 12px;
  height: 2px;
  border-radius: 999px;
}

.tool-gift span {
  width: 18px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.tool-gift span::before,
.tool-gift span::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.tool-gift span::before {
  left: 7px;
  top: -3px;
  width: 2px;
  height: 20px;
}

.tool-gift span::after {
  left: -3px;
  top: 4px;
  width: 20px;
  height: 2px;
}

.chat-input {
  display: grid;
  align-items: center;
  min-width: 0;
  min-height: 44px;
  border: 1px solid rgba(248, 244, 236, 0.12);
  border-radius: var(--radius);
  padding: 0 12px;
  background: rgba(248, 244, 236, 0.05);
  color: #aab7c7;
  font-size: 0.82rem;
  font-weight: 850;
}

.chat-input span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.chat-send {
  min-height: 42px;
  gap: 8px;
  padding: 0 14px;
  background: linear-gradient(135deg, rgba(255, 211, 106, 0.98), rgba(117, 230, 215, 0.9));
  color: #1b1300;
  font-size: 0.82rem;
  font-weight: 950;
}

.send-icon {
  width: 15px;
  height: 15px;
  clip-path: polygon(0 0, 100% 50%, 0 100%, 22% 52%);
  background: currentColor;
}

.gift-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.gift-wallet {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(117, 230, 215, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(117, 230, 215, 0.1), transparent 52%, rgba(255, 211, 106, 0.08)),
    rgba(7, 10, 16, 0.46);
}

.gift-wallet span,
.gift-wallet em {
  color: var(--copy);
  font-size: 0.78rem;
  font-weight: 850;
}

.gift-wallet strong {
  grid-row: span 2;
  align-self: center;
  color: var(--gold);
  font-size: 1.18rem;
  line-height: 1;
  text-shadow: 0 0 18px rgba(255, 211, 106, 0.22);
  white-space: nowrap;
}

.gift-wallet em {
  font-style: normal;
}

.gift-filters {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.gift-filters span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(248, 244, 236, 0.12);
  border-radius: 999px;
  color: var(--copy);
  background: rgba(248, 244, 236, 0.055);
  font-size: 0.76rem;
  font-weight: 900;
}

.gift-filters .is-active {
  border-color: rgba(255, 211, 106, 0.38);
  color: #1b1300;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
}

.gift-item {
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(248, 244, 236, 0.12);
  border-radius: var(--radius);
  background: rgba(248, 244, 236, 0.055);
  color: var(--paper);
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.gift-item:hover,
.gift-item:focus-visible,
.gift-item.is-selected {
  transform: translateY(-2px);
  border-color: rgba(255, 211, 106, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 211, 106, 0.08), transparent 52%, rgba(117, 230, 215, 0.08)),
    rgba(248, 244, 236, 0.088);
  outline: none;
}

.gift-item i {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 24px rgba(255, 107, 154, 0.48);
}

.gift-item:nth-child(2) i {
  background: var(--green);
  box-shadow: 0 0 24px rgba(141, 226, 143, 0.42);
}

.gift-item:nth-child(3) i {
  background: var(--violet);
  box-shadow: 0 0 24px rgba(169, 139, 255, 0.44);
}

.gift-item i::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  animation: gift-pulse 2.4s ease-in-out infinite;
}

.gift-item span {
  grid-column: 2;
  align-self: end;
  min-width: 0;
  color: #eef5ff;
  font-weight: 900;
}

.gift-item small {
  grid-column: 2;
  align-self: start;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
}

.gift-item strong {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--gold);
  font-size: 0.9rem;
  white-space: nowrap;
}

.gift-summary {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(117, 230, 215, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(117, 230, 215, 0.1), transparent),
    rgba(7, 10, 16, 0.5);
}

.gift-summary span {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gift-summary strong {
  display: block;
  margin-top: 8px;
  color: var(--paper);
  font-size: 1.18rem;
  line-height: 1.18;
}

.gift-summary p {
  margin: 10px 0 0;
  color: #d8e0eb;
  font-size: 0.94rem;
}

.gift-confirm {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 0 16px;
  border: 1px solid rgba(255, 211, 106, 0.34);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 211, 106, 0.98), rgba(117, 230, 215, 0.9));
  color: #1b1300;
  font-size: 0.84rem;
  font-weight: 950;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.gift-confirm:hover,
.gift-confirm:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(255, 211, 106, 0.18);
  outline: none;
}

.journey,
.feature-row,
.economy-grid,
.trust-list,
.faq-list {
  width: min(var(--max), 100%);
  margin: clamp(36px, 5vw, 58px) auto 0;
  display: grid;
  gap: 16px;
}

.journey {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.journey::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 211, 106, 0.55), rgba(117, 230, 215, 0.55), transparent);
}

.step,
.feature,
.economy,
.trust-item {
  position: relative;
  overflow: hidden;
  min-height: 164px;
  padding: 22px;
  box-shadow: var(--shadow);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.step::before,
.feature::before,
.economy::before,
.trust-item::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 211, 106, 0.14), transparent 44%, rgba(117, 230, 215, 0.12));
  transition: opacity 220ms ease;
}

.step:hover,
.feature:hover,
.economy:hover,
.trust-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 211, 106, 0.38);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.28);
}

.step:hover::before,
.feature:hover::before,
.economy:hover::before,
.trust-item:hover::before {
  opacity: 1;
}

.step span {
  display: inline-flex;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 950;
  margin-bottom: 42px;
}

.step p,
.feature p,
.economy p,
.trust-item p,
details p {
  position: relative;
  margin: 0;
  color: var(--copy);
}

.story-pulse {
  width: min(var(--max), 100%);
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 244, 236, 0.055);
}

.story-pulse span {
  color: var(--paper);
  font-weight: 900;
}

.story-pulse i {
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  animation: lineGlow 2.2s ease-in-out infinite;
}

.experience,
.trust {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(255, 211, 106, 0.06), transparent 34%),
    linear-gradient(252deg, rgba(117, 230, 215, 0.07), transparent 42%),
    linear-gradient(180deg, #10151f, #121a25);
  color: var(--paper);
}

.experience::before,
.trust::before,
.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(90deg, transparent, rgba(255, 211, 106, 0.12), rgba(117, 230, 215, 0.12), transparent);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 95%);
}

.faq {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(255, 211, 106, 0.07), transparent 32%),
    linear-gradient(252deg, rgba(117, 230, 215, 0.08), transparent 42%),
    #10151f;
  color: var(--paper);
}

.experience > *,
.trust > *,
.faq > * {
  position: relative;
  z-index: 1;
}

.experience .eyebrow,
.trust .eyebrow {
  color: var(--gold);
  text-shadow: 0 0 22px rgba(255, 211, 106, 0.26);
}

.faq .eyebrow {
  color: var(--gold);
  text-shadow: 0 0 22px rgba(255, 211, 106, 0.28);
}

.experience .section-heading,
.trust .section-heading,
.faq .section-heading {
  text-align: center;
}

.faq .section-heading {
  width: min(var(--max), 100%);
  margin-inline: auto;
  padding: 20px;
  border: 1px solid rgba(248, 244, 236, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(117, 230, 215, 0.08), transparent 46%, rgba(255, 107, 154, 0.08)),
    rgba(7, 10, 16, 0.5);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.faq-hud {
  width: min(var(--max), 100%);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(260px, 0.72fr) minmax(240px, 0.62fr);
  gap: 14px;
}

.faq-terminal,
.faq-status-grid,
.faq-tags {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(248, 244, 236, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(117, 230, 215, 0.08), transparent 48%, rgba(255, 107, 154, 0.08)),
    rgba(7, 10, 16, 0.62);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.2);
}

.faq-terminal::before,
.faq-status-grid::before,
.faq-tags::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, 0.07) 50%, transparent 58% 100%);
  transform: translateX(-120%);
  animation: panelScan 6.4s ease-in-out infinite;
}

.faq-terminal {
  min-height: 168px;
  padding: 18px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.faq-terminal > span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(255, 211, 106, 0.28);
  border-radius: 6px;
  color: var(--gold);
  background: rgba(255, 211, 106, 0.08);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-terminal strong {
  display: block;
  margin-top: 16px;
  color: var(--paper);
  font-size: clamp(1.18rem, 2vw, 1.58rem);
  line-height: 1.08;
}

.faq-terminal p {
  margin: 10px 0 0;
  color: #d8e0eb;
}

.faq-signal {
  display: grid;
  gap: 7px;
  margin-top: 16px;
}

.faq-signal i {
  display: block;
  width: min(var(--value), 100%);
  min-width: 112px;
  max-width: 100%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--cyan), var(--rose));
  box-shadow: 0 0 18px rgba(117, 230, 215, 0.24);
  animation: signalPulse 2.4s ease-in-out infinite;
}

.faq-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  min-height: 168px;
}

.faq-status-grid span {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px 12px;
  border-right: 1px solid rgba(248, 244, 236, 0.08);
}

.faq-status-grid span:last-child {
  border-right: 0;
}

.faq-status-grid b {
  color: var(--cyan);
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  line-height: 1;
  text-shadow: 0 0 20px rgba(117, 230, 215, 0.28);
}

.faq-status-grid small {
  color: #d8e0eb;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.2;
}

.faq-tags {
  display: flex;
  min-height: 168px;
  flex-wrap: wrap;
  align-content: center;
  gap: 8px;
  padding: 18px;
}

.faq-tags span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(117, 230, 215, 0.2);
  border-radius: 6px;
  color: #d8e0eb;
  background: rgba(117, 230, 215, 0.07);
  font-size: 0.78rem;
  font-weight: 900;
}

.sky-demo {
  position: relative;
  isolation: isolate;
  width: min(var(--max), 100%);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--panel-line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(117, 230, 215, 0.08), transparent 46%, rgba(255, 107, 154, 0.08)),
    var(--panel);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.28);
}

.sky-demo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(115deg, rgba(117, 230, 215, 0.16), transparent 42%, rgba(255, 107, 154, 0.12));
}

.sky-demo.reveal .demo-map,
.sky-demo.reveal .demo-sky {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

.sky-demo.reveal .demo-sky {
  transform: translateY(18px) scale(0.985);
  transition-delay: 90ms;
}

.sky-demo.reveal.is-visible .demo-map,
.sky-demo.reveal.is-visible .demo-sky {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.sky-demo.reveal .map-node,
.sky-demo.reveal .place-card {
  opacity: 0;
  transform: translateY(12px) scale(0.96);
}

.sky-demo.reveal.is-visible .map-node,
.sky-demo.reveal.is-visible .place-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.demo-map {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 360px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(248, 244, 236, 0.03) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(rgba(248, 244, 236, 0.026) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(135deg, rgba(117, 230, 215, 0.1), transparent 52%, rgba(255, 211, 106, 0.08)),
    rgba(7, 10, 16, 0.64);
}

.demo-map::before {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  aspect-ratio: auto;
  border-radius: 0;
  background: linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, 0.07) 50%, transparent 58% 100%);
  transform: translateX(-120%);
  animation: panelScan 6.2s ease-in-out infinite;
  pointer-events: none;
}

.map-toolbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(248, 244, 236, 0.12);
  border-radius: var(--radius);
  background: rgba(7, 10, 16, 0.58);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.map-toolbar span,
.map-toolbar strong {
  display: inline-flex;
  align-items: center;
  line-height: 1.1;
}

.map-toolbar span {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-toolbar strong {
  min-height: 28px;
  padding: 6px 9px;
  border-radius: var(--radius);
  background: rgba(255, 211, 106, 0.14);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-steps {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.map-steps span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 9px;
  border: 1px solid rgba(248, 244, 236, 0.12);
  border-radius: var(--radius);
  background: rgba(248, 244, 236, 0.06);
  color: var(--copy);
  font-size: 0.76rem;
  font-weight: 900;
}

.map-steps .is-active {
  background: var(--gold);
  color: #1b1300;
  border-color: rgba(255, 211, 106, 0.48);
  box-shadow: 0 12px 24px rgba(255, 211, 106, 0.3);
}

.map-canvas {
  position: relative;
  z-index: 2;
  flex: 1;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(248, 244, 236, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(117, 230, 215, 0.07), rgba(255, 211, 106, 0.035)),
    rgba(16, 21, 31, 0.48);
  box-shadow: inset 0 0 0 1px rgba(248, 244, 236, 0.05), inset 0 0 46px rgba(56, 248, 255, 0.06);
}

.map-outline {
  position: absolute;
  inset: 7% 5% 32%;
  width: 90%;
  height: 61%;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.28));
}

.city-shape {
  fill: rgba(117, 230, 215, 0.2);
  stroke: rgba(248, 244, 236, 0.5);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.city-asia {
  fill: rgba(255, 211, 106, 0.16);
}

.water-shape {
  fill: none;
  stroke: rgba(56, 248, 255, 0.72);
  stroke-width: 12;
  stroke-linecap: round;
  filter: drop-shadow(0 0 12px rgba(56, 248, 255, 0.28));
  vector-effect: non-scaling-stroke;
}

.district-line {
  fill: none;
  stroke: rgba(248, 244, 236, 0.16);
  stroke-width: 1.4;
  stroke-dasharray: 4 5;
  vector-effect: non-scaling-stroke;
}

.map-route {
  fill: none;
  stroke: var(--rose);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
  filter: drop-shadow(0 0 8px rgba(255, 107, 154, 0.42));
  animation: routeDash 5s linear infinite;
  vector-effect: non-scaling-stroke;
}

.map-node {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  max-width: calc(100% - 32px);
  padding: 6px 9px;
  border: 1px solid rgba(248, 244, 236, 0.12);
  border-radius: var(--radius);
  background: rgba(7, 10, 16, 0.72);
  color: var(--paper);
  font-size: 0.76rem;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.map-node:hover,
.map-node:focus-visible {
  border-color: rgba(255, 107, 154, 0.48);
  box-shadow: 0 16px 30px rgba(255, 107, 154, 0.14);
}

.map-node i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(117, 230, 215, 0.14), 0 0 18px rgba(117, 230, 215, 0.68);
}

.node-galata {
  left: 31%;
  top: 38%;
  background: var(--ink);
  color: var(--paper);
  border-color: rgba(255, 211, 106, 0.42);
  transition:
    opacity 520ms ease 120ms,
    transform 520ms ease 120ms,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.node-galata i {
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(255, 211, 106, 0.14), 0 0 22px rgba(255, 211, 106, 0.78);
}

.place-card {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: min(270px, calc(100% - 32px));
  z-index: 3;
  padding: 13px 14px;
  border: 1px solid rgba(248, 244, 236, 0.14);
  border-radius: var(--radius);
  background: rgba(16, 21, 31, 0.9);
  color: var(--paper);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
  transition:
    opacity 560ms ease 260ms,
    transform 560ms ease 260ms;
}

.place-card span {
  display: block;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.place-card strong {
  display: block;
  margin-top: 5px;
  line-height: 1.16;
}

.place-card p {
  margin: 5px 0 0;
  color: #cbd5e1;
  font-size: 0.86rem;
}

.demo-sky {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 211, 106, 0.2) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 32%, rgba(117, 230, 215, 0.28) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 70%, rgba(255, 107, 154, 0.25) 0 1px, transparent 2px),
    radial-gradient(circle at 52% 52%, rgba(255, 211, 106, 0.15), transparent 22%),
    linear-gradient(145deg, #0b1019 0%, #101827 48%, #1b1424 100%);
  isolation: isolate;
}

.demo-sky::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 24%, rgba(248, 244, 236, 0.7) 0 1px, transparent 1.8px),
    radial-gradient(circle at 28% 68%, rgba(117, 230, 215, 0.55) 0 1px, transparent 1.8px),
    radial-gradient(circle at 42% 18%, rgba(255, 211, 106, 0.65) 0 1px, transparent 1.8px),
    radial-gradient(circle at 68% 22%, rgba(248, 244, 236, 0.68) 0 1px, transparent 1.8px),
    radial-gradient(circle at 76% 58%, rgba(255, 107, 154, 0.55) 0 1px, transparent 1.8px),
    radial-gradient(circle at 91% 34%, rgba(117, 230, 215, 0.58) 0 1px, transparent 1.8px);
  opacity: 0.76;
  animation: skyTwinkle 4.8s ease-in-out infinite;
}

.demo-sky::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(180deg, transparent, rgba(255, 211, 106, 0.08), transparent);
  transform: translateY(-100%);
  animation: scanVertical 6s ease-in-out infinite;
}

.sky-depth {
  position: absolute;
  inset: 12% 8% 18%;
  z-index: 1;
  border: 1px solid rgba(117, 230, 215, 0.12);
  border-radius: 50%;
  transform: rotateX(62deg) rotateZ(-11deg);
  pointer-events: none;
}

.depth-one {
  box-shadow: 0 0 44px rgba(117, 230, 215, 0.08);
  animation: orbitDrift 13s linear infinite;
}

.depth-two {
  inset: 22% 18% 27%;
  border-color: rgba(255, 211, 106, 0.14);
  transform: rotateX(62deg) rotateZ(18deg);
  animation: orbitDrift 16s linear reverse infinite;
}

.sky-horizon {
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -1px;
  z-index: 1;
  height: 86px;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent, rgba(7, 10, 16, 0.86)),
    linear-gradient(90deg, transparent 0 8%, rgba(117, 230, 215, 0.34) 8.5% 9%, transparent 9.5% 32%, rgba(255, 211, 106, 0.28) 32.5% 33%, transparent 33.5% 62%, rgba(255, 107, 154, 0.3) 62.5% 63%, transparent 63.5%);
  clip-path: polygon(0 100%, 0 72%, 10% 72%, 10% 45%, 16% 45%, 16% 78%, 27% 78%, 27% 56%, 35% 56%, 35% 82%, 46% 82%, 46% 38%, 54% 38%, 54% 85%, 64% 85%, 64% 61%, 72% 61%, 72% 82%, 84% 82%, 84% 48%, 91% 48%, 91% 100%);
  opacity: 0.5;
}

.capture-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 146px;
  height: 146px;
  border: 1px solid rgba(255, 211, 106, 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 18px rgba(255, 211, 106, 0.035),
    inset 0 0 32px rgba(255, 211, 106, 0.1),
    0 0 36px rgba(255, 211, 106, 0.16);
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: capturePulse 3.4s ease-in-out infinite;
}

.constellation-path {
  position: absolute;
  left: 22%;
  right: 19%;
  top: 34%;
  z-index: 2;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(117, 230, 215, 0.02), rgba(117, 230, 215, 0.72), rgba(255, 211, 106, 0.72), rgba(255, 107, 154, 0.02));
  filter: drop-shadow(0 0 10px rgba(117, 230, 215, 0.4));
  transform: rotate(19deg);
  animation: lineGlow 2.4s ease-in-out infinite;
}

.sky-particle {
  position: absolute;
  z-index: 2;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  pointer-events: none;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(117, 230, 215, 0.74);
  animation: particleDrift 4.8s ease-in-out infinite;
}

.particle-a {
  left: 38%;
  top: 46%;
}

.particle-b {
  right: 21%;
  top: 28%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(255, 211, 106, 0.72);
  animation-delay: 0.9s;
}

.particle-c {
  left: 68%;
  bottom: 25%;
  background: var(--rose);
  box-shadow: 0 0 16px rgba(255, 107, 154, 0.7);
  animation-delay: 1.6s;
}

.demo-sky p {
  position: absolute;
  z-index: 4;
  left: 28px;
  bottom: 24px;
  margin: 0;
  color: #d8e0eb;
}

.demo-sky strong {
  color: var(--gold);
}

.demo-star {
  position: absolute;
  z-index: 4;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(255, 211, 106, 0.08), 0 0 32px rgba(255, 211, 106, 0.9);
  cursor: pointer;
  animation: pulse 2.4s ease-in-out infinite;
}

.signal-line {
  position: absolute;
  z-index: 3;
  width: 36%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 211, 106, 0.78), transparent);
  animation: lineGlow 2.3s ease-in-out infinite;
}

.signal-one {
  left: 27%;
  top: 35%;
  transform: rotate(14deg);
}

.signal-two {
  right: 25%;
  top: 52%;
  transform: rotate(-28deg);
  background: linear-gradient(90deg, transparent, rgba(117, 230, 215, 0.82), transparent);
  animation-delay: 0.8s;
}

.demo-notification,
.countdown-badge {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(248, 244, 236, 0.16);
  border-radius: var(--radius);
  background: rgba(16, 21, 31, 0.82);
  color: var(--paper);
  backdrop-filter: blur(14px);
}

.demo-notification {
  right: 26px;
  top: 28px;
  width: min(320px, calc(100% - 52px));
  padding: 14px;
  animation: floatCard 4.2s ease-in-out infinite;
}

.demo-notification span {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.demo-notification strong {
  display: block;
  margin-top: 5px;
  line-height: 1.2;
}

.countdown-badge {
  left: 28px;
  top: 26px;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 211, 106, 0.08), var(--glow);
}

.countdown-badge span {
  display: block;
  color: var(--gold);
  font-size: 1.75rem;
  font-weight: 950;
  line-height: 1;
}

.countdown-badge small {
  margin-top: -14px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.sky-status-card {
  position: absolute;
  right: 26px;
  bottom: 74px;
  z-index: 5;
  min-width: 190px;
  padding: 12px 14px;
  border: 1px solid rgba(117, 230, 215, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(117, 230, 215, 0.1), transparent),
    rgba(7, 10, 16, 0.7);
  color: var(--paper);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.sky-status-card span {
  display: block;
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sky-status-card strong {
  display: block;
  margin-top: 4px;
  color: var(--paper);
  line-height: 1.15;
}

.demo-star:hover {
  transform: scale(1.35);
}

.demo-star.is-picked {
  transform: scale(1.42);
  outline: 2px solid rgba(248, 244, 236, 0.86);
  outline-offset: 5px;
}

.star-a {
  left: 24%;
  top: 28%;
}

.star-b {
  right: 28%;
  top: 42%;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(117, 230, 215, 0.08), 0 0 32px rgba(117, 230, 215, 0.9);
  animation-delay: 0.6s;
}

.star-c {
  left: 58%;
  bottom: 30%;
  background: var(--rose);
  box-shadow: 0 0 0 8px rgba(255, 107, 154, 0.08), 0 0 32px rgba(255, 107, 154, 0.9);
  animation-delay: 1.1s;
}

.feature-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mission-board {
  width: min(var(--max), 100%);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.mission-board article {
  position: relative;
  overflow: hidden;
  min-height: 146px;
  padding: 18px;
  border: 1px solid var(--panel-line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 211, 106, 0.12), transparent 42%, rgba(117, 230, 215, 0.1)),
    var(--panel);
  color: var(--paper);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

.mission-board span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mission-board strong {
  display: block;
  line-height: 1.12;
}

.mission-board p {
  margin: 9px 0 0;
  color: var(--copy);
}

.feature,
.trust-item,
details {
  background:
    linear-gradient(135deg, rgba(117, 230, 215, 0.08), transparent 48%, rgba(255, 107, 154, 0.07)),
    var(--panel);
  color: var(--paper);
  border-color: var(--panel-line);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.economy-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.economy h3 {
  color: var(--gold);
}

.market-ticker {
  width: min(var(--max), 100%);
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
}

.badge-system {
  width: min(var(--max), 100%);
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.badges .badge-system {
  margin-top: 0;
}

.badge-copy {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 211, 106, 0.1), transparent 46%, rgba(117, 230, 215, 0.08)),
    var(--panel-soft);
  box-shadow: var(--shadow);
}

.badge-copy h2 {
  font-size: 2.25rem;
  line-height: 1.05;
}

.badge-copy p:last-child {
  margin-bottom: 0;
  color: #d8e0eb;
}

.badge-ladder {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.badge-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(117, 230, 215, 0.08), transparent 54%),
    var(--panel-soft);
  box-shadow: var(--shadow);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.badge-card::before {
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 4px;
  border-radius: 99px;
  bottom: 10px;
  background: linear-gradient(90deg, var(--gold), var(--cyan), var(--rose));
  opacity: 0.72;
}

.badge-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 211, 106, 0.38);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.28);
}

.badge-card span {
  display: inline-grid;
  place-items: center;
  min-width: 52px;
  min-height: 34px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 211, 106, 0.28);
  border-radius: var(--radius);
  color: var(--gold);
  font-weight: 950;
}

.badge-card strong {
  display: block;
  min-height: 46px;
  line-height: 1.12;
}

.badge-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.market-track {
  display: flex;
  width: max-content;
  animation: ticker 34s linear infinite;
}

.market-ticker span {
  display: inline-flex;
  padding: 14px 22px;
  color: #d8e0eb;
  font-weight: 800;
  white-space: nowrap;
  animation: softPulse 3.4s ease-in-out infinite;
}

.earnings {
  position: relative;
  overflow: hidden;
}

.earn-loop {
  width: min(var(--max), 100%);
  margin: clamp(34px, 5vw, 58px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.earn-loop article,
.earn-board div {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--panel-line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(117, 230, 215, 0.08), transparent 48%, rgba(255, 107, 154, 0.07)),
    var(--panel);
  box-shadow: var(--shadow);
}

.earn-loop article {
  min-height: 236px;
  padding: 20px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.earn-loop article::before,
.earn-board div::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, 0.07) 50%, transparent 58% 100%);
  transform: translateX(-120%);
  animation: panelScan 6.2s ease-in-out infinite;
}

.earn-loop span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  min-width: 44px;
  min-height: 34px;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(255, 211, 106, 0.28);
  border-radius: var(--radius);
  color: var(--gold);
  background: rgba(255, 211, 106, 0.08);
  font-weight: 950;
}

.earn-loop strong,
.earn-loop p,
.earn-board span,
.earn-board strong {
  position: relative;
  z-index: 1;
}

.earn-loop strong {
  display: block;
  color: var(--paper);
  font-size: 1.1rem;
  line-height: 1.16;
}

.earn-loop p {
  margin: 12px 0 0;
  color: var(--copy);
  font-size: 0.94rem;
}

.earn-board {
  width: min(var(--max), 100%);
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.earn-board div {
  min-height: 118px;
  padding: 18px;
}

.earn-board span {
  display: block;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.earn-board strong {
  display: block;
  margin-top: 10px;
  color: var(--paper);
  line-height: 1.18;
}

.trust-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.different {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  align-items: center;
  gap: clamp(30px, 6vw, 78px);
}

.experience-bars {
  display: grid;
  gap: 14px;
}

.experience-bars div {
  min-height: 48px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 244, 236, 0.07);
}

.experience-bars span {
  display: flex;
  align-items: center;
  width: var(--value);
  min-width: 156px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 6px;
  color: #1b1300;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  font-weight: 900;
  animation: barGrow 1.4s ease both;
}

.faq-list {
  max-width: var(--max);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  counter-reset: faqQuest;
}

details {
  padding: 18px 20px;
}

.faq details {
  position: relative;
  overflow: hidden;
  min-height: 78px;
  padding: 0;
  border: 1px solid rgba(248, 244, 236, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(117, 230, 215, 0.08), transparent 52%, rgba(255, 107, 154, 0.08)),
    rgba(16, 21, 31, 0.74);
  color: var(--paper);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  counter-increment: faqQuest;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.faq details:hover,
.faq details[open] {
  transform: translateY(-2px);
  border-color: rgba(255, 211, 106, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 211, 106, 0.1), transparent 42%, rgba(117, 230, 215, 0.1)),
    rgba(16, 21, 31, 0.86);
}

.faq details::after {
  content: "QUEST " counter(faqQuest, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 13px;
  z-index: 1;
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(255, 211, 106, 0.28);
  border-radius: 6px;
  color: var(--gold);
  background: rgba(255, 211, 106, 0.08);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

.faq summary {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 58px 18px 18px;
  color: #eef5ff;
  list-style: none;
  outline: none;
}

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

.faq summary::after {
  content: "+";
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(117, 230, 215, 0.26);
  border-radius: 6px;
  color: var(--cyan);
  background: rgba(117, 230, 215, 0.08);
  font-size: 1.1rem;
  line-height: 1;
  transition:
    transform 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.faq details[open] summary::after {
  content: "-";
  color: var(--gold);
  border-color: rgba(255, 211, 106, 0.38);
  transform: rotate(180deg);
}

details p {
  margin-top: 12px;
  color: var(--copy);
}

.faq details p {
  position: relative;
  z-index: 2;
  margin: 0 18px 24px;
  padding: 14px 16px;
  border: 1px solid rgba(117, 230, 215, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(117, 230, 215, 0.08), transparent),
    rgba(7, 10, 16, 0.52);
  color: #d8e0eb;
}

.early-access {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.85fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.access-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(117, 230, 215, 0.08), transparent 48%, rgba(255, 107, 154, 0.08)),
    var(--panel-soft);
  box-shadow: var(--shadow);
}

.access-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.access-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: rgba(16, 21, 31, 0.88);
  color: var(--paper);
}

.access-form input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--cyan);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(20px, 5vw, 76px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.22);
  }
}

@keyframes heroSlide {
  0%,
  29% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  36%,
  100% {
    opacity: 0;
    transform: translateY(-14px) scale(0.985);
  }
}

@keyframes slideDot {
  0%,
  33.333% {
    width: 100%;
  }
  33.334%,
  100% {
    width: 0;
  }
}

@keyframes reticleLock {
  0%,
  100% {
    opacity: 0.42;
    transform: translate(-50%, -50%) scale(0.78) rotate(0deg);
  }
  45%,
  68% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(45deg);
  }
}

@keyframes holdProgress {
  0%,
  18% {
    width: 0;
  }
  72%,
  100% {
    width: 100%;
  }
}

@keyframes fieldBreathe {
  0%,
  100% {
    opacity: 0.56;
    transform: rotateX(58deg) scale(0.94);
  }
  50% {
    opacity: 0.88;
    transform: rotateX(58deg) scale(1.04);
  }
}

@keyframes vortexSpin {
  to {
    transform: rotateX(58deg) rotateZ(360deg);
  }
}

@keyframes auraPulse {
  0%,
  100% {
    opacity: 0.52;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.82;
    transform: scale(1.08);
  }
}

@keyframes coreSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes captureWave {
  0%,
  100% {
    opacity: 0.18;
    transform: translate(-50%, -50%) scale(0.72);
  }
  48% {
    opacity: 0.86;
    transform: translate(-50%, -50%) scale(1.06);
  }
}

@keyframes beamCharge {
  0%,
  100% {
    opacity: 0.18;
    clip-path: inset(0 48% 0 48%);
  }
  42%,
  68% {
    opacity: 0.86;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes cometSweep {
  0%,
  100% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  18%,
  34% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
  48% {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
  }
}

@keyframes ribbonSpark {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(-18px, 12px, 0) rotate(var(--spark-rotate, 0deg)) scale(0.82);
  }
  38%,
  58% {
    opacity: 1;
    transform: translate3d(12px, -10px, 0) rotate(var(--spark-rotate, 0deg)) scale(1);
  }
}

@keyframes particleDrift {
  0%,
  100% {
    opacity: 0.34;
    transform: translate3d(0, 0, 0) scale(0.86);
  }
  50% {
    opacity: 1;
    transform: translate3d(14px, -18px, 0) scale(1.18);
  }
}

@keyframes skyTwinkle {
  0%,
  100% {
    opacity: 0.56;
    filter: saturate(0.9);
  }
  50% {
    opacity: 0.95;
    filter: saturate(1.35);
  }
}

@keyframes orbitDrift {
  to {
    transform: rotateX(62deg) rotateZ(349deg);
  }
}

@keyframes capturePulse {
  0%,
  100% {
    opacity: 0.62;
    transform: translate(-50%, -50%) scale(0.9);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes shoot {
  0% {
    transform: translate3d(-30vw, 0, 0) rotate(-22deg);
    opacity: 0;
  }
  8%,
  18% {
    opacity: 1;
  }
  32%,
  100% {
    transform: translate3d(115vw, 42vh, 0) rotate(-22deg);
    opacity: 0;
  }
}

@keyframes scan {
  0%,
  100% {
    transform: translateY(-90px);
    opacity: 0;
  }
  50% {
    transform: translateY(260px);
    opacity: 1;
  }
}

@keyframes scanVertical {
  0%,
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
  45%,
  55% {
    opacity: 1;
  }
  70% {
    transform: translateY(100%);
    opacity: 0;
  }
}

@keyframes orbitSpin {
  to {
    transform: rotateX(58deg) rotateZ(360deg);
  }
}

@keyframes lineGlow {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 1;
  }
}

@keyframes routeDash {
  to {
    stroke-dashoffset: -72;
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes streamSweep {
  0%,
  100% {
    transform: translateY(-45%);
    opacity: 0;
  }
  42%,
  58% {
    opacity: 0.9;
  }
  72% {
    transform: translateY(260%);
    opacity: 0;
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 0.65;
  }
  50% {
    opacity: 1;
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes softPulse {
  0%,
  100% {
    opacity: 0.78;
  }
  50% {
    opacity: 1;
  }
}

@keyframes barGrow {
  from {
    width: 0;
  }
}

@keyframes signalPulse {
  0%,
  100% {
    opacity: 0.78;
    filter: saturate(1);
  }
  50% {
    opacity: 1;
    filter: saturate(1.35);
  }
}

@keyframes panelScan {
  0%,
  48%,
  100% {
    transform: translateX(-120%);
  }
  62% {
    transform: translateX(120%);
  }
}

@keyframes panel-scan {
  0%,
  36%,
  100% {
    transform: translateY(-72%);
  }
  58% {
    transform: translateY(72%);
  }
}

@keyframes bubble-pop {
  from {
    opacity: 1;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes gift-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes voice-bars {
  0%,
  100% {
    transform: scaleY(0.78);
  }
  50% {
    transform: scaleY(1.18);
  }
}

@media (max-width: 900px) {
  .site-header {
    gap: 12px;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    margin-left: auto;
  }

  .site-header.is-menu-open {
    bottom: 0;
    z-index: 1000;
    height: 100svh;
    min-height: 100svh;
    max-height: 100svh;
    align-items: flex-start;
    overflow: hidden;
    border-bottom-color: var(--line);
    background:
      radial-gradient(circle at 20% 0%, rgba(117, 230, 215, 0.13), transparent 32%),
      radial-gradient(circle at 86% 18%, rgba(255, 107, 154, 0.12), transparent 36%),
      linear-gradient(180deg, rgba(16, 21, 31, 0.99), rgba(9, 12, 18, 0.99));
  }

  .site-header.is-menu-open .site-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 10px;
    padding: clamp(24px, 8vw, 56px);
    border-top: 1px solid rgba(248, 244, 236, 0.12);
    background: transparent;
    box-shadow: inset 0 1px 0 rgba(248, 244, 236, 0.08);
    -webkit-backdrop-filter: blur(28px);
    backdrop-filter: blur(28px);
    overflow-y: auto;
  }

  .site-header.is-menu-open .site-nav a {
    min-height: 58px;
    display: grid;
    grid-template-columns: 8px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(248, 244, 236, 0.1);
    border-radius: 8px;
    color: #eef5ff;
    font-weight: 900;
    background: rgba(248, 244, 236, 0.055);
  }

  .site-header.is-menu-open .site-nav a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--cyan);
    box-shadow: 0 0 18px rgba(117, 230, 215, 0.48);
  }

  .site-header.is-menu-open .site-nav a::after {
    content: "\2192";
    position: static;
    display: inline-block;
    width: auto;
    height: auto;
    transform: none;
    color: var(--gold);
    background: none;
  }

  body.is-menu-open,
  body:has(.site-header.is-menu-open) {
    overflow: hidden;
  }

  h1 {
    font-size: 5.8rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
  }

  .hero-landmark {
    width: 70vw;
    opacity: 0.25;
  }

  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 560px;
    transform: none;
  }

  .video-room-shell,
  .chat-gift-shell {
    grid-template-columns: 1fr;
  }

  .chat-matchbar {
    grid-template-columns: 1fr;
  }

  .chat-matchbar::before {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 12px;
  }

  .chat-matchbar strong,
  .chat-matchbar em {
    justify-self: start;
    text-align: left;
  }

  .section-grid,
  .sky-demo,
  .different,
  .faq-hud,
  .badge-system,
  .early-access {
    grid-template-columns: 1fr;
  }

  .journey,
  .feature-row,
  .economy-grid,
  .trust-list,
  .faq-list,
  .badge-ladder,
  .mission-board,
  .earn-loop,
  .earn-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 64px;
    --hero-y-pad: 28px;
    --hero-strip-height: 42px;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 1.13rem;
  }

  h3 {
    font-size: 1.12rem;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
    padding: var(--hero-y-pad) 24px calc(var(--hero-y-pad) + var(--hero-strip-height));
  }

  .hero-shell,
  .hero-content,
  .hero-actions,
  .hero-stats,
  .hero-stage {
    width: 100%;
    max-width: calc(100vw - 48px);
  }

  .hero-lead {
    font-size: 1.08rem;
    max-width: 100%;
  }

  .hero .eyebrow {
    max-width: 24ch;
  }

  .hero-actions,
  .site-footer,
  .site-footer nav {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 520px;
  }

  .stage-topline {
    min-height: 58px;
  }

  .stage-topline strong,
  .stage-topline em {
    font-size: 0.78rem;
  }

  .stage-topline em {
    margin-left: 20px;
  }

  .orbit-field {
    inset: 86px 18px 146px;
  }

  .hero-slider {
    left: 14px;
    right: 14px;
    bottom: 66px;
    min-height: 238px;
  }

  .hero-slide {
    min-height: 238px;
    padding: 14px;
  }

  .hero-slide strong {
    max-width: 16ch;
    font-size: 1.35rem;
  }

  .hero-slide p {
    font-size: 0.88rem;
  }

  .hero-slider-dots {
    left: 14px;
    right: 14px;
    bottom: 32px;
  }

  .selection-reticle {
    width: 86px;
    height: 86px;
  }

  .video-call-panel {
    min-height: auto;
    padding: 12px;
  }

  .stream-header {
    gap: 8px;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }

  .stream-status {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .stream-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    min-height: 150px;
  }

  .stream-feed {
    min-height: 150px;
    padding: 10px;
  }

  .stream-feed::before {
    top: 26px;
    width: 48px;
    height: 48px;
  }

  .stream-feed::after {
    top: 74px;
    width: 78px;
    height: 58px;
  }

  .stream-feed em {
    left: 8px;
    top: 8px;
    min-height: 22px;
    padding: 0 7px;
    font-size: 0.58rem;
  }

  .stream-progress {
    grid-template-columns: 1fr;
  }

  .stream-controls span {
    width: 30px;
    height: 26px;
  }

  .stream-controls span:nth-child(2) {
    width: 42px;
  }

  .chat-gift-shell {
    gap: 14px;
    margin-top: 28px;
  }

  .chat-panel,
  .gift-panel {
    min-height: auto;
    padding: 14px;
  }

  .chat-topline,
  .gift-topline {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 0.78rem;
  }

  .chat-profile-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .chat-person,
  .chat-actions {
    width: 100%;
  }

  .chat-actions {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .chat-level {
    justify-content: center;
  }

  .camera-request {
    width: 100%;
  }

  .chat-video-gate {
    grid-template-columns: 1fr;
  }

  .chat-video-gate i {
    min-height: 74px;
  }

  .chat-thread {
    min-height: 292px;
    padding: 12px;
  }

  .chat-composer {
    grid-template-columns: repeat(3, minmax(42px, 1fr)) minmax(84px, 1.25fr);
  }

  .chat-input {
    grid-column: 1 / -1;
    order: -1;
  }

  .gift-item {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 68px;
  }

  .gift-wallet {
    grid-template-columns: 1fr;
  }

  .gift-wallet strong {
    grid-row: auto;
  }

  .gift-item small {
    grid-column: 2;
  }

  .gift-item strong {
    grid-column: 2;
    grid-row: auto;
    justify-self: start;
  }

  .stage-topline {
    left: 14px;
    right: 14px;
  }

  .hero-stats,
  .journey,
  .feature-row,
  .economy-grid,
  .trust-list,
  .faq-list,
  .badge-ladder,
  .mission-board,
  .earn-loop,
  .earn-board {
    grid-template-columns: 1fr;
  }

  .earn-loop article {
    min-height: 190px;
  }

  .faq .section-heading {
    padding: 16px;
    text-align: left;
  }

  .faq-hud {
    gap: 12px;
    margin-top: 14px;
  }

  .faq-terminal,
  .faq-status-grid,
  .faq-tags {
    min-height: auto;
  }

  .faq-status-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faq-status-grid span {
    padding: 14px 10px;
  }

  .faq details::after {
    left: 14px;
    top: 12px;
  }

  .faq summary {
    min-height: 86px;
    padding: 40px 14px 18px;
  }

  .faq details p {
    margin: 0 14px 22px;
  }

  .sky-demo,
  .demo-map,
  .demo-sky {
    min-height: 300px;
  }

  .demo-sky {
    min-height: 420px;
  }

  .demo-map {
    padding: 14px;
    gap: 12px;
  }

  .map-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-steps {
    gap: 6px;
  }

  .map-steps span,
  .map-node {
    font-size: 0.7rem;
  }

  .map-canvas {
    min-height: 270px;
  }

  .countdown-badge {
    left: 18px;
    top: 22px;
    width: 72px;
    height: 72px;
  }

  .countdown-badge span {
    font-size: 1.45rem;
  }

  .countdown-badge small {
    margin-top: -10px;
    font-size: 0.7rem;
  }

  .demo-notification {
    left: 108px;
    right: 14px;
    top: 22px;
    width: auto;
    padding: 12px;
  }

  .sky-status-card {
    left: 18px;
    right: 18px;
    bottom: 64px;
    min-width: 0;
  }

  .capture-ring {
    width: 118px;
    height: 118px;
  }

  .map-outline {
    inset: 6% 3% 34%;
    width: 94%;
  }

  .node-galata {
    left: 27%;
    top: 37%;
  }

  .place-card {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: 12px;
  }

  .story-pulse {
    justify-content: flex-start;
  }

  .story-pulse i {
    width: 28px;
  }

  .badge-copy h2 {
    font-size: 1.9rem;
  }

  .badge-card {
    min-height: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
