:root {
    --bg-color: #C3B1E1; /* Soft lilac/purple */
    --text-main: #2D2A32;
    --text-light: #FFFFFF;
    --accent-yellow: #FFD966;
    --accent-green: #C9DA8F;
    --accent-blue: #8DB7E8;
    --panel-bg: rgba(255, 255, 255, 0.35);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Starburst Background Effect */
.starburst-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200vw;
    height: 200vw;
    transform: translate(-50%, -50%);
    background: repeating-conic-gradient(
        from 0deg,
        rgba(255, 255, 255, 0.05) 0deg 15deg,
        transparent 15deg 30deg
    );
    z-index: -2;
    animation: rotate 120s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: relative;
    z-index: 10;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -1px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-dropdown-toggle:hover {
    color: var(--text-light);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.nav-dropdown-toggle::after {
    content: "";
    display: inline-block;
    width: 0.42rem;
    height: 0.42rem;
    margin-left: 0.45rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-0.18rem) rotate(45deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.85rem);
    left: 50%;
    z-index: 20;
    min-width: 150px;
    padding: 0.55rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 14px;
    box-shadow: 0 16px 32px rgba(45, 42, 50, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
    display: block;
    white-space: nowrap;
    padding: 0.65rem 0.8rem;
    border-radius: 10px;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    color: var(--text-main);
    background: var(--accent-yellow);
    outline: none;
}

.btn-primary {
    background-color: var(--accent-yellow);
    color: var(--text-main) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s !important;
}

.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px rgba(0,0,0,0.15);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 100px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5% 5rem;
}

/* Massive Background Text */
.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.85;
    z-index: -1;
    width: 100%;
    text-align: center;
}

.hero-bg-text span {
    font-size: clamp(8rem, 15vw, 25rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: -5px;
    text-transform: uppercase;
    display: block;
}

/* Content Layout */
.hero-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    gap: 2rem;
    z-index: 5;
}

/* Left Content */
.hero-left {
    justify-self: start;
    max-width: 500px;
}

.badge {
    display: inline-block;
    background-color: var(--accent-green);
    color: var(--text-main);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    box-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

.hero-left h1 {
    font-size: clamp(3.2rem, 5vw, 5.8rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.hero-left p {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-main);
    opacity: 0.9;
    line-height: 1.5;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* Center Image */
.hero-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    width: 600px; /* Adjust based on image crop */
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0px 20px 30px rgba(0,0,0,0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    display: inline-block;
    text-decoration: none;
    background-color: var(--text-main);
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background-color: #000;
}

.btn-checkout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    color: var(--text-main);
    font-weight: 900;
    text-decoration: none;
    background: var(--accent-yellow);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    padding: 0.85rem 1.35rem;
    box-shadow: 0 12px 24px rgba(45, 42, 50, 0.14);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-checkout:hover,
.btn-checkout:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(45, 42, 50, 0.16);
    outline: none;
}

.btn-checkout[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.62;
    box-shadow: none;
}

.btn-checkout[aria-disabled="true"]:hover,
.btn-checkout[aria-disabled="true"]:focus-visible {
    transform: none;
}

.btn-link {
    color: var(--text-main);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 3px solid var(--accent-yellow);
    padding-bottom: 0.2rem;
}

.section {
    position: relative;
    z-index: 2;
    padding: 6rem 5%;
}

.section-header {
    max-width: 820px;
    margin: 0 auto 3rem;
    text-align: center;
}

.eyebrow {
    display: inline-block;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    background: var(--accent-yellow);
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    margin-bottom: 1rem;
}

.section h2,
.contact-section h2 {
    font-size: clamp(2.4rem, 4vw, 4.5rem);
    line-height: 1;
    margin-bottom: 1rem;
}

.section p,
.contact-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(45, 42, 50, 0.78);
}

.feature-grid,
.steps-grid,
.pack-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 1180px;
    margin: 0 auto;
}

.feature-card,
.step-card,
.pack-card,
.benefit-card,
.system-panel {
    background: var(--panel-bg);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 14px 35px rgba(45, 42, 50, 0.08);
}

.feature-card h3,
.step-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.65rem;
}

.problem-icons {
    display: block;
    width: min(100%, 1180px);
    height: auto;
    margin: 0 auto;
    border-radius: 18px;
}


.faq-section {
    max-width: 1180px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.faq-card {
    background: rgba(255, 255, 255, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 18px;
    padding: 1.4rem;
    box-shadow: 0 14px 35px rgba(45, 42, 50, 0.08);
}

.faq-card h3 {
    font-size: 1.12rem;
    line-height: 1.25;
    margin-bottom: 0.65rem;
}

.faq-card p {
    font-size: 1rem;
    line-height: 1.55;
}

.about-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 2.5rem;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

.about-copy {
    max-width: 560px;
}

.about-copy h2 {
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 0.95;
}

.about-lead {
    font-size: 1.14rem;
    line-height: 1.6;
    color: rgba(45, 42, 50, 0.84);
}

.about-lead strong {
    font-weight: 900;
}

.about-copy p + p {
    margin-top: 1.15rem;
}

.about-image-wrap {
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image {
    width: min(100%, 620px);
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(45, 42, 50, 0.16));
}

.product-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 2rem;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

.product-copy {
    max-width: 620px;
}

.system-panel {
    background: rgba(255, 217, 102, 0.32);
}

.mission-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(45, 42, 50, 0.12);
}

.mission-row:last-child {
    border-bottom: 0;
}

.mission-row span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: var(--text-main);
    color: var(--text-light);
    font-weight: 900;
}

.mission-row strong {
    font-size: 1.15rem;
}

.packs-section {
    padding-top: 4rem;
}

.pack-grid {
    align-items: stretch;
}

.pack-card {
    min-height: 340px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
    color: var(--text-main);
    text-decoration: none;
    cursor: pointer;
}

.pack-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.65), transparent 42%);
    pointer-events: none;
}

.pack-card h3,
.pack-card p,
.pack-topline,
.pack-tags {
    position: relative;
    z-index: 2;
    transition: opacity 0.22s ease, transform 0.22s ease;
    opacity: 0;
    transform: translateY(10px);
}

.pack-card:hover,
.pack-card:focus-within,
.pack-card:focus-visible {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(45, 42, 50, 0.14);
    outline: none;
}

.pack-card:hover h3,
.pack-card:hover p,
.pack-card:hover .pack-topline,
.pack-card:hover .pack-tags,
.pack-card:focus-within h3,
.pack-card:focus-within p,
.pack-card:focus-within .pack-topline,
.pack-card:focus-within .pack-tags,
.pack-card:focus-visible h3,
.pack-card:focus-visible p,
.pack-card:focus-visible .pack-topline,
.pack-card:focus-visible .pack-tags {
    opacity: 1;
    transform: translateY(0);
}

.pack-visual {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem;
    opacity: 1;
    transform: scale(1);
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.pack-card:hover .pack-visual,
.pack-card:focus-within .pack-visual,
.pack-card:focus-visible .pack-visual {
    opacity: 0;
    transform: scale(0.96);
}

.pack-visual img {
    width: min(82%, 260px);
    height: 240px;
    object-fit: contain;
    filter: drop-shadow(0 16px 20px rgba(45, 42, 50, 0.16));
}

.pack-visual span {
    color: var(--text-main);
    font-size: 1.05rem;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    padding: 0.55rem 0.85rem;
    box-shadow: 0 10px 20px rgba(45, 42, 50, 0.08);
}

.pack-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.4rem;
}

.pack-topline span {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.52);
    border-radius: 999px;
    padding: 0.42rem 0.7rem;
}

.pack-topline strong {
    font-size: 1.4rem;
    opacity: 0.48;
}

.pack-card h3 {
    font-size: 1.55rem;
    line-height: 1.05;
    margin-bottom: 0.75rem;
}

.pack-card p {
    margin-bottom: 1.25rem;
}

.pack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: auto;
    margin-bottom: 1.25rem;
}

.pack-tags span {
    font-size: 0.78rem;
    font-weight: 800;
    background: rgba(45, 42, 50, 0.08);
    border-radius: 999px;
    padding: 0.38rem 0.62rem;
}

.pack-water {
    background: linear-gradient(145deg, rgba(92, 178, 236, 0.72), rgba(219, 242, 255, 0.52));
}

.pack-teeth {
    background: linear-gradient(145deg, rgba(255, 183, 205, 0.72), rgba(255, 235, 242, 0.54));
}

.pack-hands {
    background: linear-gradient(145deg, rgba(255, 217, 102, 0.66), rgba(255, 245, 204, 0.54));
}

.pack-bedtime {
    background: linear-gradient(145deg, rgba(154, 143, 218, 0.68), rgba(232, 225, 255, 0.52));
}

.pack-reading {
    background: linear-gradient(145deg, rgba(255, 179, 115, 0.68), rgba(255, 235, 214, 0.54));
}

.pack-cleanup {
    background: linear-gradient(145deg, rgba(164, 207, 112, 0.68), rgba(234, 246, 214, 0.54));
}

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

.step-card span {
    display: block;
    color: rgba(45, 42, 50, 0.62);
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.benefits-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 1180px;
    margin: 0 auto;
}

.benefit-card:first-child {
    background: rgba(201, 218, 143, 0.42);
}

.benefit-card:last-child {
    background: rgba(141, 183, 232, 0.34);
}

.world-section {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
    gap: 2rem;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

.world-copy {
    max-width: 680px;
}

.world-image {
    width: 100%;
    max-height: 430px;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(45, 42, 50, 0.18));
}

.contact-section {
    position: relative;
    z-index: 2;
    margin: 4rem 5% 6rem;
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(45, 42, 50, 0.1);
}

.contact-section p {
    max-width: 650px;
    margin: 0 auto 2rem;
}

.drink-system-page {
    background: #cde3f6;
}

.drink-system-page .starburst-bg {
    display: none;
}

.drink-system-page .drink-hero-art video {
    filter: none;
    -webkit-mask-image: radial-gradient(ellipse 50% 58% at 50% 52%, #000 0 62%, rgba(0, 0, 0, 0.88) 72%, transparent 90%);
    mask-image: radial-gradient(ellipse 50% 58% at 50% 52%, #000 0 62%, rgba(0, 0, 0, 0.88) 72%, transparent 90%);
}

.drink-system-page .eyebrow {
    background: #d9efff;
}

.drink-system-page .drink-journey-card span,
.drink-system-page .drink-flow-grid span {
    background: rgba(217, 239, 255, 0.82);
}

.drink-system-page .drink-kit-list div,
.drink-system-page .drink-routine-row div {
    background: rgba(232, 246, 255, 0.44);
}

.brush-system-page {
    background: #f0cddc;
}

.brush-system-page .starburst-bg {
    display: none;
}

.brush-system-page .drink-hero-art video {
    filter: none;
    -webkit-mask-image: radial-gradient(ellipse 72% 82% at 50% 52%, #000 0 76%, rgba(0, 0, 0, 0.96) 86%, transparent 100%);
    mask-image: radial-gradient(ellipse 72% 82% at 50% 52%, #000 0 76%, rgba(0, 0, 0, 0.96) 86%, transparent 100%);
}

.brush-system-page .eyebrow {
    background: #ffd7e5;
}

.brush-system-page .drink-journey-card span,
.brush-system-page .drink-flow-grid span {
    background: rgba(255, 215, 229, 0.76);
}

.brush-system-page .drink-kit-list div,
.brush-system-page .drink-routine-row div {
    background: rgba(255, 235, 242, 0.42);
}

.wash-system-page {
    --hero-video-scale: 1.16;
    --hero-video-shift-x: 24px;
    background: #f4deb1;
}

.wash-system-page .starburst-bg {
    display: none;
}

.wash-system-page .drink-hero-art video {
    filter: none;
}

.wash-system-page .eyebrow {
    background: #ffe58f;
}

.wash-system-page .drink-journey-card span,
.wash-system-page .drink-flow-grid span {
    background: rgba(255, 229, 143, 0.78);
}

.wash-system-page .drink-kit-list div,
.wash-system-page .drink-routine-row div {
    background: rgba(250, 241, 210, 0.48);
}

.bedtime-system-page {
    background: #cfbfd6;
}

.bedtime-system-page .starburst-bg {
    display: none;
}

.bedtime-system-page .drink-hero-art video {
    width: min(100%, 620px);
    max-height: 560px;
    transform: translateX(70px) scale(1.55);
    transform-origin: center;
    filter: none;
    -webkit-mask-image:
        linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
    mask-composite: intersect;
}

.bedtime-system-page .eyebrow {
    background: #efe4ff;
}

.bedtime-system-page .drink-journey-card span,
.bedtime-system-page .drink-flow-grid span {
    background: rgba(239, 228, 255, 0.78);
}

.bedtime-system-page .drink-kit-list div,
.bedtime-system-page .drink-routine-row div {
    background: rgba(244, 238, 255, 0.44);
}

.reading-system-page {
    background: #e1e5c2;
}

.reading-system-page .starburst-bg {
    display: none;
}

.reading-system-page .drink-hero-art video {
    filter: none;
    -webkit-mask-image:
        linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
    mask-composite: intersect;
}

.reading-system-page .eyebrow {
    background: #dff4d6;
}

.reading-system-page .drink-journey-card span,
.reading-system-page .drink-flow-grid span {
    background: rgba(223, 244, 214, 0.82);
}

.reading-system-page .drink-kit-list div,
.reading-system-page .drink-routine-row div {
    background: rgba(244, 249, 228, 0.48);
}

.cleanup-system-page {
    background: #e0e1ba;
}

.cleanup-system-page .starburst-bg {
    display: none;
}

.cleanup-system-page .drink-hero-art video {
    filter: none;
    -webkit-mask-image:
        linear-gradient(to right, transparent 0%, #000 13%, #000 87%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, #000 5%, #000 95%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to right, transparent 0%, #000 13%, #000 87%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, #000 5%, #000 95%, transparent 100%);
    mask-composite: intersect;
}

.cleanup-system-page .eyebrow {
    background: #ffe58a;
}

.cleanup-system-page .drink-journey-card span,
.cleanup-system-page .drink-flow-grid span {
    background: rgba(255, 229, 138, 0.82);
}

.cleanup-system-page .drink-kit-list div,
.cleanup-system-page .drink-routine-row div {
    background: rgba(248, 242, 216, 0.48);
}

.drink-hero {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
    gap: 3rem;
    align-items: center;
    max-width: 1180px;
    min-height: calc(100vh - 120px);
    margin: 0 auto;
    padding: 3rem 5% 5rem;
}

.drink-hero-copy h1 {
    font-size: clamp(3.4rem, 6vw, 6.4rem);
    line-height: 0.9;
    margin-bottom: 1rem;
}

.drink-hero-copy p {
    max-width: 620px;
    font-size: 1.18rem;
    line-height: 1.6;
    color: rgba(45, 42, 50, 0.78);
}

.drink-hero-art {
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drink-hero-art img {
    width: min(86%, 480px);
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 28px rgba(45, 42, 50, 0.18));
}

.drink-hero-art video {
    width: min(86%, 480px);
    max-height: 500px;
    object-fit: contain;
    transform: translateX(var(--hero-video-shift-x, 0px)) scale(var(--hero-video-scale, 1));
    transform-origin: center;
    filter: drop-shadow(0 20px 28px rgba(45, 42, 50, 0.18));
}

.drink-overview,
.drink-kit-section,
.drink-routine-section,
.drink-product-preview,
.drink-journey-section,
.drink-showcase-section {
    max-width: 1180px;
    margin: 0 auto;
}

.drink-journey-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.drink-journey-card {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 1rem;
    min-height: 100%;
    background: rgba(255, 255, 255, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: 0 14px 32px rgba(45, 42, 50, 0.08);
}

.drink-journey-card.large,
.drink-journey-card.wide {
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: center;
}

.drink-journey-card.large {
    grid-column: 1 / -1;
}

.drink-journey-card.wide {
    grid-column: 1 / -1;
}

.drink-journey-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
}

.drink-journey-card span {
    display: inline-block;
    margin-bottom: 0.65rem;
    color: var(--text-main);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    background: rgba(255, 217, 102, 0.62);
    border-radius: 999px;
    padding: 0.42rem 0.72rem;
}

.drink-journey-card h3 {
    font-size: clamp(1.45rem, 2.5vw, 2.5rem);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.drink-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.drink-flow-grid article,
.drink-showcase-card {
    background: rgba(255, 255, 255, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: 0 14px 32px rgba(45, 42, 50, 0.08);
}

.drink-flow-grid article {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 100%;
}

.drink-flow-grid img {
    width: 100%;
    aspect-ratio: 8.5 / 11;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
}

.drink-product-preview .drink-flow-grid img {
    aspect-ratio: 720 / 1018;
    object-fit: cover;
    background: transparent;
}

.drink-system-page .drink-product-preview .drink-flow-grid img,
.brush-system-page .drink-product-preview .drink-flow-grid img {
    aspect-ratio: 521 / 674;
}

.wash-system-page .drink-product-preview .drink-flow-grid img {
    aspect-ratio: 720 / 1018;
}

.wash-system-page .drink-product-preview .drink-flow-grid img[src*="learning-cards-preview"] {
    aspect-ratio: 720 / 932;
}

.drink-flow-grid article > div {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.drink-flow-grid span,
.drink-showcase-card .eyebrow {
    width: fit-content;
}

.drink-flow-grid span {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: var(--text-main);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    background: rgba(141, 183, 232, 0.34);
    border-radius: 999px;
    padding: 0.42rem 0.7rem;
}

.drink-flow-grid h3 {
    font-size: 1.35rem;
    line-height: 1.05;
    margin-bottom: 0.55rem;
}

.drink-flow-grid p {
    margin-top: auto;
}

.purchase-panel-section {
    max-width: 1180px;
    margin: 0 auto;
}

.purchase-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 1.25rem;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 22px;
    padding: clamp(1.25rem, 3vw, 2rem);
    box-shadow: 0 18px 42px rgba(45, 42, 50, 0.1);
}

.purchase-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(170px, 0.44fr);
    gap: 1.1rem;
    align-items: end;
    min-height: 100%;
}

.purchase-copy-inner {
    align-self: center;
}

.purchase-copy h2 {
    max-width: 720px;
    font-size: clamp(2.6rem, 4.8vw, 5rem);
    line-height: 0.92;
    margin-bottom: 1rem;
}

.purchase-copy p {
    max-width: 620px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.purchase-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.5rem;
}

.purchase-highlights span {
    color: var(--text-main);
    font-size: 0.84rem;
    font-weight: 900;
    background: rgba(217, 239, 255, 0.82);
    border-radius: 999px;
    padding: 0.48rem 0.75rem;
}

.purchase-character {
    align-self: end;
    justify-self: center;
    width: min(100%, 230px);
    max-height: 360px;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(45, 42, 50, 0.16));
}

.purchase-card {
    display: grid;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: 0 14px 30px rgba(45, 42, 50, 0.08);
}

.purchase-card-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(45, 42, 50, 0.68);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.purchase-card-top strong {
    color: var(--text-main);
}

.purchase-price {
    display: grid;
    gap: 0.25rem;
    padding: 1.1rem;
    background: rgba(217, 239, 255, 0.78);
    border-radius: 16px;
}

.purchase-price span {
    color: rgba(45, 42, 50, 0.62);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.purchase-price strong {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1;
}

.regular-price {
    margin: 0.2rem 0 0;
    color: rgba(45, 42, 50, 0.68);
    font-size: 0.9rem;
    line-height: 1.35;
}

.purchase-note a {
    color: var(--text-main);
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: var(--accent-yellow);
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.purchase-list {
    display: grid;
    gap: 0.72rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.purchase-list li {
    position: relative;
    padding-left: 1.3rem;
    color: rgba(45, 42, 50, 0.76);
    line-height: 1.45;
}

.purchase-list li::before {
    content: "";
    position: absolute;
    top: 0.58rem;
    left: 0;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--accent-yellow);
    border-radius: 999px;
}

.purchase-button {
    width: 100%;
    margin-top: 0.25rem;
}

.purchase-note {
    color: rgba(45, 42, 50, 0.58);
    font-size: 0.88rem;
    line-height: 1.45;
    text-align: center;
}

.drink-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.drink-feature-grid article,
.drink-kit-list div,
.drink-routine-row div {
    background: rgba(255, 255, 255, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 18px;
    padding: 1.35rem;
    box-shadow: 0 14px 32px rgba(45, 42, 50, 0.08);
}

.drink-feature-grid span,
.drink-routine-row span {
    display: inline-block;
    margin-bottom: 1rem;
    color: rgba(45, 42, 50, 0.56);
    font-weight: 900;
    text-transform: uppercase;
}

.drink-feature-grid h3 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}

.drink-kit-section {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
    gap: 2rem;
    align-items: start;
}

.drink-kit-copy {
    max-width: 560px;
}

.wash-system-page .drink-kit-section {
    display: block;
}

.bedtime-system-page .drink-kit-section {
    display: block;
}

.reading-system-page .drink-kit-section {
    display: block;
}

.cleanup-system-page .drink-kit-section {
    display: block;
}

.wash-system-page .drink-kit-copy {
    max-width: 780px;
    margin: 0 auto 2rem;
    text-align: center;
}

.bedtime-system-page .drink-kit-copy {
    max-width: 780px;
    margin: 0 auto 2rem;
    text-align: center;
}

.reading-system-page .drink-kit-copy {
    max-width: 780px;
    margin: 0 auto 2rem;
    text-align: center;
}

.cleanup-system-page .drink-kit-copy {
    max-width: 780px;
    margin: 0 auto 2rem;
    text-align: center;
}

.wash-system-page .drink-kit-copy h2 {
    font-size: clamp(2.9rem, 5vw, 5.2rem);
}

.bedtime-system-page .drink-kit-copy h2 {
    font-size: clamp(2.9rem, 5vw, 5.2rem);
}

.reading-system-page .drink-kit-copy h2 {
    font-size: clamp(2.9rem, 5vw, 5.2rem);
}

.cleanup-system-page .drink-kit-copy h2 {
    font-size: clamp(2.9rem, 5vw, 5.2rem);
}

.wash-system-page .drink-kit-copy p {
    max-width: 640px;
    margin: 0 auto;
}

.bedtime-system-page .drink-kit-copy p {
    max-width: 640px;
    margin: 0 auto;
}

.reading-system-page .drink-kit-copy p {
    max-width: 640px;
    margin: 0 auto;
}

.cleanup-system-page .drink-kit-copy p {
    max-width: 640px;
    margin: 0 auto;
}

.wash-system-page .drink-kit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 900px;
    margin: 0 auto;
}

.bedtime-system-page .drink-kit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 900px;
    margin: 0 auto;
}

.reading-system-page .drink-kit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 900px;
    margin: 0 auto;
}

.cleanup-system-page .drink-kit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 900px;
    margin: 0 auto;
}

.drink-kit-list {
    display: grid;
    gap: 0.85rem;
}

.drink-kit-list div {
    display: grid;
    gap: 0.35rem;
}

.drink-kit-list strong,
.drink-routine-row strong {
    font-size: 1.08rem;
}

.drink-kit-list span {
    color: rgba(45, 42, 50, 0.7);
    line-height: 1.5;
}

.drink-routine-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.drink-showcase-section {
    display: grid;
    gap: 1rem;
}

.drink-showcase-card {
    display: grid;
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.drink-showcase-card.reverse {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.7fr);
}

.drink-showcase-card.reverse img {
    order: 2;
}

.drink-showcase-card img {
    width: 100%;
    aspect-ratio: 8.5 / 11;
    max-height: 430px;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
}

.drink-showcase-card h2 {
    font-size: clamp(2rem, 3.4vw, 3.6rem);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-left {
        justify-self: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image {
        width: 80vw;
        max-width: 500px;
    }

    .hero-left p {
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .feature-grid,
    .steps-grid,
    .pack-grid,
    .about-section,
    .product-section,
    .benefits-section,
    .world-section,
    .drink-hero,
    .drink-kit-section,
    .drink-journey-card.large,
    .drink-journey-card.wide {
        grid-template-columns: 1fr;
    }

    .about-copy,
    .world-copy {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .about-image-wrap {
        min-height: 300px;
    }

    .about-image {
        max-height: 360px;
    }

    .drink-hero {
        min-height: auto;
        text-align: center;
    }

    .wash-system-page .drink-kit-section {
        display: block;
    }

    .bedtime-system-page .drink-kit-section {
        display: block;
    }

    .reading-system-page .drink-kit-section {
        display: block;
    }

    .cleanup-system-page .drink-kit-section {
        display: block;
    }

    .wash-system-page .drink-kit-copy {
        max-width: 760px;
        margin: 0 auto;
    }

    .bedtime-system-page .drink-kit-copy {
        max-width: 760px;
        margin: 0 auto;
    }

    .reading-system-page .drink-kit-copy {
        max-width: 760px;
        margin: 0 auto;
    }

    .cleanup-system-page .drink-kit-copy {
        max-width: 760px;
        margin: 0 auto;
    }

    .wash-system-page .drink-kit-list {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    .bedtime-system-page .drink-kit-list {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    .reading-system-page .drink-kit-list {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    .cleanup-system-page .drink-kit-list {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    .drink-hero-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .drink-hero-art {
        min-height: 340px;
    }

    .faq-grid,
    .drink-flow-grid,
    .drink-journey-grid,
    .drink-feature-grid,
    .purchase-panel,
    .drink-routine-row {
        grid-template-columns: 1fr;
    }

    .purchase-panel {
        text-align: center;
    }

    .purchase-copy,
    .purchase-highlights {
        align-items: center;
        justify-content: center;
    }

    .purchase-copy {
        grid-template-columns: 1fr;
    }

    .purchase-character {
        width: min(72%, 260px);
        max-height: 320px;
    }

    .drink-kit-copy {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .drink-showcase-card,
    .drink-showcase-card.reverse {
        grid-template-columns: 1fr;
    }

    .drink-showcase-card.reverse img {
        order: 0;
    }

    .world-image {
        justify-self: center;
        max-width: 640px;
        max-height: 360px;
    }

    .pack-card {
        min-height: auto;
        padding: 1.1rem;
        transform: none;
    }

    .pack-card:hover,
    .pack-card:focus-within,
    .pack-card:focus-visible {
        transform: none;
    }

    .pack-card h3,
    .pack-card p,
    .pack-topline,
    .pack-tags,
    .pack-card:hover h3,
    .pack-card:hover p,
    .pack-card:hover .pack-topline,
    .pack-card:hover .pack-tags,
    .pack-card:focus-within h3,
    .pack-card:focus-within p,
    .pack-card:focus-within .pack-topline,
    .pack-card:focus-within .pack-tags,
    .pack-card:focus-visible h3,
    .pack-card:focus-visible p,
    .pack-card:focus-visible .pack-topline,
    .pack-card:focus-visible .pack-tags {
        opacity: 1;
        transform: none;
    }

    .pack-visual,
    .pack-card:hover .pack-visual,
    .pack-card:focus-within .pack-visual,
    .pack-card:focus-visible .pack-visual {
        position: relative;
        inset: auto;
        order: -1;
        opacity: 1;
        transform: none;
        padding: 0.2rem 0 1rem;
        pointer-events: auto;
    }

    .pack-visual img {
        width: min(78%, 240px);
        height: 220px;
    }

    .pack-visual span {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 5%;
        right: 5%;
        z-index: 100;
        padding: 1rem;
        background: rgba(248, 244, 255, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.9);
        box-shadow: 0 14px 30px rgba(48, 40, 58, 0.16);
        flex-direction: column;
        align-items: stretch;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a,
    .nav-dropdown-toggle {
        width: 100%;
        text-align: left;
    }

    .nav-dropdown-menu {
        position: static;
        display: block;
        margin-top: 0.4rem;
        box-shadow: none;
    }
    
    .hero-bg-text span {
        font-size: 6rem;
    }

    .navbar {
        padding: 1.4rem 5%;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero-section {
        padding-top: 2rem;
    }

    .hero-left h1 {
        font-size: clamp(2.8rem, 15vw, 4.2rem);
    }

    .section {
        padding: 4rem 5%;
    }

    .about-image-wrap {
        min-height: 240px;
        border-radius: 16px;
    }

    .about-image,
    .world-image {
        max-height: 280px;
    }

    .drink-hero {
        padding: 2rem 5% 3rem;
    }

    .drink-hero-copy h1 {
        font-size: clamp(2.7rem, 14vw, 4.2rem);
    }

    .drink-hero-art {
        min-height: 280px;
        border-radius: 16px;
    }

    .drink-hero-art img {
        width: min(90%, 340px);
        max-height: 340px;
    }

    .drink-hero-art video {
        width: min(90%, 340px);
        max-height: 340px;
    }

    .wash-system-page {
        --hero-video-scale: 1.06;
        --hero-video-shift-x: 0px;
    }

    .bedtime-system-page .drink-hero-art video {
        width: min(100%, 380px);
        max-height: 360px;
        transform: scale(1.25);
    }

    .contact-section {
        margin: 2rem 5% 4rem;
    }
}

.legal-page {
    min-height: 100vh;
    background: #f4effa;
    color: #30283a;
}

.legal-main {
    position: relative;
    z-index: 1;
    width: min(860px, 90%);
    margin: 0 auto;
    padding: 4rem 0 6rem;
}

.legal-main h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.8rem, 8vw, 5rem);
    line-height: 0.98;
}

.legal-main h2 {
    margin: 2.2rem 0 0.7rem;
    font-size: 1.35rem;
}

.legal-main p,
.legal-main li {
    font-size: 1rem;
    line-height: 1.75;
}

.legal-main ul {
    padding-left: 1.25rem;
}

.legal-meta {
    margin-bottom: 2.5rem;
    color: rgba(48, 40, 58, 0.68);
}

.legal-note {
    margin: 2rem 0;
    padding: 1rem 1.1rem;
    border-left: 5px solid #ffd45c;
    background: rgba(255, 255, 255, 0.56);
}

.success-panel {
    width: min(760px, 90%);
    margin: 3rem auto 6rem;
    padding: clamp(1.5rem, 5vw, 3.5rem);
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.52);
    box-shadow: 0 20px 50px rgba(48, 40, 58, 0.12);
    text-align: center;
}

.success-panel h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.5rem, 8vw, 4.8rem);
    line-height: 1;
}

.success-steps {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    text-align: left;
}

.success-steps div {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.64);
}

.success-steps strong {
    display: block;
    margin-bottom: 0.35rem;
}

@media (max-width: 720px) {
    .success-steps {
        grid-template-columns: 1fr;
    }
}

.nav-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    border-radius: 2px;
    background: #30283a;
}

.site-footer {
    position: relative;
    z-index: 2;
    padding: 2rem 6%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    background: #30283a;
    color: #fff;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
}

.site-footer-brand {
    font-weight: 900;
    font-size: 1.15rem;
}

.site-footer nav {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

.site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .nav-menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .site-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .site-footer nav {
        flex-wrap: wrap;
    }
}
