:root {
  --bg-top: #fff9fd;
  --bg-mid: #ffeaf4;
  --bg-bottom: #f4eaff;
  --ink: #462f4e;
  --soft-ink: #6d5475;
  --rose: #ff71a9;
  --peach: #ffcfb9;
  --violet: #8a5ab3;
  --butter: #ffeaa8;
  --mint: #b9f1dc;
  --card-bg: rgba(255, 255, 255, 0.78);
  --card-border: rgba(255, 255, 255, 0.95);
  --shadow: 0 22px 56px rgba(128, 65, 121, 0.2);
  --inner-glow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Nunito", sans-serif;
  color: var(--ink);
  background: #fff4fa;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 28%, rgba(255, 229, 244, 0.28) 100%),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.48) 0 18%, transparent 42%);
}

.fantasy-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 248, 253, 0.1) 0%, rgba(255, 238, 247, 0.28) 100%),
    url("images/fantasy-background.png") center / cover no-repeat;
}

.fantasy-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 244, 250, 0.16) 0%, rgba(255, 255, 255, 0.28) 42%, rgba(255, 244, 250, 0.16) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 238, 247, 0.2) 100%);
}

.sky-glow {
  position: fixed;
  width: 36rem;
  height: 36rem;
  border-radius: 999px;
  filter: blur(64px);
  z-index: -1;
  opacity: 0.5;
}

.sky-glow-left {
  top: -12rem;
  left: -9rem;
  background: radial-gradient(circle, #ff95bf 0%, transparent 70%);
}

.sky-glow-right {
  bottom: -15rem;
  right: -8rem;
  background: radial-gradient(circle, #c796ff 0%, transparent 70%);
}

.site-header {
  text-align: center;
  padding: 3.4rem 1rem 1.7rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Baloo 2", sans-serif;
  letter-spacing: 0.01em;
}

h1 {
  margin-top: 0;
  font-size: 3.3rem;
  line-height: 0.96;
  color: #e94f94;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.85),
    0 12px 24px rgba(234, 92, 158, 0.32);
}

.tagline {
  margin: 0.4rem 0 0;
  color: var(--violet);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

main {
  width: min(1100px, 92vw);
  margin: 0 auto 2.5rem;
}

.hero-card,
.showcase {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 30px;
  box-shadow: var(--inner-glow), var(--shadow);
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
}

.hero-card::before,
.showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42) 0%, transparent 34%),
    linear-gradient(315deg, rgba(255, 151, 192, 0.12) 0%, transparent 38%);
}

.hero-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.2rem;
}

.hero-card > *,
.showcase > * {
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: 100%;
  border-radius: 22px;
  background: radial-gradient(circle at top, #ffeef7 0%, #fff 80%);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(196, 92, 151, 0.22);
}

.hero-copy {
  padding: 0.6rem 0.45rem 0.5rem;
}

.eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: #8e6ca9;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  font-size: 2.15rem;
  color: #d14f8d;
  line-height: 1.1;
}

.hero-copy p {
  margin: 0.7rem 0 0;
  max-width: 58ch;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.platforms span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.8rem;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #ffd7ea 0%, #f6e3ff 58%, #fff0c7 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: #6f4485;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(154, 93, 148, 0.12);
}

.showcase {
  margin-top: 1.35rem;
  padding: 1.1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.showcase-copy {
  padding: 0.65rem 0.5rem;
}

.showcase-copy h3 {
  font-size: 1.85rem;
  color: #d14f8d;
}

.showcase-copy p {
  margin: 0.55rem 0 0;
}

.studio-notes {
  display: grid;
  gap: 0.72rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.studio-notes li {
  display: grid;
  grid-template-columns: 0.9rem 1fr;
  column-gap: 0.7rem;
  align-items: start;
  padding: 0.78rem 0;
  border-top: 1px solid rgba(222, 142, 190, 0.24);
}

.studio-notes li:last-child {
  border-bottom: 1px solid rgba(222, 142, 190, 0.24);
}

.note-mark {
  width: 0.72rem;
  height: 0.72rem;
  margin-top: 0.42rem;
  border-radius: 65% 35% 70% 30%;
  background: linear-gradient(145deg, var(--rose), var(--peach));
  box-shadow: 0 0 14px rgba(255, 113, 169, 0.45);
}

.studio-notes strong,
.studio-notes span:last-child {
  grid-column: 2;
}

.studio-notes strong {
  color: #9a4d8e;
  line-height: 1.2;
}

.studio-notes span:last-child {
  color: var(--soft-ink);
  font-size: 0.95rem;
}

.showcase-image {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 30px rgba(147, 88, 138, 0.22);
}

.site-footer {
  text-align: center;
  padding: 0 1rem 2.4rem;
  color: var(--soft-ink);
  font-size: 0.9rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}

.site-footer p {
  margin: 0;
}

.petal {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--petal-width);
  height: var(--petal-height);
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.78) 0 12%, transparent 28%),
    linear-gradient(165deg, #ffd8e9 0%, #ff8abd 54%, #f45d9c 100%);
  border-radius: 75% 25% 70% 30%;
  box-shadow: 0 0 10px rgba(255, 126, 177, 0.34);
  opacity: 0;
  pointer-events: none;
  z-index: 20;
  animation-name: fall;
  animation-timing-function: linear;
  will-change: transform, opacity;
}

@keyframes fall {
  0% {
    transform: translate3d(var(--x-start), -10vh, 0) rotate(0deg) scale(var(--scale));
    opacity: 0;
  }

  10% {
    opacity: var(--petal-opacity);
  }

  45% {
    transform: translate3d(var(--x-mid), 45vh, 0) rotate(var(--spin-mid)) scale(var(--scale));
    opacity: var(--petal-opacity);
  }

  100% {
    transform: translate3d(var(--x-end), 110vh, 0) rotate(var(--spin-end)) scale(var(--scale));
    opacity: 0;
  }
}

@media (min-width: 900px) {
  main {
    width: min(980px, 86vw);
  }

  .hero-card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 1.45rem;
    padding: 1.45rem;
  }

  .showcase {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 1.35rem;
    padding: 1.35rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 2.5rem;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .tagline {
    letter-spacing: 0.1em;
  }

  .platforms span {
    min-width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .petal {
    display: none;
  }
}

@media (max-width: 700px) {
  .fantasy-bg {
    background-position: 52% center;
  }
}
