:root {
  --bg: #07030f;
  --panel: rgba(15, 9, 33, 0.74);
  --panel-strong: rgba(20, 11, 44, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --text: #fbf6ff;
  --muted: #d6caeb;
  --gold: #ffd36a;
  --pink: #ff63bf;
  --cyan: #5df8ff;
  --violet: #8d6eff;
  --lime: #baff6b;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 99, 191, 0.28), transparent 20rem),
    radial-gradient(circle at 82% 14%, rgba(93, 248, 255, 0.26), transparent 24rem),
    radial-gradient(circle at 50% 88%, rgba(255, 211, 106, 0.18), transparent 24rem),
    linear-gradient(180deg, #06020c 0%, #0b0620 40%, #05020d 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px),
    radial-gradient(circle at 32% 76%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px),
    radial-gradient(circle at 85% 72%, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px);
  background-size: 280px 280px, 340px 340px, 300px 300px, 260px 260px;
  opacity: 0.55;
  pointer-events: none;
}

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

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

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

.backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.aurora,
.shine {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.9;
}

.aurora {
  animation: drift 16s ease-in-out infinite alternate;
}

.aurora--gold {
  top: 30px;
  right: 80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 211, 106, 0.5) 0%, rgba(255, 211, 106, 0) 72%);
}

.aurora--pink {
  top: 260px;
  left: -40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 99, 191, 0.45) 0%, rgba(255, 99, 191, 0) 70%);
  animation-duration: 19s;
}

.aurora--cyan {
  bottom: 110px;
  right: -30px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(93, 248, 255, 0.34) 0%, rgba(93, 248, 255, 0) 74%);
  animation-duration: 22s;
}

.shine {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  transform: rotate(20deg);
  animation: shimmer 7s linear infinite;
}

.shine--one {
  top: 70px;
  left: 18%;
  width: 2px;
  height: 180px;
}

.shine--two {
  top: 380px;
  right: 18%;
  width: 2px;
  height: 210px;
  animation-delay: -1.6s;
}

.shine--three {
  bottom: 240px;
  left: 56%;
  width: 2px;
  height: 180px;
  animation-delay: -3.2s;
}

.topbar,
.hero-panel,
.content-panel,
.page-footer {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(19, 11, 38, 0.82), rgba(10, 6, 24, 0.88));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

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

.brand img {
  width: 54px;
  height: 54px;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong,
.footer-brand,
.hero-copy h1,
.panel-head h2,
.aside-card h3 {
  font-family: "Cinzel", serif;
}

.brand-copy strong {
  font-size: 1.16rem;
  letter-spacing: 0.06em;
}

.brand-copy em {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-style: normal;
  letter-spacing: 0.3em;
}

.topbar-chip,
.eyebrow,
.panel-head span,
.aside-badge,
.card-pill,
.card-chip,
.spot-pill span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.topbar-chip {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 211, 106, 0.26);
  background: linear-gradient(135deg, rgba(255, 211, 106, 0.18), rgba(93, 248, 255, 0.1));
  box-shadow: inset 0 0 20px rgba(255, 211, 106, 0.08), 0 0 24px rgba(255, 211, 106, 0.12);
}

.page-main {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.hero-panel,
.content-panel,
.page-footer {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(18, 10, 38, 0.74), rgba(8, 4, 18, 0.86));
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px);
}

.hero-panel {
  padding: 34px;
  overflow: hidden;
}

.hero-panel::before,
.content-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 26%),
    radial-gradient(circle at top right, rgba(255, 99, 191, 0.1), transparent 24%),
    radial-gradient(circle at bottom left, rgba(93, 248, 255, 0.08), transparent 28%);
  pointer-events: none;
}

.hero-copy {
  display: grid;
  gap: 14px;
  max-width: 740px;
}

.eyebrow,
.panel-head span {
  color: var(--gold);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: 0.96;
}

.hero-copy p,
.aside-card p,
.footer-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.royal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.spot-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.04), 0 0 26px rgba(93, 248, 255, 0.08);
  overflow: hidden;
}

.spot-pill::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent, var(--accent), transparent);
  opacity: 0.8;
  animation: sweep 3.8s linear infinite;
}

.spot-pill strong,
.spot-pill span {
  position: relative;
  z-index: 1;
}

.spot-pill strong {
  font-size: 0.85rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}

.hero-stack {
  display: grid;
  gap: 16px;
}

.hero-stage-shell {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.stage-halo {
  position: absolute;
  inset: 12% 14%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 211, 106, 0.16) 0%, rgba(255, 99, 191, 0.12) 32%, rgba(93, 248, 255, 0.08) 52%, transparent 72%);
  filter: blur(24px);
  animation: pulseHalo 6s ease-in-out infinite;
}

.stage-halo::before,
.stage-halo::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  animation: ringSpin 12s linear infinite;
}

.stage-halo::after {
  inset: 22%;
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 8s;
}

.stage-sparks span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 18px white, 0 0 36px rgba(255, 255, 255, 0.85);
  animation: twinkle 2.8s ease-in-out infinite;
}

.stage-sparks span:nth-child(1) {
  top: 20%;
  left: 18%;
}

.stage-sparks span:nth-child(2) {
  top: 24%;
  right: 20%;
  animation-delay: -0.8s;
}

.stage-sparks span:nth-child(3) {
  bottom: 24%;
  left: 24%;
  animation-delay: -1.4s;
}

.stage-sparks span:nth-child(4) {
  bottom: 20%;
  right: 18%;
  animation-delay: -2s;
}

.hero-stage {
  width: min(420px, 100%);
}

.pulse-marquee {
  margin-top: 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.pulse-track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding: 12px;
  animation: marquee 32s linear infinite;
}

.pulse-pill {
  display: inline-flex;
  align-items: center;
  min-width: 160px;
  min-height: 42px;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.content-panel {
  padding: 28px;
  overflow: hidden;
}

.content-panel--split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 320px;
  gap: 22px;
  align-items: start;
}

.panel-head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.panel-head--left {
  margin-bottom: 16px;
}

.panel-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  line-height: 1.08;
}

.halo-grid,
.shine-grid,
.wall-grid,
.spot-grid {
  display: grid;
  gap: 18px;
}

.halo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shine-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wall-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.spot-grid {
  grid-template-columns: 1fr;
}

.split-copy {
  min-width: 0;
}

.royal-aside {
  display: grid;
  gap: 18px;
}

.aside-card {
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 211, 106, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 30px rgba(255, 211, 106, 0.06);
}

.aside-card h3 {
  margin: 10px 0 12px;
  font-size: 1.8rem;
}

.aside-badge {
  color: var(--cyan);
}

.glow-card {
  --card-accent: var(--accent);
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 238px;
  padding: 18px;
  border-radius: 26px;
  color: var(--text);
  overflow: hidden;
  isolation: isolate;
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.glow-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 28px 44px rgba(0, 0, 0, 0.32);
}

.glow-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    conic-gradient(
      from 0deg,
      transparent 0deg,
      var(--card-accent) 60deg,
      rgba(255, 255, 255, 0.96) 110deg,
      rgba(255, 211, 106, 0.9) 170deg,
      rgba(255, 99, 191, 0.78) 220deg,
      transparent 290deg
    );
  animation: ringSpin 6.8s linear infinite;
  z-index: -3;
}

.glow-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(24, 15, 50, 0.97), rgba(10, 7, 24, 0.97)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 40%);
  z-index: -2;
}

.glow-card__halo {
  position: absolute;
  inset: -22%;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--card-accent) 58%, white 18%) 0%, transparent 58%);
  filter: blur(28px);
  opacity: 0.44;
  animation: pulseHalo 5s ease-in-out infinite;
  z-index: -1;
}

.orbit-ring {
  position: absolute;
  inset: 8px;
  border-radius: 24px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 56%, white 18%);
  opacity: 0.34;
  animation: ringSpin 12s linear infinite;
}

.orbit-ring--reverse {
  inset: 16px;
  border-style: dashed;
  opacity: 0.24;
  animation-direction: reverse;
  animation-duration: 8s;
}

.card-sparkles span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 12px white, 0 0 28px color-mix(in srgb, var(--card-accent) 70%, white 30%);
  animation: twinkle 2.7s ease-in-out infinite;
}

.card-sparkles span:nth-child(1) {
  top: 18px;
  left: 20px;
}

.card-sparkles span:nth-child(2) {
  top: 22px;
  right: 18px;
  animation-delay: -0.8s;
}

.card-sparkles span:nth-child(3) {
  bottom: 70px;
  left: 18px;
  animation-delay: -1.6s;
}

.card-sparkles span:nth-child(4) {
  bottom: 28px;
  right: 24px;
  animation-delay: -2.2s;
}

.glow-card > * {
  position: relative;
  z-index: 2;
}

.glow-card--hero {
  min-height: 320px;
  padding: 22px;
}

.glow-card--placeholder {
  border-style: dashed;
}

.card-top,
.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-pill,
.card-chip {
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.card-chip {
  color: var(--gold);
}

.card-logo {
  display: grid;
  place-items: center;
  min-height: 108px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 50%),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.05);
}

.card-logo img {
  width: min(180px, 100%);
  max-height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.28));
}

.card-logo--placeholder {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.card-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.card-link {
  font-size: 0.84rem;
  color: color-mix(in srgb, var(--card-accent) 70%, white 30%);
}

.spot-link {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.spot-link::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent, var(--accent), transparent);
  opacity: 0.7;
  animation: sweep 4.2s linear infinite;
}

.spot-link strong,
.spot-link span {
  position: relative;
  z-index: 1;
}

.spot-link strong {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.spot-link span {
  font-size: 0.78rem;
  color: var(--muted);
}

.page-footer {
  margin-top: 24px;
  display: grid;
  gap: 8px;
  padding: 24px 28px;
}

.footer-brand {
  margin: 0;
  font-size: 1.28rem;
  letter-spacing: 0.1em;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(28px, -20px, 0) scale(1.08);
  }
}

@keyframes shimmer {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(20deg);
  }
  30%,
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(38px) rotate(20deg);
  }
}

@keyframes ringSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseHalo {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.34;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.62;
  }
}

@keyframes twinkle {
  0%,
  100% {
    transform: scale(0.7);
    opacity: 0.3;
  }
  45% {
    transform: scale(1.3);
    opacity: 1;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

@keyframes sweep {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: 180px minmax(0, 1fr) 180px;
  }

  .halo-grid,
  .shine-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wall-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-shell {
    width: min(100% - 20px, 1240px);
  }

  .hero-panel,
  .content-panel {
    padding: 22px;
  }

  .hero-layout,
  .content-panel--split {
    grid-template-columns: 1fr;
  }

  .hero-stage-shell {
    order: -1;
  }

  .hero-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .royal-aside {
    grid-template-columns: 1fr;
  }

  .spot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .halo-grid,
  .shine-grid,
  .wall-grid,
  .spot-grid,
  .hero-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stage-shell {
    min-height: 360px;
  }

  .glow-card,
  .glow-card--hero {
    min-height: 212px;
    padding: 16px;
    gap: 14px;
  }

  .glow-card--hero {
    min-height: 280px;
  }

  .card-top,
  .card-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .card-logo {
    min-height: 94px;
  }

  .pulse-pill {
    min-width: 132px;
  }
}

@media (max-width: 460px) {
  .site-shell {
    width: calc(100% - 14px);
  }

  .hero-panel,
  .content-panel,
  .page-footer {
    border-radius: 24px;
  }

  .hero-panel,
  .content-panel {
    padding: 18px;
  }

  .hero-stack,
  .halo-grid,
  .shine-grid,
  .wall-grid,
  .spot-grid {
    gap: 14px;
  }

  .glow-card,
  .glow-card--hero {
    min-height: 196px;
    padding: 14px;
  }

  .glow-card--hero {
    min-height: 260px;
  }
}
