:root {
  --bg: #fff8f4;
  --paper: rgba(255, 255, 255, 0.74);
  --text: #1c1230;
  --muted: #5a5370;
  --pink: #ff4da1;
  --orange: #ff9b3f;
  --yellow: #ffd84d;
  --green: #5ad16f;
  --teal: #2ec5ff;
  --blue: #5468ff;
  --purple: #8d43ff;
  --shadow: 0 28px 80px rgba(75, 35, 120, 0.17);
  --radius-xl: 36px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 124, 196, 0.35), transparent 28%),
    radial-gradient(circle at top right, rgba(53, 196, 255, 0.22), transparent 24%),
    linear-gradient(180deg, #fffdfc 0%, #fff7fc 44%, #f7fbff 100%);
}

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

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

.page-shell {
  overflow: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 1.5rem;
  backdrop-filter: blur(18px);
  background: rgba(255, 248, 244, 0.7);
  border-bottom: 1px solid rgba(129, 90, 198, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  height: 5.5rem;
  width: auto;
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
}

.brand-copy strong,
.nav a,
.button,
.eyebrow,
h1,
h2,
h3,
.collection-index,
.tag,
.orbit-card p {
  font-family: "Baloo 2", cursive;
}

.brand-copy strong {
  font-size: 1.4rem;
  line-height: 1;
}

.brand-copy span {
  font-size: 0.8rem;
  color: var(--muted);
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
}

.nav a {
  font-size: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-size: 1.1rem;
  line-height: 1;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 18px 35px rgba(255, 77, 161, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(255, 77, 161, 0.35);
}

.button-small {
  padding: 0.75rem 1.1rem;
  font-size: 1rem;
}

.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: inset 0 0 0 1px rgba(141, 67, 255, 0.12);
}

.hero,
.collections,
.story,
.moodboard,
.cta {
  padding-inline: clamp(1.2rem, 4vw, 4rem);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: calc(100svh - 82px);
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.hero-rain {
  position: absolute;
  inset: 0 0 auto;
  height: 12rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  pointer-events: none;
  opacity: 0.9;
}

.hero-rain span {
  --hue-a: var(--pink);
  --hue-b: var(--yellow);
  position: relative;
  height: 100%;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.75), transparent 58%),
    repeating-linear-gradient(
      180deg,
      var(--hue-a) 0 12px,
      transparent 12px 22px,
      var(--hue-b) 22px 34px,
      transparent 34px 48px
    );
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent);
  transform: skewX(-6deg);
}

.hero-rain span:nth-child(2) {
  --hue-a: var(--blue);
  --hue-b: var(--purple);
}

.hero-rain span:nth-child(3) {
  --hue-a: var(--purple);
  --hue-b: var(--pink);
}

.hero-rain span:nth-child(4) {
  --hue-a: var(--orange);
  --hue-b: var(--yellow);
}

.hero-rain span:nth-child(5) {
  --hue-a: #8ba300;
  --hue-b: var(--green);
}

.hero-rain span:nth-child(6) {
  --hue-a: var(--teal);
  --hue-b: var(--green);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 1.15rem;
  color: var(--purple);
  letter-spacing: 0.04em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.95;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.6rem, 9vw, 7.5rem);
}

.lede {
  max-width: 34rem;
  margin: 1.25rem 0 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-notes {
  display: grid;
  gap: 0.7rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--text);
}

.hero-notes li {
  position: relative;
  padding-left: 1.6rem;
}

.hero-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--pink));
}

.hero-visual {
  position: relative;
  min-height: 34rem;
  display: grid;
  place-items: center;
}

.disco-ball {
  position: relative;
  width: min(88vw, 30rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.9), transparent 22%),
    linear-gradient(135deg, rgba(90, 209, 111, 0.55), rgba(84, 104, 255, 0.4), rgba(255, 77, 161, 0.58)),
    linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0 1px, transparent 1px 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0 1px, transparent 1px 100%);
  background-size: auto, auto, 22px 22px, 22px 22px;
  box-shadow: var(--shadow);
  isolation: isolate;
  animation: spinFloat 14s ease-in-out infinite;
}

.disco-glow {
  position: absolute;
  inset: -9%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0)),
    conic-gradient(from 180deg, rgba(255, 77, 161, 0.15), rgba(255, 216, 77, 0.38), rgba(46, 197, 255, 0.18), rgba(255, 77, 161, 0.15));
  filter: blur(28px);
  z-index: -1;
}

.hero-logo {
  width: 88%;
  transform: translateY(-0.3rem);
}

.orbit-card,
.tag,
.collection,
.story-panel,
.moodboard-card,
.cta {
  box-shadow: var(--shadow);
}

.orbit-card {
  position: absolute;
  top: 2rem;
  right: -0.2rem;
  width: 14rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  transform: rotate(8deg);
}

.orbit-card p {
  margin: 0;
  font-size: 1.4rem;
}

.orbit-card span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.tag {
  position: absolute;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-size: 1rem;
  background: white;
}

.tag-left {
  left: 0;
  bottom: 18%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 182, 0.9));
}

.tag-right {
  right: 1rem;
  bottom: 9%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 176, 220, 0.9));
}

.marquee {
  overflow: hidden;
  padding: 1rem 0 2rem;
}

.marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding-right: 1.25rem;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  flex: none;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  color: white;
  font-family: "Baloo 2", cursive;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--purple), var(--pink));
}

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

.section-heading h2,
.story-panel h2,
.cta h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.collections {
  padding-top: 3rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.collection {
  min-height: 18rem;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
}

.collection:nth-child(1) {
  background: linear-gradient(180deg, rgba(255, 218, 232, 0.95), rgba(255, 255, 255, 0.82));
}

.collection:nth-child(2) {
  background: linear-gradient(180deg, rgba(221, 228, 255, 0.95), rgba(255, 255, 255, 0.82));
}

.collection:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 243, 190, 0.95), rgba(255, 255, 255, 0.82));
}

.collection-index {
  margin: 0 0 1rem;
  font-size: 1.3rem;
  color: rgba(28, 18, 48, 0.55);
}

.collection h3 {
  font-size: 2rem;
}

.collection p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 4rem;
}

.story-panel,
.cta {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
}

.story-panel p:last-child,
.cta > p:last-of-type {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.story-panel.alt {
  background:
    radial-gradient(circle at top right, rgba(255, 216, 77, 0.4), transparent 30%),
    rgba(255, 255, 255, 0.82);
}

.moodboard {
  padding-top: 4rem;
}

.moodboard-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.moodboard-card {
  padding: 0.9rem;
  border-radius: 28px;
  background: white;
  transition: transform 220ms ease;
}

.moodboard-card img {
  border-radius: 20px;
}

.tilt:nth-child(odd) {
  transform: rotate(-3deg);
}

.tilt:nth-child(even) {
  transform: rotate(3deg);
}

.cta {
  max-width: 56rem;
  margin: 4rem auto 4rem;
  text-align: center;
}

.cta .button {
  margin-top: 1.6rem;
}

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

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

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

@keyframes spinFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-14px) rotate(4deg);
  }
}

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

  .hero-copy {
    padding-top: 5rem;
  }

  .hero-visual {
    min-height: 28rem;
  }

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

@media (max-width: 760px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 4.5rem;
  }

  .hero-visual {
    min-height: 24rem;
  }

  .orbit-card {
    width: 12rem;
    top: 0;
    right: 0;
  }

  .tag {
    font-size: 0.9rem;
  }

  .collection-grid,
  .story,
  .moodboard-grid {
    grid-template-columns: 1fr;
  }

  .marquee-track span {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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