:root {
  --purple-950: #170326;
  --purple-900: #23023f;
  --purple-800: #3b0667;
  --purple-700: #5c0ba3;
  --purple-600: #7914d6;
  --yellow: #ffd338;
  --orange: #ff8a1f;
  --pink: #ff2aa3;
  --cyan: #42ddff;
  --cream: #fff7e4;
  --paper: #fffaf0;
  --ink: #1c1030;
  --muted: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.14);
  --shadow: 0 30px 90px rgba(22, 3, 38, .35);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .045;
  z-index: 90;
  background-image: radial-gradient(circle at 20% 30%, #fff 0 1px, transparent 1px), radial-gradient(circle at 80% 70%, #fff 0 1px, transparent 1px);
  background-size: 28px 28px, 36px 36px;
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--pink), var(--cyan));
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 120;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 58px);
  color: #fff;
  transition: background .28s ease, backdrop-filter .28s ease, border-color .28s ease, padding .28s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(23,3,38,.82);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(255,255,255,.1);
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height: .95;
  font-size: .86rem;
  letter-spacing: .02em;
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35);
}
.brand span { opacity: .92; }
.brand strong { color: var(--yellow); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  position: relative;
  text-decoration: none;
  font-size: .82rem;
  color: rgba(255,255,255,.78);
  transition: color .2s ease;
}
.nav a:hover { color: #fff; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.nav a:hover::after { transform: scaleX(1); }
.header-cta,
.menu-toggle {
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.24);
  color: #fff;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.header-cta:hover { transform: translateY(-2px); background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.42); }
.menu-toggle { display: none; cursor: pointer; }

.section-dark {
  background:
    radial-gradient(circle at 10% 5%, rgba(255, 42, 163, .23), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(255, 211, 56, .18), transparent 28%),
    linear-gradient(135deg, var(--purple-950), var(--purple-900) 45%, #0f031a);
  color: #fff;
}
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 118px 0 58px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -16% -10%;
  height: 36%;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--pink), var(--purple-600));
  filter: blur(70px);
  opacity: .22;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(380px, .96fr);
  gap: clamp(28px, 4.8vw, 70px);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.74);
}
.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
  opacity: .8;
}
.eyebrow.purple { color: var(--purple-700); }
.eyebrow.yellow { color: var(--yellow); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: "Baloo 2", Inter, system-ui, sans-serif;
  letter-spacing: -.045em;
  line-height: .91;
}
h1 { font-size: clamp(3.05rem, 6.05vw, 6.15rem); margin-bottom: 22px; max-width: 640px; }
h2 { font-size: clamp(2.45rem, 5.6vw, 5.8rem); margin-bottom: 22px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
.hero-copy p {
  max-width: 560px;
  font-size: clamp(.98rem, 1.12vw, 1.13rem);
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 24px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  text-decoration: none;
  border: 1px solid transparent;
  font-size: .9rem;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #22002b;
  box-shadow: 0 16px 38px rgba(255, 138, 31, .28);
}
.btn-secondary {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  color: #fff;
}
.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero-note span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.76);
  font-size: .78rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  perspective: 1000px;
}
.hero-card,
.mini-photo,
.orbit-card {
  position: absolute;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-card.main-photo {
  inset: 76px 64px 26px 34px;
  border: 5px solid rgba(255,255,255,.12);
  background: var(--purple-800);
}
.hero-card img,
.mini-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  transition: transform .9s cubic-bezier(.2,.8,.2,1);
}
.hero-card:hover img,
.mini-photo:hover img { transform: scale(1.18); }
.photo-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(23,3,38,.75);
  backdrop-filter: blur(14px);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
}
.mini-photo {
  width: 150px;
  height: 200px;
  border: 4px solid rgba(255,255,255,.18);
}
.photo-a { left: 0; top: 12px; transform: rotate(-7deg); }
.photo-b { right: 0; bottom: 0; transform: rotate(6deg); }
.orbit-card {
  right: 18px;
  top: 54px;
  width: 176px;
  padding: 18px;
  background: #fff;
  color: var(--purple-900);
  border: 3px solid var(--yellow);
  animation: floatCard 5.4s ease-in-out infinite;
}
.orbit-card span {
  display: block;
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--purple-600);
}
.orbit-card strong {
  display: block;
  margin-top: 8px;
  font-family: "Baloo 2", Inter, sans-serif;
  font-size: 1.32rem;
  line-height: .95;
}
.floating-shape {
  position: absolute;
  border-radius: 999px;
  opacity: .7;
  filter: blur(.2px);
  animation: floatBubble 8s ease-in-out infinite;
}
.shape-one { width: 90px; height: 90px; background: var(--yellow); left: 8%; top: 23%; }
.shape-two { width: 38px; height: 38px; background: var(--pink); left: 49%; top: 18%; animation-delay: -2s; }
.shape-three { width: 70px; height: 70px; background: var(--cyan); right: 8%; bottom: 15%; animation-delay: -4s; }
@keyframes floatBubble { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-26px) rotate(12deg); } }
@keyframes floatCard { 0%,100% { transform: translateY(0) rotate(3deg); } 50% { transform: translateY(-14px) rotate(-2deg); } }

.quick-strip {
  position: relative;
  z-index: 4;
  margin-top: -38px;
  padding-bottom: 70px;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(23,3,38,.14);
}
.strip-grid div {
  padding: 28px;
  border-right: 1px solid rgba(23,3,38,.1);
}
.strip-grid div:last-child { border-right: 0; }
.strip-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--purple-600);
  font-weight: 900;
}
.strip-grid strong { display: block; margin-bottom: 8px; }
.strip-grid p { margin: 0; color: rgba(28,16,48,.62); line-height: 1.55; font-size: .95rem; }

.section { padding: clamp(76px, 10vw, 138px) 0; }
.section-light { background: var(--paper); }
.two-col {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}
.section-heading p,
.sticky-copy p,
.quote-copy p,
.final-cta p {
  color: rgba(28,16,48,.66);
  line-height: 1.7;
  font-size: 1.04rem;
  max-width: 640px;
}
.centered { text-align: center; max-width: 840px; margin: 0 auto 48px; }
.centered .eyebrow { justify-content: center; }
.event-list {
  display: grid;
  gap: 14px;
}
.event-list article {
  position: relative;
  padding: 26px 26px 26px 34px;
  background: #fff;
  border: 1px solid rgba(28,16,48,.08);
  border-radius: 24px;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.event-list article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 7px;
  height: 100%;
  background: linear-gradient(var(--yellow), var(--pink), var(--purple-600));
}
.event-list article:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(23,3,38,.1); border-color: rgba(92,11,163,.18); }
.event-list span {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
  color: var(--purple-800);
}
.event-list p { margin: 0; color: rgba(28,16,48,.65); line-height: 1.6; }

.toys-section {
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(255,211,56,.2), transparent 26%),
    linear-gradient(160deg, var(--purple-900), #210337 58%, #12021f);
}
.toys-section .section-heading p { color: rgba(255,255,255,.66); margin-left: auto; margin-right: auto; }
.toy-showcase {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
  align-items: stretch;
}
.toy-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .25s ease, background .25s ease;
}
.toy-card:hover { transform: translateY(-7px); background: rgba(255,255,255,.12); }
.toy-card img { width: 100%; height: 220px; object-fit: cover; transform: scale(1.08); }
.toy-card div { padding: 26px; }
.toy-card small {
  display: block;
  margin-bottom: 10px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 900;
}
.toy-card p { color: rgba(255,255,255,.68); line-height: 1.6; }
.toy-card a { color: var(--yellow); font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.toy-card.featured { grid-row: span 1; }
.toy-card.featured img { height: 260px; }

.process-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}
.sticky-copy { position: sticky; top: 112px; }
.process-steps { display: grid; gap: 16px; }
.process-steps article {
  padding: 30px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(28,16,48,.08);
  box-shadow: 0 12px 40px rgba(23,3,38,.06);
}
.process-steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--purple-700);
  color: #fff;
  font-weight: 900;
}
.process-steps p { margin: 0; color: rgba(28,16,48,.66); line-height: 1.64; }

.gallery-section {
  padding: clamp(76px, 10vw, 130px) 0;
  background: #10021b;
  color: #fff;
}
.gallery-section .section-heading p { color: rgba(255,255,255,.66); margin-left: auto; margin-right: auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .75fr 1fr;
  grid-auto-rows: 190px;
  gap: 14px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.12);
  filter: saturate(1.05) contrast(1.03);
  transition: transform .55s ease, filter .55s ease;
}
.gallery-grid img:hover { transform: scale(1.025); filter: saturate(1.18) contrast(1.06); }
.gallery-grid img:nth-child(1) { grid-row: span 2; }
.gallery-grid img:nth-child(2) { grid-column: span 2; }
.gallery-grid img:nth-child(5) { grid-column: span 2; }

.quote-section {
  background:
    linear-gradient(135deg, #fffaf0 0%, #fff2ce 100%);
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121,20,214,.18), transparent 66%);
}
.quote-grid {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
}
.quote-copy ul { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.quote-copy li { position: relative; padding-left: 26px; color: rgba(28,16,48,.72); font-weight: 700; }
.quote-copy li::before { content: ""; position: absolute; left: 0; top: .5em; width: 10px; height: 10px; border-radius: 50%; background: var(--purple-700); }
.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 34px 80px rgba(23,3,38,.14);
  border: 1px solid rgba(28,16,48,.08);
}
.quote-form label {
  display: grid;
  gap: 9px;
  color: var(--purple-900);
  font-size: .83rem;
  font-weight: 900;
}
.quote-form input,
.quote-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(28,16,48,.14);
  border-radius: 16px;
  padding: 0 16px;
  color: var(--ink);
  outline: none;
  background: #fffaf0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.quote-form input:focus,
.quote-form select:focus {
  border-color: var(--purple-600);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(121,20,214,.1);
}
.btn-form {
  width: 100%;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, var(--purple-700), var(--pink));
  color: #fff;
  min-height: 56px;
}
.quote-form small { color: rgba(28,16,48,.52); line-height: 1.55; }

.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(30px, 6vw, 80px);
}
.faq-list { display: grid; gap: 12px; }
details {
  background: #fff;
  border: 1px solid rgba(28,16,48,.08);
  border-radius: 22px;
  padding: 0 22px;
  overflow: hidden;
}
summary {
  cursor: pointer;
  padding: 22px 0;
  font-weight: 900;
  color: var(--purple-900);
}
details p { padding-bottom: 22px; margin: 0; color: rgba(28,16,48,.64); line-height: 1.65; }

.final-cta {
  padding: clamp(84px, 12vw, 160px) 0;
  text-align: center;
}
.final-cta h2 { max-width: 850px; margin-left: auto; margin-right: auto; }
.final-cta p { color: rgba(255,255,255,.68); margin-left: auto; margin-right: auto; }
.final-cta .btn { margin-top: 16px; }

.mobile-whatsapp {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 99;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #22002b;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(23,3,38,.22);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }


@media (min-width: 981px) and (max-height: 860px) {
  .hero {
    min-height: 100svh;
    padding-top: 104px;
    padding-bottom: 42px;
  }
  .hero-grid {
    align-items: center;
  }
  h1 {
    font-size: clamp(3rem, 5.1vw, 5.35rem);
    line-height: .94;
    max-width: 600px;
    margin-bottom: 18px;
  }
  .eyebrow {
    margin-bottom: 14px;
  }
  .hero-copy p {
    margin-bottom: 20px;
    line-height: 1.52;
  }
  .hero-note {
    margin-top: 20px;
  }
  .hero-visual {
    min-height: 455px;
  }
  .hero-card.main-photo {
    inset: 70px 64px 24px 42px;
  }
  .mini-photo {
    width: 136px;
    height: 178px;
  }
  .orbit-card {
    top: 58px;
    width: 168px;
  }
}

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

@media (max-width: 980px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-header.is-open .nav {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 16px;
    border-radius: 24px;
    background: rgba(23,3,38,.96);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
  }
  .site-header.is-open .nav a { padding: 16px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .site-header.is-open .nav a:last-child { border-bottom: 0; }
  .hero-grid, .two-col, .process-layout, .quote-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 112px; }
  .hero-visual { min-height: 470px; max-width: 620px; width: 100%; margin: 0 auto; }
  .sticky-copy { position: relative; top: auto; }
  .toy-showcase { grid-template-columns: 1fr; }
  .toy-card, .toy-card.featured { min-height: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery-grid img:nth-child(1), .gallery-grid img:nth-child(2), .gallery-grid img:nth-child(5) { grid-column: auto; grid-row: auto; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1160px); }
  .brand img { width: 46px; height: 46px; }
  .brand span { font-size: .78rem; }
  .hero { min-height: auto; padding: 112px 0 40px; }
  h1 { font-size: clamp(2.9rem, 16vw, 4.7rem); }
  h2 { font-size: clamp(2.35rem, 13vw, 3.8rem); }
  .hero-actions .btn { width: 100%; }
  .hero-note span { font-size: .74rem; }
  .hero-visual { min-height: 420px; }
  .hero-card.main-photo { inset: 64px 42px 34px 22px; border-radius: 28px; }
  .mini-photo { width: 126px; height: 170px; border-radius: 22px; }
  .orbit-card { width: 158px; right: 0; top: 36px; padding: 16px; border-radius: 24px; }
  .orbit-card strong { font-size: 1.22rem; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-grid div { border-right: 0; border-bottom: 1px solid rgba(23,3,38,.1); padding: 24px; }
  .section { padding: 72px 0; }
  .event-list article, .process-steps article, .quote-form { border-radius: 24px; }
  .toy-card img, .toy-card.featured img { height: 210px; }
  .gallery-grid { grid-auto-rows: 145px; gap: 10px; }
  .gallery-grid img { border-radius: 18px; }
  .mobile-whatsapp { display: flex; }
  .final-cta { padding-bottom: 108px; }
}
