:root {
  --bg: #050b16;
  --bg-soft: #0a1730;
  --panel: rgba(11, 22, 45, 0.72);
  --panel-strong: rgba(15, 28, 58, 0.92);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f8f5ee;
  --text-dim: rgba(248, 245, 238, 0.72);
  --accent: #efc356;
  --accent-strong: #f6d884;
  --navy: #0d1f4a;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 18%, rgba(50, 92, 193, 0.26), transparent 34%),
    radial-gradient(circle at 84% 16%, rgba(239, 195, 86, 0.12), transparent 24%),
    radial-gradient(circle at 78% 72%, rgba(31, 67, 151, 0.22), transparent 32%),
    linear-gradient(180deg, #040812 0%, #071224 38%, #050b16 100%);
  font-family: "Manrope", sans-serif;
  min-height: 100vh;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.page-shell {
  position: relative;
  overflow: clip;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
}

.ambient-one {
  top: 120px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: rgba(239, 195, 86, 0.1);
}

.ambient-two {
  top: 520px;
  left: -120px;
  width: 340px;
  height: 340px;
  background: rgba(44, 101, 243, 0.16);
}

.ambient-three {
  bottom: 180px;
  right: 10%;
  width: 260px;
  height: 260px;
  background: rgba(239, 195, 86, 0.08);
}

.topbar,
.hero,
.experience,
.feature-bands,
.showcase,
.privacy,
.launch,
.footer {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 10px;
  backdrop-filter: blur(16px);
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brandmark img {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.brandmark span,
.brandmark small {
  display: block;
}

.brandmark span {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brandmark small {
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.navlinks {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 19, 39, 0.55);
}

.navlinks a {
  color: var(--text-dim);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 48px;
  padding: 72px 0 40px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.showcase-copy h2,
.launch-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.94;
}

.hero h1 {
  font-size: clamp(3.6rem, 7vw, 7rem);
  max-width: 12ch;
}

.hero-body,
.showcase-copy p,
.launch-panel p,
.glass-card p,
.band-item p,
.privacy-grid p {
  color: var(--text-dim);
  line-height: 1.8;
  font-size: 1rem;
}

.hero-body {
  max-width: 58ch;
  margin: 24px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #091326;
  background: linear-gradient(135deg, #f7db88 0%, #efc356 100%);
  box-shadow: 0 16px 36px rgba(239, 195, 86, 0.24);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.hero-strip div,
.glass-card,
.band-item,
.showcase-card,
.launch-panel,
.privacy-grid article {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(14, 25, 49, 0.88), rgba(8, 15, 31, 0.76));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-strip div {
  padding: 18px;
  border-radius: var(--radius-md);
}

.hero-strip strong,
.glass-card h3,
.band-item h3,
.showcase-card strong,
.privacy-grid h3 {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.hero-strip span {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
}

.halo-card {
  position: relative;
  min-height: 720px;
  border-radius: 42px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top left, rgba(239, 195, 86, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(10, 20, 42, 0.96), rgba(7, 13, 28, 0.9));
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.halo-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -18% auto;
  width: 72%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(239, 195, 86, 0.18), transparent 62%);
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--accent-strong);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-logo {
  position: absolute;
  top: 112px;
  right: 26px;
  width: 120px;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.4));
}

.hero-panel {
  position: absolute;
  border-radius: 28px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(16, 31, 62, 0.82);
  backdrop-filter: blur(18px);
}

.hero-panel span,
.band-kicker,
.card-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-panel strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.35;
}

.hero-panel p,
.hero-meta-row span {
  color: var(--text-dim);
}

.hero-panel-main {
  left: 28px;
  top: 178px;
  width: 72%;
}

.hero-panel-side {
  right: 28px;
  top: 346px;
  width: 48%;
}

.hero-panel-bottom {
  left: 28px;
  bottom: 28px;
  width: 78%;
}

.hero-meter {
  height: 8px;
  margin: 18px 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.hero-meter i {
  display: block;
  width: 30%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #efc356, #f8dd95);
}

.hero-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.92rem;
}

.experience,
.feature-bands,
.showcase,
.privacy,
.launch {
  padding: 72px 0 24px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 26px;
}

.section-heading h2,
.showcase-copy h2,
.launch-panel h2 {
  font-size: clamp(2.7rem, 5vw, 4.4rem);
}

.section-heading.compact h2 {
  max-width: 14ch;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

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

.glass-card.tall {
  grid-row: span 2;
  min-height: 340px;
}

.glass-card.wide {
  grid-column: span 2;
}

.band-list {
  display: grid;
  gap: 16px;
}

.band-item {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 24px 26px;
  border-radius: 22px;
}

.showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: center;
}

.showcase-stack {
  display: grid;
  gap: 14px;
}

.showcase-card {
  padding: 22px 24px;
  border-radius: 24px;
}

.showcase-card.alt {
  background: linear-gradient(180deg, rgba(239, 195, 86, 0.18), rgba(13, 22, 45, 0.88));
}

.showcase-card.outline {
  background: transparent;
}

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

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

.launch-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.launch-panel::after {
  content: "";
  position: absolute;
  inset: auto -8% -30% auto;
  width: 320px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(239, 195, 86, 0.18), transparent 66%);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 42px 0 56px;
  color: var(--text-dim);
}

.footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero,
  .showcase,
  .launch-panel,
  .band-item {
    grid-template-columns: 1fr;
  }

  .halo-card {
    min-height: 620px;
  }

  .hero-panel-main {
    width: calc(100% - 56px);
  }

  .hero-panel-side {
    width: 54%;
  }

  .hero-panel-bottom {
    width: calc(100% - 56px);
  }

  .experience-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .glass-card.wide {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .topbar {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
  }

  .navlinks {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    overflow-x: auto;
  }

  .hero {
    padding-top: 34px;
    gap: 26px;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .halo-card {
    min-height: 560px;
    padding: 18px;
    border-radius: 28px;
  }

  .hero-logo {
    width: 90px;
    top: 94px;
    right: 18px;
  }

  .hero-panel {
    left: 18px;
    right: 18px;
    width: auto;
    padding: 18px;
    border-radius: 22px;
  }

  .hero-panel-main {
    top: 162px;
  }

  .hero-panel-side {
    top: 328px;
  }

  .hero-panel-bottom {
    bottom: 18px;
  }

  .section-heading h2,
  .showcase-copy h2,
  .launch-panel h2 {
    font-size: clamp(2.3rem, 10vw, 3.3rem);
  }

  .launch-panel {
    padding: 22px;
  }

  .footer {
    flex-direction: column;
  }
}
