*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --ink: #211026;
    --ink-soft: #5d4367;
    --muted: #927f9b;
    --cream: #fff8f1;
    --paper: rgba(255, 249, 248, .84);
    --paper-strong: rgba(255, 255, 255, .94);
    --rose: #ff5d91;
    --rose-deep: #bf2c6b;
    --orchid: #8a4fff;
    --violet: #3d1e58;
    --plum: #1a0826;
    --gold: #ffd388;
    --mint: #98f5df;
    --blue: #8ed8ff;
    --glass: rgba(255, 255, 255, .18);
    --border: rgba(255, 255, 255, .36);
    --shadow: 0 30px 95px rgba(45, 12, 62, .25);
    --soft-shadow: 0 18px 55px rgba(99, 33, 88, .18);
    --radius-xl: 42px;
    --radius-lg: 30px;
    --radius-md: 22px;
    --max: 1180px;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    line-height: 1.65;
    background:
        radial-gradient(circle at top left, rgba(255, 174, 211, .58), transparent 36vw),
        radial-gradient(circle at 85% 12%, rgba(155, 93, 229, .42), transparent 34vw),
        linear-gradient(135deg, #fff8f1 0%, #fff2fa 31%, #efe9ff 67%, #f8fff9 100%);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    opacity: .38;
    background-image:
        linear-gradient(rgba(255, 255, 255, .22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .19) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, black, transparent 86%);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.liquid-canvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: -3;
    filter: blur(.1px) saturate(1.08);
    opacity: .85;
}

.noise {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .12;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

.skip-link {
    position: absolute;
    top: -60px;
    left: 16px;
    background: var(--plum);
    color: white;
    padding: 10px 14px;
    border-radius: 14px;
    z-index: 999;
}

.skip-link:focus {
    top: 16px;
}

/* clip-art atmosphere */
.dream-orbits {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.orbital-heart,
.moon,
.sparkle {
    position: absolute;
    will-change: transform;
}

.orbital-heart {
    width: 56px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(255, 94, 145, .86), rgba(255, 211, 136, .88));
    transform: rotate(-45deg);
    border-radius: 16px 16px 7px 16px;
    opacity: .26;
    filter: blur(.2px);
    animation: drift 13s ease-in-out infinite alternate;
}

.orbital-heart::before,
.orbital-heart::after {
    content: "";
    position: absolute;
    width: 56px;
    aspect-ratio: 1;
    background: inherit;
    border-radius: 50%;
}

.orbital-heart::before {
    top: -28px;
    left: 0;
}

.orbital-heart::after {
    left: 28px;
    top: 0;
}

.h1 {
    top: 11%;
    left: 6%;
    animation-delay: -.7s;
}

.h2 {
    top: 54%;
    right: 5%;
    width: 82px;
    animation-delay: -3s;
    opacity: .19;
}

.h3 {
    bottom: 10%;
    left: 17%;
    width: 38px;
    animation-delay: -5s;
    opacity: .24;
}

.moon {
    top: 110px;
    right: 9%;
    width: 120px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 28% 30%, #fff, #ffe8bf 28%, rgba(255, 255, 255, .1) 29%), linear-gradient(135deg, #fff6cf, #ffb3d5);
    box-shadow: 0 0 80px rgba(255, 219, 146, .6);
    opacity: .42;
    animation: floatMoon 11s ease-in-out infinite;
}

.sparkle {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 20px #fff, 0 0 40px rgba(255, 211, 136, .8);
    opacity: .6;
    animation: twinkle 2.4s ease-in-out infinite alternate;
}

.s1 {
    top: 24%;
    left: 42%;
}

.s2 {
    top: 70%;
    right: 25%;
    animation-delay: -.9s;
}

.s3 {
    bottom: 16%;
    right: 9%;
    animation-delay: -1.5s;
}

@keyframes drift {
    to {
        transform: translate3d(12px, -28px, 0) rotate(-35deg) scale(1.08);
    }
}

@keyframes floatMoon {
    50% {
        transform: translate3d(-18px, 16px, 0) scale(1.04);
    }
}

@keyframes twinkle {
    from {
        transform: scale(.6);
        opacity: .28;
    }

    to {
        transform: scale(1.35);
        opacity: .9;
    }
}

.site-shell {
    position: relative;
    z-index: 2;
}

.nav-wrap {
    position: sticky;
    top: 14px;
    z-index: 100;
    padding: 14px clamp(16px, 4vw, 46px) 0;
}

nav {
    max-width: var(--max);
    margin: 0 auto;
    min-height: 72px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    padding: 11px 14px 11px 24px;
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 999px;
    background: rgba(255, 255, 255, .48);
    box-shadow: 0 20px 60px rgba(62, 20, 82, .14);
    backdrop-filter: blur(22px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    letter-spacing: -.04em;
    font-size: clamp(1.06rem, 2vw, 1.28rem);
    color: var(--plum);
}

.brand,
.logo{
    display: flex;
    align-items: center;
    gap: .25rem;
}
.brand img,
.logo img{
    display: block;
    width: 54px;
    height: auto;
}

.nav-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.nav-pills a {
    font-size: .78rem;
    font-weight: 850;
    color: rgba(33, 16, 38, .66);
    padding: 10px 12px;
    border-radius: 999px;
    transition: .25s ease;
}

.nav-pills a:hover {
    color: var(--plum);
    background: rgba(255, 255, 255, .56);
}

.nav-cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px 10px 18px;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, var(--plum), var(--rose-deep));
    font-weight: 900;
    letter-spacing: -.01em;
    box-shadow: 0 18px 35px rgba(191, 44, 107, .26);
    overflow: hidden;
    position: relative;
}

.nav-cta span {
    font-size: .72rem;
    opacity: .72;
    font-weight: 800;
}

.section {
    padding: clamp(74px, 9vw, 126px) clamp(18px, 5vw, 64px);
    position: relative;
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    position: relative;
}

.eyebrow {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    padding: 7px 13px 7px 10px;
    border-radius: 999px;
    color: var(--rose-deep);
    background: rgba(255, 255, 255, .62);
    border: 1px solid rgba(255, 255, 255, .7);
    box-shadow: 0 12px 35px rgba(191, 44, 107, .1);
    font-size: .72rem;
    font-weight: 950;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

h1,
h2,
h3 {
    letter-spacing: -.06em;
    line-height: 1;
    color: var(--plum);
}

h2 {
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    max-width: 920px;
}

p {
    color: var(--ink-soft);
}

.reveal {
    opacity: 0;
    transform: translateY(26px) scale(.985);
    transition: .85s cubic-bezier(.2, .8, .2, 1);
}

.reveal.show {
    opacity: 1;
    transform: none;
}

/* Hero */
.hero {
    display: grid;
    align-items: center;
    padding: clamp(42px, 6vw, 70px) clamp(18px, 5vw, 64px) clamp(42px, 6vw, 70px);
}

.hero-grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    align-items: center;
    width: 100%;
}

.hero-copy {
    position: relative;
    padding: clamp(1.5rem, 4.3vw, 2.5rem);
    border-radius: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .42));
    border: 1px solid rgba(255, 255, 255, .72);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .8);
    backdrop-filter: blur(26px);
    overflow: hidden;
    isolation: isolate;
}

.hero-copy::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    left: -190px;
    top: -185px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 93, 145, .34), transparent 65%);
    z-index: -1;
}

.hero-copy::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -45px;
    width: 180px;
    height: 180px;
    border-radius: 52% 48% 58% 42%;
    background: linear-gradient(135deg, rgba(152, 245, 223, .45), rgba(255, 211, 136, .28));
    z-index: -1;
    animation: blobSpin 14s linear infinite;
}

@keyframes blobSpin {
    to {
        transform: rotate(360deg);
    }
}

.hero h1 {
    margin-top: 20px;
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    letter-spacing: -.09em;
}

.hero-sub {
    margin-top: .75rem;
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.btn-liquid,
.btn-ghost,
.btn-primary,
.btn-outline,
.hero-cta,
.btn-light {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 55px;
    padding: 15px 24px;
    border-radius: 20px 28px 20px 28px;
    border: 0;
    font-weight: 950;
    letter-spacing: -.02em;
    cursor: pointer;
    transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease, border-radius .35s ease;
}

.btn-liquid,
.hero-cta,
.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--rose-deep), var(--rose) 48%, #ffb561);
    box-shadow: 0 20px 55px rgba(191, 44, 107, .32);
    overflow: hidden;
}

.btn-liquid::before,
.hero-cta::before,
.btn-primary::before {
    content: "";
    position: absolute;
    inset: -45%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
    transform: translateX(-60%) rotate(18deg);
    animation: shine 5s linear infinite;
}

@keyframes shine {

    0%,
    35% {
        transform: translateX(-70%) rotate(18deg);
    }

    55%,
    100% {
        transform: translateX(65%) rotate(18deg);
    }
}

.btn-liquid span,
.hero-cta span,
.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-liquid:hover,
.btn-ghost:hover,
.btn-primary:hover,
.btn-outline:hover,
.hero-cta:hover,
.btn-light:hover {
    transform: translateY(-4px);
    border-radius: 28px 20px 28px 20px;
}

.btn-ghost,
.btn-outline {
    color: var(--plum);
    background: rgba(255, 255, 255, .52);
    border: 1px solid rgba(255, 255, 255, .74);
    box-shadow: 0 16px 35px rgba(45, 12, 62, .1);
}

.hero-disclaimer {
    max-width: 520px;
    margin-top: 18px;
    font-size: .86rem;
    color: rgba(33, 16, 38, .62);
}

.micro-trust {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.micro-trust span {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 12px;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 1);
    color: rgba(33, 16, 38, .7);
    font-size: .79rem;
    font-weight: 700;
    text-align: center;
}

.hero-art {
    position: relative;
    min-height: 690px;
    display: grid;
    place-items: center;
    perspective: 1200px;
}

.alchemy-card {
    position: absolute;
    inset: 20px 0 0 20px;
    border-radius: 50px;
    background: linear-gradient(145deg, rgba(44, 13, 65, .92), rgba(113, 45, 122, .58) 45%, rgba(255, 147, 189, .35));
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .32);
    overflow: hidden;
    transform: rotateX(3deg) rotateY(-5deg);
    border: 1px solid rgba(255, 255, 255, .22);
}

.alchemy-card::before {
    content: "";
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 211, 136, .36), transparent 18%),
        radial-gradient(circle at 72% 30%, rgba(152, 245, 223, .27), transparent 22%),
        radial-gradient(circle at 50% 74%, rgba(255, 93, 145, .34), transparent 25%);
    animation: chroma 13s ease-in-out infinite alternate;
}

@keyframes chroma {
    to {
        transform: translate3d(50px, -35px, 0) rotate(13deg);
    }
}

.hero-illustration {
    position: relative;
    z-index: 2;
    width: min(99%, 680px);
    filter: drop-shadow(0 35px 45px rgba(26, 8, 38, .32));
    transform: rotate(-2deg);
    animation: heroFloat 7s ease-in-out infinite;
}

@keyframes heroFloat {
    50% {
        transform: translateY(-18px) rotate(1deg);
    }
}

.love-note {
    position: absolute;
    z-index: 5;
    width: 220px;
    right: -6px;
    top: 74px;
    padding: 18px 18px 16px;
    color: var(--plum);
    background: rgba(255, 251, 236, .9);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 22px 22px 22px 7px;
    box-shadow: 0 25px 55px rgba(26, 8, 38, .22);
    transform: rotate(8deg);
    backdrop-filter: blur(10px);
}

.love-note b {
    display: block;
    line-height: 1.08;
    font-size: 1.1rem;
    letter-spacing: -.04em;
}

.love-note small {
    display: block;
    margin-top: 7px;
    color: var(--ink-soft);
}

.love-note::after {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    left: 18px;
    bottom: -13px;
    background: inherit;
    transform: rotate(45deg);
    border-radius: 4px;
}

.floating-vial {
    position: absolute;
    z-index: 6;
    left: -8px;
    bottom: 76px;
    width: 122px;
    height: 210px;
    border-radius: 54px 54px 38px 38px;
    border: 1px solid rgba(255, 255, 255, .55);
    background: linear-gradient(180deg, rgba(255, 255, 255, .25), rgba(255, 255, 255, .05));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7), 0 28px 55px rgba(26, 8, 38, .25);
    transform: rotate(-10deg);
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.floating-vial::before {
    content: "";
    position: absolute;
    inset: auto -15px 0;
    height: 64%;
    background: linear-gradient(180deg, rgba(255, 211, 136, .86), rgba(255, 93, 145, .92));
    border-radius: 50% 50% 34px 34px / 18% 18% 34px 34px;
    animation: liquidWave 5.6s ease-in-out infinite;
}

.floating-vial::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    width: 42px;
    height: 42px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, .24);
    box-shadow: 0 56px 0 8px rgba(255, 255, 255, .1), 16px 92px 0 -2px rgba(255, 255, 255, .14);
}

@keyframes liquidWave {
    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}

/* section backgrounds */
.paper-panel {
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(255, 255, 255, .66);
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(22px);
    overflow: hidden;
}

.section-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
    gap: clamp(22px, 4vw, 70px);
    align-items: end;
    margin-bottom: 38px;
}

.section-intro {
    max-width: 620px;
    font-size: 1.05rem;
}

/* How it works */
.how-lab {
    position: relative;
    padding: clamp(22px, 4vw, 42px);
}

.reaction-line {
    position: absolute;
    left: 11%;
    right: 11%;
    top: 52%;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 93, 145, .3), rgba(255, 211, 136, .7), rgba(152, 245, 223, .62));
    box-shadow: 0 0 34px rgba(255, 93, 145, .26);
}

.steps-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 2vw, 22px);
    z-index: 2;
}

.step-card {
    position: relative;
    min-height: 265px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 36px 36px 18px 36px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .5));
    border: 1px solid rgba(255, 255, 255, .72);
    box-shadow: 0 24px 50px rgba(84, 31, 88, .12);
    overflow: hidden;
    transform: translateZ(0);
    transition: transform .35s ease, border-radius .35s ease, box-shadow .35s ease;
}

.step-card:nth-child(even) {
    transform: translateY(32px);
    border-radius: 18px 36px 36px 36px;
}

.step-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: 0 32px 66px rgba(84, 31, 88, .18);
}

.step-card:nth-child(even):hover {
    transform: translateY(18px) rotate(1deg);
}

.step-card::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    right: -70px;
    bottom: -80px;
    background: radial-gradient(circle, rgba(255, 93, 145, .28), transparent 68%);
}

.step-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 28px 28px 28px 11px;
    background: conic-gradient(from 180deg, rgba(255, 93, 145, .95), rgba(255, 211, 136, .9), rgba(142, 216, 255, .82), rgba(255, 93, 145, .95));
    color: white;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4), 0 16px 28px rgba(191, 44, 107, .2);
}

.step-num {
    position: absolute;
    right: 18px;
    top: 18px;
    font-weight: 1000;
    font-size: 4.4rem;
    line-height: .8;
    color: rgba(61, 30, 88, .07);
    letter-spacing: -.08em;
}

.step-card h3 {
    margin-top: 30px;
    font-size: 1.02rem;
    letter-spacing: -.03em;
    line-height: 1.08;
}

.step-card p {
    margin-top: 10px;
    font-size: .92rem;
}

.cta-center {
    margin-top: 74px;
    text-align: center;
}

/* Why */
.molecule-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 22px;
}

.why-lead {
    padding: clamp(28px, 4vw, 54px);
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 72px 30px 72px 30px;
    background: linear-gradient(145deg, rgba(61, 30, 88, .93), rgba(126, 49, 114, .72) 52%, rgba(255, 93, 145, .45));
    color: white;
    position: relative;
    overflow: hidden;
}

.why-lead h2,
.why-lead p {
    color: white;
}

.why-lead p {
    color: rgba(255, 255, 255, .76);
    font-size: 1.08rem;
    max-width: 560px;
}

.why-lead::before {
    content: "";
    position: absolute;
    inset: -50%;
    background-image:
        radial-gradient(circle at 15% 34%, rgba(255, 255, 255, .17) 0 9px, transparent 10px),
        radial-gradient(circle at 38% 60%, rgba(255, 211, 136, .24) 0 15px, transparent 16px),
        radial-gradient(circle at 74% 34%, rgba(152, 245, 223, .2) 0 20px, transparent 21px);
    animation: moleculeDrift 16s linear infinite;
}

@keyframes moleculeDrift {
    to {
        transform: translate3d(80px, -60px, 0) rotate(10deg);
    }
}

.why-lead>* {
    position: relative;
    z-index: 2;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.why-card {
    position: relative;
    padding: 25px 22px;
    min-height: 250px;
    border-radius: 34px;
    background: rgba(255, 255, 255, .62);
    border: 1px solid rgba(255, 255, 255, .7);
    box-shadow: 0 22px 50px rgba(68, 28, 82, .11);
    overflow: hidden;
    transition: transform .35s ease;
}

.why-card:nth-child(2) {
    border-radius: 54px 30px 54px 30px;
}

.why-card:nth-child(3) {
    border-radius: 30px 54px 30px 54px;
}

.why-card:hover {
    transform: translateY(-8px) rotate(.8deg);
}

.why-card strong {
    display: block;
    color: var(--plum);
    font-size: 1.1rem;
    letter-spacing: -.04em;
    line-height: 1.02;
    margin: 70px 0 9px;
}

.why-card p {
    font-size: .94rem;
}

.mini-clip {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(255, 211, 136, .32));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85), 0 14px 25px rgba(191, 44, 107, .12);
}

.mini-clip svg {
    width: 35px;
    height: 35px;
}

/* Stats as glassware */
.stats {
    color: white;
    overflow: hidden;
    text-align: center;
}

.stats .wrap {
    padding: clamp(32px, 6vw, 66px);
    border-radius: 60px;
    background: linear-gradient(135deg, rgba(26, 8, 38, .94), rgba(64, 29, 87, .88));
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
}

.stats .wrap::before {
    content: "";
    position: absolute;
    inset: -20% -12%;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 93, 145, .32), transparent 20%),
        radial-gradient(circle at 85% 22%, rgba(152, 245, 223, .18), transparent 20%),
        radial-gradient(circle at 54% 80%, rgba(255, 211, 136, .18), transparent 30%);
    animation: statsGlow 9s ease-in-out infinite alternate;
}

@keyframes statsGlow {
    to {
        transform: scale(1.08) rotate(-3deg);
    }
}

.stats h2,
.stats p,
.stats .eyebrow,
.stats-grid,
.stats .btn-light {
    position: relative;
    z-index: 2;
}

.stats h2 {
    color: white;
    margin: 0 auto 2rem;
}

.stats-intro {
    color: rgba(255, 255, 255, .76);
    font-size: 1.1rem;
    margin: 18px 0 0;
}

.stats-grid {
    margin-top: 3rem;
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3, minmax(0, 270px));
    gap: 24px;
}

.beaker {
    min-height: 290px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    border-radius: 95px 95px 34px 34px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .32), 0 22px 50px rgba(0, 0, 0, .2);
    overflow: hidden;
    backdrop-filter: blur(18px);
}

.beaker::before {
    content: "";
    position: absolute;
    inset: auto -30px 0;
    height: var(--fill, 60%);
    border-radius: 48% 52% 30px 30px / 13% 15% 30px 30px;
    background: linear-gradient(180deg, rgba(255, 211, 136, .95), rgba(255, 93, 145, .96) 58%, rgba(138, 79, 255, .74));
    animation: liquidWave 5s ease-in-out infinite;
}

.beaker::after {
    content: "";
    position: absolute;
    left: 38px;
    top: 54px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    box-shadow: 78px 35px 0 -7px rgba(255, 255, 255, .18), 28px 92px 0 2px rgba(255, 255, 255, .14), 112px 112px 0 -4px rgba(255, 255, 255, .16);
}

.stat-num,
.stat-label {
    position: relative;
    z-index: 2;
}

.stat-num {
    color: white;
    font-size: clamp(3.4rem, 7vw, 5.8rem);
    font-weight: 1000;
    letter-spacing: -.09em;
    line-height: .85;
    text-shadow: 0 8px 20px rgba(26, 8, 38, .28);
}

.stat-label {
    color: rgba(255, 255, 255, .83);
    font-weight: 850;
    margin-top: 12px;
}

.btn-light {
    background: rgba(255, 255, 255, .92);
    color: var(--plum);
    margin-top: 34px;
    box-shadow: 0 20px 42px rgba(0, 0, 0, .22);
}

/* Neighborhood constellation */
.hoods .wrap {
    display: grid;
    grid-template-columns: .76fr 1.24fr;
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.ny-art {
    min-height: 520px;
    position: relative;
    border-radius: 45px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .58), rgba(255, 255, 255, .28));
    border: 1px solid rgba(255, 255, 255, .7);
    box-shadow: var(--soft-shadow);
    overflow: hidden;
}

.ny-art svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.map-pin {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    background: var(--rose);
    box-shadow: 0 0 0 8px rgba(255, 93, 145, .12), 0 10px 20px rgba(191, 44, 107, .3);
    animation: pinPulse 2.7s ease-in-out infinite;
}

.map-pin::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
    top: 4.5px;
    left: 4.5px;
}

.p1 {
    left: 34%;
    top: 23%;
}

.p2 {
    left: 58%;
    top: 38%;
    animation-delay: -.8s;
}

.p3 {
    left: 42%;
    top: 62%;
    animation-delay: -1.4s;
}

.p4 {
    left: 71%;
    top: 70%;
    animation-delay: -2s;
}

@keyframes pinPulse {
    50% {
        transform: rotate(-45deg) translateY(-6px);
    }
}

.hoods-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hood-chip {
    padding: 13px 16px;
    border-radius: 999px 999px 999px 12px;
    background: rgba(255, 255, 255, .66);
    border: 1px solid rgba(255, 255, 255, .78);
    box-shadow: 0 12px 26px rgba(78, 31, 84, .08);
    color: var(--ink-soft);
    font-size: .91rem;
    font-weight: 800;
    transition: .3s ease;
}

.hood-chip:nth-child(3n+2) {
    border-radius: 999px 12px 999px 999px;
    background: rgba(255, 245, 249, .73);
}

.hood-chip:nth-child(4n) {
    background: rgba(240, 249, 255, .72);
}

.hood-chip:hover {
    transform: translateY(-5px) rotate(-1deg);
    background: white;
}

/* Gendered postcards */
.postcard-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(22px, 3vw, 34px);
    align-items: stretch;
}

.postcard {
    position: relative;
    min-height: 620px;
    border-radius: 52px;
    background: rgba(255, 255, 255, .64);
    border: 1px solid rgba(255, 255, 255, .78);
    box-shadow: var(--soft-shadow);
    overflow: hidden;
    padding: clamp(28px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.postcard:nth-child(1) {
    transform: rotate(-1.2deg);
}

.postcard:nth-child(2) {
    transform: rotate(1.2deg);
    margin-top: 45px;
}

.postcard::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 2px dashed rgba(191, 44, 107, .18);
    border-radius: 40px;
    pointer-events: none;
}

.stamp {
    position: absolute;
    top: 32px;
    right: 34px;
    width: 96px;
    height: 112px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 2.2rem;
    font-weight: 1000;
    background: linear-gradient(135deg, var(--rose), var(--orchid));
    box-shadow: 0 18px 36px rgba(191, 44, 107, .22);
    transform: rotate(8deg);
    clip-path: polygon(0 8%, 8% 8%, 8% 0, 20% 0, 20% 8%, 32% 8%, 32% 0, 44% 0, 44% 8%, 56% 8%, 56% 0, 68% 0, 68% 8%, 80% 8%, 80% 0, 92% 0, 92% 8%, 100% 8%, 100% 20%, 92% 20%, 92% 32%, 100% 32%, 100% 44%, 92% 44%, 92% 56%, 100% 56%, 100% 68%, 92% 68%, 92% 80%, 100% 80%, 100% 92%, 92% 92%, 92% 100%, 80% 100%, 80% 92%, 68% 92%, 68% 100%, 56% 100%, 56% 92%, 44% 92%, 44% 100%, 32% 100%, 32% 92%, 20% 92%, 20% 100%, 8% 100%, 8% 92%, 0 92%, 0 80%, 8% 80%, 8% 68%, 0 68%, 0 56%, 8% 56%, 8% 44%, 0 44%, 0 32%, 8% 32%, 8% 20%, 0 20%);
}

.postcard h3 {
    font-size: clamp(2.1rem, 4vw, 3.7rem);
    margin: 22px 0 25px;
    max-width: 430px;
}

.benefit-list {
    list-style: none;
    display: grid;
    gap: 16px;
    margin: 10px 0 30px;
}

.benefit-list li {
    position: relative;
    padding: 16px 17px 16px 54px;
    color: var(--ink-soft);
    border-radius: 22px;
    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(255, 255, 255, .65);
    box-shadow: 0 12px 25px rgba(61, 30, 88, .07);
}

.benefit-list li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 18px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, white 0 20%, var(--rose) 22% 100%);
    box-shadow: 0 0 0 7px rgba(255, 93, 145, .1);
}

.benefit-list strong {
    color: var(--plum);
}

.btn-outline {
    width: fit-content;
}

/* Testimonial */
.testimonial .wrap {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(24px, 5vw, 72px);
    align-items: center;
}

.letter-art {
    position: relative;
    height: 440px;
}

.envelope {
    position: absolute;
    inset: 64px 20px 20px;
    border-radius: 36px;
    background: linear-gradient(145deg, #fff7e5, #ffdce9);
    box-shadow: 0 28px 70px rgba(68, 28, 82, .18);
    transform: rotate(-7deg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .8);
}

.envelope::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(35deg, transparent 49%, rgba(191, 44, 107, .15) 50%, transparent 51%), linear-gradient(-35deg, transparent 49%, rgba(191, 44, 107, .12) 50%, transparent 51%);
}

.wax-seal {
    position: absolute;
    left: 50%;
    top: 52%;
    width: 86px;
    height: 86px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 28%, #ff90b4, #d23873 60%, #9c1d57);
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, .3), 0 18px 30px rgba(191, 44, 107, .3);
}

.wax-seal::before {
    content: "VC";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .84);
    font-weight: 1000;
    letter-spacing: -.08em;
}

.paper-note {
    position: absolute;
    left: 30px;
    right: 0;
    top: 10px;
    min-height: 250px;
    border-radius: 34px 34px 10px 34px;
    padding: 34px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(255, 255, 255, .84);
    box-shadow: 0 28px 60px rgba(68, 28, 82, .14);
    transform: rotate(5deg);
}

.paper-note::before {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    top: 88px;
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(191, 44, 107, .16), rgba(191, 44, 107, .16) 16px, transparent 16px, transparent 30px);
    box-shadow: 0 42px 0 rgba(191, 44, 107, .10), 0 84px 0 rgba(191, 44, 107, .08);
}

.testi-card {
    padding: clamp(28px, 5vw, 58px);
    border-radius: 36px 74px 36px 36px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .38));
    border: 1px solid rgba(255, 255, 255, .72);
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(20px);
    position: relative;
}

.testi-quote {
    font-size: clamp(1.25rem, 3vw, 2rem);
    line-height: 1.08;
    letter-spacing: -.06em;
    color: var(--plum);
    font-weight: 700;
    font-style: normal;
    margin-top: 1rem;
}

.testi-attr {
    margin-top: 26px;
    font-weight: 950;
    color: var(--rose-deep);
}

/* Features */
.features-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.feat {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    padding: 24px;
    border-radius: 40px;
    background: rgba(255, 255, 255, .62);
    border: 1px solid rgba(255, 255, 255, .74);
    box-shadow: 0 20px 45px rgba(61, 30, 88, .1);
    overflow: hidden;
}

.feat::before {
    content: "";
    position: absolute;
    left: -30px;
    right: -30px;
    bottom: -40px;
    height: 110px;
    border-radius: 50% 50% 0 0;
    background: linear-gradient(90deg, rgba(255, 93, 145, .24), rgba(142, 216, 255, .26), rgba(255, 211, 136, .21));
    animation: liquidWave 5s ease-in-out infinite;
}

.feat-dot {
    width: 64px;
    height: 64px;
    border-radius: 50% 50% 50% 18px;
    background: linear-gradient(135deg, var(--plum), var(--rose));
    box-shadow: 0 16px 34px rgba(191, 44, 107, .2);
    position: relative;
}

.feat-dot::before,
.feat-dot::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: white;
    opacity: .85;
}

.feat-dot::before {
    width: 30px;
    height: 5px;
    left: 17px;
    top: 23px;
    box-shadow: 0 10px 0 rgba(255, 255, 255, .66);
}

.feat-dot::after {
    width: 8px;
    height: 8px;
    right: 15px;
    bottom: 15px;
}

.feat p {
    position: relative;
    z-index: 2;
    font-size: .96rem;
}

.feat p strong {
    display: block;
    color: var(--plum);
    font-size: 1.1rem;
    line-height: 1.02;
    letter-spacing: -.04em;
    margin-bottom: 7px;
}

/* FAQ */
.faq .wrap {
    max-width: 980px;
}

.faq-list {
    margin-top: 34px;
    display: grid;
    gap: 14px;
}

.faq-item {
    border-radius: 30px;
    background: rgba(255, 255, 255, .62);
    border: 1px solid rgba(255, 255, 255, .74);
    box-shadow: 0 18px 44px rgba(61, 30, 88, .08);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    min-height: 76px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px 20px 28px;
    color: var(--plum);
    font-size: 1rem;
    font-weight: 950;
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: linear-gradient(135deg, var(--rose), var(--orchid));
    transition: .3s ease;
    box-shadow: 0 12px 26px rgba(191, 44, 107, .16);
}

.faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .38s cubic-bezier(.2, .8, .2, 1);
}

.faq-a>div {
    overflow: hidden;
}

.faq-a p {
    padding: 0 28px 24px;
}

.faq-item.open .faq-a {
    grid-template-rows: 1fr;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

/* Final CTA */
.final-cta {
    padding-bottom: clamp(90px, 10vw, 140px);
}

.call-booth {
    position: relative;
    border-radius: 80px 36px 80px 36px;
    min-height: 520px;
    padding: clamp(32px, 6vw, 78px);
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 32px;
    align-items: center;
    color: white;
    background: linear-gradient(135deg, rgba(26, 8, 38, .96), rgba(87, 42, 116, .82) 50%, rgba(218, 73, 126, .58));
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
}

.call-booth::before {
    content: "";
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(circle at 16% 22%, rgba(255, 211, 136, .26), transparent 20%),
        radial-gradient(circle at 76% 32%, rgba(142, 216, 255, .18), transparent 22%),
        linear-gradient(90deg, transparent 49.5%, rgba(255, 255, 255, .08) 50%, transparent 50.5%);
    animation: chroma 16s ease-in-out infinite alternate;
}

.call-booth>* {
    position: relative;
    z-index: 2;
}

.call-booth h2 {
    color: white;
    font-size: clamp(3rem, 7vw, 6.5rem);
}

.call-booth p {
    color: rgba(255, 255, 255, .75);
    max-width: 520px;
    margin: 22px 0 32px;
    font-size: 1.1rem;
}

.phone-sculpture {
    width: min(100%, 440px);
    justify-self: center;
    filter: drop-shadow(0 30px 36px rgba(0, 0, 0, .3));
    animation: heroFloat 7.5s ease-in-out infinite;
}

footer {
    position: relative;
    margin: -34px clamp(18px, 5vw, 64px) 24px;
    border-radius: 34px;
    background: rgba(26, 8, 38, .92);
    color: rgba(255, 255, 255, .68);
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 20px 50px rgba(26, 8, 38, .2);
}

.footer-grid {
    max-width: var(--max);
    margin: 0 auto;
}

.footer-brand {
    color: white;
    font-weight: 950;
    font-size: 1.25rem;
    letter-spacing: -.04em;
}

.footer-desc {
    max-width: 650px;
    color: rgba(255, 255, 255, .68);
    font-size: .92rem;
}

.footer-disclaimer {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .09);
    color: rgba(255, 255, 255, .42);
    font-size: .8rem;
}

/* SVG helpers */
.svg-stroke {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 8;
}

.wave-path {
    stroke-dasharray: 12 13;
    animation: dash 15s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -450;
    }
}

.pulse-circle {
    animation: pulseScale 2.4s ease-in-out infinite;
    transform-origin: center;
}

@keyframes pulseScale {
    50% {
        transform: scale(1.14);
        opacity: .68;
    }
}

@media (max-width: 1050px) {
    nav {
        grid-template-columns: 1fr auto;
    }

    .nav-pills {
        display: none;
    }

    .hero-grid,
    .molecule-grid,
    .hoods .wrap,
    .testimonial .wrap,
    .call-booth {
        grid-template-columns: 1fr;
    }

    .hero-art {
        min-height: 560px;
    }

    .section-title-row {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .postcard-split {
        grid-template-columns: 1fr;
    }

    .postcard:nth-child(1),
    .postcard:nth-child(2) {
        transform: none;
        margin-top: 0;
    }
}

@media (max-width: 760px) {
    .nav-wrap {
        top: 8px;
        padding-inline: 10px;
    }

    nav {
        min-height: 64px;
        padding-left: 14px;
    }

    .brand-mark {
        width: 36px;
        height: 36px;
    }

    .nav-cta {
        padding: 10px 13px;
        font-size: .82rem;
    }

    .nav-cta span {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 42px;
    }

    .hero-copy {
        border-radius: 34px;
    }

    .hero-art {
        min-height: 430px;
    }

    .love-note {
        display: none;
    }

    .floating-vial {
        width: 88px;
        height: 150px;
        left: 4px;
        bottom: 34px;
    }

    .micro-trust {
        grid-template-columns: 1fr;
    }

    .steps-list,
    .why-grid,
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .reaction-line {
        display: none;
    }

    .step-card,
    .step-card:nth-child(even),
    .step-card:hover,
    .step-card:nth-child(even):hover {
        transform: none;
    }

    .why-lead {
        min-height: 100px;
        border-radius: 44px;
    }

    .stats .wrap,
    .call-booth {
        border-radius: 42px;
    }

    .ny-art {
        min-height: 360px;
    }

    .postcard {
        min-height: auto;
        border-radius: 38px;
    }

    .stamp {
        width: 72px;
        height: 84px;
        font-size: 1.5rem;
    }

    .letter-art {
        height: 340px;
    }

    .feat:nth-child(2),
    .feat:nth-child(3),
    .feat:nth-child(4) {
        margin-top: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    footer {
        margin-inline: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
