:root {
  --bg: #04070d;
  --bg-soft: #0b1220;
  --panel: rgba(10, 16, 30, 0.84);
  --panel-strong: rgba(7, 11, 20, 0.94);
  --line: rgba(122, 151, 214, 0.16);
  --line-bright: rgba(98, 171, 255, 0.4);
  --text: #f5f7fb;
  --muted: #bcc7db;
  --muted-strong: #d7e1f2;
  --blue: #2f89ff;
  --blue-strong: #1d5fd9;
  --teal: #34d6ff;
  --gold: #f1c25e;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(44, 112, 255, 0.2), transparent 26%),
    radial-gradient(circle at 80% 20%, rgba(53, 215, 255, 0.12), transparent 18%),
    linear-gradient(180deg, #060a12 0%, #04070d 50%, #020409 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 46%, transparent 100%);
  opacity: 0.32;
}

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

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

.site-shell {
  position: relative;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.site-header,
.site-footer,
.hero,
.platform-intro,
.products,
.edition-detail,
.shop,
.faq,
.support {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 11, 20, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 0 30px rgba(45, 137, 255, 0.22);
}

.brand strong,
.hero h1,
.section-heading h2,
.platform-intro h2,
.edition-copy h2,
.support-copy h2,
.product-card h3,
.shop-card h3 {
  font-family: "Orbitron", sans-serif;
}

.brand span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: white;
}

.nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-strong) 100%);
  color: white;
  box-shadow: 0 0 24px rgba(47, 137, 255, 0.28);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(10, 15, 28, 0.94);
  color: white;
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  padding: 56px;
  border-radius: calc(var(--radius-xl) + 6px);
  background:
    radial-gradient(circle at top left, rgba(52, 214, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(11, 18, 33, 0.94) 0%, rgba(4, 8, 16, 0.96) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.eyebrow,
.section-tag,
.card-kicker,
.price-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #84bfff;
}

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.6rem, 4vw, 4.7rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-text,
.platform-intro p,
.edition-copy p,
.feature-grid p,
.shop-card p,
.faq p,
.support p,
.site-footer p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-actions,
.support-actions,
.shop-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-strong) 100%);
  color: white;
  box-shadow: 0 0 26px rgba(47, 137, 255, 0.28);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(11, 17, 29, 0.8);
  color: white;
}

.button-disabled {
  pointer-events: none;
  opacity: 0.55;
}

.launch-pill {
  display: inline-flex;
  margin: 10px 0 0;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(241, 194, 94, 0.28);
  background: rgba(241, 194, 94, 0.08);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.launch-pill-muted {
  border-color: rgba(98, 171, 255, 0.2);
  background: rgba(47, 137, 255, 0.08);
  color: #8ec9ff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.hero-stats article,
.signal-card,
.product-card,
.shop-card,
.support-panel,
.feature-grid article,
.faq-list details,
.platform-intro,
.edition-detail,
.shop,
.faq,
.support {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
}

.hero-stats article {
  padding: 18px;
  border-radius: var(--radius-lg);
}

.hero-stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-art {
  position: relative;
  min-height: 430px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(7, 11, 21, 0.96), rgba(4, 7, 13, 0.98));
  border: 1px solid rgba(122, 151, 214, 0.18);
}

.hero-art img {
  position: absolute;
  width: 72%;
  left: 14%;
  top: 12%;
  border-radius: 34px;
  box-shadow: 0 0 70px rgba(39, 130, 255, 0.18);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
}

.orb-one {
  width: 170px;
  height: 170px;
  background: rgba(46, 138, 255, 0.28);
  top: 12%;
  left: 12%;
}

.orb-two {
  width: 220px;
  height: 220px;
  background: rgba(52, 214, 255, 0.12);
  right: 8%;
  bottom: 8%;
}

.signal-card {
  padding: 22px 24px;
  border-radius: var(--radius-lg);
}

.signal-card p {
  margin: 0 0 12px;
  font-weight: 700;
  color: white;
}

.signal-card ul,
.product-card ul,
.shop-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.platform-intro,
.shop,
.faq,
.support,
.product-gallery {
  margin-top: 24px;
  padding: 36px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.platform-intro h2,
.section-heading h2,
.edition-copy h2,
.support-copy h2 {
  margin: 14px 0;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 0.06em;
}

.products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.product-card,
.shop-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.product-card h3,
.shop-card h3 {
  margin: 16px 0 12px;
  font-size: 1.55rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-glow {
  position: absolute;
  inset: -20% auto auto -8%;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.5;
}

.label-card .card-glow {
  background: rgba(41, 119, 255, 0.24);
}

.artist-card .card-glow {
  background: rgba(52, 214, 255, 0.18);
}

.inline-link {
  display: inline-flex;
  margin-top: 16px;
  color: #8ec9ff;
  font-weight: 600;
}

.edition-detail {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  margin-top: 24px;
  padding: 36px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.edition-detail-alt {
  background:
    radial-gradient(circle at top right, rgba(52, 214, 255, 0.08), transparent 28%),
    var(--panel-strong);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article {
  padding: 22px;
  border-radius: 22px;
}

.feature-grid h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-heading {
  margin-bottom: 24px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-gallery {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

.gallery-grid-halves {
  grid-template-columns: 1fr 1fr;
}

.gallery-card,
.shop-preview {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(8, 12, 22, 0.94);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.gallery-card img,
.shop-preview img {
  width: 100%;
  height: auto;
}

.image-lightbox-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.image-lightbox-trigger img {
  display: block;
}

.gallery-card figcaption {
  display: grid;
  gap: 6px;
  padding: 18px 20px 20px;
}

.gallery-card figcaption strong {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-card figcaption span {
  color: var(--muted);
  line-height: 1.7;
}

.price {
  margin: 8px 0 12px;
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.paypal-wrap {
  width: 100%;
}

.shop-preview {
  margin: 18px 0 20px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 20px 22px;
  border-radius: 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

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

.faq-list p {
  margin-bottom: 0;
}

.support {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}

.support-panel {
  padding: 30px;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 0 1px rgba(47, 137, 255, 0.05);
}

.support-email {
  display: inline-block;
  margin-bottom: 12px;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  font-weight: 700;
  color: white;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding: 26px 8px 10px;
  color: var(--muted);
}

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

.footer-links a:hover,
.inline-link:hover,
.support-email:hover {
  color: white;
}

.legal-page {
  max-width: 920px;
  margin: 56px auto;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.legal-page h1,
.legal-page h2 {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.8;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(2, 5, 12, 0.92);
  backdrop-filter: blur(10px);
  z-index: 9999;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-stage {
  max-width: min(1400px, 100%);
  max-height: calc(100vh - 80px);
}

.lightbox-image {
  max-width: 100%;
  max-height: calc(100vh - 80px);
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 1px solid var(--line);
  background: rgba(11, 17, 29, 0.9);
  color: white;
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .hero,
  .edition-detail,
  .support {
    grid-template-columns: 1fr;
  }

  .products,
  .shop-grid,
  .feature-grid,
  .hero-stats,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .site-shell {
    width: min(100% - 20px, 1200px);
    padding-top: 16px;
  }

  .site-header {
    border-radius: 28px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .platform-intro,
  .product-card,
  .edition-detail,
  .shop,
  .faq,
  .support,
  .shop-card {
    padding: 24px;
  }

  .hero-art {
    min-height: 300px;
  }

  .hero-art img {
    width: 78%;
    left: 11%;
    top: 12%;
  }

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