:root {
  --bg: #1A0B2E;
  --surface: #2A1450;
  --purple: #7B2FFF;
  --magenta: #FF3DFF;
  --mint: #00F5D4;
  --pink: #FF6BCE;
  --yellow: #FFE566;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --font: "Outfit", system-ui, sans-serif;
  --radius: 20px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { color: var(--mint); text-decoration: none; }
a:hover { color: var(--yellow); }

.pit-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(123, 47, 255, 0.35), transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 30%, rgba(255, 61, 255, 0.2), transparent 55%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(0, 245, 212, 0.12), transparent 50%);
  z-index: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(26, 11, 46, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 245, 212, 0.15);
}

.topbar__brand {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.topbar__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  font-weight: 600;
}

.topbar__links a { color: var(--muted); }
.topbar__links a:hover { color: var(--mint); }

main { position: relative; z-index: 1; }

.orbit-hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px 72px;
  min-height: 72vh;
}

.orbit-hero__rings {
  position: relative;
  width: min(340px, 80vw);
  aspect-ratio: 1;
  margin: 0 auto;
}

.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(0, 245, 212, 0.25);
}

.ring--1 { inset: 8%; border-color: rgba(123, 47, 255, 0.5); animation: spin 24s linear infinite; }
.ring--2 { inset: 22%; border-color: rgba(255, 61, 255, 0.35); animation: spin 18s linear infinite reverse; }
.ring--3 { inset: 36%; border-color: rgba(0, 245, 212, 0.4); animation: spin 30s linear infinite; }

.flick-arc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.orbit-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--purple), #4a12b8);
  box-shadow: 0 0 32px var(--magenta), 0 0 64px rgba(123, 47, 255, 0.5);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 32px var(--magenta); }
  50% { transform: scale(1.06); box-shadow: 0 0 48px var(--mint); }
}

.orbit-hero__badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(42, 20, 80, 0.9);
  border: 1px solid rgba(0, 245, 212, 0.35);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mint);
  margin-bottom: 16px;
}

.orbit-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 800;
  margin: 0 0 8px;
  background: linear-gradient(135deg, var(--mint), var(--purple), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.orbit-hero__tag {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--pink);
  margin: 0 0 16px;
}

.orbit-hero__lead { color: var(--muted); margin: 0 0 28px; max-width: 42ch; }

.stat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stat-chip {
  padding: 12px 18px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(123, 47, 255, 0.4);
  min-width: 110px;
}

.stat-chip strong { display: block; font-size: 1.2rem; color: var(--yellow); }
.stat-chip span { font-size: 0.75rem; color: var(--muted); }

.orbit-hero__visual {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(255, 61, 255, 0.35);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 0 40px rgba(123, 47, 255, 0.25);
}

.throw-loop {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px;
}

.throw-loop__header h2,
.mode-wheel__intro h2,
.screen-fan__header h2,
.booster-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0 0 8px;
}

.throw-loop__header p,
.mode-wheel__intro p,
.screen-fan__header p {
  color: var(--muted);
  margin: 0 0 40px;
}

.throw-loop__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  position: relative;
}

.throw-loop__track::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 24px;
  bottom: 24px;
  width: 3px;
  background: linear-gradient(180deg, var(--mint), var(--purple), var(--magenta));
  border-radius: 3px;
}

.throw-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 20px 0;
}

.throw-step__node {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--purple);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--mint);
  position: relative;
  z-index: 1;
}

.throw-step__body h3 { margin: 0 0 6px; font-size: 1.15rem; }
.throw-step__body p { margin: 0; color: var(--muted); max-width: 52ch; }

.throw-loop__art {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.throw-loop__art img {
  border-radius: var(--radius);
  border: 1px solid rgba(0, 245, 212, 0.2);
}

.mode-wheel {
  padding: 72px 24px;
  background: linear-gradient(180deg, transparent, rgba(42, 20, 80, 0.5), transparent);
}

.mode-wheel__intro {
  max-width: 1100px;
  margin: 0 auto 48px;
  text-align: center;
}

.wheel {
  position: relative;
  width: min(520px, 92vw);
  aspect-ratio: 1;
  margin: 0 auto;
}

.wheel__hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1.2;
  z-index: 2;
  box-shadow: 0 0 40px rgba(0, 245, 212, 0.3);
}

.wheel__spoke {
  position: absolute;
  width: 44%;
  padding: 18px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(123, 47, 255, 0.45);
}

.wheel__spoke h3 { margin: 0 0 6px; font-size: 1rem; }
.wheel__spoke p { margin: 0; font-size: 0.82rem; color: var(--muted); }

.wheel__spoke--solo { top: 4%; left: 50%; transform: translateX(-50%); border-color: var(--yellow); }
.wheel__spoke--zen { bottom: 8%; left: 4%; }
.wheel__spoke--ring { bottom: 8%; right: 4%; border-color: var(--mint); }
.wheel__spoke--duel { top: 38%; right: -2%; }

.screen-fan {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px;
  text-align: center;
}

.fan {
  position: relative;
  height: 420px;
  margin-top: 24px;
}

.fan__phone {
  position: absolute;
  width: 180px;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s ease, z-index 0s;
}

.fan__phone:hover {
  transform: translateY(-12px) scale(1.05) !important;
  z-index: 10 !important;
}

.fan__phone--1 { left: 5%; top: 40px; transform: rotate(-18deg); z-index: 1; }
.fan__phone--2 { left: 18%; top: 0; transform: rotate(-8deg); z-index: 2; }
.fan__phone--3 { left: 32%; top: 20px; transform: rotate(2deg); z-index: 3; }
.fan__phone--4 { left: 48%; top: 10px; transform: rotate(10deg); z-index: 4; }
.fan__phone--5 { left: 62%; top: 30px; transform: rotate(16deg); z-index: 5; }
.fan__phone--6 { left: 76%; top: 50px; transform: rotate(22deg); z-index: 6; }

.booster-band {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 72px;
  text-align: center;
}

.booster-pills {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booster-pills li {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--muted);
}

.pill {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}

.pill--freeze { background: rgba(77, 232, 255, 0.2); color: #4DE8FF; border: 1px solid #4DE8FF; }
.pill--magnet { background: rgba(123, 47, 255, 0.25); color: var(--purple); border: 1px solid var(--purple); }
.pill--purge { background: rgba(255, 61, 255, 0.2); color: var(--magenta); border: 1px solid var(--magenta); }

.legal-block {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-block h2 { margin-top: 0; }
.legal-block h3 { font-size: 1rem; margin: 24px 0 8px; color: var(--mint); }

.site-foot {
  text-align: center;
  padding: 32px 24px 48px;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
  .orbit-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 32px;
  }

  .orbit-hero__lead { margin-left: auto; margin-right: auto; }
  .stat-chips { justify-content: center; }
  .orbit-hero__visual { order: -1; }

  .wheel__spoke--duel { right: 2%; top: 42%; width: 42%; }
  .fan { height: auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; padding: 0 8px; }
  .fan__phone { position: relative; left: auto !important; top: auto !important; transform: none !important; width: 140px; }
}

@media (max-width: 600px) {
  .topbar__links { display: none; }
  .throw-loop__art { grid-template-columns: 1fr; }
  .wheel { height: 520px; width: 100%; }
  .wheel__spoke { width: 46%; font-size: 0.9rem; }
  .wheel__spoke--solo { top: 0; }
  .wheel__spoke--duel { top: auto; bottom: 42%; right: 2%; }
}
