:root {
  --cream: #fff6e8;
  --sand: #ffe6bf;
  --ink: #12233a;
  --ink-soft: rgba(18, 35, 58, 0.72);
  --coral: #ff6f61;
  --sun: #ffc84a;
  --mint: #76dfbb;
  --sky: #79c6ff;
  --berry: #ff85b3;
  --panel: rgba(255, 255, 255, 0.72);
  --white-line: rgba(255, 255, 255, 0.65);
  --line: rgba(18, 35, 58, 0.1);
  --shadow: 0 26px 60px rgba(18, 35, 58, 0.14);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100vw;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fffaf2 0%, #fff2e1 52%, #ffeed7 100%);
  min-height: 100vh;
  overflow-x: clip;
  max-width: 100vw;
}
.bg-mesh {
  position: fixed;
  inset: -50%;
  z-index: -1;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 200, 74, 0.45), transparent 25%),
    radial-gradient(circle at 80% 40%, rgba(121, 198, 255, 0.45), transparent 25%),
    radial-gradient(circle at 60% 80%, rgba(118, 223, 187, 0.35), transparent 25%),
    radial-gradient(circle at 20% 70%, rgba(255, 133, 179, 0.28), transparent 25%);
  animation: mesh-drift 24s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes mesh-drift {
  0% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(6deg) scale(1.15); }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 35, 58, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 35, 58, 0.02) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
  opacity: 0.55;
}

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

.page-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 18px auto 28px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 16px 20px;
  background: rgba(255, 248, 238, 0.74);
  border: 1px solid var(--white-line);
  backdrop-filter: blur(16px);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(18, 35, 58, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-mark {
  display: inline-flex;
  gap: 6px;
}

.brand-mark i {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: block;
}

.brand-mark i:first-child {
  background: var(--coral);
}

.brand-mark i:last-child {
  background: var(--sky);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.site-nav a,
.nav-cta {
  font-size: 0.96rem;
}

.nav-cta,
.button {
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: center;
  padding: 56px 0 18px;
  min-height: calc(100vh - 140px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.contact-panel h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero h1 {
  max-width: 8ch;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
}

.hero h1 span {
  background: linear-gradient(135deg, var(--coral), var(--berry));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hero-text,
.play-card p,
.timeline-step p,
.promise-card p,
.contact-panel p,
.footer-brand p,
.footer-links p {
  color: var(--ink-soft);
  line-height: 1.6;
}

.hero-text {
  max-width: 32rem;
  margin: 20px 0 0;
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions,
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions,
.contact-actions {
  margin-top: 28px;
}

.hero-tags {
  margin-top: 24px;
}

.hero-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(18, 35, 58, 0.08);
  box-shadow: 0 10px 24px rgba(18, 35, 58, 0.06);
  font-size: 0.92rem;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(135deg, var(--coral), #ff946b);
  color: #fff;
  box-shadow: 0 16px 30px rgba(255, 111, 97, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(18, 35, 58, 0.1);
}

.hero-stage {
  position: relative;
  min-height: 680px;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(18, 35, 58, 0.14);
  animation: spin 18s linear infinite;
}

.orbit-a {
  inset: 100px 56px 132px 40px;
}

.orbit-b {
  inset: 10px 18px 62px 94px;
  animation-direction: reverse;
  animation-duration: 24s;
}

.toy-card,
.toy-block {
  position: absolute;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.toy-card-main {
  top: 114px;
  left: 38px;
  width: min(100%, 390px);
  padding: 28px;
  background:
    radial-gradient(circle at right top, rgba(255, 200, 74, 0.22), transparent 20%),
    linear-gradient(160deg, rgba(17, 42, 71, 0.96), rgba(31, 75, 121, 0.9));
  color: #fff7ef;
}

.toy-card-main h2 {
  margin: 14px 0 10px;
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.toy-card-main p {
  margin: 0;
  color: rgba(255, 247, 239, 0.78);
}

.toy-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-img-card {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(18, 35, 58, 0.2);
  overflow: hidden;
  border: 4px solid #fff;
  background: #fff;
}
.hero-img-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-1 {
  width: 180px;
  height: 220px;
  top: 10px;
  right: 50px;
  transform: rotate(6deg);
  z-index: 2;
}
.hero-img-2 {
  width: 160px;
  height: 160px;
  bottom: 80px;
  left: 30px;
  transform: rotate(-12deg);
  border-radius: 50%;
  z-index: 3;
}
.hero-img-3 {
  width: 160px;
  height: 200px;
  bottom: 50px;
  right: 30px;
  transform: rotate(-8deg);
  z-index: 1;
}

.assembly-line {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.assembly-line span {
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(18, 35, 58, 0.18), rgba(18, 35, 58, 0.04));
  overflow: hidden;
  position: relative;
}

.assembly-line span::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: conveyor 2.8s linear infinite;
}

.mini-stats,
.playbook-grid,
.category-grid,
.visual-strip,
.timeline,
.promise-grid,
.footer-top {
  display: grid;
  gap: 18px;
}

.mini-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 24px 0 16px;
}

.mini-stats article,
.play-card,
.category-card,
.strip-card,
.timeline-step,
.promise-card,
.contact-panel {
  background: var(--panel);
  border: 1px solid var(--white-line);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.play-card:hover,
.category-card:hover,
.timeline-step:hover,
.promise-card:hover,
.showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(18, 35, 58, 0.12);
}

.mini-stats article {
  padding: 20px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.mini-stats strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.mini-stats span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
}

.marquee-band {
  overflow: hidden;
  margin: 20px 0 42px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.marquee-track span {
  font-family: "Syne", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 3.5rem;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(18, 35, 58, 0.4);
  transition: color 0.3s, transform 0.3s;
  cursor: default;
}
.marquee-track span:hover {
  color: var(--coral);
  -webkit-text-stroke: 1.5px var(--coral);
  transform: scale(1.05);
}

section {
  margin: 38px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 22px;
}

.section-heading h2,
.contact-panel h2 {
  font-size: clamp(2.3rem, 4vw, 4.8rem);
}

.playbook-grid {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
}

.play-card,
.category-card,
.timeline-step,
.promise-card,
.contact-panel {
  border-radius: var(--radius-xl);
  padding: 26px;
}

.play-card-visual {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 200, 74, 0.55), transparent 18%),
    radial-gradient(circle at 70% 24%, rgba(121, 198, 255, 0.42), transparent 18%),
    radial-gradient(circle at 38% 74%, rgba(118, 223, 187, 0.48), transparent 18%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.8), rgba(255, 246, 232, 0.74));
  display: flex;
  align-items: end;
}

.bubble-cluster span {
  position: absolute;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.bubble-cluster span:nth-child(1) {
  top: 28px;
  left: 28px;
  width: 94px;
  height: 94px;
  background: rgba(255, 133, 179, 0.9);
}

.bubble-cluster span:nth-child(2) {
  top: 52px;
  right: 32px;
  width: 120px;
  height: 120px;
  background: rgba(121, 198, 255, 0.78);
}

.bubble-cluster span:nth-child(3) {
  bottom: 98px;
  left: 118px;
  width: 82px;
  height: 82px;
  background: rgba(255, 200, 74, 0.85);
}

.play-card-visual h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 8ch;
  font-family: "Syne", sans-serif;
  font-size: 2.3rem;
  line-height: 0.95;
}

.card-index,
.timeline-step span,
.showcase-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(18, 35, 58, 0.08);
  color: rgba(18, 35, 58, 0.85);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.play-card h3,
.category-card h3,
.timeline-step h3,
.promise-card h3,
.strip-card h3 {
  margin: 18px 0 8px;
  font-family: "Syne", sans-serif;
  font-size: 1.45rem;
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-art,
.showcase-image {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  object-fit: cover;
  width: 100%;
  display: block;
}

.category-art {
  height: 128px;
}

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

.showcase-grid-large {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.showcase-card {
  background: var(--panel);
  border: 1px solid var(--white-line);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  padding: 22px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card h3 {
  margin: 18px 0 8px;
  font-family: "Syne", sans-serif;
  font-size: 1.45rem;
}

.showcase-card p {
  margin: 0;
  color: var(--ink-soft);
}

.showcase-card-wide {
  grid-row: span 2;
}

.showcase-image {
  height: 220px;
}

.showcase-image.image-large {
  min-height: 420px;
  height: 100%;
}

.art-bear,
.image-plush {
  background: linear-gradient(160deg, #ffd8e5, #ffb5cb);
}

.art-bear span,
.image-plush span {
  position: absolute;
  display: block;
  background: #7a4a57;
}

.art-bear span:nth-child(1),
.image-plush span:nth-child(1) {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  top: 18px;
  left: 26px;
}

.art-bear span:nth-child(2),
.image-plush span:nth-child(2) {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  top: 18px;
  right: 26px;
}

.art-bear span:nth-child(3),
.image-plush span:nth-child(3) {
  width: 92px;
  height: 86px;
  border-radius: 46px;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
}

.art-bear span:nth-child(4),
.image-plush span:nth-child(4) {
  width: 112px;
  height: 72px;
  border-radius: 40px 40px 28px 28px;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
}

.art-blocks,
.image-kit {
  background: linear-gradient(160deg, #dff9ef, #b5ecd4);
}

.art-blocks span,
.image-kit span {
  position: absolute;
  display: block;
  border-radius: 18px;
}

.art-blocks span:nth-child(1),
.image-kit span:nth-child(1) {
  width: 74px;
  height: 74px;
  left: 22px;
  bottom: 20px;
  background: #ff7e6d;
}

.art-blocks span:nth-child(2),
.image-kit span:nth-child(2) {
  width: 64px;
  height: 64px;
  left: 84px;
  top: 20px;
  background: #78c7ff;
}

.art-blocks span:nth-child(3),
.image-kit span:nth-child(3) {
  width: 86px;
  height: 86px;
  right: 22px;
  bottom: 26px;
  background: #ffc84a;
}

.art-figure,
.image-figure {
  background: linear-gradient(160deg, #dff0ff, #badfff);
}

.art-figure span,
.image-figure span {
  position: absolute;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  background: #325476;
}

.art-figure span:nth-child(1),
.image-figure span:nth-child(1) {
  width: 54px;
  height: 54px;
  top: 18px;
  border-radius: 50%;
}

.art-figure span:nth-child(2),
.image-figure span:nth-child(2) {
  width: 78px;
  height: 86px;
  top: 68px;
  border-radius: 36px;
}

.art-figure span:nth-child(3),
.image-figure span:nth-child(3) {
  width: 106px;
  height: 20px;
  bottom: 20px;
  border-radius: 999px;
  background: rgba(50, 84, 118, 0.25);
}

.art-gift,
.image-box {
  background: linear-gradient(160deg, #fff0bf, #ffd97f);
}

.art-gift span,
.image-box span {
  position: absolute;
  display: block;
}

.art-gift span:nth-child(1),
.image-box span:nth-child(1) {
  inset: 28px;
  border-radius: 24px;
  background: #ff8ea0;
}

.art-gift span:nth-child(2),
.image-box span:nth-child(2) {
  width: 18px;
  top: 18px;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff6e8;
}

.art-gift span:nth-child(3),
.image-box span:nth-child(3) {
  height: 18px;
  left: 18px;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff6e8;
}

.art-board {
  background: linear-gradient(160deg, #ffe4d4, #ffc3a0);
}

.art-board span {
  position: absolute;
  display: block;
  border-radius: 18px;
  background: #fff6e8;
}

.art-board span:nth-child(1) {
  inset: 22px;
}

.art-board span:nth-child(2) {
  width: 18px;
  height: 18px;
  top: 38px;
  left: 38px;
  background: #ff8b5e;
  box-shadow: 44px 0 0 #79c6ff, 88px 0 0 #76dfbb, 0 44px 0 #ffc84a, 44px 44px 0 #ff85b3, 88px 44px 0 #12233a;
}

.art-board span:nth-child(3) {
  display: none;
}

.art-pack {
  background: linear-gradient(160deg, #efe4ff, #cab3ff);
}

.art-pack span {
  position: absolute;
  display: block;
  background: #fff6e8;
}

.art-pack span:nth-child(1) {
  width: 92px;
  height: 72px;
  left: 28px;
  top: 28px;
  border-radius: 16px;
}

.art-pack span:nth-child(2) {
  width: 92px;
  height: 72px;
  right: 28px;
  bottom: 28px;
  border-radius: 16px;
}

.art-pack span:nth-child(3) {
  width: 34px;
  height: 34px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ff8ea0;
}

.visual-strip {
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
}

.strip-card {
  min-height: 180px;
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  align-items: end;
}

.strip-card-large {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 200, 74, 0.45), transparent 18%),
    radial-gradient(circle at 82% 76%, rgba(121, 198, 255, 0.42), transparent 18%),
    linear-gradient(160deg, rgba(17, 42, 71, 0.94), rgba(39, 90, 144, 0.9));
  color: #fff8ef;
}

.strip-card-large .showcase-tag {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 248, 239, 0.88);
}

.strip-card strong {
  font-family: "Syne", sans-serif;
  font-size: 1.45rem;
}

.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-step {
  min-height: 210px;
}

.promise-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.promise-card {
  min-height: 180px;
}

.contact {
  padding-bottom: 14px;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at right top, rgba(121, 198, 255, 0.32), transparent 22%),
    radial-gradient(circle at left bottom, rgba(255, 111, 97, 0.18), transparent 20%),
    rgba(255, 255, 255, 0.76);
}

.site-footer {
  margin: 18px 0 0;
  padding: 34px 28px 26px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at left top, rgba(255, 200, 74, 0.18), transparent 18%),
    linear-gradient(160deg, rgba(17, 42, 71, 0.98), rgba(23, 55, 91, 0.96));
  color: #fff7ef;
  box-shadow: 0 24px 60px rgba(18, 35, 58, 0.18);
}

.footer-top {
  grid-template-columns: 1.3fr 0.9fr 1fr;
  align-items: start;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links h3 {
  margin: 0 0 8px;
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
}

.footer-links a,
.footer-links p,
.footer-brand p,
.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 247, 239, 0.76);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 247, 239, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
}

.page-hero {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
  padding: 42px 0 12px;
}

.page-hero-copy,
.page-hero-visual,
.info-card,
.split-panel,
.qa-card,
.contact-card,
.contact-form-card,
.mini-panel {
  background: var(--panel);
  border: 1px solid var(--white-line);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.page-hero-copy,
.page-hero-visual,
.info-card,
.split-panel,
.qa-card,
.contact-card,
.contact-form-card,
.mini-panel {
  padding: 28px;
}

.page-hero-copy h1 {
  margin: 0;
  max-width: 9ch;
  font-family: "Syne", sans-serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.page-hero-copy p {
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}

.page-hero-visual {
  min-height: 340px;
  position: relative;
  overflow: hidden;
}

.visual-dots span,
.visual-stack span,
.visual-rings span {
  position: absolute;
  display: block;
}

.visual-dots span {
  border-radius: 50%;
}

.visual-dots span:nth-child(1) {
  width: 140px;
  height: 140px;
  top: 36px;
  left: 36px;
  background: rgba(255, 111, 97, 0.9);
}

.visual-dots span:nth-child(2) {
  width: 180px;
  height: 180px;
  top: 80px;
  right: 40px;
  background: rgba(121, 198, 255, 0.78);
}

.visual-dots span:nth-child(3) {
  width: 120px;
  height: 120px;
  bottom: 24px;
  left: 126px;
  background: rgba(118, 223, 187, 0.85);
}

.visual-stack span {
  left: 50%;
  width: 190px;
  height: 44px;
  border-radius: 999px;
  transform: translateX(-50%);
}

.visual-stack span:nth-child(1) {
  top: 74px;
  background: rgba(255, 200, 74, 0.92);
}

.visual-stack span:nth-child(2) {
  top: 136px;
  background: rgba(255, 133, 179, 0.88);
}

.visual-stack span:nth-child(3) {
  top: 198px;
  background: rgba(121, 198, 255, 0.9);
}

.visual-rings span {
  border-radius: 50%;
  border: 20px solid transparent;
}

.visual-rings span:nth-child(1) {
  width: 160px;
  height: 160px;
  top: 40px;
  left: 54px;
  border-color: rgba(118, 223, 187, 0.9);
}

.visual-rings span:nth-child(2) {
  width: 220px;
  height: 220px;
  right: 54px;
  bottom: 36px;
  border-color: rgba(255, 200, 74, 0.82);
}

.visual-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(17, 42, 71, 0.88);
  color: #fff7ef;
  font-family: "Syne", sans-serif;
}

.info-grid,
.mini-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.info-card h3,
.split-panel h3,
.qa-card h3,
.contact-card h3,
.contact-form-card h3,
.mini-panel h3 {
  margin: 0 0 10px;
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
}

.info-card p,
.split-panel p,
.qa-card p,
.contact-card p,
.contact-form-card p,
.mini-panel p,
.mini-panel li {
  color: var(--ink-soft);
  line-height: 1.65;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

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

.mini-panel ul,
.contact-card ul {
  margin: 0;
  padding-left: 18px;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list a,
.contact-list p {
  margin: 0;
  color: var(--ink-soft);
}

.fake-form {
  display: grid;
  gap: 14px;
}

.fake-form .field {
  min-height: 56px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(18, 35, 58, 0.08);
  color: rgba(18, 35, 58, 0.52);
}

.fake-form .field.large {
  min-height: 140px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-float] {
  animation: bob 5s ease-in-out infinite;
}

[data-float]:nth-child(2) {
  animation-duration: 6.5s;
}

[data-float]:nth-child(3) {
  animation-duration: 4.8s;
}

[data-float]:nth-child(4) {
  animation-duration: 5.8s;
}

@keyframes bob {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(var(--tilt, 0deg));
  }
  50% {
    transform: translate3d(0, -14px, 0) rotate(var(--tilt, 0deg));
  }
}

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

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

@keyframes conveyor {
  to {
    transform: translateX(120%);
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    border-radius: 28px;
    gap: 16px;
  }

  .hero, .page-hero, .contact-grid, .split-grid, .footer-top {
    grid-template-columns: 1fr;
  }

  .mini-stats, .playbook-grid, .category-grid, .showcase-grid, .showcase-grid-large, .timeline, .info-grid, .mini-grid, .qa-grid, .promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-strip {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    min-height: 560px;
    margin-top: 40px;
  }

  .toy-card-main {
    left: 20px;
    right: 20px;
    width: auto;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 18px), var(--max));
    margin-top: 10px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding-top: 30px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-stage {
    min-height: 480px;
  }

  .hero-img-1 {
    width: 110px;
    height: 140px;
    top: -20px;
    right: 10px;
  }

  .hero-img-2 {
    width: 80px;
    height: 80px;
    left: 5px;
    bottom: 120px;
  }

  .hero-img-3 {
    width: 100px;
    height: 120px;
    right: 10px;
    bottom: 30px;
  }

  .toy-card-main {
    top: 50px;
  }

  .toy-card-main h2 {
    font-size: 1.8rem;
  }

  .mini-stats, .playbook-grid, .category-grid, .showcase-grid, .showcase-grid-large, .timeline, .info-grid, .mini-grid, .qa-grid, .promise-grid, .visual-strip {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-tags span {
    width: calc(50% - 7px);
    text-align: center;
  }

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

  .site-footer {
    padding: 28px 20px 22px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
