:root {
  --bg: #05050c;
  --bg-2: #0a0a16;
  --text: #eef7ff;
  --muted: #8fa0b8;
  --purple: #9945ff;
  --blue: #14f195;
  --cyan: #00ffa3;
  --magenta: #dc1fff;
  --line: rgba(153, 69, 255, 0.22);
  --glow: 0 0 40px rgba(153, 69, 255, 0.35), 0 0 80px rgba(20, 241, 149, 0.18);
  --font-display: "Orbitron", sans-serif;
  --font-body: "Sora", sans-serif;
  --radius: 18px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  animation: drift 18s ease-in-out infinite alternate;
}

.orb-a {
  top: -12%;
  left: -10%;
  background: radial-gradient(circle, rgba(153, 69, 255, 0.55), transparent 70%);
}

.orb-b {
  right: -8%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(20, 241, 149, 0.4), transparent 70%);
  animation-delay: -6s;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(4%, 6%) scale(1.12); }
}

#grid {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
}

.nav,
main,
footer,
.mobile-menu {
  position: relative;
  z-index: 2;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: rgba(5, 5, 12, 0.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
  z-index: 40;
}

.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(5, 5, 12, 0.82);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: var(--glow);
  animation: pulse-glow 3.2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(153, 69, 255, 0.45)); }
  50% { filter: drop-shadow(0 0 18px rgba(20, 241, 149, 0.55)); }
}

.nav-links {
  display: none;
  gap: 1.75rem;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.icon-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.icon-link:hover {
  border-color: rgba(20, 241, 149, 0.5);
  background: rgba(20, 241, 149, 0.08);
  transform: translateY(-1px);
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  padding: 1.25rem;
  display: grid;
  gap: 0.85rem;
  background: rgba(8, 8, 18, 0.96);
  border-bottom: 1px solid var(--line);
  z-index: 39;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  padding: 0.75rem 0.5rem;
  color: var(--muted);
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
}

.btn-glow {
  color: #04140f;
  background: linear-gradient(120deg, var(--purple), #4d9dff 45%, var(--blue));
  background-size: 200% 200%;
  animation: gradient-shift 5s ease infinite;
  box-shadow: var(--glow);
}

.btn-ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  border-color: rgba(153, 69, 255, 0.55);
  background: rgba(153, 69, 255, 0.08);
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding: calc(var(--nav-h) + 1.5rem) clamp(1rem, 4vw, 2.5rem) 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  transform: scale(1.08);
  animation: kenburns 22s ease-in-out infinite alternate;
  filter: saturate(1.15) brightness(0.72);
}

@keyframes kenburns {
  from { transform: scale(1.04) translate(0, 0); }
  to { transform: scale(1.12) translate(-1.5%, 1%); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 12, 0.94) 0%, rgba(5, 5, 12, 0.72) 38%, rgba(5, 5, 12, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 5, 12, 0.45) 0%, rgba(5, 5, 12, 0.12) 40%, rgba(5, 5, 12, 0.94) 100%);
}

.hero-content,
.hero-mascot {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 640px;
  padding-bottom: 2rem;
}

.ticker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.85rem;
}

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 12vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(105deg, var(--purple) 0%, #5bb8ff 48%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(153, 69, 255, 0.35));
  margin-bottom: 1rem;
}

.tagline {
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  font-weight: 300;
  margin-bottom: 1.75rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-mascot {
  display: none;
  justify-content: center;
  align-items: flex-end;
}

.mascot-glow {
  position: absolute;
  width: min(70%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(153, 69, 255, 0.35), rgba(20, 241, 149, 0.12), transparent 70%);
  filter: blur(20px);
  animation: pulse-glow 4s ease-in-out infinite;
}

.mascot-img {
  position: relative;
  width: min(100%, 520px);
  animation: float-y 5.5s ease-in-out infinite;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.55));
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.scroll-hint {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 24px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.scroll-hint span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  animation: scroll-dot 1.6s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}

.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) clamp(1rem, 4vw, 2.5rem);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.section-head h2,
.buy-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-head p,
.buy-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.about-grid {
  display: grid;
  gap: 1.5rem;
}

.feature {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.feature-index {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--cyan);
  margin-bottom: 0.7rem;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.feature p {
  color: var(--muted);
  max-width: 36rem;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 78vw);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(153, 69, 255, 0.5) transparent;
}

.shot {
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  isolation: isolate;
}

.shot img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.shot:hover img {
  transform: scale(1.05);
}

.shot figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: linear-gradient(transparent, rgba(5, 5, 12, 0.88));
}

.buy-panel {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 20%, rgba(20, 241, 149, 0.12), transparent 35%),
    radial-gradient(circle at 10% 80%, rgba(153, 69, 255, 0.16), transparent 40%),
    rgba(255, 255, 255, 0.02);
}

.steps {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  margin: 1.5rem 0 1.75rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  color: var(--muted);
}

.steps span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--purple);
  padding-top: 0.2rem;
}

.steps strong {
  color: var(--text);
}

.buy-visual {
  display: grid;
  place-items: center;
}

.buy-visual img {
  width: min(100%, 380px);
  border-radius: 24px;
  animation: float-y 6s ease-in-out infinite;
}

.social-row {
  display: grid;
  gap: 1rem;
}

.social-tile {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.social-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 241, 149, 0.45);
  background: rgba(20, 241, 149, 0.05);
}

.social-tile img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 16px;
}

.social-tile strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.social-tile span {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer {
  padding: 2.5rem clamp(1rem, 4vw, 2.5rem) 3rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand img {
  border-radius: 50%;
}

.footer p {
  color: var(--muted);
  font-size: 0.85rem;
  max-width: 42rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--cyan);
  font-size: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .nav-links,
  .nav-actions {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .about-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .feature {
    border-top: none;
    border-left: 1px solid var(--line);
    padding: 0 0 0 1.5rem;
  }

  .feature:first-child {
    border-left: none;
    padding-left: 0;
  }

  .gallery-track {
    grid-auto-columns: minmax(280px, 32vw);
  }

  .social-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    padding-bottom: 2rem;
  }

  .hero-mascot {
    display: flex;
  }

  .hero-veil {
    background:
      linear-gradient(90deg, rgba(5, 5, 12, 0.95) 0%, rgba(5, 5, 12, 0.7) 36%, rgba(5, 5, 12, 0.18) 68%, rgba(5, 5, 12, 0.55) 100%),
      linear-gradient(180deg, rgba(5, 5, 12, 0.3) 0%, transparent 35%, rgba(5, 5, 12, 0.88) 100%);
  }

  .buy-panel {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .gallery-track {
    grid-auto-flow: dense;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-columns: unset;
    overflow: visible;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
