:root {
  --bg: #06111d;
  --bg-deep: #040b14;
  --panel: rgba(10, 23, 40, 0.76);
  --panel-strong: rgba(12, 28, 48, 0.94);
  --text: #ecf5ff;
  --muted: #9db0c9;
  --line: rgba(142, 173, 216, 0.18);
  --accent: #7de2ff;
  --accent-2: #ffb266;
  --success: #7ef0c9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.site-body {
  margin: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top left, rgba(125, 226, 255, 0.12), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(255, 178, 102, 0.16), transparent 18%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100dvh;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(4, 11, 20, 0.72);
  border-bottom: 1px solid rgba(125, 226, 255, 0.08);
}

.site-nav-inner,
.site-section,
.site-footer-inner,
.legal-shell {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
}

.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
}

.site-brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 24px rgba(125, 226, 255, 0.48);
}

.site-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.site-links a:hover,
.site-links a:focus-visible {
  color: var(--text);
}

.site-hero {
  position: relative;
  overflow: clip;
  min-height: calc(100svh - 64px);
  display: grid;
  align-items: end;
  padding: 56px 0 42px;
}

.site-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 11, 20, 0.94) 0%, rgba(4, 11, 20, 0.6) 42%, rgba(4, 11, 20, 0.2) 100%),
    radial-gradient(circle at 72% 24%, rgba(125, 226, 255, 0.22), transparent 20%),
    radial-gradient(circle at 82% 58%, rgba(255, 178, 102, 0.2), transparent 18%);
  pointer-events: none;
}

.site-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: 40px;
  align-items: end;
}

.site-kicker {
  margin: 0 0 20px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
}

.site-title {
  margin: 0;
  font-size: clamp(44px, 8vw, 94px);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.site-subtitle {
  width: min(520px, 100%);
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.8;
}

.site-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-button:hover,
.site-button:focus-visible {
  transform: translateY(-1px);
}

.site-button-primary {
  color: #07111d;
  background: linear-gradient(135deg, var(--accent), #c9f6ff);
}

.site-button-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.hero-note {
  margin-top: 18px;
  font-size: 13px;
  color: #86a0c0;
  line-height: 1.8;
}

.hero-stage {
  position: relative;
  aspect-ratio: 0.7;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(20, 34, 58, 0.96) 0%, rgba(9, 19, 35, 0.98) 100%);
  border: 1px solid rgba(154, 184, 226, 0.12);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(116, 146, 255, 0.12), rgba(116, 146, 255, 0.02));
}

.hero-stage::after {
  inset: auto 28px 28px;
  height: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.stage-platform,
.stage-ball,
.stage-orb {
  position: absolute;
}

.stage-platform {
  height: 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, #6d8fd4, #4b6ba7);
  box-shadow: inset 0 6px 0 rgba(255, 255, 255, 0.14);
}

.stage-platform.p1 { left: 12%; bottom: 14%; width: 34%; }
.stage-platform.p2 { right: 14%; bottom: 26%; width: 30%; }
.stage-platform.p3 { left: 24%; bottom: 42%; width: 42%; }
.stage-platform.p4 { right: 18%; bottom: 58%; width: 28%; background: linear-gradient(180deg, #6fdab5, #2f8f70); }

.stage-ball {
  left: 56%;
  bottom: 32%;
  width: 78px;
  height: 78px;
  margin-left: -39px;
  border-radius: 999px;
  background: radial-gradient(circle at 32% 28%, #fff2d9 0%, #ffb066 34%, #ff7d47 70%, #dd5a20 100%);
  box-shadow: 0 24px 44px rgba(255, 124, 72, 0.32);
  animation: floatBall 4.6s ease-in-out infinite;
}

.stage-orb {
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 211, 118, 0.95), rgba(255, 211, 118, 0));
  filter: blur(2px);
}

.stage-orb.o1 { width: 18px; height: 18px; left: 64%; top: 18%; animation: pulse 4.2s ease-in-out infinite; }
.stage-orb.o2 { width: 12px; height: 12px; left: 22%; top: 30%; animation: pulse 3.4s ease-in-out infinite 0.8s; }
.stage-orb.o3 { width: 10px; height: 10px; right: 22%; bottom: 22%; animation: pulse 4.8s ease-in-out infinite 1.1s; }

.site-section {
  padding: 84px 0;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-label {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.section-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
}

.section-copy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.split-grid,
.triple-grid,
.faq-grid {
  display: grid;
  gap: 22px;
}

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

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

.panel-surface {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10, 23, 40, 0.86), rgba(8, 18, 32, 0.94));
}

.panel-surface h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.panel-surface p,
.panel-surface li {
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}

.panel-surface ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.highlight-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--success);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.highlight-line::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: currentColor;
}

.support-quote {
  margin: 0;
  color: var(--text);
  font-size: 26px;
  line-height: 1.3;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.16);
}

.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0 34px;
  color: #8ea5c4;
  font-size: 14px;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer-links a {
  text-decoration: none;
}

.legal-hero {
  padding: 62px 0 20px;
}

.legal-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.96;
}

.legal-meta {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.legal-shell {
  padding: 8px 0 64px;
}

.legal-article {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10, 23, 40, 0.88), rgba(7, 16, 28, 0.96));
}

.legal-article + .legal-article {
  margin-top: 18px;
}

.legal-article h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.legal-article p,
.legal-article li {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.legal-article ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

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

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

@media (max-width: 900px) {
  .site-hero-grid,
  .split-grid,
  .triple-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .site-hero {
    min-height: auto;
    padding-top: 40px;
  }

  .hero-stage {
    aspect-ratio: 0.82;
  }

  .site-footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-nav-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-links {
    gap: 12px 16px;
  }

  .site-section,
  .legal-shell {
    width: min(1120px, calc(100vw - 24px));
  }

  .site-button {
    width: 100%;
  }
}
