:root {
    --ink: #101010;
    --muted: #555b63;
    --line: #e7e7e7;
    --paper: #ffffff;
    --surface: #ffffff;
    --sage: #cfe0f7;
    --sage-dark: #093bd3;
    --blush: #edf4ff;
    --sky: #cfe0f7;
    --cream: #ffffff;
    --danger: #b14d3d;
    --shadow: 0 24px 70px rgba(31, 43, 37, .12);
    --deep-overlay: rgba(18, 25, 22, .34);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.announcement-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 18px;
    color: #fff;
    background: var(--ink);
    font-size: 13px;
    text-align: center;
}

.announcement-bar strong {
    font-weight: 750;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    height: 72px;
    padding: 0 12px 0 18px;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid #e7e7e7;
    color: #101010;
    backdrop-filter: blur(14px);
}

.brand,
.header-actions,
.main-nav {
    display: flex;
    align-items: center;
}

.brand {
    min-width: 210px;
    gap: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.brand-logo {
    display: block;
    width: 188px;
    height: auto;
    object-fit: contain;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: #fff;
    background: #101010;
    border-radius: 50%;
}

.main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap: 34px;
    color: #444b55;
    font-size: 14px;
    font-weight: 600;
}

.main-nav a:hover,
.ghost-link:hover {
    color: var(--ink);
}

.header-actions {
    margin-left: auto;
    height: 100%;
    gap: 0;
}

.header-actions form {
    margin: 0;
}

.header-icon-link,
.mobile-menu-toggle,
.mobile-menu-close {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid #e7e7e7;
    border-radius: 50%;
    color: #101010;
    background: #fff;
    cursor: pointer;
}

.header-icon-link {
    margin-left: 8px;
    font-size: 17px;
}

.mobile-menu-toggle {
    display: none;
    gap: 5px;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(16,16,16,.34);
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease;
}

.mobile-offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 90;
    width: min(88vw, 380px);
    height: 100svh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 22px;
    padding: 20px;
    background: #fff;
    color: #101010;
    box-shadow: -24px 0 70px rgba(16,16,16,.16);
    transform: translateX(104%);
    transition: transform .28s ease;
}

.mobile-offcanvas-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e7e7e7;
}

.mobile-offcanvas-head img {
    width: 156px;
    height: auto;
}

.mobile-menu-close {
    font-size: 18px;
}

.mobile-offcanvas-nav {
    display: grid;
    align-content: start;
    gap: 4px;
}

.mobile-offcanvas-nav a {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 4px;
    border-bottom: 1px solid #eeeeee;
    color: #101010;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 650;
}

.mobile-offcanvas-actions {
    display: grid;
    gap: 10px;
}

body.mobile-menu-open {
    overflow: hidden;
}

body.mobile-menu-open .mobile-menu-backdrop {
    opacity: 1;
    pointer-events: auto;
}

body.mobile-menu-open .mobile-offcanvas {
    transform: translateX(0);
}

.ghost-link {
    display: inline-flex;
    align-items: center;
    height: 72px;
    padding: 0 28px;
    border-left: 1px solid #e7e7e7;
    color: #444b55;
    font-size: 14px;
    font-weight: 600;
}

.account-icon-link {
    justify-content: center;
    width: 62px;
    padding: 0;
    font-size: 18px;
}

.button,
.icon-button,
.danger-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #fff;
    background: var(--ink);
    font-weight: 700;
    cursor: pointer;
}

.button.small {
    min-height: 38px;
    padding-inline: 16px;
    font-size: 14px;
}

.site-header .button.small {
    color: var(--ink);
    background: #fff;
    border-color: var(--line);
}

.button.secondary,
.icon-button {
    color: var(--ink);
    background: transparent;
    border-color: var(--line);
}

.danger-button {
    color: #fff;
    background: var(--danger);
}

.flash-wrap {
    position: fixed;
    top: 76px;
    right: 20px;
    z-index: 40;
    display: grid;
    gap: 10px;
    max-width: min(420px, calc(100vw - 40px));
}

.flash {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.flash.success {
    border-color: #b6d4bc;
}

.flash.error {
    border-color: #e0aaa0;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr);
    gap: clamp(32px, 6vw, 86px);
    align-items: center;
    min-height: calc(100vh - 72px);
    padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 80px) 44px;
    background:
        linear-gradient(120deg, rgba(219, 232, 238, .72), rgba(247, 239, 226, .68) 52%, rgba(234, 210, 203, .58)),
        var(--paper);
}

.hero-premium {
    position: relative;
    display: grid;
    min-height: calc(100vh - 106px);
    padding: 0;
    overflow: hidden;
    background: #d7ded7;
}

.hero-media-frame {
    position: absolute;
    inset: 0;
}

.dummy-media {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: rgba(23, 33, 29, .58);
    background:
        linear-gradient(135deg, rgba(255,255,255,.24), rgba(255,255,255,0) 38%),
        linear-gradient(150deg, #dbe8ee 0%, #f7efe2 47%, #ead2cb 100%);
    isolation: isolate;
}

.dummy-media::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: inherit;
}

.dummy-media::after {
    content: "";
    position: absolute;
    width: 42%;
    aspect-ratio: 1;
    border-radius: 999px;
    background: rgba(255,255,255,.34);
    filter: blur(2px);
}

.dummy-media span {
    position: relative;
    z-index: 2;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.62);
    border-radius: 999px;
    background: rgba(255,255,255,.34);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-media {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(0,0,0,0) 52%, rgba(0,0,0,.34)),
        linear-gradient(90deg, rgba(15,22,19,.62), rgba(15,22,19,.15) 48%, rgba(15,22,19,.44)),
        linear-gradient(125deg, #cfe0f7 0%, #f7f9ff 42%, #ead4c8 100%);
}

.hero-media::before {
    inset: 0;
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(90deg, var(--deep-overlay), rgba(23,33,29,.04) 60%),
        radial-gradient(circle at 75% 34%, rgba(255,255,255,.36), transparent 24%);
}

.hero-overlay {
    position: relative;
    z-index: 3;
    align-self: end;
    width: min(760px, calc(100vw - 40px));
    margin-left: clamp(20px, 6vw, 86px);
    margin-bottom: clamp(42px, 9vh, 94px);
    color: #fff;
}

.hero-overlay h1 {
    max-width: 720px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(56px, 8.6vw, 126px);
    line-height: .86;
    font-weight: 500;
    text-wrap: balance;
    letter-spacing: 0;
}

.hero-overlay .lead {
    max-width: 560px;
    color: rgba(255,255,255,.86);
}

.eyebrow.light,
.light-trust {
    color: rgba(255,255,255,.78);
}

.light-button {
    color: var(--ink);
    background: #fff;
}

.glass-button {
    color: #fff;
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.5);
    backdrop-filter: blur(10px);
}

.stage-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    background: #fff;
}

.stage-card {
    min-height: 560px;
    display: grid;
    grid-template-rows: 1fr auto;
    border-right: 1px solid rgba(223,230,223,.85);
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.stage-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 70px rgba(31,43,37,.08);
}

.stage-card:last-child {
    border-right: 0;
}

.stage-media {
    min-height: 390px;
}

.stage-media::after,
.band-media::after,
.tall-media::after {
    width: 34%;
    opacity: .78;
}

.stage-media.one {
    background:
        linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,0)),
        linear-gradient(145deg, #b9c9bd, #e7ded3);
}

.stage-media.two {
    background:
        linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,0)),
        linear-gradient(145deg, #d7e5e8, #e7cfc5);
}

.stage-media.three {
    background:
        linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,0)),
        linear-gradient(145deg, #e2d9c8, #b8cec1);
}

.stage-copy {
    padding: clamp(22px, 3vw, 34px);
}

.stage-copy p {
    margin: 0 0 6px;
    color: var(--sage-dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.stage-copy h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1;
    font-weight: 500;
}

.stage-copy span {
    display: block;
    margin: 12px 0 20px;
    color: var(--muted);
}

.stage-copy a,
.text-link {
    display: inline-flex;
    font-weight: 800;
    border-bottom: 1px solid currentColor;
}

.subscription-band {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, .55fr);
    min-height: 660px;
    background: #f1eee8;
}

.band-media {
    min-height: 660px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,0)),
        linear-gradient(150deg, #cedbd2, #efe4d7 52%, #c8dce2);
}

.subscription-copy {
    display: grid;
    align-content: center;
    padding: clamp(34px, 5vw, 74px);
}

.subscription-copy h2 {
    margin: 0 0 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 70px);
    line-height: .95;
    font-weight: 500;
    letter-spacing: 0;
}

.subscription-copy ul {
    display: grid;
    gap: 18px;
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
}

.subscription-copy li {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(23,33,29,.12);
    color: var(--muted);
    font-size: 17px;
}

.premium-story {
    grid-template-columns: .82fr 1.18fr;
    align-items: stretch;
}

.story-copy {
    align-self: center;
}

.story-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 18px;
    align-items: end;
}

.tall-media {
    min-height: 620px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,0)),
        linear-gradient(150deg, #cbd9d0, #f1e5d6 46%, #d9c2bd);
}

.editorial-pack {
    width: 270px;
    min-height: 360px;
    margin-bottom: 44px;
}

.safety-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    padding: 0;
}

.safety-row article {
    min-height: 440px;
    display: grid;
    align-content: end;
    padding: clamp(34px, 6vw, 76px);
    color: #fff;
    background: var(--sage-dark);
}

.safety-row article:first-child {
    background: var(--ink);
}

.safety-row p {
    color: rgba(255,255,255,.78);
}

.safety-row .eyebrow {
    color: rgba(255,255,255,.74);
}

.premium-testimonials {
    padding-top: 96px;
}

.premium-final {
    width: 100%;
    margin-block: 0;
    border-radius: 0;
    padding-block: clamp(58px, 9vw, 110px);
    background:
        linear-gradient(120deg, rgba(23,33,29,.94), rgba(23,33,29,.86)),
        linear-gradient(135deg, var(--sage), var(--blush));
}

.hero h1,
.page-hero h1,
.dashboard-hero h1,
.login-card h1 {
    max-width: 760px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 6vw, 82px);
    line-height: .98;
    font-weight: 500;
}

.page-hero h1,
.dashboard-hero h1,
.login-card h1 {
    font-size: clamp(36px, 5vw, 60px);
}

.lead,
.page-hero p {
    max-width: 670px;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 20px);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--sage-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-actions,
.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.trust,
.muted,
.note {
    color: var(--muted);
    font-size: 14px;
}

.hero-visual {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
}

.hero-visual::before {
    content: "";
    position: absolute;
    width: min(86%, 520px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.95), rgba(143,174,155,.2));
}

.product-pack {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: end;
    width: min(70vw, 330px);
    min-height: 430px;
    padding: 34px;
    border: 1px solid rgba(85, 116, 100, .25);
    border-radius: 8px;
    background:
        linear-gradient(160deg, rgba(255,255,255,.92), rgba(247,239,226,.96)),
        linear-gradient(45deg, transparent 0 45%, rgba(143,174,155,.25) 45% 55%, transparent 55%);
    box-shadow: var(--shadow);
}

.product-pack span,
.soft-card span {
    color: var(--sage-dark);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-pack strong {
    display: block;
    margin-top: 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 44px;
    line-height: 1;
}

.product-pack small,
.soft-card small,
.admin-table small {
    display: block;
    color: var(--muted);
}

.soft-card {
    position: absolute;
    right: 2%;
    bottom: 10%;
    z-index: 3;
    width: 210px;
    padding: 20px;
    border: 1px solid rgba(223,230,223,.9);
    border-radius: 8px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 18px 45px rgba(31,43,37,.12);
}

.soft-card strong {
    display: block;
    margin: 6px 0;
    font-size: 26px;
}

.section,
.page-hero,
.form-section,
.subscription-layout,
.dashboard-hero,
.dashboard-grid,
.admin-stats,
.admin-table-wrap,
.login-page,
.final-cta {
    width: min(1180px, calc(100vw - 40px));
    margin-inline: auto;
}

.section {
    padding: 76px 0;
}

.split,
.two-column,
.product-story {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
}

.section h2,
.final-cta h2,
.panel-card h2 {
    margin: 0 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    font-weight: 500;
}

.section p,
.panel-card p,
.final-cta p {
    color: var(--muted);
}

.section-heading {
    max-width: 700px;
    margin-bottom: 28px;
}

.steps,
.quote-grid,
.product-grid,
.bands,
.admin-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.steps article,
.product-card,
.text-panel,
.panel-card,
.summary-panel,
.form-card,
.empty-state,
.admin-stats article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 12px 34px rgba(31,43,37,.06);
}

.steps article,
.product-card,
.text-panel,
.panel-card,
.summary-panel,
.form-card,
.empty-state,
.admin-stats article {
    padding: clamp(20px, 3vw, 30px);
}

.steps span,
.timeline span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #fff;
    background: var(--sage-dark);
    border-radius: 50%;
    font-weight: 800;
}

.feature-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
}

.feature-list li::before {
    content: "";
    position: absolute;
    top: .65em;
    left: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--sage);
}

.story-image {
    min-height: 440px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(140deg, var(--sky), var(--cream));
}

.diaper-shape {
    width: min(70%, 360px);
    aspect-ratio: 1.2;
    border-radius: 52% 52% 34% 34%;
    background: #fff;
    border: 10px solid rgba(143,174,155,.42);
    box-shadow: var(--shadow);
}

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

.bands article,
.final-cta {
    padding: clamp(28px, 5vw, 54px);
    border-radius: 8px;
    background: var(--ink);
    color: #fff;
}

.bands article:nth-child(2) {
    background: var(--sage-dark);
}

.bands p,
.final-cta p {
    color: rgba(255,255,255,.78);
}

.bands a {
    font-weight: 800;
    text-decoration: underline;
}

.quote-grid blockquote {
    min-height: 180px;
    margin: 0;
    padding: 28px;
    border-radius: 8px;
    background: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
}

.final-cta {
    margin-block: 70px;
    text-align: center;
}

.final-cta .button {
    margin-top: 18px;
    background: #fff;
    color: var(--ink);
}

.page-hero {
    padding: 82px 0 38px;
}

.page-hero.compact {
    padding-bottom: 20px;
}

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

.mini-pack {
    width: 72px;
    height: 96px;
    margin-bottom: 18px;
    border: 1px solid rgba(85,116,100,.25);
    border-radius: 8px;
    background: linear-gradient(150deg, #fff, var(--cream));
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: center;
}

.detail-pack {
    min-height: 360px;
}

.size-table,
.summary-panel {
    align-self: start;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--sage-dark);
    font-size: 13px;
    text-transform: uppercase;
}

.timeline {
    display: grid;
    gap: 16px;
}

.timeline article {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 18px;
    padding: 24px;
    border-bottom: 1px solid var(--line);
}

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

details {
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

summary {
    cursor: pointer;
    font-weight: 800;
}

.form-section,
.login-page {
    padding: 54px 0 90px;
}

.contact-section {
    width: min(1180px, calc(100vw - 40px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
    gap: clamp(30px, 5vw, 76px);
    align-items: start;
    padding: 22px 0 96px;
}

.contact-info-panel {
    display: grid;
    gap: 30px;
}

.contact-intro {
    max-width: 680px;
}

.contact-intro span,
.contact-form-card span {
    display: block;
    margin-bottom: 10px;
    color: #073bd3;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.contact-intro h2,
.contact-form-card h2 {
    margin: 0;
    color: #101010;
    font-size: clamp(30px, 3.5vw, 48px);
    line-height: 1.06;
    font-weight: 650;
}

.contact-intro p {
    max-width: 620px;
    margin: 18px 0 0;
    color: #555b63;
    font-size: 17px;
    line-height: 1.7;
}

.contact-detail-list {
    display: grid;
    border-top: 1px solid #e7e7e7;
}

.contact-detail-list article {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid #e7e7e7;
}

.contact-detail-list i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #073bd3;
    font-size: 17px;
}

.contact-detail-list h3,
.contact-note-grid h3 {
    margin: 0 0 8px;
    color: #101010;
    font-size: 18px;
    line-height: 1.3;
}

.contact-detail-list p,
.contact-note-grid p {
    margin: 0;
    color: #555b63;
    line-height: 1.65;
}

.contact-detail-list a,
.contact-note-grid a {
    display: inline-flex;
    margin-bottom: 8px;
    color: #101010;
    border-bottom: 1px solid currentColor;
    font-weight: 700;
}

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

.contact-note-grid article {
    padding: 24px;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    background: #f7f9fc;
}

.contact-note-grid a {
    margin: 14px 0 0;
}

.contact-form-card {
    position: sticky;
    top: 104px;
    padding: clamp(24px, 3vw, 34px);
}

.contact-form-card .button {
    min-height: 52px;
}

.login-page {
    width: 100%;
    min-height: calc(100vh - 106px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(430px, 1fr);
    padding: 0;
}

.login-visual {
    min-height: calc(100vh - 106px);
    background:
        linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.08)),
        url("../../../images/cocoon-image-2.jpg") center / cover no-repeat;
}

.login-panel {
    display: grid;
    place-items: center;
    padding: clamp(36px, 6vw, 92px);
    background: #fff;
}

.login-card {
    width: min(460px, 100%);
    display: grid;
    gap: 18px;
}

.login-card h1 {
    margin: 0 0 12px;
    color: #101010;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 500;
    text-align: center;
}

.login-card > p {
    max-width: 410px;
    margin: 0 auto 18px;
    color: #555b63;
    text-align: center;
    line-height: 1.65;
}

.login-card .button {
    min-height: 52px;
    margin-top: 6px;
}

.login-card small {
    display: block;
    max-width: 390px;
    margin: 0 auto;
    color: #666d76;
    font-size: 12px;
    line-height: 1.55;
    text-align: center;
}

.admin-auth-page {
    min-height: 100vh;
    background: #fff;
}

.admin-auth-page main {
    min-height: 100vh;
}

.admin-login-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(430px, 1fr);
    background: #fff;
}

.admin-login-art {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    min-height: 100vh;
    background: linear-gradient(135deg, #f0f5ff 0%, #f8fbff 100%);
}

.admin-login-art::before {
    content: "";
    position: absolute;
    inset: 10%;
    border: 1px solid rgba(7, 59, 211, .06);
    border-radius: 10px;
    background:
        radial-gradient(circle at 18% 16%, rgba(255,255,255,.92) 0 3%, transparent 4%),
        radial-gradient(circle at 55% 12%, rgba(255,255,255,.92) 0 5%, transparent 6%),
        radial-gradient(circle at 84% 22%, rgba(255,255,255,.92) 0 3%, transparent 4%);
}

.admin-art-card {
    position: absolute;
    border-radius: 10px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(7, 59, 211, .08);
    box-shadow: 0 28px 80px rgba(22, 43, 95, .08);
}

.admin-art-card-back {
    width: 42%;
    height: 48%;
    left: 10%;
    top: 22%;
}

.admin-art-card-front {
    right: 21%;
    top: 30%;
    width: min(290px, 34vw);
    min-height: 330px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 14px;
    background: #d7e4ff;
}

.admin-art-card-front span {
    width: 70%;
    height: 32px;
    border-radius: 999px;
    background: rgba(255,255,255,.9);
}

.admin-art-card-front strong {
    width: 70%;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: #1f6dff;
    font-size: 13px;
}

.admin-art-avatar {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    color: #fff;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    font-size: 34px;
}

.admin-art-person {
    position: absolute;
    left: 20%;
    bottom: 18%;
    display: grid;
    place-items: center;
    width: 190px;
    height: 190px;
    color: #1f6dff;
    border-radius: 50%;
    background: rgba(31,109,255,.1);
    font-size: 72px;
    box-shadow: 0 18px 60px rgba(31,109,255,.12);
}

.admin-login-panel {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: clamp(32px, 6vw, 90px);
}

.admin-language-switch {
    position: absolute;
    top: clamp(28px, 5vw, 72px);
    right: clamp(32px, 7vw, 130px);
    display: flex;
    gap: 8px;
}

.admin-language-switch button {
    width: 42px;
    height: 34px;
    border: 1px solid rgba(7, 59, 211, .38);
    border-radius: 4px;
    color: #1f6dff;
    background: #fff;
    cursor: pointer;
    font-weight: 800;
}

.admin-language-switch .active {
    color: #fff;
    background: #1f6dff;
}

.admin-login-card {
    width: min(470px, 100%);
    display: grid;
    gap: 14px;
}

.admin-login-logo {
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    margin-bottom: 22px;
    color: #fff;
    border-radius: 18px;
    background: linear-gradient(145deg, #112b7f, #1647d8);
    box-shadow: 0 18px 46px rgba(17,43,127,.28);
    font-size: 27px;
    font-weight: 900;
}

.admin-login-card .eyebrow {
    margin: 0;
    color: #1f6dff;
}

.admin-login-card h1 {
    margin: 0;
    color: #151922;
    font-size: clamp(34px, 4vw, 46px);
    line-height: 1.05;
    font-weight: 800;
}

.admin-login-card > p {
    margin: 0 0 18px;
    color: #6b7280;
    font-size: 17px;
    font-weight: 600;
}

.admin-input-line {
    position: relative;
    display: block;
}

.admin-input-line i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #8b95a7;
    font-size: 16px;
}

.admin-input-line input {
    height: 48px;
    padding-left: 42px;
    border-radius: 5px;
    background: #f7f8fb;
}

.admin-login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin: 8px 0 16px;
    color: #687083;
    font-size: 13px;
    font-weight: 700;
}

.admin-login-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    font-size: inherit;
}

.admin-login-options input {
    width: 16px;
    height: 16px;
}

.admin-login-options a,
.admin-customer-link {
    color: #1f6dff;
    font-weight: 800;
}

.admin-login-card .button {
    width: 100%;
    min-height: 50px;
    border-radius: 5px;
    background: #1f6dff;
}

.admin-login-separator {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 16px 0 4px;
    color: #8b95a7;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.admin-login-separator::before,
.admin-login-separator::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e4e8f0;
}

.admin-login-card small {
    color: #6b7280;
    line-height: 1.65;
    text-align: center;
    font-weight: 700;
}

.admin-customer-link {
    justify-self: center;
    margin-top: 4px;
}

.subscription-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
    padding: 24px 0 90px;
}

.form-card {
    display: grid;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.compact-grid {
    margin-top: 20px;
}

label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    padding: 13px 14px;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--sage-dark);
    box-shadow: 0 0 0 4px rgba(143,174,155,.18);
}

.check-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check-row input {
    width: auto;
    margin-top: 4px;
}

.terms {
    font-weight: 600;
}

.summary-panel {
    position: sticky;
    top: 94px;
}

.summary-panel dl {
    display: grid;
    gap: 14px;
    margin: 20px 0;
}

.summary-panel dl div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.summary-panel dt {
    color: var(--muted);
}

.summary-panel dd {
    margin: 0;
    font-weight: 800;
    text-align: right;
}

.dashboard-hero {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    padding: 64px 0 28px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 24px;
    padding-bottom: 90px;
}

.panel-menu {
    position: sticky;
    top: 94px;
    align-self: start;
    display: grid;
    gap: 8px;
}

.panel-menu a {
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--muted);
    font-weight: 700;
}

.dashboard-main {
    display: grid;
    gap: 20px;
}

.account-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.account-hero .lead {
    max-width: 700px;
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.7;
}

.account-overview {
    width: min(1180px, calc(100vw - 40px));
    margin: 0 auto 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.account-overview article {
    min-height: 116px;
    padding: 22px;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(31,43,37,.05);
}

.account-overview span {
    display: block;
    color: #555b63;
    font-size: 13px;
    font-weight: 700;
}

.account-overview strong {
    display: block;
    margin-top: 10px;
    color: #101010;
    font-size: 24px;
    line-height: 1.1;
}

.account-dashboard {
    align-items: start;
}

.account-menu {
    gap: 10px;
}

.account-menu a {
    border-color: #e7e7e7;
    background: #fff;
}

.account-card {
    display: grid;
    gap: 22px;
    padding: clamp(22px, 3vw, 34px);
}

.account-card .panel-head {
    padding-bottom: 18px;
    border-bottom: 1px solid #ededed;
}

.account-card .panel-head h2 {
    margin-bottom: 0;
    font-size: clamp(24px, 3vw, 34px);
}

.account-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.account-action-row form {
    margin: 0;
}

.account-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.account-form-grid.single {
    grid-template-columns: 1fr;
}

.account-form-grid .button,
.account-form-grid .danger-button {
    align-self: end;
    min-height: 50px;
}

.checkbox-line {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 28px;
}

.checkbox-line input {
    width: 18px;
    height: 18px;
}

.address-preview {
    padding: 20px;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    background: #f7f9fc;
}

.address-preview span,
.account-orders article span:first-child {
    display: block;
    color: #555b63;
    font-size: 13px;
    font-weight: 700;
}

.address-preview p {
    margin: 8px 0 0;
    color: #101010;
    line-height: 1.7;
}

.account-orders {
    display: grid;
    gap: 12px;
}

.account-orders article {
    display: grid;
    grid-template-columns: minmax(170px, .6fr) auto minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 16px;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    background: #fff;
}

.account-orders strong {
    display: block;
    margin-top: 4px;
    font-size: 20px;
}

.account-orders p {
    margin: 0;
    color: #555b63;
    line-height: 1.55;
}

.panel-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.status {
    display: inline-flex;
    min-width: 86px;
    justify-content: center;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--sage-dark);
    background: rgba(143,174,155,.18);
    font-size: 12px;
    font-weight: 800;
}

.status.paused {
    color: #8a6737;
    background: rgba(247, 239, 226, 1);
}

.status.cancelled,
.status.payment_failed {
    color: var(--danger);
    background: rgba(177, 77, 61, .12);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0;
}

.metric-grid div,
.admin-stats article {
    padding: 18px;
    border-radius: 8px;
    background: var(--paper);
}

.metric-grid span,
.admin-stats span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.metric-grid strong,
.admin-stats strong {
    display: block;
    margin-top: 6px;
    font-size: 22px;
}

.full {
    grid-column: 1 / -1;
}

.clean-table {
    margin-top: 12px;
}

.admin-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding-top: clamp(44px, 6vw, 72px);
}

.admin-hero h1 {
    max-width: 760px;
}

.admin-stats {
    width: min(1180px, calc(100vw - 40px));
    margin: 0 auto 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-stats article {
    border: 1px solid #e7e7e7;
    background: #fff;
}

.admin-table-wrap {
    margin-bottom: 22px;
}

.admin-table-wrap .panel-head {
    padding-bottom: 18px;
    border-bottom: 1px solid #ececec;
}

.admin-table-wrap .panel-head h2 {
    margin-bottom: 0;
    font-size: clamp(24px, 3vw, 34px);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    padding: 13px 12px;
    color: #073bd3;
    border-bottom: 1px solid #e7e7e7;
    font-size: 12px;
    text-align: left;
    text-transform: uppercase;
}

.admin-table td {
    padding: 12px;
    border-bottom: 1px solid #eeeeee;
    vertical-align: top;
}

.admin-table input,
.admin-table select,
.mini-form select {
    min-height: 40px;
    padding: 9px 10px;
}

.menu-manager-form {
    display: grid;
    gap: 18px;
}

.mini-form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.mini-form button {
    min-height: 40px;
    padding: 0 14px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: #073bd3;
    cursor: pointer;
    font-weight: 700;
}

.empty-state {
    margin: 30px auto 90px;
    width: min(760px, calc(100vw - 40px));
    text-align: center;
}

.admin-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 10px 0 24px;
}

.admin-table-wrap {
    margin-bottom: 90px;
    overflow-x: auto;
}

.admin-setting-grid {
    display: grid;
    grid-template-columns: minmax(280px, .95fr) minmax(280px, 1.05fr);
    gap: 22px;
    align-items: stretch;
}

.admin-hero-preview {
    min-height: 240px;
    border-radius: 8px;
    background-color: #d9e6fb;
    background-position: center;
    background-size: cover;
}

.admin-setting-fields {
    display: grid;
    gap: 16px;
    align-content: start;
}

.admin-table td:first-child {
    min-width: 230px;
}

.mini-form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.mini-form select {
    min-width: 130px;
}

.mini-form button {
    min-height: 38px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: var(--ink);
    font-weight: 800;
    cursor: pointer;
}

.menu-manager-form {
    display: grid;
    gap: 18px;
}

.menu-manager-form input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.new-link-row td {
    background: #f7f9fc;
}

.site-footer {
    border-top: 1px solid #e7e7e7;
    background: #fff;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(520px, 1fr);
    min-height: 430px;
    border-bottom: 1px solid #e7e7e7;
}

.footer-newsletter {
    display: grid;
    align-content: start;
    gap: 46px;
    padding: clamp(44px, 6vw, 86px);
    border-right: 1px solid #e7e7e7;
}

.footer-newsletter h2 {
    max-width: 560px;
    margin: 0;
    color: #101010;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 0;
}

.footer-newsletter-form {
    display: flex;
    width: min(430px, 100%);
    min-height: 50px;
    overflow: hidden;
    border: 1px solid #e7e7e7;
    border-radius: 999px;
    background: #fff;
}

.footer-newsletter-form input {
    border: 0;
    min-width: 0;
    box-shadow: none;
}

.footer-newsletter-form button {
    border: 0;
    padding: 0 24px;
    background: transparent;
    color: #101010;
    font-weight: 700;
    cursor: pointer;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 36px;
    padding: clamp(44px, 6vw, 86px) clamp(34px, 5vw, 72px);
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 12px;
}

.footer-column h3 {
    margin: 0 0 22px;
    color: #101010;
    font-size: 12px;
    font-weight: 800;
}

.footer-column a {
    color: #555b63;
    font-size: 13px;
    font-weight: 600;
}

.footer-brand-row {
    display: grid;
    place-items: center;
    min-height: 210px;
}

.footer-brand-row img {
    width: min(360px, 70vw);
    height: auto;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 22px clamp(20px, 5vw, 80px);
    color: #777d86;
    font-size: 11px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

@media (max-width: 980px) {
    .announcement-bar {
        flex-wrap: wrap;
        gap: 4px 8px;
    }

    .site-header {
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .hero:not(.hero-premium),
    .split,
    .two-column,
    .product-story,
    .product-detail,
    .subscription-layout,
    .dashboard-grid,
    .login-page {
        grid-template-columns: 1fr;
    }

    .login-visual {
        min-height: 360px;
    }

    .login-panel {
        padding: 44px 20px 72px;
    }

    .hero {
        min-height: auto;
    }

    .hero-premium {
        min-height: 760px;
    }

    .hero-overlay h1 {
        font-size: clamp(54px, 13vw, 96px);
    }

    .stage-cards,
    .subscription-band,
    .premium-story,
    .safety-row,
    .account-overview,
    .account-form-grid {
        grid-template-columns: 1fr;
    }

    .account-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-orders article {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .admin-login-shell {
        grid-template-columns: 1fr;
    }

    .admin-login-art {
        min-height: 280px;
    }

    .admin-art-card-front {
        right: 12%;
        top: 18%;
        width: 230px;
        min-height: 230px;
    }

    .admin-art-person {
        left: 14%;
        bottom: 12%;
        width: 128px;
        height: 128px;
        font-size: 48px;
    }

    .admin-login-panel {
        min-height: auto;
        padding: 76px 20px 54px;
    }

    .admin-language-switch {
        top: 24px;
        right: 20px;
    }

    .stage-card {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .stage-media {
        min-height: 430px;
    }

    .subscription-band,
    .band-media {
        min-height: auto;
    }

    .band-media {
        min-height: 520px;
    }

    .story-gallery {
        grid-template-columns: 1fr;
    }

    .editorial-pack {
        width: min(100%, 340px);
        margin: -120px 28px 0 auto;
    }

    .safety-row article {
        min-height: 360px;
    }

    .hero-visual {
        min-height: 440px;
    }

    .product-grid,
    .steps,
    .quote-grid,
    .admin-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .summary-panel,
    .panel-menu {
        position: static;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-newsletter {
        border-right: 0;
        border-bottom: 1px solid #e7e7e7;
    }

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

@media (max-width: 640px) {
    .header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .hero:not(.hero-premium) h1,
    .page-hero h1,
    .dashboard-hero h1,
    .login-card h1 {
        font-size: 38px;
    }

    .hero-premium {
        min-height: 650px;
    }

    .hero-overlay {
        width: calc(100vw - 32px);
        margin-left: 16px;
        margin-bottom: 32px;
    }

    .hero-overlay h1 {
        font-size: clamp(48px, 17vw, 72px);
    }

    .hero-overlay .lead {
        font-size: 16px;
    }

    .stage-media {
        min-height: 340px;
    }

    .stage-copy,
    .subscription-copy {
        padding: 24px 20px;
    }

    .band-media,
    .tall-media {
        min-height: 390px;
    }

    .editorial-pack {
        min-height: 320px;
        margin: -90px 18px 0 auto;
    }

    .safety-row article {
        min-height: 320px;
        padding: 30px 20px;
    }

    .hero-visual {
        min-height: 380px;
    }

    .product-pack {
        min-height: 360px;
    }

    .soft-card {
        right: 0;
        bottom: 0;
    }

    .product-grid,
    .steps,
    .quote-grid,
    .bands,
    .admin-stats,
    .admin-setting-grid,
    .form-grid,
    .metric-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-hero,
    .site-footer,
    .panel-head {
        align-items: stretch;
        flex-direction: column;
    }

    .inline-actions,
    .hero-actions {
        flex-direction: column;
    }

    .button,
    .danger-button {
        width: 100%;
    }

    .footer-newsletter-form {
        flex-direction: column;
        border-radius: 8px;
    }

    .footer-newsletter-form button {
        min-height: 44px;
        background: #073bd3;
        color: #fff;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

/* Product detail page */
.pdp-top {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
    gap: clamp(44px, 6vw, 88px);
    width: min(1280px, calc(100vw - 44px));
    margin: 0 auto;
    padding: clamp(48px, 7vw, 86px) 0 clamp(34px, 5vw, 70px);
}

.pdp-gallery {
    position: sticky;
    top: 96px;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 28px;
    align-self: start;
}

.pdp-thumbs {
    display: grid;
    gap: 14px;
    align-content: start;
}

.pdp-thumbs button {
    position: relative;
    aspect-ratio: 1;
    border: 1px solid transparent;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.5), rgba(255,255,255,.2)),
        #d9e6fb;
    cursor: pointer;
    overflow: hidden;
}

.pdp-thumbs button::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 16%;
    width: 46%;
    height: 56%;
    border-radius: 26% 26% 38% 38%;
    transform: translateX(-50%);
    background:
        repeating-linear-gradient(90deg, rgba(203,213,226,.46) 0 1px, transparent 1px 5px),
        linear-gradient(180deg, #fff, #eef5ff);
    box-shadow: inset 0 -12px 30px rgba(188,207,229,.42);
}

.pdp-thumbs button img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 3;
}

.pdp-thumbs button:nth-child(3),
.pdp-thumbs button:nth-child(5) {
    background: #f3f7ff;
}

.pdp-thumbs button:nth-child(4) {
    background: linear-gradient(140deg, #d9e6fb, #f3e1d9);
}

.pdp-thumbs .is-active {
    border-color: #073bd3;
    box-shadow: 0 0 0 2px rgba(7,59,211,.12);
}

.thumb-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 2;
}

.thumb-play::before {
    content: "";
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,.78);
    box-shadow: 0 4px 18px rgba(16,16,16,.14);
}

.thumb-play::after {
    content: "";
    position: absolute;
    border-left: 8px solid #073bd3;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    margin-left: 3px;
}

.pdp-main-media {
    position: relative;
    min-height: min(66vw, 640px);
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 8px;
    background: #d9e6fb;
}

.pdp-media-panel {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.pdp-media-panel.is-active {
    opacity: 1;
    pointer-events: auto;
}

.pdp-media-panel video,
.pdp-media-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 28px 52px rgba(68,98,135,.16));
}

.pdp-placeholder-diaper {
    position: relative;
    width: 90%;
    height: 90%;
}

.pdp-placeholder-diaper::before,
.pdp-placeholder-diaper::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background:
        repeating-linear-gradient(90deg, rgba(210,220,230,.36) 0 2px, transparent 2px 8px),
        linear-gradient(180deg, #fff, #eef5ff);
    box-shadow: inset 0 -34px 80px rgba(188,207,229,.48), 0 30px 80px rgba(49,70,95,.12);
}

.pdp-placeholder-diaper::before {
    bottom: 6%;
    width: 52%;
    height: 68%;
    border-radius: 26% 26% 38% 38%;
}

.pdp-placeholder-diaper::after {
    bottom: 54%;
    width: 62%;
    height: 20%;
    border-radius: 16px 16px 36px 36px;
}

.pdp-placeholder-diaper span {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    color: rgba(16,16,16,.42);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.pdp-badges {
    position: absolute;
    left: 28px;
    top: 28px;
    display: grid;
    gap: 10px;
    width: 92px;
}

.pdp-badges span {
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #073bd3;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
}

.pdp-badges span:first-child {
    background: #09984d;
}

.pdp-badges span:last-child {
    background: #101010;
}

.pdp-purchase {
    align-self: start;
    display: grid;
    gap: 22px;
    padding-top: 4px;
    color: #101010;
}

.pdp-purchase h1 {
    margin: 0;
    font-size: clamp(48px, 5.1vw, 72px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: .95;
}

.pdp-review-link,
.pdp-size-head a {
    color: #073bd3;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.pdp-summary,
.pdp-starting,
.pdp-size-picker small,
.pdp-accordions p {
    margin: 0;
    color: #4f5660;
}

.pdp-summary {
    max-width: 560px;
    font-size: 16px;
    line-height: 1.55;
}

.pdp-starting {
    color: #101010;
    font-size: 18px;
    font-weight: 800;
}

.pdp-size-picker {
    display: grid;
    gap: 14px;
}

.pdp-size-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.pdp-size-head span {
    font-weight: 700;
}

.pdp-size-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.pdp-size-grid button {
    min-height: 64px;
    display: grid;
    justify-items: start;
    align-content: center;
    gap: 3px;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    color: #101010;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.pdp-size-grid button strong {
    font-size: 16px;
    line-height: 1;
}

.pdp-size-grid button small {
    color: inherit;
    opacity: .68;
    font-size: 12px;
}

.pdp-size-grid button.is-selected,
.pdp-size-grid button:hover {
    border-color: #073bd3;
    background: #f3f7ff;
}

.pdp-primary {
    width: min(100%, 420px);
    justify-self: center;
    min-height: 52px;
}

.pdp-mini-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 18px 0 22px;
}

.pdp-mini-features article {
    display: grid;
    justify-items: center;
    gap: 10px;
    text-align: center;
}

.pdp-mini-features i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #101010;
    font-size: 28px;
    line-height: 1;
}

.pdp-mini-features p {
    margin: 0;
    color: #676d75;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
}

.pdp-accordions {
    border-top: 1px solid #dedede;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}

.pdp-accordions details {
    margin: 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid #dedede;
    border-left: 0;
    border-radius: 0;
    background: transparent;
}

.pdp-accordions summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0;
    color: #101010;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    cursor: pointer;
    list-style: none;
}

.pdp-accordions summary::-webkit-details-marker {
    display: none;
}

.pdp-accordions summary::after {
    content: "+";
    color: #101010;
    font-size: 24px;
    font-weight: 200;
    line-height: 1;
}

.pdp-accordions details[open] summary::after {
    content: "\2212";
}

.pdp-accordions p {
    max-width: 620px;
    padding: 0;
    color: #555b63;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.pdp-feature-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
}

.pdp-feature-strip article {
    min-height: 220px;
    display: grid;
    align-content: center;
    gap: 12px;
    padding: clamp(22px, 3vw, 38px);
    border-right: 1px solid #e7e7e7;
}

.pdp-feature-strip article:last-child {
    border-right: 0;
}

.feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #073bd3;
}

.feature-icon.moon { border-radius: 50%; box-shadow: inset -12px 0 0 #d9e6fb; }
.feature-icon.shield { border-radius: 50% 50% 42% 42%; }
.feature-icon.leaf { border-radius: 50% 0 50% 50%; transform: rotate(-20deg); }
.feature-icon.chat { border-radius: 50%; position: relative; }
.feature-icon.chat::after { content: ""; position: absolute; right: 2px; bottom: 1px; border: 7px solid transparent; border-left-color: #073bd3; }
.feature-icon.drop { border-radius: 50% 50% 50% 8px; transform: rotate(-45deg); }

.pdp-feature-strip h2,
.pdp-clean h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.18;
}

.pdp-feature-strip p,
.pdp-details p,
.pdp-scroll-story p,
.pdp-clean p {
    color: #555b63;
}

.pdp-details,
.pdp-clean {
    display: grid;
    grid-template-columns: .75fr 1fr;
    gap: clamp(28px, 5vw, 76px);
    width: min(1180px, calc(100vw - 40px));
    margin: 0 auto;
    padding: clamp(70px, 9vw, 120px) 0;
}

.pdp-details h2,
.pdp-scroll-story h2,
.pdp-clean h2 {
    margin: 0 0 20px;
    font-size: clamp(38px, 5vw, 74px);
    font-weight: 600;
    line-height: 1;
}

.pdp-sleep-stage {
    --open: 0;
    height: 265vh;
    background: #d9e6fb;
}

.pdp-sleep-sticky {
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 0;
    isolation: isolate;
}

.pdp-scroll-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    transform: none;
    filter: none;
}

.pdp-scroll-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    opacity: .92;
}

.scroll-diaper-fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: none;
}

.scroll-diaper-fallback span {
    position: absolute;
    background:
        repeating-linear-gradient(90deg, rgba(210,220,230,.36) 0 2px, transparent 2px 8px),
        linear-gradient(180deg, #fff, #eef5ff);
    box-shadow: inset 0 -36px 90px rgba(188,207,229,.48), 0 30px 80px rgba(49,70,95,.12);
}

.diaper-core {
    left: 24%;
    bottom: 9%;
    width: 52%;
    height: 74%;
    border-radius: 32% 32% 42% 42%;
    transform: scaleX(calc(1 + var(--open) * .2));
}

.diaper-left,
.diaper-right {
    bottom: 18%;
    width: 31%;
    height: 54%;
    border-radius: 46% 22% 32% 46%;
}

.diaper-left {
    left: 18%;
    transform: translateX(calc(var(--open) * -150px)) rotate(calc(var(--open) * -32deg));
    transform-origin: right center;
}

.diaper-right {
    right: 18%;
    transform: translateX(calc(var(--open) * 150px)) rotate(calc(var(--open) * 32deg));
    transform-origin: left center;
}

.pdp-sleep-copy {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: min(980px, calc(100vw - 40px));
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    gap: 22px;
    margin: 0 auto;
    padding: clamp(82px, 10vh, 120px) 0 clamp(54px, 8vh, 84px);
    text-align: center;
    transform: none;
    pointer-events: none;
}

.pdp-sleep-copy h2 {
    max-width: 950px;
    margin: 0;
    color: #101010;
    font-size: clamp(38px, 5.2vw, 76px);
    font-weight: 400;
    line-height: 1;
}

.pdp-sleep-copy article {
    width: min(720px, 100%);
    display: none;
}

.pdp-sleep-copy article.is-current {
    display: block;
}

.pdp-sleep-copy h3 {
    margin: 0 0 8px;
    font-size: clamp(22px, 2.4vw, 34px);
    line-height: 1.08;
}

.pdp-sleep-copy p {
    color: rgba(16,16,16,.66);
}

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

.clean-grid article {
    min-height: 230px;
    padding: 24px;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    background: #fff;
}

@media (max-width: 1040px) {
    .pdp-top,
    .pdp-details,
    .pdp-clean {
        grid-template-columns: 1fr;
    }

    .pdp-gallery {
        position: static;
        grid-template-columns: 1fr;
    }

    .pdp-thumbs {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        order: 2;
    }

    .pdp-feature-strip,
    .pdp-mini-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 680px) {
    .pdp-feature-strip,
    .pdp-mini-features,
    .clean-grid {
        grid-template-columns: 1fr;
    }

    .pdp-top {
        width: min(100% - 28px, 560px);
        padding-top: 28px;
    }

    .pdp-main-media {
        min-height: 420px;
    }

    .pdp-size-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pdp-sleep-stage {
        height: 230vh;
    }

}

/* Coterie-inspired homepage refresh */
.home-page {
    background: #fff;
    color: #101010;
}

.home-page .announcement-bar {
    min-height: 30px;
    gap: 12px;
    background: #073bd3;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
}

.home-page .site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    height: 72px;
    padding: 0 12px 0 18px;
    margin-bottom: -72px;
    background: rgba(14, 14, 14, .08);
    border-top: 1px solid rgba(255,255,255,.24);
    border-bottom: 1px solid rgba(255,255,255,.24);
    color: #fff;
    backdrop-filter: none;
    transition: background .22s ease, border-color .22s ease, color .22s ease, backdrop-filter .22s ease;
}

.home-page .site-header.is-stuck {
    background: rgba(255,255,255,.98);
    border-top-color: transparent;
    border-bottom-color: #e7e7e7;
    color: #101010;
    backdrop-filter: blur(14px);
}

.home-page .brand {
    font-size: 24px;
}

.home-page .brand-logo {
    width: 188px;
    filter: brightness(0) invert(1);
}

.home-page .site-header.is-stuck .brand-logo {
    filter: none;
}

.home-page .brand-mark {
    width: 24px;
    height: 24px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.72);
    color: #fff;
    font-size: 13px;
}

.home-page .main-nav {
    color: rgba(255,255,255,.95);
}

.home-page .main-nav a:hover,
.home-page .ghost-link:hover {
    color: #fff;
}

.home-page .site-header.is-stuck .main-nav {
    color: #444b55;
}

.home-page .site-header.is-stuck .main-nav a:hover,
.home-page .site-header.is-stuck .ghost-link:hover {
    color: #101010;
}

.home-page .header-actions {
}

.home-page .ghost-link {
    border-left: 1px solid rgba(255,255,255,.24);
    color: #fff;
}

.home-page .site-header.is-stuck .ghost-link {
    border-left-color: #e7e7e7;
    color: #444b55;
}

.home-page .site-header .button.small {
    min-width: 116px;
    min-height: 52px;
    margin-left: 12px;
    color: #fff;
    background: #073bd3;
    border-color: #073bd3;
    font-weight: 700;
}

.coterie-hero {
    position: relative;
    min-height: calc(100vh - 102px);
    overflow: hidden;
    background: #141414;
}

.hero-photo-dummy {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.12) 46%, rgba(0,0,0,.52) 100%),
        linear-gradient(90deg, rgba(0,0,0,.48), rgba(0,0,0,.12) 38%, rgba(0,0,0,.2)),
        var(--hero-image);
    background-position: center;
    background-size: cover;
}

.hero-photo-dummy::after {
    content: "";
    display: none;
    position: absolute;
    right: 26px;
    bottom: 24px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 999px;
    color: rgba(255,255,255,.72);
    background: rgba(0,0,0,.14);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.coterie-hero-content {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 102px);
    display: grid;
    align-content: center;
    justify-items: start;
    padding: 132px 20px clamp(48px, 8vh, 92px) clamp(28px, 7vw, 112px);
    color: #fff;
    text-align: left;
}

.coterie-hero-content h1 {
    width: min(620px, 48vw);
    margin: 0;
    font-size: clamp(48px, 5.6vw, 82px);
    font-weight: 600;
    line-height: .94;
    letter-spacing: 0;
}

.hero-support {
    max-width: 560px;
    margin: 20px 0 0;
    color: rgba(255,255,255,.84);
    font-size: clamp(16px, 1.45vw, 22px);
    line-height: 1.45;
}

.coterie-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-top: 28px;
    padding: 0 30px;
    border-radius: 999px;
    background: #073bd3;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.diaper-stage-section {
    padding: 82px clamp(18px, 5vw, 96px) 54px;
    background: #fff;
}

.diaper-stage-section h2 {
    margin: 0 0 66px;
    color: #111;
    text-align: center;
    font-size: clamp(34px, 4.6vw, 54px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 0;
}

.diaper-stage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 28px);
}

.diaper-stage-card {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    border-radius: 8px;
    background: #d9e6fb;
}

.stage-card-header {
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: clamp(26px, 3vw, 42px) clamp(26px, 3vw, 42px) 8px;
}

.stage-card-header h3 {
    margin: 0 0 8px;
    color: #111;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
}

.stage-card-header p {
    max-width: 330px;
    margin: 0;
    color: #444b55;
    font-size: 15px;
    line-height: 1.45;
}

.stage-card-header a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 104px;
    height: 58px;
    padding: 0 20px;
    border-radius: 999px;
    background: #073bd3;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.stage-card-header a.light {
    background: #fff;
    color: #073bd3;
}

.diaper-art {
    position: absolute;
    left: 50%;
    bottom: 34px;
    width: min(64%, 360px);
    height: 350px;
    transform: translateX(-50%);
    opacity: .92;
}

.stage-video-wrap {
    position: absolute;
    inset: 150px 0 0;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.stage-video-wrap::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 12px;
    width: 86%;
    height: 42%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(78, 114, 160, .16);
    filter: blur(28px);
}

.stage-image,
.stage-video {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 28px 36px rgba(53, 88, 129, .13));
}

.stage-image {
    opacity: 1;
    transition: opacity .28s ease, transform .28s ease;
}

.stage-video {
    opacity: 0;
    transition: opacity .28s ease, transform .28s ease;
}

.diaper-stage-card.is-playing .stage-image {
    opacity: 0;
}

.diaper-stage-card.is-playing .stage-video {
    opacity: 1;
    filter: drop-shadow(0 34px 46px rgba(53, 88, 129, .2));
}

.diaper-stage-card.has-video:hover {
    background: #d9e6fb;
}

.diaper-art::before,
.diaper-art::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.diaper-art::before {
    bottom: 0;
    width: 78%;
    height: 86%;
    border-radius: 34% 34% 44% 44%;
    background:
        repeating-linear-gradient(90deg, rgba(210,220,230,.32) 0 2px, transparent 2px 8px),
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(244,248,252,.92));
    box-shadow: inset 0 -28px 70px rgba(185,205,226,.58), 0 24px 60px rgba(82,118,158,.18);
}

.diaper-art::after {
    bottom: 46%;
    width: 88%;
    height: 38%;
    border-radius: 18px 18px 44px 44px;
    background:
        repeating-linear-gradient(90deg, rgba(210,220,230,.34) 0 2px, transparent 2px 9px),
        linear-gradient(180deg, #fff, #f1f6fb);
    box-shadow: inset 0 -16px 34px rgba(195,210,228,.45);
}

.diaper-side::before {
    width: 60%;
    height: 92%;
    border-radius: 40% 18% 24% 38%;
    transform: translateX(-50%) rotate(-4deg);
    opacity: .74;
}

.diaper-side::after {
    width: 96%;
    height: 100%;
    bottom: 0;
    border-radius: 24px;
    background: linear-gradient(90deg, rgba(255,255,255,.2), rgba(255,255,255,.92) 48%, rgba(244,248,252,.8));
    opacity: .55;
}

.diaper-pant::before {
    width: 80%;
    height: 80%;
    border-radius: 18% 18% 38% 38%;
}

.diaper-pant::after {
    bottom: 58%;
    width: 80%;
    height: 26%;
    border-radius: 22px 22px 12px 12px;
}

.dummy-label {
    position: absolute;
    left: 50%;
    bottom: 12px;
    z-index: 3;
    transform: translateX(-50%);
    color: rgba(16,16,16,.28);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.auto-renew-section {
    display: grid;
    grid-template-columns: minmax(0, .98fr) minmax(360px, .58fr);
    min-height: 680px;
    background: #f7f9fc;
}

.auto-renew-media {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 34% 42%, rgba(255,255,255,.9) 0 18%, transparent 38%),
        linear-gradient(135deg, #cfe0f7, #ffffff 42%, #dce9fb);
}

.image-fill img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.auto-renew-media:not(.image-fill)::after,
.soft-image-dummy:not(.image-fill)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 11%;
    width: 320px;
    height: 360px;
    transform: translateX(-50%);
    border-radius: 18px;
    background: linear-gradient(180deg, #fff, #eef5ff);
    box-shadow: inset 0 -30px 70px rgba(188,207,229,.56), 0 26px 60px rgba(49,70,95,.12);
}

.auto-renew-media:not(.image-fill) span,
.soft-image-dummy:not(.image-fill) span {
    position: absolute;
    right: 24px;
    bottom: 22px;
    z-index: 3;
    color: rgba(16,16,16,.42);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.auto-renew-copy {
    display: grid;
    align-content: center;
    padding: clamp(36px, 5vw, 78px);
}

.auto-renew-copy p,
.white-editorial-section p,
.review-section > p {
    margin: 0 0 12px;
    color: #073bd3;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.auto-renew-copy h2,
.white-editorial-section h2,
.blue-feature-strip h2,
.review-section h2 {
    margin: 0;
    color: #111;
    font-size: clamp(38px, 5vw, 76px);
    font-weight: 500;
    line-height: .98;
    letter-spacing: 0;
}

.auto-renew-copy ul {
    display: grid;
    gap: 18px;
    padding: 0;
    margin: 30px 0;
    list-style: none;
}

.auto-renew-copy li {
    padding-bottom: 16px;
    border-bottom: 1px solid #e1e7f0;
    color: #444b55;
    font-size: 16px;
}

.auto-renew-copy .button {
    width: max-content;
    background: #073bd3;
}

.white-editorial-section {
    display: grid;
    grid-template-columns: .78fr 1fr;
    gap: clamp(28px, 5vw, 76px);
    align-items: center;
    padding: clamp(70px, 9vw, 124px) clamp(18px, 5vw, 96px);
    background: #fff;
}

.editorial-copy a {
    display: inline-flex;
    margin-top: 26px;
    color: #111;
    border-bottom: 1px solid currentColor;
    font-weight: 700;
}

.editorial-copy span {
    display: block;
    max-width: 620px;
    margin-top: 22px;
    color: #555b63;
    font-size: 17px;
    line-height: 1.7;
}

.editorial-media-grid {
    display: grid;
    grid-template-columns: 1fr .72fr;
    gap: 18px;
    align-items: end;
}

.soft-image-dummy {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #cfe0f7;
}

.soft-image-dummy.large {
    min-height: 560px;
}

.soft-image-dummy.small {
    min-height: 390px;
    background: #eef4fd;
}

.blue-feature-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background: #073bd3;
}

.blue-feature-strip article {
    min-height: 390px;
    display: grid;
    align-content: end;
    padding: clamp(34px, 6vw, 86px);
    color: #fff;
}

.blue-feature-strip article + article {
    border-left: 1px solid rgba(255,255,255,.24);
    background: #101010;
}

.blue-feature-strip h2 {
    color: #fff;
    max-width: 620px;
}

.blue-feature-strip p {
    max-width: 560px;
    color: rgba(255,255,255,.78);
    font-size: 17px;
}

.review-section {
    padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 96px);
    text-align: center;
    background: #fff;
}

.review-section h2 {
    max-width: 900px;
    margin-inline: auto;
}

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

.review-grid blockquote {
    margin: 0;
    padding: 30px;
    border-radius: 8px;
    background: #f7f9fc;
    color: #111;
    font-size: 20px;
    line-height: 1.45;
    text-align: left;
}

@media (max-width: 1040px) {
    .site-header {
        height: auto;
        min-height: 72px;
        padding: 14px 18px;
    }

    .main-nav {
        position: static;
        order: 3;
        width: 100%;
        transform: none;
        gap: 18px;
    }

    .diaper-stage-grid,
    .auto-renew-section,
    .white-editorial-section,
    .blue-feature-strip,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        position: static;
    }

    .contact-note-grid {
        grid-template-columns: 1fr;
    }

    .diaper-stage-card {
        min-height: 620px;
    }

    .stage-video-wrap {
        inset: 150px 0 0;
    }

    .editorial-media-grid {
        grid-template-columns: 1fr;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .home-page .announcement-bar {
        min-height: 42px;
        padding-inline: 12px;
        font-size: 12px;
    }

    .home-page .site-header {
        top: 0;
    }

    .home-page .brand {
        min-width: auto;
        font-size: 20px;
    }

    .home-page .ghost-link {
        height: auto;
        padding: 0 12px;
        border-left: 0;
    }

    .home-page .site-header .button.small {
        min-width: auto;
        min-height: 42px;
    }

    .coterie-hero,
    .coterie-hero-content {
        min-height: calc(100vh - 114px);
    }

    .coterie-hero-content {
        align-content: end;
        justify-items: center;
        padding: 120px 20px 54px;
        text-align: center;
    }

    .coterie-hero-content h1 {
        width: min(100%, 620px);
        font-size: clamp(40px, 13vw, 66px);
    }

    .hero-support {
        max-width: 620px;
    }

    .diaper-stage-section {
        padding: 56px 16px 34px;
    }

    .diaper-stage-section h2 {
        margin-bottom: 34px;
    }

    .stage-card-header {
        flex-direction: column;
    }

    .stage-card-header a {
        width: max-content;
    }

    .diaper-art {
        width: 78%;
        height: 300px;
    }

    .diaper-stage-card {
        min-height: 560px;
    }

    .stage-video-wrap {
        inset: 190px 0 0;
    }

    .auto-renew-copy,
    .white-editorial-section,
    .blue-feature-strip article,
    .review-section {
        padding-inline: 20px;
    }
}

/* Shared inner-page brand system */
.inner-page {
    background: #fff;
    color: #101010;
}

.inner-page .announcement-bar {
    min-height: 30px;
    background: #073bd3;
    color: #fff;
    font-size: 13px;
}

.inner-page .site-header {
    background: rgba(255,255,255,.96);
}

.inner-page .main-nav {
    color: #555b63;
}

.inner-page .ghost-link {
    color: #555b63;
}

.inner-page .site-header .button.small {
    color: #fff;
    background: #073bd3;
    border-color: #073bd3;
}

.inner-page .page-hero,
.inner-page .dashboard-hero {
    width: min(1180px, calc(100vw - 40px));
    padding: clamp(64px, 8vw, 108px) 0 clamp(32px, 5vw, 54px);
}

.inner-page .page-hero h1,
.inner-page .dashboard-hero h1,
.inner-page .login-card h1,
.inner-page .section h2,
.inner-page .final-cta h2,
.inner-page .panel-card h2 {
    font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
    color: #101010;
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: 0;
}

.inner-page .page-hero h1,
.inner-page .dashboard-hero h1 {
    font-size: clamp(44px, 6vw, 78px);
}

.inner-page .login-card h1 {
    font-size: clamp(38px, 5vw, 58px);
}

.inner-page .eyebrow {
    color: #073bd3;
}

.inner-page .page-hero p,
.inner-page .lead,
.inner-page .muted,
.inner-page .note {
    color: #555b63;
}

.inner-page .login-page {
    min-height: calc(100vh - 212px);
    padding: clamp(54px, 8vw, 92px) 20px;
    background:
        radial-gradient(circle at 20% 18%, rgba(207,224,247,.72), transparent 28%),
        linear-gradient(180deg, #fff, #f7f9fc);
}

.inner-page .login-page {
    width: 100%;
    min-height: calc(100vh - 106px);
    padding: 0;
    background: #fff;
}

.inner-page .login-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.inner-page .form-card,
.inner-page .panel-card,
.inner-page .summary-panel,
.inner-page .product-card,
.inner-page .text-panel,
.inner-page .empty-state,
.inner-page .admin-stats article {
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 60px rgba(16, 16, 16, .06);
}

.inner-page input,
.inner-page select,
.inner-page textarea {
    border-color: #e7e7e7;
    color: #101010;
    background: #fff;
}

.inner-page input:focus,
.inner-page select:focus,
.inner-page textarea:focus {
    border-color: #073bd3;
    box-shadow: 0 0 0 4px rgba(7, 59, 211, .12);
}

.inner-page .button,
.inner-page .icon-button {
    font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
}

.inner-page .button:not(.secondary),
.inner-page .form-card .button {
    background: #073bd3;
    color: #fff;
}

.inner-page .button.secondary,
.inner-page .icon-button {
    color: #101010;
    background: #fff;
    border-color: #e7e7e7;
}

.inner-page .site-footer {
    background: #fff;
    border-top: 1px solid #e7e7e7;
}

.inner-page .site-footer strong {
    font-weight: 700;
}

.inner-page .footer-links,
.inner-page .site-footer p {
    color: #555b63;
}

.inner-page .quote-grid blockquote {
    font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
    background: #f7f9fc;
}

.inner-page .steps span,
.inner-page .timeline span {
    background: #073bd3;
}

.inner-page .feature-list li::before {
    background: #073bd3;
}

@media (max-width: 640px) {
    .inner-page .brand-logo {
        width: 150px;
    }

    .inner-page .page-hero h1,
    .inner-page .dashboard-hero h1,
    .inner-page .login-card h1 {
        font-size: 38px;
    }
}

/* Mobile production polish */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 1040px) {
    .site-header,
    .home-page .site-header,
    .inner-page .site-header {
        position: sticky;
        top: 0;
        height: auto;
        min-height: 66px;
        padding: 10px 16px;
        flex-wrap: wrap;
        gap: 10px;
        background: rgba(255,255,255,.98);
        color: #101010;
    }

    .home-page .site-header:not(.is-stuck) .brand-logo,
    .home-page .site-header:not(.is-stuck) .main-nav,
    .home-page .site-header:not(.is-stuck) .ghost-link {
        color: #101010;
    }

    .brand {
        min-width: auto;
    }

    .brand-logo {
        width: 156px;
    }

    .main-nav,
    .home-page .main-nav,
    .inner-page .main-nav {
        position: static;
        order: 3;
        width: 100%;
        transform: none;
        justify-content: flex-start;
        gap: 18px;
        overflow-x: auto;
        padding: 4px 0 2px;
        color: #555b63;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .main-nav::-webkit-scrollbar {
        display: none;
    }

    .header-actions {
        margin-left: auto;
        gap: 8px;
    }

    .ghost-link,
    .site-header .button.small {
        white-space: nowrap;
    }
}

@media (max-width: 760px) {
    .announcement-bar,
    .home-page .announcement-bar,
    .inner-page .announcement-bar {
        min-height: auto;
        padding: 7px 10px;
        font-size: 11px;
        line-height: 1.35;
        text-align: center;
    }

    .site-header,
    .home-page .site-header,
    .inner-page .site-header {
        padding: 10px 14px;
    }

    .brand-logo,
    .inner-page .brand-logo {
        width: 138px;
    }

    .main-nav,
    .home-page .main-nav,
    .inner-page .main-nav {
        gap: 16px;
        font-size: 12px;
    }

    .header-actions {
        width: auto;
        justify-content: flex-end;
    }

    .header-actions .button.small,
    .home-page .site-header .button.small,
    .inner-page .site-header .button.small {
        min-height: 40px;
        padding: 9px 13px;
        font-size: 12px;
    }

    .ghost-link {
        padding: 0 8px;
        border-left: 0;
        font-size: 12px;
    }

    .coterie-hero,
    .coterie-hero-content {
        min-height: 620px;
    }

    .hero-photo-dummy {
        background-position: center;
    }

    .coterie-hero-content {
        align-content: end;
        justify-items: flex-start;
        padding: 120px 20px 44px;
        text-align: left;
        background: linear-gradient(90deg, rgba(16,16,16,.52) 0%, rgba(16,16,16,.28) 48%, rgba(16,16,16,.06) 100%);
    }

    .coterie-hero-content h1 {
        width: min(100%, 390px);
        font-size: 42px;
        line-height: 1;
    }

    .hero-support {
        max-width: 360px;
        font-size: 14px;
        line-height: 1.45;
    }

    .coterie-hero-button {
        min-width: 172px;
        min-height: 46px;
    }

    .diaper-stage-section {
        padding: 44px 14px 26px;
    }

    .diaper-stage-section h2,
    .auto-renew-copy h2,
    .white-editorial-section h2,
    .review-section h2 {
        font-size: 34px;
        line-height: 1.06;
    }

    .diaper-stage-grid {
        gap: 14px;
    }

    .diaper-stage-card {
        min-height: 500px;
        padding: 22px;
        border-radius: 8px;
    }

    .stage-card-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
    }

    .stage-card-header h3 {
        font-size: 26px;
        line-height: 1.05;
    }

    .stage-card-header p {
        font-size: 13px;
        line-height: 1.45;
    }

    .stage-card-header a {
        flex: 0 0 auto;
        width: auto;
        min-width: 88px;
        height: 40px;
        padding: 0 16px;
        font-size: 12px;
    }

    .stage-video-wrap {
        inset: 146px 0 0;
    }

    .stage-image,
    .stage-video,
    .auto-renew-media img,
    .soft-image-dummy img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .auto-renew-section {
        min-height: auto;
    }

    .auto-renew-media {
        min-height: 360px;
    }

    .auto-renew-copy,
    .white-editorial-section,
    .blue-feature-strip article,
    .review-section {
        padding: 38px 20px;
    }

    .editorial-media-grid {
        gap: 14px;
    }

    .soft-image-dummy.large {
        min-height: 360px;
    }

    .soft-image-dummy.small {
        min-height: 260px;
    }

    .pdp-top {
        width: calc(100vw - 28px);
        gap: 24px;
        padding: 24px 0 48px;
    }

    .pdp-gallery {
        gap: 12px;
    }

    .pdp-thumbs {
        display: flex;
        grid-template-columns: none;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .pdp-thumbs::-webkit-scrollbar {
        display: none;
    }

    .pdp-thumbs button {
        flex: 0 0 62px;
        height: 62px;
    }

    .pdp-main-media {
        min-height: 420px;
        aspect-ratio: 1 / 1;
    }

    .pdp-media-panel video,
    .pdp-media-panel img {
        object-fit: cover;
    }

    .pdp-purchase {
        padding: 0;
    }

    .pdp-purchase h1,
    .pdp-sleep-copy h2 {
        font-size: 42px;
        line-height: 1.02;
    }

    .pdp-summary {
        font-size: 16px;
    }

    .pdp-size-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pdp-mini-features {
        gap: 12px;
    }

    .pdp-mini-features article {
        min-height: auto;
        padding: 18px;
    }

    .pdp-sleep-stage {
        height: 220vh;
    }

    .pdp-sleep-sticky {
        min-height: 100svh;
    }

    .pdp-scroll-video-wrap {
        inset: 0;
    }

    .pdp-sleep-copy {
        align-content: center;
        padding: 76px 18px 54px;
    }

    .pdp-sleep-copy article {
        width: min(100%, 380px);
    }

    .login-page,
    .inner-page .login-page,
    .admin-login-shell {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .login-visual {
        min-height: 300px;
        background-position: center;
    }

    .login-panel,
    .admin-login-panel {
        min-height: auto;
        padding: 42px 20px 58px;
    }

    .login-card h1,
    .inner-page .login-card h1,
    .admin-login-card h1 {
        font-size: 34px;
        line-height: 1.02;
        text-align: left;
    }

    .login-card > p,
    .admin-login-card > p {
        max-width: none;
        margin-left: 0;
        text-align: left;
    }

    .admin-login-art {
        display: none;
    }

    .admin-language-switch {
        top: 18px;
        right: 18px;
    }

    .dashboard-hero,
    .inner-page .dashboard-hero,
    .account-hero,
    .admin-hero {
        width: calc(100vw - 32px);
        padding: 44px 0 24px;
        display: block;
    }

    .dashboard-hero h1,
    .inner-page .dashboard-hero h1,
    .account-hero h1,
    .admin-hero h1 {
        font-size: 36px;
        line-height: 1.05;
    }

    .dashboard-grid,
    .account-dashboard {
        width: calc(100vw - 32px);
        grid-template-columns: 1fr;
        gap: 14px;
        padding-bottom: 56px;
    }

    .account-overview,
    .admin-stats {
        width: calc(100vw - 32px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .account-overview article,
    .admin-stats article {
        min-height: auto;
        padding: 16px;
    }

    .account-menu,
    .panel-menu {
        position: static;
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .account-menu::-webkit-scrollbar,
    .panel-menu::-webkit-scrollbar {
        display: none;
    }

    .account-menu a,
    .panel-menu a {
        flex: 0 0 auto;
        font-size: 13px;
    }

    .account-card,
    .panel-card,
    .admin-table-wrap {
        padding: 18px;
        border-radius: 8px;
    }

    .account-card .panel-head,
    .admin-table-wrap .panel-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .account-form-grid,
    .account-form-grid.single,
    .admin-setting-grid {
        grid-template-columns: 1fr;
    }

    .account-action-row {
        grid-template-columns: 1fr;
    }

    .account-action-row .button,
    .account-action-row .danger-button,
    .account-form-grid .button,
    .account-form-grid .danger-button {
        width: 100%;
    }

    .account-orders article {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .admin-table-wrap {
        overflow-x: auto;
    }

    .admin-table {
        min-width: 780px;
    }

    .admin-hero-preview {
        min-height: 220px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-newsletter {
        border-right: 0;
        border-bottom: 1px solid #e7e7e7;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
}

/* Rebuilt product diaper scroll story */
.diaper-scroll-story {
    --story-progress: 0;
    position: relative;
    height: 300vh;
    margin: 0;
    background: #d9e6fb;
}

.diaper-scroll-pin {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    overflow: hidden;
    background: #d9e6fb;
    isolation: isolate;
}

.diaper-scroll-story.is-pinned .diaper-scroll-pin {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.diaper-scroll-story.is-after .diaper-scroll-pin {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
}

.diaper-scroll-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    opacity: .94;
}

.diaper-scroll-copy {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: min(980px, calc(100vw - 40px));
    margin: 0 auto;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 18px;
    padding: clamp(76px, 10vh, 118px) 0 clamp(52px, 8vh, 84px);
    text-align: center;
    pointer-events: none;
}

.diaper-scroll-copy h2 {
    max-width: 900px;
    margin: 0;
    color: #101010;
    font-size: clamp(38px, 5.1vw, 76px);
    font-weight: 400;
    line-height: 1;
}

.diaper-scroll-copy article {
    width: min(720px, 100%);
    display: none;
}

.diaper-scroll-copy article.is-current {
    display: block;
}

.diaper-scroll-copy h3 {
    margin: 0 0 8px;
    color: #101010;
    font-size: clamp(22px, 2.4vw, 34px);
    line-height: 1.08;
}

.diaper-scroll-copy p {
    margin: 0;
    color: rgba(16,16,16,.66);
    font-size: clamp(14px, 1.25vw, 18px);
}

@media (max-width: 760px) {
    .diaper-scroll-story {
        height: 260vh;
    }

    .diaper-scroll-pin {
        height: 100svh;
    }

    .diaper-scroll-copy {
        width: min(100% - 32px, 520px);
        padding: 74px 0 44px;
        gap: 14px;
    }

    .diaper-scroll-copy h2 {
        font-size: clamp(32px, 10vw, 44px);
        line-height: 1.03;
    }
}

@media (max-width: 520px) {
    .header-actions {
        gap: 6px;
    }

    .ghost-link {
        display: none;
    }

    .coterie-hero,
    .coterie-hero-content {
        min-height: 560px;
    }

    .coterie-hero-content h1 {
        font-size: 36px;
    }

    .diaper-stage-card {
        min-height: 460px;
        padding: 18px;
    }

    .stage-card-header {
        flex-direction: column;
    }

    .stage-video-wrap {
        inset: 176px 0 0;
    }

    .pdp-main-media {
        min-height: 340px;
    }

    .pdp-purchase h1,
    .pdp-sleep-copy h2 {
        font-size: 34px;
    }

    .pdp-feature-strip,
    .pdp-mini-features,
    .pdp-size-grid,
    .account-overview,
    .admin-stats {
        grid-template-columns: 1fr;
    }

    .login-visual {
        min-height: 240px;
    }

    .login-panel,
    .admin-login-panel {
        padding: 34px 18px 50px;
    }

    .dashboard-hero h1,
    .inner-page .dashboard-hero h1,
    .account-hero h1,
    .admin-hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 760px) {
    .home-page .site-header,
    .home-page .site-header.is-stuck {
        margin-bottom: 0;
        background: rgba(255,255,255,.98);
        border-top: 0;
        border-bottom: 1px solid #e7e7e7;
        color: #101010;
        backdrop-filter: blur(14px);
    }

    .home-page .brand-logo,
    .home-page .site-header.is-stuck .brand-logo {
        filter: none;
    }

    .home-page .main-nav,
    .home-page .site-header.is-stuck .main-nav {
        color: #444b55;
    }

    .home-page .ghost-link,
    .home-page .site-header.is-stuck .ghost-link {
        border-left: 0;
        color: #444b55;
    }

    .home-page .main-nav a:hover,
    .home-page .ghost-link:hover {
        color: #101010;
    }

    .site-header,
    .home-page .site-header,
    .inner-page .site-header {
        min-height: 68px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
    }

    .brand {
        min-width: 0;
        overflow: hidden;
    }

    .brand-logo,
    .inner-page .brand-logo,
    .home-page .brand-logo {
        width: 154px;
        max-width: 52vw;
    }

    .main-nav,
    .home-page .main-nav,
    .inner-page .main-nav {
        display: none;
    }

    .header-actions {
        width: auto;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        margin-left: 0;
    }

    .desktop-logout,
    .desktop-subscribe,
    .header-actions .ghost-link {
        display: none;
    }

    .header-icon-link,
    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
        margin-left: 0;
        border-color: #e7e7e7;
        color: #101010;
        background: #fff;
        box-shadow: 0 8px 22px rgba(16,16,16,.06);
    }

    .mobile-menu-toggle {
        display: inline-grid;
    }
}

@media (min-width: 761px) {
    .mobile-offcanvas,
    .mobile-menu-backdrop,
    .mobile-menu-toggle {
        display: none;
    }
}

@media (max-width: 760px) {
    .site-header,
    .home-page .site-header,
    .inner-page .site-header {
        display: flex;
        flex-wrap: wrap;
        min-height: 68px;
    }

    .main-nav,
    .home-page .main-nav,
    .inner-page .main-nav {
        display: flex;
        order: 3;
        width: 100%;
        justify-content: flex-start;
        gap: 16px;
        overflow-x: auto;
        padding: 3px 0 2px;
        white-space: nowrap;
    }

    .header-actions {
        width: auto;
        display: flex;
        margin-left: auto;
    }

    .header-actions .ghost-link,
    .ghost-link {
        display: inline-flex;
    }

    .mobile-menu-toggle,
    .mobile-offcanvas,
    .mobile-menu-backdrop {
        display: none;
    }
}

/* Product scroll video scene - final authoritative rules */
.pdp-sleep-stage {
    --open: 0;
    height: 265vh;
    background: #d9e6fb;
}

.pdp-sleep-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: 100vh;
    display: block;
    overflow: hidden;
    padding: 0;
    isolation: isolate;
}

.pdp-scroll-video-wrap,
.pdp-scroll-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.pdp-scroll-video-wrap {
    z-index: 0;
    overflow: hidden;
}

.pdp-scroll-video {
    z-index: 0;
    display: block;
    object-fit: cover;
    object-position: center;
    opacity: .94;
}

.scroll-diaper-fallback {
    display: none;
}

.pdp-sleep-copy {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: min(980px, calc(100vw - 40px));
    margin: 0 auto;
    min-height: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 18px;
    padding: clamp(76px, 10vh, 118px) 0 clamp(52px, 8vh, 84px);
    text-align: center;
    pointer-events: none;
}

.pdp-sleep-copy h2 {
    max-width: 900px;
    margin: 0;
    color: #101010;
    font-size: clamp(38px, 5.1vw, 76px);
    font-weight: 400;
    line-height: 1;
}

.pdp-sleep-copy article {
    width: min(720px, 100%);
    display: none;
}

.pdp-sleep-copy article.is-current {
    display: block;
}

@media (max-width: 760px) {
    .pdp-sleep-stage {
        height: 235vh;
    }

    .pdp-sleep-sticky {
        height: 100svh;
        min-height: 100svh;
    }

    .pdp-sleep-copy {
        width: min(100% - 32px, 520px);
        padding: 74px 0 44px;
        gap: 14px;
    }

    .pdp-sleep-copy h2 {
        font-size: clamp(32px, 10vw, 44px);
        line-height: 1.03;
    }
}
