:root {
  --coral: #ff5c5f;
  --coral-dark: #e84650;
  --aqua: #42d7cd;
  --aqua-dark: #159e9a;
  --yellow: #ffd64a;
  --purple: #6b3e96;
  --lavender: #eee5ff;
  --cream: #fffaf0;
  --ink: #3f2860;
  --muted: #6d5b7f;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(92, 47, 110, 0.16);
  --radius-lg: 42px;
  --radius-md: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--purple);
  border-radius: 12px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: 190px 1fr 190px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 105px;
  transform: translateX(-50%);
}
.brand {
  width: 172px;
  transition: transform .2s ease;
}
.brand:hover { transform: rotate(-2deg) scale(1.03); }
.main-nav { display: flex; justify-content: center; gap: 38px; }
.main-nav a {
  position: relative;
  text-decoration: none;
  font-weight: 800;
}
.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 4px;
  background: var(--coral);
  border-radius: 4px;
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 13px 25px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 7px 0 rgba(73, 31, 101, .17);
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 10px 0 rgba(73, 31, 101, .16); }
.button:active { transform: translateY(2px); box-shadow: 0 3px 0 rgba(73, 31, 101, .2); }
.button-small { min-height: 48px; padding: 11px 20px; font-size: .95rem; }
.youtube-button { justify-self: end; color: var(--white); background: var(--coral); }
.youtube-button svg, footer svg { width: 23px; fill: currentColor; }
.button-primary { color: var(--white); background: var(--coral); }
.button-light { color: var(--purple); background: var(--white); }
.play-dot {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding-left: 2px;
  color: var(--coral);
  background: var(--white);
  border-radius: 50%;
  font-size: .66rem;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(3.5rem, 6.2vw, 6rem); }
h2 { font-size: clamp(2.7rem, 5vw, 4.6rem); }
h3 { font-size: 2.35rem; }
p { margin: 0; }
.eyebrow {
  margin-bottom: 12px;
  color: var(--coral-dark);
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.section { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, .86fr) minmax(520px, 1.14fr);
  align-items: center;
  min-height: 790px;
  padding: 125px max(30px, calc((100vw - 1180px) / 2)) 100px;
  background:
    radial-gradient(circle at 8% 35%, rgba(255,255,255,.85) 0 3px, transparent 4px),
    radial-gradient(circle at 12% 39%, rgba(255,255,255,.7) 0 5px, transparent 6px),
    linear-gradient(135deg, #fff9df 0%, #f9f2ff 55%, #dffbf7 100%);
  isolation: isolate;
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 5; min-width: 0; padding: 30px 0 70px; }
.hero h1 span { display: block; color: var(--coral); text-shadow: 0 5px 0 rgba(107, 62, 150, .11); }
.hero-text { max-width: 580px; margin: 25px 0 31px; color: var(--muted); font-size: 1.2rem; font-weight: 700; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.text-link { text-underline-offset: 5px; font-weight: 800; }
.text-link span { display: inline-block; margin-left: 4px; color: var(--coral); }
.hero-art { position: relative; z-index: 2; min-width: 0; height: 610px; margin-right: -16vw; }
.hero-art img {
  position: absolute;
  top: 48px;
  left: 0;
  width: min(870px, 75vw);
  height: 540px;
  object-fit: cover;
  object-position: center;
  border: 12px solid var(--white);
  border-radius: 48% 42% 48% 45% / 44% 46% 48% 44%;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.sunburst {
  position: absolute;
  top: -70px;
  left: -90px;
  width: 580px;
  height: 580px;
  background: repeating-conic-gradient(from 12deg, rgba(255,214,74,.33) 0 10deg, transparent 10deg 23deg);
  border-radius: 50%;
  animation: spin 50s linear infinite;
}
.music-note {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 65px;
  height: 65px;
  color: var(--white);
  background: var(--purple);
  border: 6px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
  font-size: 2rem;
  font-weight: 800;
}
.note-one { top: 40px; left: 8%; transform: rotate(-12deg); }
.note-two { right: 23%; bottom: 3px; color: var(--purple); background: var(--yellow); transform: rotate(12deg); }
.hero-cloud { position: absolute; z-index: 0; width: 150px; height: 42px; background: rgba(255,255,255,.7); border-radius: 80px; }
.hero-cloud::before, .hero-cloud::after { position: absolute; bottom: 0; background: inherit; border-radius: 50%; content: ""; }
.hero-cloud::before { left: 24px; width: 65px; height: 65px; }
.hero-cloud::after { right: 20px; width: 48px; height: 48px; }
.cloud-one { top: 155px; left: 42%; opacity: .7; }
.cloud-two { right: 3%; bottom: 190px; transform: scale(.75); }
.wave { position: absolute; right: 0; bottom: -2px; left: 0; height: 90px; }
.wave svg { width: 100%; height: 100%; fill: var(--cream); }

.friends { padding-top: 100px; padding-bottom: 130px; }
.section-heading { max-width: 710px; margin: 0 auto 62px; text-align: center; }
.section-heading h2 { margin-bottom: 18px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.15rem; font-weight: 700; }
.character-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.character-card {
  position: relative;
  min-width: 0;
  background: var(--white);
  border: 3px solid rgba(107, 62, 150, .08);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 35px rgba(92, 47, 110, .10);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.character-card:hover { transform: translateY(-8px) rotate(-.5deg); box-shadow: var(--shadow); }
.character-image { position: relative; height: 350px; overflow: hidden; }
.character-shape {
  position: absolute;
  top: 38px;
  left: 50%;
  width: 280px;
  height: 270px;
  background: var(--lavender);
  border-radius: 45% 55% 45% 55%;
  transform: translateX(-50%) rotate(6deg);
}
.character-image img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }
.rumpufuff-card .character-image img { transform: scale(1.04); }
.sammy-card .character-shape { background: #fff0ca; transform: translateX(-50%) rotate(-7deg); }
.sammy-card .character-image img { padding: 28px 10px 0; }
.bunbun-card .character-shape { background: #dff8f4; }
.bunbun-card .character-image img { padding-top: 4px; }
.character-copy { position: relative; z-index: 3; min-height: 245px; padding: 30px 30px 35px; background: var(--white); }
.character-label { margin-bottom: 7px; color: var(--coral-dark); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.character-copy h3 { margin-bottom: 12px; }
.character-copy > p:last-child { color: var(--muted); font-weight: 700; }

.watch-section {
  position: relative;
  color: var(--white);
  background: var(--purple);
  overflow: hidden;
}
.watch-section::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.11) 0 3px, transparent 3px);
  background-size: 38px 38px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 55%);
}
.watch-inner { position: relative; z-index: 2; display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 70px; padding-top: 110px; padding-bottom: 110px; }
.watch-copy .eyebrow { color: var(--yellow); }
.watch-copy h2 { max-width: 480px; }
.watch-copy > p:not(.eyebrow) { max-width: 510px; margin: 24px 0 32px; color: #eee4f8; font-size: 1.1rem; font-weight: 700; }
.video-shell { padding: 12px 12px 16px; background: var(--white); border-radius: 32px; box-shadow: 18px 20px 0 rgba(255, 214, 74, .85); transform: rotate(1deg); }
.video-topper { display: flex; gap: 7px; padding: 5px 5px 11px; }
.video-topper span { width: 11px; height: 11px; background: var(--coral); border-radius: 50%; }
.video-topper span:nth-child(2) { background: var(--yellow); }
.video-topper span:nth-child(3) { background: var(--aqua); }
.video-frame { position: relative; aspect-ratio: 16 / 9; background: #1d1430; border-radius: 20px; overflow: hidden; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.watch-decor { position: absolute; z-index: 1; color: var(--yellow); opacity: .35; }
.star-one { top: 55px; right: 4%; font-size: 5rem; transform: rotate(14deg); }
.star-two { bottom: 28px; left: 4%; font-size: 3rem; transform: rotate(-10deg); }

.about { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; padding-top: 125px; padding-bottom: 125px; }
.about-art { position: relative; height: 530px; }
.about-blob { position: absolute; inset: 25px 10px 10px 20px; background: var(--aqua); border-radius: 42% 58% 48% 52% / 55% 42% 58% 45%; transform: rotate(-4deg); }
.about-art img { position: relative; width: 100%; height: 100%; object-fit: cover; border: 10px solid var(--white); border-radius: 42% 58% 48% 52% / 55% 42% 58% 45%; box-shadow: var(--shadow); transform: rotate(2deg); }
.about-copy h2 { max-width: 570px; }
.about-copy > p:not(.eyebrow) { margin: 25px 0 28px; color: var(--muted); font-size: 1.08rem; font-weight: 700; }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.about-pills span { padding: 9px 15px; color: var(--purple); background: var(--lavender); border-radius: 999px; font-family: "Baloo 2", sans-serif; font-weight: 800; }
.about-pills span:nth-child(2) { background: #fff0b9; }
.about-pills span:nth-child(3) { background: #dbf9f4; }

.cta-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 390px;
  margin: 10px auto 110px;
  padding: 55px 70px;
  background: linear-gradient(135deg, var(--yellow), #ffeca2);
  border-radius: 60px;
  box-shadow: 0 20px 0 rgba(107, 62, 150, .10);
  overflow: hidden;
}
.cta-section::before, .cta-section::after { position: absolute; border: 4px solid rgba(255,255,255,.7); border-radius: 50%; content: ""; }
.cta-section::before { top: -40px; left: 43%; width: 140px; height: 140px; }
.cta-section::after { right: -70px; bottom: -80px; width: 230px; height: 230px; }
.cta-copy { position: relative; z-index: 2; max-width: 650px; }
.cta-copy .eyebrow { color: var(--purple); }
.cta-copy p:not(.eyebrow) { margin: 18px 0 28px; color: #604a6c; font-weight: 800; }
.cta-section > img { position: absolute; z-index: 2; right: 25px; bottom: -83px; width: 390px; filter: drop-shadow(0 15px 18px rgba(80, 47, 70, .15)); }

footer {
  display: grid;
  grid-template-columns: 190px 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 140px;
  padding: 25px max(30px, calc((100vw - 1180px) / 2));
  color: #eee4f8;
  background: #38204e;
  font-size: .9rem;
  font-weight: 700;
}
.footer-logo { width: 145px; }
footer > a { display: grid; place-items: center; width: 46px; height: 46px; color: var(--white); background: var(--coral); border-radius: 50%; }
.copyright { white-space: nowrap; }

@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media (max-width: 1000px) {
  .site-header { grid-template-columns: 150px 1fr 150px; }
  .brand { width: 145px; }
  .main-nav { gap: 22px; font-size: .9rem; }
  .hero { grid-template-columns: .78fr 1.22fr; min-height: 720px; }
  .hero-art { margin-right: -32vw; }
  .character-image { height: 310px; }
  .watch-inner { gap: 40px; }
  .about { gap: 50px; }
}

@media (max-width: 780px) {
  body { font-size: 16px; }
  .site-header { grid-template-columns: 1fr auto; width: calc(100% - 28px); min-height: 90px; }
  .brand { width: 142px; }
  .main-nav { display: none; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 115px 20px 75px;
    text-align: center;
  }
  .hero-copy { padding: 18px 0 30px; }
  .hero-text { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-art { height: 430px; margin: 0 -25vw; }
  .hero-art img { top: 10px; left: 50%; width: 100%; height: 400px; transform: translateX(-50%) rotate(1deg); }
  .note-one { top: -8px; left: 24%; }
  .note-two { right: 24%; bottom: -3px; }
  .character-grid { grid-template-columns: 1fr; max-width: 510px; margin-inline: auto; gap: 26px; }
  .character-image { height: 390px; }
  .character-copy { min-height: 0; }
  .watch-inner { grid-template-columns: 1fr; gap: 45px; padding-top: 85px; padding-bottom: 95px; text-align: center; }
  .watch-copy h2, .watch-copy > p:not(.eyebrow) { margin-inline: auto; }
  .video-shell { box-shadow: 10px 12px 0 rgba(255, 214, 74, .85); }
  .about { grid-template-columns: 1fr; gap: 48px; padding-top: 90px; padding-bottom: 90px; }
  .about-art { height: 460px; }
  .about-copy { text-align: center; }
  .about-copy h2 { margin-inline: auto; }
  .about-pills { justify-content: center; }
  .cta-section { grid-template-columns: 1fr 240px; min-height: 360px; padding: 45px; border-radius: 45px; }
  .cta-section > img { right: -35px; width: 305px; }
  footer { grid-template-columns: 150px 1fr auto; }
  footer > p:first-of-type { display: none; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(3.05rem, 15vw, 4rem); }
  h2 { font-size: clamp(2.45rem, 12vw, 3.3rem); }
  .section { width: min(100% - 28px, 1180px); }
  .site-header { min-height: 78px; }
  .brand { width: 125px; }
  .youtube-button { min-height: 42px; padding: 9px 14px; }
  .youtube-button svg { width: 20px; }
  .hero { padding-top: 100px; }
  .hero-text { font-size: 1.05rem; }
  .hero-actions { flex-direction: column; gap: 18px; }
  .hero-art { height: 315px; margin: 15px -52vw 0; }
  .hero-art img { height: 300px; border-width: 8px; }
  .music-note { width: 50px; height: 50px; border-width: 4px; font-size: 1.5rem; }
  .note-one { left: 36%; }
  .note-two { right: 36%; }
  .friends { padding-top: 80px; padding-bottom: 90px; }
  .section-heading { margin-bottom: 40px; }
  .character-image { height: 340px; }
  .character-copy { padding: 25px; }
  .about-art { height: 350px; }
  .cta-section {
    display: block;
    min-height: 590px;
    margin-bottom: 75px;
    padding: 45px 28px;
    border-radius: 38px;
    text-align: center;
  }
  .cta-section > img { right: 50%; bottom: -65px; width: 300px; transform: translateX(50%); }
  footer { grid-template-columns: 1fr auto; gap: 15px; padding: 25px 20px; }
  .footer-logo { width: 125px; }
  .copyright { grid-column: 1 / -1; text-align: center; }
}
