:root {
  --bg: #070812;
  --bg-2: #111425;
  --panel: rgba(255,255,255,0.08);
  --panel-2: rgba(255,255,255,0.12);
  --text: #f8f9ff;
  --muted: #b7bdd8;
  --line: rgba(255,255,255,0.14);
  --gold: #ffd166;
  --yellow: #fff07c;
  --purple: #9b5cff;
  --pink: #ff5ca8;
  --blue: #53d8fb;
  --cyan: #7ef3ff;
  --green: #77ffa8;
  --red: #ff6e6e;
  --shadow: 0 30px 90px rgba(0,0,0,0.45);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 5%, rgba(255, 209, 102, 0.16), transparent 23%),
    radial-gradient(circle at 92% 12%, rgba(155, 92, 255, 0.18), transparent 25%),
    radial-gradient(circle at 68% 100%, rgba(83, 216, 251, 0.15), transparent 28%),
    linear-gradient(180deg, #06070f, #090b14 48%, #05060c);
  overflow-x: hidden;
}

body.modal-open { overflow: hidden; }

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

button, input {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  filter: blur(26px);
  pointer-events: none;
  opacity: .22;
}

.glow-1 { top: 0; left: -80px; background: var(--gold); }
.glow-2 { top: 30%; right: -120px; background: var(--purple); }
.glow-3 { bottom: -120px; left: 38%; background: var(--blue); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(1220px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 10, 19, 0.72);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 70px rgba(0,0,0,0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
}

.brand-logo {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-weight: 900;
  font-size: 1.35rem;
  color: #180f03;
  background:
    radial-gradient(circle at 30% 20%, #fff9c7, transparent 36%),
    linear-gradient(135deg, var(--yellow), var(--gold), #ff8a00);
  box-shadow: 0 12px 35px rgba(255, 209, 102, 0.35);
}

.brand-text strong,
.brand-text small {
  display: block;
  line-height: 1.03;
}

.brand-text strong {
  font-size: 1.05rem;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: .8rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #dbe0f4;
  transition: .2s ease;
}

.main-nav a:hover {
  background: rgba(255,255,255,0.08);
  color: white;
}

.header-cta,
.primary-btn,
.secondary-btn,
.ghost-btn {
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-cta {
  padding: 13px 18px;
  color: #1b1304;
  background: linear-gradient(135deg, var(--yellow), var(--gold));
}

.primary-btn {
  padding: 16px 24px;
  color: #190f03;
  background: linear-gradient(135deg, #fff387, #ffd166 48%, #ff8a00);
  box-shadow: 0 18px 46px rgba(255, 209, 102, 0.24);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  color: white;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.08);
}

.ghost-btn {
  padding: 10px 14px;
  color: white;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
}

.header-cta:hover,
.primary-btn:hover,
.secondary-btn:hover,
.ghost-btn:hover,
.popup-trigger:hover {
  transform: translateY(-2px);
}

.popup-trigger {
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.hero {
  width: min(1220px, calc(100% - 32px));
  margin: 82px auto 0;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 46px;
  align-items: center;
  min-height: 660px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff1b5;
  background: rgba(255, 209, 102, 0.08);
  font-weight: 800;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(119, 255, 168, 0.85);
  animation: pulse 1.9s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(119, 255, 168, 0); }
  100% { box-shadow: 0 0 0 0 rgba(119, 255, 168, 0); }
}

h1, h2, h3 { margin: 0; }

h1 {
  margin-top: 22px;
  font-family: "Space Grotesk", "Outfit", sans-serif;
  font-size: clamp(3.1rem, 6vw, 6.6rem);
  line-height: .91;
  letter-spacing: -.08em;
  max-width: 760px;
}

.hero-text {
  max-width: 660px;
  margin: 28px 0 0;
  color: #d6dbef;
  font-size: clamp(1.06rem, 2vw, 1.22rem);
  line-height: 1.75;
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badges span {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  color: #dbe0f0;
  background: rgba(255,255,255,0.06);
}

.hero-stage {
  position: relative;
  height: 640px;
  perspective: 1400px;
}

.big-card {
  position: absolute;
  width: 255px;
  min-height: 380px;
  padding: 18px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.28);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.big-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.36), transparent 16%, transparent 45%, rgba(255,255,255,0.22) 58%, transparent 71%),
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.28), transparent 24%);
  pointer-events: none;
}

.big-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.24);
  pointer-events: none;
}

.card-a {
  top: 32px;
  left: 48px;
  z-index: 3;
  color: #1b1203;
  background: linear-gradient(145deg, #ffee86, #fcbf49 40%, #f72585 100%);
  transform: rotate(-10deg) rotateY(12deg);
  animation: floatA 6s ease-in-out infinite;
}
.card-b {
  top: 160px;
  right: 18px;
  z-index: 2;
  background: linear-gradient(145deg, #1e1b4b, #5b21b6 50%, #ec4899 100%);
  transform: rotate(12deg) rotateY(-14deg);
  animation: floatB 6.8s ease-in-out infinite;
}
.card-c {
  bottom: 28px;
  left: 150px;
  z-index: 4;
  background: linear-gradient(145deg, #ffd166, #ff7b00 40%, #7b2cbf 100%);
  color: #1a1003;
  transform: rotate(4deg) rotateY(9deg);
  animation: floatC 6.2s ease-in-out infinite;
}

@keyframes floatA { 50% { transform: translateY(-18px) rotate(-7deg) rotateY(12deg); } }
@keyframes floatB { 50% { transform: translateY(18px) rotate(8deg) rotateY(-14deg); } }
@keyframes floatC { 50% { transform: translateY(-14px) rotate(7deg) rotateY(9deg); } }

.big-card-top,
.product-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.big-card-top span,
.big-card-top strong {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  font-size: .8rem;
  font-weight: 900;
}

.creature {
  position: relative;
  z-index: 1;
  width: 158px;
  height: 158px;
  margin: 56px auto 42px;
  border-radius: 42% 58% 52% 48%;
  background: rgba(255,255,255,0.26);
  box-shadow:
    inset 20px 20px 35px rgba(255,255,255,0.12),
    inset -18px -18px 34px rgba(0,0,0,0.18),
    0 24px 55px rgba(0,0,0,0.25);
}

.creature .core,
.creature .ring,
.creature .eye,
.creature .halo,
.creature .wing,
.creature .flare {
  position: absolute;
}

.crystal .core {
  inset: 40px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,255,255,0.18));
  clip-path: polygon(50% 0, 84% 34%, 68% 100%, 32% 100%, 16% 34%);
  box-shadow: 0 0 30px rgba(255,255,255,0.65);
}
.crystal .ring {
  inset: 10px;
  border-radius: 999px;
  border: 3px solid rgba(255,255,255,0.38);
}
.crystal .ring-1 { transform: rotate(18deg); }
.crystal .ring-2 { transform: rotate(-25deg) scale(.78); }

.shadow .halo {
  inset: 18px;
  border-radius: 999px;
  border: 3px solid rgba(255,255,255,0.24);
  box-shadow: 0 0 35px rgba(255,255,255,0.2);
}
.shadow::before {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 46% 54% 50% 50%;
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.18), rgba(0,0,0,0.48));
}
.eye {
  width: 18px;
  height: 18px;
  top: 67px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 18px rgba(255,255,255,0.7);
}
.eye-left { left: 52px; }
.eye-right { right: 52px; }

.phoenix .wing {
  top: 40px;
  width: 58px;
  height: 82px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.15));
  clip-path: polygon(50% 0, 100% 100%, 0 64%);
  box-shadow: 0 0 24px rgba(255,255,255,0.3);
}
.wing-left { left: 18px; transform: rotate(-18deg); }
.wing-right { right: 18px; transform: rotate(18deg); }
.phoenix .flare {
  left: 50%;
  top: 62px;
  width: 48px;
  height: 74px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.10));
  clip-path: polygon(50% 0, 74% 42%, 60% 100%, 40% 100%, 26% 42%);
}

.big-card-bottom {
  position: relative;
  z-index: 1;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
}

.big-card-bottom h3 {
  font-size: 1.18rem;
  line-height: 1.05;
}
.big-card-bottom p {
  margin: 6px 0 0;
  font-weight: 700;
  opacity: .85;
}

.shine {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 0 26px currentColor;
}
.shine-1 { top: 84px; right: 90px; color: var(--gold); }
.shine-2 { bottom: 130px; left: 82px; color: var(--pink); }
.shine-3 { bottom: 76px; right: 44px; color: var(--blue); }

.stats-row {
  width: min(1220px, calc(100% - 32px));
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
}

.stats-row > div {
  padding: 24px;
  border-right: 1px solid var(--line);
}
.stats-row > div:last-child { border-right: 0; }

.stat-label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}

.section {
  width: min(1220px, calc(100% - 32px));
  margin: 112px auto 0;
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 800px;
}

.section-heading h2,
.split-section h2,
.access-box h2 {
  font-family: "Space Grotesk", "Outfit", sans-serif;
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  line-height: .95;
  letter-spacing: -.05em;
}

.section-heading p,
.split-section p,
.access-box p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

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

.universe-panel,
.product-card,
.glass-panel,
.collector-panel,
.access-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}

.universe-panel {
  padding: 28px;
  min-height: 220px;
  overflow: hidden;
  position: relative;
}
.universe-panel::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  right: -70px;
  top: -50px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 60%);
}
.panel-tag,
.product-chip,
.collector-chip {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .04em;
}
.universe-panel h3 {
  margin-top: 20px;
  font-size: 1.45rem;
}
.universe-panel p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.product-card {
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 209, 102, 0.38);
  box-shadow: 0 32px 86px rgba(0,0,0,0.28);
}

.product-card.featured {
  background:
    linear-gradient(rgba(255,255,255,0.12), rgba(255,255,255,0.06)),
    radial-gradient(circle at 20% 0%, rgba(255, 209, 102, 0.12), transparent 30%);
}

.product-visual {
  position: relative;
  min-height: 240px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.product-visual::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(255,255,255,0.20);
  filter: blur(34px);
}
.visual-prism { background: linear-gradient(135deg, #ffea73, #ff8f00 42%, #f72585); }
.visual-void { background: linear-gradient(135deg, #0f1029, #5a189a 45%, #ff5ca8); }
.visual-flare { background: linear-gradient(135deg, #ffd166, #ff6d00 48%, #8b2fc9); }
.visual-ocean { background: linear-gradient(135deg, #7ef3ff, #2f6cff 48%, #4cc9f0); }
.visual-forest { background: linear-gradient(135deg, #5ef7a4, #16a34a 45%, #c7f464); }
.visual-storm { background: linear-gradient(135deg, #8ec5ff, #4f46e5 45%, #ffd166); }

.product-chip {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
}

.mini-illus {
  position: relative;
  z-index: 1;
  width: 110px;
  height: 150px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,255,255,0.18)),
    rgba(255,255,255,0.5);
  box-shadow: 0 22px 54px rgba(0,0,0,0.26);
  overflow: hidden;
}
.mini-illus::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 12px;
  border: 2px solid rgba(0,0,0,0.12);
}

.illus-prism::before,
.illus-void::before,
.illus-flare::before,
.illus-ocean::before,
.illus-forest::before,
.illus-storm::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.illus-prism::before {
  width: 56px; height: 84px;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.2));
  clip-path: polygon(50% 0, 86% 30%, 70% 100%, 30% 100%, 14% 30%);
}
.illus-void::before {
  width: 64px; height: 64px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 35%, rgba(255,255,255,.75), rgba(0,0,0,.7));
  box-shadow: 0 0 20px rgba(255,255,255,.35);
}
.illus-flare::before {
  width: 72px; height: 92px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.15));
  clip-path: polygon(50% 0, 78% 36%, 62% 100%, 38% 100%, 22% 36%);
}
.illus-ocean::before {
  width: 72px; height: 72px;
  border-radius: 55% 45% 60% 40%;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.14));
}
.illus-forest::before {
  width: 72px; height: 88px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.14));
  clip-path: polygon(50% 0, 70% 20%, 100% 44%, 74% 100%, 26% 100%, 0 44%, 30% 20%);
}
.illus-storm::before {
  width: 44px; height: 88px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.14));
  clip-path: polygon(60% 0, 22% 52%, 48% 52%, 32% 100%, 86% 36%, 56% 36%);
}

.product-content {
  padding: 24px;
}
.product-type {
  margin: 0 0 8px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .82rem;
  font-weight: 900;
}
.product-content h3 {
  font-size: 1.35rem;
  line-height: 1.07;
}
.product-content > p:not(.product-type) {
  margin: 12px 0 20px;
  min-height: 72px;
  color: var(--muted);
  line-height: 1.56;
}
.product-mark {
  font-weight: 900;
  color: #fff7c2;
}

.split-section {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 22px;
  align-items: stretch;
}

.glass-panel,
.collector-panel {
  padding: 34px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.feature-list > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 16px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
}
.feature-icon {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-weight: 900;
  color: #190f03;
  background: linear-gradient(135deg, var(--yellow), var(--gold));
}
.feature-list h3 { font-size: 1.12rem; }
.feature-list p {
  margin-top: 5px;
  font-size: .98rem;
}

.collector-panel {
  position: relative;
  overflow: hidden;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 209, 102, 0.15), transparent 28%),
    radial-gradient(circle at 84% 0%, rgba(155, 92, 255, 0.22), transparent 30%),
    rgba(255,255,255,0.07);
}
.collector-core {
  position: absolute;
  width: 260px;
  height: 260px;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.95) 0 7%, transparent 8%),
    conic-gradient(from 10deg, var(--gold), var(--pink), var(--purple), var(--blue), var(--gold));
  box-shadow:
    0 0 44px rgba(255,209,102,0.28),
    inset 0 0 0 26px rgba(255,255,255,0.08);
  filter: saturate(1.25);
}
.collector-core::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: inherit;
  border: 18px solid rgba(255,255,255,0.10);
}
.collector-panel h3 {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  max-width: 420px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: .94;
  letter-spacing: -.05em;
}
.collector-panel p {
  position: relative;
  z-index: 1;
  margin: 16px 0 24px;
}

.access-section {
  margin-bottom: 84px;
}
.access-box {
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 34px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.11), rgba(255,255,255,0.05)),
    radial-gradient(circle at 95% 0%, rgba(255,209,102,0.16), transparent 35%);
}
.access-form {
  display: grid;
  gap: 12px;
}
.access-form input {
  width: 100%;
  padding: 17px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--text);
  background: rgba(255,255,255,0.07);
}
.access-form input::placeholder {
  color: rgba(255,255,255,0.48);
}

.site-footer {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto 28px;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.site-footer strong {
  color: white;
  font-size: 1.15rem;
}
.site-footer p {
  margin: 6px 0 0;
}
.footer-links {
  display: flex;
  gap: 16px;
  color: #dbe0f4;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,209,102,0.26), transparent 28%),
    rgba(2,3,10,0.74);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.modal-overlay.visible {
  opacity: 1;
  visibility: visible;
}
.modal-card {
  position: relative;
  width: min(560px, 100%);
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.22);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.07)),
    radial-gradient(circle at 12% 0%, rgba(255,209,102,0.26), transparent 30%),
    #101223;
  box-shadow: 0 36px 120px rgba(0,0,0,0.52);
  transform: translateY(18px) scale(.97);
  transition: transform .25s ease;
  overflow: hidden;
}
.modal-overlay.visible .modal-card {
  transform: translateY(0) scale(1);
}
.modal-card::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  top: -70px;
  right: -60px;
  border-radius: 999px;
  opacity: .3;
  background: conic-gradient(from 30deg, var(--gold), var(--pink), var(--purple), var(--blue), var(--gold));
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  color: white;
  background: rgba(255,255,255,0.10);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}
.modal-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  padding: 9px 13px;
  border-radius: 999px;
  color: #1c1304;
  font-weight: 900;
  background: linear-gradient(135deg, var(--yellow), var(--gold));
}
.modal-card h2 {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  font-family: "Space Grotesk", "Outfit", sans-serif;
  font-size: clamp(2rem, 7vw, 3.8rem);
  line-height: .9;
  letter-spacing: -.06em;
}
.modal-lead {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: #e6e8f3;
  font-size: 1.08rem;
  line-height: 1.62;
}
.modal-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin-top: 24px;
}
.modal-form label {
  display: grid;
  gap: 7px;
  color: #f5efcc;
  font-weight: 800;
}
.modal-form input {
  width: 100%;
  padding: 16px 17px;
  border-radius: 17px;
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  background: rgba(255,255,255,0.09);
  outline: none;
}
.modal-form input:focus {
  border-color: rgba(255, 209, 102, 0.72);
  box-shadow: 0 0 0 4px rgba(255, 209, 102, 0.12);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 210;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  color: white;
  background: rgba(12,13,26,0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.32);
  transform: translate(-50%, 120px);
  transition: transform .3s ease;
}
.toast.visible { transform: translate(-50%, 0); }

@media (max-width: 1020px) {
  .site-header {
    border-radius: 28px;
    align-items: flex-start;
  }

  .main-nav { display: none; }

  .hero,
  .split-section,
  .access-box {
    grid-template-columns: 1fr;
  }

  .hero {
    margin-top: 56px;
    min-height: auto;
  }

  .hero-stage {
    height: 580px;
  }

  .stats-row,
  .product-grid,
  .universe-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-row > div:nth-child(2),
  .stats-row > div:nth-child(4) {
    border-right: 0;
  }

  .stats-row > div {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .header-cta { display: none; }
  .brand-text small { display: none; }

  .hero,
  .section,
  .stats-row,
  .site-footer {
    width: calc(100% - 24px);
  }

  h1 {
    font-size: clamp(2.9rem, 17vw, 4.5rem);
  }

  .hero-stage {
    height: 540px;
  }

  .big-card {
    width: 216px;
    min-height: 320px;
  }

  .card-a { left: 8px; }
  .card-b { right: 0; top: 158px; }
  .card-c { left: 70px; bottom: 20px; }

  .creature {
    width: 118px;
    height: 118px;
    margin: 42px auto 30px;
  }

  .product-grid,
  .universe-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .stats-row > div {
    border-right: 0;
  }

  .glass-panel,
  .collector-panel,
  .access-box,
  .modal-card {
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}


.privacy-note,
.form-status {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45;
  margin: 0;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: var(--red);
}

.lead-submit[disabled] {
  opacity: .72;
  cursor: wait;
}
