:root {
  --bg: #0d0620;
  --bg-deep: #090411;
  --panel: rgba(28, 17, 55, 0.82);
  --panel-strong: rgba(36, 19, 71, 0.94);
  --panel-soft: rgba(18, 10, 34, 0.7);
  --line: rgba(196, 160, 255, 0.16);
  --line-strong: rgba(240, 201, 110, 0.26);
  --text: #f7f4ff;
  --text-secondary: #ded8ec;
  --text-muted: #9f9ab4;
  --purple: #7c3aed;
  --purple-light: #c4a0ff;
  --gold: #f0c96e;
  --green: #34d399;
  --red: #e85d55;
  --shadow: 0 36px 120px rgba(0, 0, 0, 0.42);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 999px;
  --container: min(1180px, calc(100vw - 40px));
  --mx: 50%;
  --my: 20%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 16%, rgba(124, 58, 237, 0.22), transparent 22%),
    radial-gradient(circle at 82% 10%, rgba(240, 201, 110, 0.1), transparent 16%),
    radial-gradient(circle at 62% 45%, rgba(52, 211, 153, 0.08), transparent 18%),
    linear-gradient(180deg, #120824 0%, #0d0620 44%, #090411 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  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: 72px 72px;
  opacity: 0.18;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 96%);
}

body::after {
  background: radial-gradient(circle at var(--mx) var(--my), rgba(196, 160, 255, 0.16), transparent 22%);
  opacity: 0.9;
}

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

.page-glow {
  position: fixed;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(88px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
  animation: drift 18s ease-in-out infinite alternate;
}

.page-glow-a {
  top: -8rem;
  right: -7rem;
  background: rgba(124, 58, 237, 0.28);
}

.page-glow-b {
  top: 28rem;
  left: -8rem;
  background: rgba(52, 211, 153, 0.14);
  animation-duration: 22s;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 8px;
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  box-shadow: 0 0 18px rgba(124, 58, 237, 0.75);
}

.brand-word,
.site-nav a,
.eyebrow,
.signal-label,
.creator-card-label,
.system-index,
.feature-kicker,
.review-label,
.audience-label {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-word {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-nav {
  display: inline-flex;
  gap: 22px;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-light), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.hero,
.creator-section {
  display: grid;
  gap: 28px;
}

.hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  padding: 52px 0 82px;
  gap: 54px;
}

.hero-copy h1,
.section-heading h2,
.creator-lead h2,
.cta-section h2,
.audience-copy h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.hero-copy h1 {
  font-size: clamp(3.6rem, 8vw, 6.5rem);
  max-width: 11ch;
}

.gradient-ink {
  background: linear-gradient(135deg, #ffffff 0%, #c4a0ff 58%, #f0c96e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow,
.audience-label {
  color: var(--purple-light);
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 20px;
}

.hero-body,
.section-heading p,
.creator-lead p,
.creator-card p,
.system-card p,
.showcase-copy p,
.review-copy,
.cta-section p,
.audience-copy p {
  color: var(--text-secondary);
  line-height: 1.68;
}

.hero-body {
  max-width: 39rem;
  margin: 24px 0 0;
  font-size: 1.08rem;
}

.hero-mascot {
  display: inline-grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  max-width: 360px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 24px;
  border: 1px solid rgba(196, 160, 255, 0.2);
  background: linear-gradient(180deg, rgba(35, 20, 64, 0.95), rgba(12, 7, 23, 0.9));
  box-shadow: var(--shadow);
}

.hero-mascot img {
  width: 82px;
  height: 82px;
  border-radius: 20px;
  object-fit: cover;
}

.hero-mascot-label {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-mascot p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.45;
  font-size: 0.92rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, filter 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #6f34dd, #8f47ff);
  box-shadow: 0 18px 48px rgba(124, 58, 237, 0.34);
}

.button-secondary {
  border-color: rgba(196, 160, 255, 0.22);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-secondary);
}

.hero-signals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 38px;
  max-width: 42rem;
}

.signal-card,
.creator-lead,
.creator-card,
.system-card,
.showcase-card,
.review-card,
.cta-section,
.audience-band {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(41, 22, 78, 0.85), rgba(16, 9, 29, 0.78));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.interactive-card {
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.interactive-card:hover {
  border-color: rgba(240, 201, 110, 0.24);
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.48);
}

.signal-card {
  display: grid;
  grid-template-columns: minmax(120px, 150px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 24px;
}

.signal-label,
.creator-card-label,
.system-index,
.feature-kicker,
.review-label {
  display: inline-block;
  color: var(--purple-light);
  font-size: 0.72rem;
  font-weight: 700;
}

.signal-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.hero-stage {
  position: relative;
  perspective: 1600px;
}

.hero-stage-shell {
  position: relative;
  min-height: 760px;
  padding: 28px;
  border-radius: 42px;
  border: 1px solid rgba(196, 160, 255, 0.2);
  background:
    radial-gradient(circle at top, rgba(124, 58, 237, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(34, 19, 62, 0.96), rgba(10, 5, 19, 0.94));
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow);
}

.hero-stage-shell::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.08), transparent 24%);
  z-index: 0;
}

.hero-stage-shell::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.hero-stage-shell [data-depth] {
  transition: transform 260ms ease;
  will-change: transform;
}

.stage-orbit {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  z-index: 0;
}

.stage-orbit-a {
  width: 26rem;
  height: 26rem;
  top: -8rem;
  left: -6rem;
  background: rgba(124, 58, 237, 0.18);
}

.stage-orbit-b {
  width: 20rem;
  height: 20rem;
  right: -3rem;
  bottom: 6rem;
  background: rgba(240, 201, 110, 0.1);
}

.stage-chip-row,
.stage-note,
.hero-shot {
  position: absolute;
  z-index: 2;
}

.stage-chip-row {
  top: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 12px;
}

.stage-chip-row span {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(196, 160, 255, 0.2);
  background: rgba(8, 4, 18, 0.58);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.stage-note {
  width: 220px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(10, 6, 18, 0.76);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.stage-note-top {
  top: 38px;
  right: 32px;
  border: 1px solid rgba(240, 201, 110, 0.2);
}

.stage-note-bottom {
  right: 32px;
  bottom: 34px;
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.stage-note strong,
.stage-note span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stage-note strong {
  color: var(--gold);
}

.stage-note-bottom span {
  color: var(--green);
}

.stage-note p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.94rem;
}

.hero-shot {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 8, 22, 0.92);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}

.hero-shot img,
.showcase-card img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shot-main {
  left: 34px;
  bottom: 34px;
  height: 540px;
  aspect-ratio: 1320 / 2868;
}

.hero-shot-floating {
  right: 40px;
  top: 182px;
  height: 430px;
  aspect-ratio: 1320 / 2868;
}

.audience-band {
  display: grid;
  gap: 18px;
  padding: 26px;
  border-radius: 32px;
  margin-bottom: 116px;
  overflow: hidden;
}

.audience-copy {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.audience-copy h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  max-width: 18ch;
}

.audience-label {
  margin: 0;
}

.audience-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.audience-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: audienceForward 12s ease-in-out infinite alternate;
}

.audience-marquee-reverse .audience-track {
  animation-name: audienceReverse;
  animation-duration: 16s;
}

.audience-track span {
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.creator-section {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  margin-bottom: 116px;
}

.creator-lead {
  padding: 34px;
  border-radius: var(--radius-xl);
}

.creator-lead h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.creator-lead p {
  margin-top: 18px;
}

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

.creator-card {
  padding: 24px;
  border-radius: 26px;
}

.creator-card h3,
.system-card h3,
.showcase-copy h3 {
  margin: 14px 0 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.56rem;
  line-height: 1.08;
}

.section-heading {
  max-width: 48rem;
}

.section-heading h2,
.cta-section h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-top: 0;
}

.section-heading p,
.cta-section p {
  margin-top: 18px;
}

.system-section,
.inside-section,
.reviews-section {
  padding-bottom: 116px;
}

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

.system-card {
  padding: 28px;
  border-radius: 28px;
}

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

.showcase-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px;
  border-radius: 30px;
  overflow: hidden;
}

.showcase-card img {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-card-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.98fr);
  align-items: center;
}

.gallery-rail {
  display: flex;
  gap: 18px;
  margin-top: 22px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.gallery-rail::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  flex: 0 0 240px;
  aspect-ratio: 1320 / 2868;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 8, 26, 0.8);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28);
  scroll-snap-align: start;
}

.reviews-marquee {
  position: relative;
  margin-top: 34px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.reviews-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 42s linear infinite;
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

.review-card {
  width: min(340px, calc(100vw - 54px));
  padding: 24px;
  border-radius: 26px;
}

.review-stars {
  margin-top: 14px;
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 1rem;
}

.review-copy {
  margin: 18px 0 22px;
  font-size: 1rem;
}

.review-meta {
  display: grid;
  gap: 6px;
}

.review-meta strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}

.review-meta span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  margin-bottom: 64px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js-ready .reveal.reveal-1.is-visible {
  transition-delay: 80ms;
}

.js-ready .reveal.reveal-2.is-visible {
  transition-delay: 170ms;
}

.js-ready .reveal.reveal-3.is-visible {
  transition-delay: 260ms;
}

.js-ready .reveal.reveal-4.is-visible {
  transition-delay: 350ms;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(26px, 34px, 0) scale(1.08);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes audienceForward {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-4%);
  }
}

@keyframes audienceReverse {
  from {
    transform: translateX(-2%);
  }

  to {
    transform: translateX(2%);
  }
}

@media (max-width: 1120px) {
  .hero,
  .creator-section,
  .cta-section,
  .showcase-card-large {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
  }

  .hero-stage {
    max-width: 780px;
  }
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .hero {
    padding-top: 32px;
  }

  .creator-grid,
  .system-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card-large {
    grid-column: auto;
  }

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

  .hero-shot-main {
    height: 500px;
  }

  .hero-shot-floating {
    top: 198px;
    height: 380px;
  }

}

@media (max-width: 620px) {
  :root {
    --container: min(100vw - 24px, 100%);
  }

  .site-header {
    padding-top: 22px;
  }

  .hero-copy h1 {
    max-width: 8.8ch;
  }

  .signal-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-mascot {
    grid-template-columns: 64px minmax(0, 1fr);
    max-width: none;
  }

  .hero-mascot img {
    width: 64px;
    height: 64px;
  }

  .hero-stage-shell {
    min-height: 620px;
    padding: 18px;
    border-radius: 30px;
  }

  .stage-chip-row {
    top: 18px;
    left: 18px;
    gap: 10px;
  }

  .stage-chip-row span {
    padding: 9px 12px;
    font-size: 0.7rem;
  }

  .stage-note {
    width: 160px;
    padding: 14px;
  }

  .stage-note-top {
    top: 86px;
    right: 18px;
  }

  .stage-note-bottom {
    display: none;
  }

  .hero-shot-main {
    left: 18px;
    bottom: 18px;
    height: 430px;
  }

  .hero-shot-floating {
    right: 18px;
    top: 228px;
    height: 280px;
  }

  .audience-band,
  .creator-lead,
  .creator-card,
  .system-card,
  .showcase-card,
  .review-card,
  .cta-section {
    border-radius: 24px;
  }

  .gallery-card {
    flex-basis: 180px;
  }

  .button {
    width: 100%;
  }
}

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