:root {
    color-scheme: light;
    --ink: #3b3152;
    --violet: #7550a9;
    --cream: #fffaf2;
    --peach: #fff0dc;
    --pink: #ffe7eb;
    --mint: #e1f5e8;
    --line: #e6dacf;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}
body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family:
        system-ui,
        -apple-system,
        "Segoe UI",
        sans-serif;
}
img {
    max-width: 100%;
}
a {
    color: inherit;
}
a:focus-visible {
    outline: 3px solid #7857bc;
    outline-offset: 4px;
}
.skip-link {
    position: absolute;
    left: 1rem;
    top: -5rem;
    z-index: 30;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 1rem;
}
.skip-link:focus {
    top: 1rem;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.72rem clamp(1.2rem, 4vw, 4.5rem);
    background: rgba(255, 250, 242, 0.97);
    border-bottom: 1px solid #eee1d7;
    box-shadow: 0 4px 18px rgba(75, 50, 82, 0.045);
    backdrop-filter: blur(14px);
}
.mini-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    white-space: nowrap;
    font-family: "Trebuchet MS", system-ui, sans-serif;
    font-size: 1.18rem;
    font-weight: 900;
    color: #7150a6;
}
.mini-brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 22%;
}
.site-header nav {
    display: flex;
    align-items: center;
    gap: clamp(0.8rem, 2.4vw, 2.4rem);
}
.site-header nav a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
}
.site-header nav a:hover,
.text-link:hover,
.family-links a:hover,
.footer-bottom a:hover {
    color: #8756c0;
}
.site-header nav .nav-support {
    padding: 0.68rem 1.05rem;
    border: 1.5px solid #d8c5e3;
    border-radius: 999px;
}
.hero {
    position: relative;
    isolation: isolate;
    min-height: min(790px, 74vw);
    overflow: hidden;
    background: #c8e8ff;
}
.hero-art {
    display: block;
    width: 100%;
    height: min(790px, 74vw);
    min-height: 620px;
    object-fit: cover;
    object-position: center;
}
.hero-scrim {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 250, 242, 0.98) 0%,
        rgba(255, 250, 242, 0.92) 20%,
        rgba(255, 250, 242, 0.7) 38%,
        rgba(255, 250, 242, 0.1) 62%,
        transparent 100%
    );
}
.hero-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: clamp(1.5rem, 7vw, 8.8rem);
    width: min(680px, 49vw);
    transform: translateY(-48%);
}
.eyebrow,
.section-kicker {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    font-weight: 800;
    color: #8a679b;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #eadbed;
    border-radius: 999px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.status-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #77c892;
    box-shadow: 0 0 0 4px #e4f6e6;
}
.hero-logo {
    display: block;
    width: min(650px, 100%);
    height: auto;
    margin: 1.8rem 0 1.45rem -1rem;
    filter: drop-shadow(0 8px 12px rgba(100, 70, 95, 0.1));
}
h1,
h2,
h3,
p {
    margin-top: 0;
}
h1,
h2,
h3 {
    font-family: "Trebuchet MS", system-ui, sans-serif;
}
.hero h1 {
    max-width: 550px;
    font-size: clamp(2.6rem, 4.3vw, 4.5rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
    margin-bottom: 1rem;
}
.hero p {
    max-width: 510px;
    font-size: clamp(1rem, 1.3vw, 1.18rem);
    line-height: 1.65;
}
.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
    margin-top: 1.7rem;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(86, 65, 119, 0.15);
}
.button-primary {
    color: white;
    background: #7755b1;
    box-shadow: inset 0 -3px 0 rgba(43, 23, 76, 0.15);
}
.coming-note {
    font-size: 0.85rem;
    font-weight: 700;
    color: #5c5664;
}
.hero-sticker {
    position: absolute;
    right: 3.6%;
    bottom: 8%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff8dc;
    border: 5px solid #fff;
    color: #8159aa;
    box-shadow: 0 8px 20px #6751452a;
    transform: rotate(12deg);
    text-align: center;
}
.hero-sticker span {
    font-size: 1.35rem;
    line-height: 1;
}
.hero-sticker small {
    font-weight: 900;
    font-family: "Trebuchet MS", system-ui, sans-serif;
    font-size: 0.72rem;
    line-height: 1.1;
    letter-spacing: 0.08em;
}
.hero-bottom {
    position: absolute;
    bottom: -1px;
    width: 100%;
    height: 36px;
    z-index: 3;
    background: var(--cream);
    clip-path: polygon(
        0 55%,
        8% 35%,
        15% 55%,
        23% 34%,
        31% 48%,
        40% 29%,
        49% 54%,
        58% 35%,
        67% 55%,
        76% 33%,
        84% 51%,
        93% 34%,
        100% 50%,
        100% 100%,
        0 100%
    );
}
.section-shell {
    width: min(1330px, calc(100% - 3rem));
    margin-left: auto;
    margin-right: auto;
}
.intro {
    padding-top: clamp(5rem, 8vw, 8rem);
    padding-bottom: 5rem;
}
.section-kicker {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.kicker-line {
    display: inline-block;
    width: 28px;
    height: 1px;
    background: currentColor;
}
.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: clamp(2rem, 7vw, 8rem);
    margin-top: 1.2rem;
}
.intro h2,
.section-heading-row h2,
.together-section h2,
.families-section h2,
.availability h2 {
    font-size: clamp(2.45rem, 4.5vw, 4.8rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
    margin-bottom: 0;
}
.intro h2 em,
.together-section h2 em {
    color: #ae78c8;
    font-style: normal;
}
.intro-copy {
    max-width: 500px;
    padding-bottom: 0.4rem;
}
.intro-copy p,
.section-heading-row p,
.together-section p,
.families-section p,
.availability p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #64596b;
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.7rem;
    text-decoration: none;
    font-weight: 800;
    border-bottom: 2px solid #c99fdf;
    padding-bottom: 0.35rem;
}
.world-panel {
    position: relative;
    overflow: hidden;
    border-radius: 2.4rem;
    background: #a7dff8;
    box-shadow: 0 20px 55px rgba(79, 79, 117, 0.1);
}
.world-image {
    width: 100%;
    height: clamp(320px, 48vw, 620px);
    background: url("/assets/title-background.png") center 52% / cover no-repeat;
}
.world-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 250, 242, 0.92);
    backdrop-filter: blur(8px);
    font-family: "Trebuchet MS", system-ui, sans-serif;
    font-weight: 800;
}
.caption-star {
    color: #eaa766;
    font-size: 1.4rem;
    line-height: 0.7;
}
.play-section {
    padding-top: clamp(6rem, 9vw, 9rem);
    padding-bottom: clamp(6rem, 9vw, 9rem);
}
.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 3rem;
    margin: 1.1rem 0 3rem;
}
.section-heading-row p {
    max-width: 380px;
    margin: 0;
}
.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.activity-card {
    min-height: 410px;
    display: flex;
    flex-direction: column;
    padding: 1.65rem;
    border-radius: 2rem;
    overflow: hidden;
}
.activity-lilac {
    background: #eee5fa;
}
.activity-peach {
    background: #ffeadb;
}
.activity-mint {
    background: #e0f3e8;
}
.activity-number {
    color: #715b80;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.13em;
}
.activity-art {
    position: relative;
    display: grid;
    place-items: center;
    flex: 1;
    min-height: 200px;
}
.dress-up-art:before {
    content: "";
    position: absolute;
    width: 142px;
    height: 142px;
    background: #d7c2f6;
    border-radius: 42% 58% 64% 36% / 49% 39% 61% 51%;
    transform: rotate(-20deg);
}
.dress-icon {
    position: relative;
    font-size: 8rem;
    color: #8d70cd;
    text-shadow: 3px 5px 0 #fff6fe;
    transform: rotate(-13deg);
}
.dress-sparkle {
    position: absolute;
    top: 18%;
    right: 26%;
    color: #d487b0;
    font-size: 2rem;
}
.home-art:before {
    content: "";
    position: absolute;
    width: 175px;
    height: 175px;
    border-radius: 50%;
    background: #ffd3be;
}
.home-art img {
    position: relative;
    filter: drop-shadow(0 10px 8px #9d6d6644);
}
.explore-art {
    gap: 0.2rem;
    font-size: 3rem;
    color: #7fae8c;
}
.explore-art span:nth-child(1) {
    transform: translate(50px, 30px) rotate(-14deg);
    color: #e1a5c0;
}
.explore-art span:nth-child(2) {
    font-size: 6.5rem;
    color: #7fbe9b;
}
.explore-art span:nth-child(3) {
    transform: translate(-50px, -20px) rotate(19deg);
    color: #e8bd7a;
}
.activity-card h3 {
    font-size: 1.7rem;
    margin: 0 0 0.4rem;
    line-height: 1.2;
}
.activity-card p {
    color: #625768;
    line-height: 1.6;
    margin: 0;
}
.together-section {
    overflow: hidden;
    background: #f5e6fb;
    border-top: 1px solid #e8d9eb;
    border-bottom: 1px solid #e8d9eb;
}
.together-inner {
    position: relative;
    display: grid;
    grid-template-columns: 0.3fr 1fr 0.5fr;
    align-items: center;
    gap: 2.5rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.together-mark {
    color: #c493d4;
    font-size: clamp(6rem, 15vw, 14rem);
    line-height: 1;
    text-align: center;
}
.together-section h2 {
    margin: 1rem 0;
}
.together-section p {
    max-width: 640px;
    margin: 0;
}
.together-bubbles {
    position: relative;
    height: 260px;
}
.together-bubbles span {
    position: absolute;
    display: grid;
    place-items: center;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    background: #fff9ed;
    border: 5px solid white;
    box-shadow: 0 10px 20px #9779a233;
}
.together-bubbles span:nth-child(1) {
    left: 12%;
    top: 7%;
    transform: rotate(-11deg);
}
.together-bubbles span:nth-child(2) {
    right: 3%;
    top: 28%;
    background: #f9d6e5;
    transform: rotate(10deg);
}
.together-bubbles span:nth-child(3) {
    left: 20%;
    bottom: 0;
    background: #dfebc7;
    transform: rotate(-7deg);
}
.families-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.families-card {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: clamp(1.5rem, 5vw, 5rem);
    align-items: center;
    padding: clamp(2rem, 5vw, 5rem);
    background: #fdf5e5;
    border: 1px solid #f0e3d2;
    border-radius: 2.5rem;
}
.families-icon {
    display: grid;
    place-items: center;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #f4c7d1;
    color: #b75c8e;
    font-size: 6rem;
    line-height: 1;
}
.families-section h2 {
    margin: 0.8rem 0 1rem;
    font-size: clamp(2.3rem, 4vw, 3.7rem);
}
.families-section p {
    max-width: 780px;
}
.family-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-weight: 800;
}
.family-links a {
    text-underline-offset: 0.28em;
}
.availability {
    position: relative;
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: clamp(1.5rem, 5vw, 5rem);
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 7rem;
}
.availability-mark {
    color: #eca7be;
    font-size: 11rem;
    line-height: 1;
    text-align: center;
}
.availability h2 {
    margin: 0.8rem 0 1rem;
    font-size: clamp(2.3rem, 4vw, 3.7rem);
}
.availability p {
    max-width: 740px;
}
.platforms {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}
.platforms span {
    padding: 0.72rem 1rem;
    background: #fff;
    border: 1px solid #e9d9e3;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.88rem;
}
.site-footer {
    padding: 3.5rem max(calc((100% - 1330px) / 2), 1.5rem) 2rem;
    background: #493b5d;
    color: #fffaf2;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 2rem;
    padding-bottom: 2.8rem;
}
.footer-top p {
    margin: 0;
    color: #eee0f0;
}
.footer-logo img {
    width: 230px;
    height: auto;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 1.3rem;
    border-top: 1px solid #ffffff35;
    font-size: 0.86rem;
    color: #eee0f0;
}
.footer-bottom nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}
.footer-bottom a {
    text-decoration: none;
}
.inner-hero {
    padding: 5rem max(calc((100% - 1000px) / 2), 1.5rem) 3rem;
    background: #f6eafd;
}
.inner-hero .eyebrow {
    display: block;
    margin-bottom: 1.2rem;
}
.inner-hero h1 {
    max-width: 800px;
    font-size: clamp(2.6rem, 5.5vw, 5rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}
.inner-hero p {
    max-width: 700px;
    line-height: 1.7;
    font-size: 1.08rem;
}
.content-page {
    width: min(1000px, calc(100% - 3rem));
    margin: 0 auto;
    padding: 4rem 0 7rem;
}
.content-page h2 {
    margin: 2.4rem 0 0.6rem;
    font-size: 1.6rem;
}
.content-page p,
.content-page li {
    line-height: 1.75;
    color: #5f5668;
}
.content-page ul {
    padding-left: 1.3rem;
}
.content-page a {
    color: #7150a6;
    text-underline-offset: 0.2em;
}
.info-card {
    padding: 1.7rem 2rem;
    background: white;
    border: 1px solid #ebdde5;
    border-radius: 1.5rem;
}
.info-card h2:first-child {
    margin-top: 0;
}
.updated {
    font-size: 0.85rem;
    color: #706678;
}
@media (max-width: 980px) {
    .site-header nav {
        gap: 0.85rem;
    }
    .site-header nav a {
        font-size: 0.8rem;
    }
    .hero-art {
        height: 700px;
        min-height: 700px;
        object-position: 56% center;
    }
    .hero-content {
        left: 4vw;
        width: 53vw;
    }
    .hero-scrim {
        background: linear-gradient(
            90deg,
            rgba(255, 250, 242, 0.98),
            rgba(255, 250, 242, 0.77) 44%,
            rgba(255, 250, 242, 0.08) 80%
        );
    }
    .hero-logo {
        width: 100%;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .coming-note {
        display: block;
    }
    .activity-card {
        min-height: 390px;
    }
    .together-inner {
        grid-template-columns: 0.2fr 1fr;
    }
    .together-bubbles {
        display: none;
    }
}
@media (max-width: 700px) {
    html {
        scroll-padding-top: 115px;
    }
    .site-header {
        display: block;
        padding: 0.35rem 0.75rem 0.45rem;
    }
    .mini-brand {
        font-size: 0.95rem;
    }
    .mini-brand img {
        width: 32px;
        height: 32px;
    }
    .site-header nav {
        justify-content: space-between;
        gap: 0.4rem;
        margin-top: 0.1rem;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .site-header nav::-webkit-scrollbar {
        display: none;
    }
    .site-header nav a {
        flex: 0 0 auto;
        font-size: 0.7rem;
    }
    .site-header nav .nav-support {
        padding: 0.35rem 0.6rem;
        font-size: 0.7rem;
    }
    .hero {
        min-height: auto;
        padding-bottom: 0;
    }
    .hero-art {
        width: 100%;
        height: 420px;
        min-height: 0;
        object-position: 68% center;
    }
    .hero-scrim {
        inset: 250px 0 0;
        background: linear-gradient(180deg, transparent, var(--cream) 85%);
    }
    .hero-content {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: auto;
        padding: 0 1.4rem 4.8rem;
        margin-top: -64px;
    }
    .hero-eyebrow {
        font-size: 0.64rem;
    }
    .hero-logo {
        width: min(440px, 100%);
        margin: 1rem 0 0.9rem -0.5rem;
    }
    .hero h1 {
        font-size: clamp(2.3rem, 8vw, 3.3rem);
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-sticker {
        display: none;
    }
    .coming-note {
        width: 100%;
    }
    .section-shell {
        width: min(100% - 2rem, 550px);
    }
    .intro {
        padding-top: 4.5rem;
        padding-bottom: 3rem;
    }
    .intro-grid,
    .families-card,
    .availability {
        display: block;
    }
    .intro h2 {
        font-size: 2.8rem;
        margin-bottom: 1.3rem;
    }
    .world-panel {
        border-radius: 1.5rem;
    }
    .world-image {
        height: 350px;
        background-position: 70% center;
    }
    .world-caption {
        left: 0.8rem;
        right: 0.8rem;
        bottom: 0.8rem;
        border-radius: 1rem;
        font-size: 0.76rem;
    }
    .play-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .section-heading-row {
        display: block;
        margin-bottom: 2rem;
    }
    .section-heading-row h2 {
        margin-bottom: 1rem;
    }
    .activity-grid {
        grid-template-columns: 1fr;
    }
    .activity-card {
        min-height: 320px;
    }
    .activity-art {
        min-height: 160px;
    }
    .together-inner {
        display: block;
        padding: 4rem 0;
    }
    .together-mark {
        font-size: 6rem;
        text-align: left;
        margin-bottom: 1rem;
    }
    .families-section {
        padding: 4rem 0;
    }
    .families-card {
        padding: 2rem;
        border-radius: 1.6rem;
    }
    .families-icon {
        width: 90px;
        height: 90px;
        font-size: 4rem;
        margin-bottom: 1.7rem;
    }
    .availability {
        padding-bottom: 5rem;
    }
    .availability-mark {
        text-align: left;
        font-size: 6rem;
    }
    .footer-top,
    .footer-bottom {
        display: block;
    }
    .footer-top p {
        margin-top: 1rem;
    }
    .footer-bottom nav {
        margin-top: 1rem;
    }
    .site-footer {
        padding: 3rem 1.5rem 2rem;
    }
    .inner-hero {
        padding-top: 3rem;
    }
    .content-page {
        padding: 3rem 0 5rem;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .button {
        transition: none;
    }
}
