:root {
    --signature-ink: #fffaf5;
    --signature-muted: rgba(255, 250, 245, 0.76);
    --signature-line: rgba(255, 250, 245, 0.16);
    --signature-panel: #302820;
    --signature-panel-deep: #171310;
    --signature-copper: #b99168;
    --signature-copper-light: #dfc09d;
    --signature-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-padding-top: 153px;
}

body {
    background:
        radial-gradient(circle at 14% 8%, rgba(255, 255, 255, 0.96), transparent 34%),
        linear-gradient(180deg, #fbf8f4 0%, #f3ece5 100%);
}

button,
a {
    font: inherit;
}

.showcase-header {
    background: rgba(251, 248, 244, 0.9);
}

.showcase-header .desktop-nav a {
    letter-spacing: 0.045em;
    text-transform: none;
}

.signature-wrap {
    max-width: 1320px;
    padding-top: clamp(12px, 2.2vh, 28px);
    padding-bottom: clamp(18px, 3.4vh, 42px);
}

.signature-panel {
    position: relative;
    display: grid;
    height: min(780px, calc(100svh - 118px));
    min-height: 600px;
    grid-template-columns: minmax(330px, 0.83fr) minmax(520px, 1.17fr);
    grid-template-rows: minmax(0, 1fr) auto 92px;
    grid-template-areas:
        "copy stage"
        "actions stage"
        "progress progress";
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(28px, 3vw, 40px);
    background:
        radial-gradient(circle at 78% 28%, rgba(208, 169, 126, 0.22), transparent 31%),
        radial-gradient(circle at 55% 100%, rgba(145, 105, 70, 0.18), transparent 40%),
        linear-gradient(135deg, var(--signature-panel-deep) 0%, var(--signature-panel) 55%, #4a3c30 100%);
    box-shadow: 0 48px 110px -44px rgba(40, 31, 24, 0.68);
    isolation: isolate;
}

.signature-light {
    position: absolute;
    z-index: -1;
    top: -24%;
    right: 4%;
    width: 58%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(245, 219, 188, 0.11);
    filter: blur(92px);
    pointer-events: none;
}

.signature-copy {
    z-index: 4;
    grid-area: copy;
    align-self: end;
    padding: clamp(34px, 4vw, 58px) 20px 16px clamp(34px, 5vw, 66px);
}

.signature-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: clamp(18px, 2.6vh, 30px);
    color: var(--signature-ink);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.signature-brand img {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 11px;
}

.signature-kicker {
    margin: 0;
    color: var(--signature-copper-light);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.5;
    text-transform: uppercase;
}

.signature-copy h1 {
    max-width: 560px;
    margin: 12px 0 0;
    color: var(--signature-ink);
    font-size: clamp(2.7rem, 4.4vw, 4.7rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 0.96;
    text-wrap: balance;
}

.signature-copy h1 span {
    display: block;
    margin-top: 8px;
    font-size: 0.7em;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.signature-lead {
    max-width: 510px;
    margin: clamp(16px, 2.3vh, 24px) 0 0;
    color: var(--signature-muted);
    font-size: clamp(0.95rem, 1.2vw, 1.06rem);
    line-height: 1.62;
}

.signature-facts {
    display: grid;
    gap: 10px;
    max-width: 520px;
    margin: clamp(16px, 2.2vh, 22px) 0 0;
    padding: 0;
    list-style: none;
}

.signature-facts li {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    color: rgba(255, 250, 245, 0.88);
}

.signature-facts i {
    display: inline-grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    color: var(--signature-copper-light);
}

.signature-facts strong,
.signature-facts small {
    display: block;
}

.signature-facts strong {
    font-size: 0.9rem;
    line-height: 1.35;
}

.signature-facts small {
    margin-top: 2px;
    color: rgba(255, 250, 245, 0.7);
    font-size: 0.875rem;
    line-height: 1.4;
}

.signature-actions {
    z-index: 5;
    grid-area: actions;
    display: flex;
    flex-wrap: wrap;
    align-self: start;
    align-items: center;
    gap: 12px;
    padding: 6px 20px clamp(26px, 3.6vh, 44px) clamp(34px, 5vw, 66px);
}

.signature-cta-note {
    flex-basis: 100%;
    margin: -2px 0 0;
    color: rgba(255, 250, 245, 0.64);
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.02em;
    line-height: 1.45;
}

.signature-cta {
    display: inline-flex;
    width: fit-content;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0 22px;
    border: 1px solid var(--signature-ink);
    border-radius: 16px;
    background: var(--signature-ink);
    color: #332920;
    font-weight: 700;
    text-decoration: none;
    transition: transform 220ms var(--signature-ease), background 220ms ease, box-shadow 220ms ease;
}

.signature-cta:hover {
    background: #fff;
    box-shadow: 0 18px 34px -20px rgba(0, 0, 0, 0.72);
    color: #211b16;
    transform: translateY(-2px);
}

.signature-cta:active {
    transform: translateY(0) scale(0.985);
}

.signature-cta-secondary {
    display: inline-flex;
    width: fit-content;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 18px;
    border: 1px solid rgba(255, 250, 245, 0.24);
    border-radius: 16px;
    color: rgba(255, 250, 245, 0.82);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 220ms ease, background 220ms ease, color 220ms ease, transform 220ms var(--signature-ease);
}

.signature-cta-secondary:hover {
    border-color: rgba(255, 250, 245, 0.48);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    transform: translateY(-2px);
}

.signature-cta-secondary:active {
    transform: translateY(0) scale(0.985);
}

.signature-cta:focus-visible,
.signature-cta-secondary:focus-visible,
.progress-step:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.product-stage {
    position: relative;
    z-index: 2;
    grid-area: stage;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    perspective: 1500px;
}

.product-screen {
    --screen-x: -50%;
    --screen-y: -50%;
    --screen-scale: 0.78;
    --screen-rotate: 0deg;
    position: absolute;
    top: 51%;
    left: 52%;
    z-index: 1;
    width: clamp(205px, 18vw, 262px);
    aspect-ratio: 1344 / 2992;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: clamp(22px, 2vw, 30px);
    background: #f8f7f5;
    box-shadow: 0 22px 58px -24px rgba(0, 0, 0, 0.75);
    opacity: 0.46;
    filter: saturate(0.68) brightness(0.72);
    transform: translate3d(var(--screen-x), var(--screen-y), 0) rotate(var(--screen-rotate)) scale(var(--screen-scale));
    transform-origin: center bottom;
    transition: transform 560ms var(--signature-ease), opacity 380ms ease, filter 380ms ease, box-shadow 380ms ease;
    will-change: transform;
}

.product-screen img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.product-screen.is-active {
    --screen-x: -50%;
    --screen-y: -50%;
    --screen-scale: 1;
    z-index: 3;
    opacity: 1;
    filter: none;
    box-shadow: 0 48px 88px -34px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.product-screen.is-left {
    --screen-x: -118%;
    --screen-y: -47%;
    --screen-scale: 0.77;
    --screen-rotate: -3deg;
    z-index: 1;
}

.product-screen.is-right {
    --screen-x: 15%;
    --screen-y: -46%;
    --screen-scale: 0.79;
    --screen-rotate: 3deg;
    z-index: 2;
}

.state-overlay {
    position: absolute;
    z-index: 5;
    top: 12%;
    right: 4%;
    display: flex;
    width: min(220px, 31%);
    min-width: 190px;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 15px;
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 14px;
    background: rgba(55, 46, 38, 0.68);
    box-shadow: 0 20px 40px -24px rgba(0, 0, 0, 0.76);
    color: var(--signature-ink);
    backdrop-filter: blur(18px) saturate(1.08);
    -webkit-backdrop-filter: blur(18px) saturate(1.08);
    transition: opacity 180ms ease, transform 180ms var(--signature-ease);
}

.state-overlay.is-changing {
    opacity: 0.35;
    transform: translateY(4px);
}

.state-overlay > i {
    margin-top: 3px;
    color: var(--signature-copper-light);
    font-size: 0.95rem;
}

.state-overlay span,
.state-overlay strong,
.state-overlay small {
    display: block;
}

.state-overlay span {
    color: rgba(255, 250, 245, 0.74);
    font-size: 0.75rem;
    font-weight: 600;
}

.state-overlay strong {
    margin-top: 2px;
    color: #fff;
    font-size: 0.9rem;
}

.state-overlay small {
    margin-top: 2px;
    color: rgba(255, 250, 245, 0.7);
    font-size: 0.75rem;
}

.signature-progress {
    position: relative;
    z-index: 6;
    grid-area: progress;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 16px clamp(34px, 5vw, 66px) 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(19, 16, 13, 0.32);
}

.progress-track {
    position: absolute;
    top: 0;
    right: clamp(34px, 5vw, 66px);
    left: clamp(34px, 5vw, 66px);
    height: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.14);
}

.progress-track span {
    display: block;
    width: 33.333%;
    height: 100%;
    background: var(--signature-copper-light);
    transform: translateX(calc(var(--active-step, 0) * 100%));
    transition: transform 480ms var(--signature-ease);
}

.progress-step {
    display: grid;
    min-width: 0;
    min-height: 58px;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    padding: 7px 9px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    color: rgba(255, 250, 245, 0.7);
    cursor: pointer;
    text-align: left;
    transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms var(--signature-ease);
}

.progress-step:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: var(--signature-ink);
}

.progress-step:active {
    transform: scale(0.985);
}

.progress-step.is-active {
    border-color: rgba(223, 192, 157, 0.32);
    background: rgba(223, 192, 157, 0.09);
    color: var(--signature-ink);
}

.progress-number {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: inherit;
    font-size: 0.8rem;
    font-weight: 800;
}

.progress-step.is-active .progress-number {
    border-color: var(--signature-copper-light);
    background: var(--signature-copper-light);
    color: #2e251e;
}

.progress-copy {
    min-width: 0;
}

.progress-copy strong,
.progress-copy small {
    display: block;
}

.progress-copy strong {
    font-size: 0.9rem;
    line-height: 1.25;
}

.progress-copy small {
    margin-top: 3px;
    color: rgba(255, 250, 245, 0.7);
    font-size: 0.875rem;
    line-height: 1.3;
}

.showcase-footer {
    padding: 18px 0 30px;
    color: var(--text-soft);
    font-size: 0.8rem;
}

.showcase-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.showcase-footer nav {
    display: flex;
    gap: 18px;
}

.showcase-footer a {
    color: inherit;
    text-decoration: none;
}

.showcase-footer a:hover {
    color: var(--primary-color);
}

@media (min-width: 1051px) and (max-height: 760px) {
    .signature-wrap {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .signature-panel {
        height: calc(100svh - 112px);
        min-height: 590px;
        grid-template-rows: minmax(0, 1fr) auto 82px;
    }

    .signature-copy {
        padding-top: 26px;
        padding-bottom: 10px;
    }

    .signature-brand {
        margin-bottom: 14px;
    }

    .signature-copy h1 {
        font-size: clamp(2.5rem, 4vw, 4rem);
    }

    .signature-lead {
        margin-top: 14px;
        line-height: 1.5;
    }

    .signature-facts {
        gap: 7px;
        margin-top: 12px;
    }

    .signature-facts i {
        width: 32px;
        height: 32px;
    }

    .signature-facts li {
        grid-template-columns: 32px minmax(0, 1fr);
    }

    .signature-facts small {
        display: none;
    }

    .signature-actions {
        padding-bottom: 20px;
    }

    .signature-cta-note {
        font-size: 0.68rem;
    }

    .signature-cta {
        min-height: 48px;
    }

    .signature-progress {
        padding-top: 11px;
        padding-bottom: 11px;
    }

    .progress-step {
        min-height: 56px;
    }
}

@media (max-width: 1050px) {
    .signature-wrap {
        max-width: 860px;
        padding-top: 20px;
        padding-bottom: 42px;
    }

    .signature-panel {
        height: auto;
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto 390px auto;
        grid-template-areas:
            "copy"
            "actions"
            "stage"
            "progress";
    }

    .signature-copy {
        align-self: auto;
        padding: 34px 42px 18px;
    }

    .signature-copy h1 {
        max-width: 680px;
        font-size: clamp(2.8rem, 7vw, 4.2rem);
    }

    .signature-lead,
    .signature-facts {
        max-width: 680px;
    }

    .signature-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

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

    .product-screen {
        top: 52%;
        left: 50%;
        width: clamp(205px, 32vw, 250px);
    }

    .product-screen.is-left {
        --screen-x: -121%;
    }

    .product-screen.is-right {
        --screen-x: 21%;
    }

    .state-overlay {
        top: 10%;
        right: 10%;
        width: 210px;
    }

    .signature-progress {
        padding: 12px 38px 14px;
    }

    .progress-track {
        right: 38px;
        left: 38px;
    }

    .signature-actions {
        justify-self: stretch;
        padding: 22px 42px 40px;
    }
}

@media (max-width: 720px) {
    html {
        scroll-padding-top: 82px;
    }

    .signature-wrap {
        padding: 12px 10px 32px;
    }

    .signature-panel {
        grid-template-rows: auto auto 320px auto;
        grid-template-areas:
            "copy"
            "actions"
            "stage"
            "progress";
        border-radius: 24px;
    }

    .signature-copy {
        padding: 26px 24px 14px;
    }

    .signature-brand {
        margin-bottom: 16px;
        font-size: 0.72rem;
    }

    .signature-brand img {
        width: 34px;
        height: 34px;
    }

    .signature-kicker {
        font-size: 0.7rem;
    }

    .signature-copy h1 {
        margin-top: 8px;
        font-size: clamp(2.45rem, 12vw, 3.35rem);
        line-height: 0.98;
    }

    .signature-copy h1 span {
        margin-top: 5px;
        font-size: 0.66em;
    }

    .signature-lead {
        margin-top: 14px;
        font-size: 0.94rem;
        line-height: 1.52;
    }

    .signature-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 14px;
    }

    .signature-facts li {
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 8px;
    }

    .signature-facts i {
        width: 32px;
        height: 32px;
        border-radius: 9px;
    }

    .signature-facts strong {
        font-size: 0.875rem;
    }

    .signature-facts small {
        display: none;
    }

    .product-stage {
        min-height: 320px;
    }

    .product-screen {
        top: 51%;
        width: 176px;
        border-radius: 22px;
    }

    .product-screen.is-left {
        --screen-x: -104%;
        --screen-y: -47%;
        --screen-scale: 0.72;
    }

    .product-screen.is-right {
        --screen-x: 4%;
        --screen-y: -46%;
        --screen-scale: 0.74;
    }

    .state-overlay {
        display: none;
    }

    .signature-progress {
        gap: 5px;
        padding: 15px 12px 17px;
    }

    .progress-track {
        right: 12px;
        left: 12px;
    }

    .progress-step {
        min-height: 76px;
        grid-template-columns: 1fr;
        grid-template-rows: 34px auto;
        justify-items: start;
        align-content: start;
        gap: 7px;
        padding: 7px;
    }

    .progress-number {
        width: 34px;
        height: 34px;
    }

    .progress-copy strong {
        font-size: 0.875rem;
        line-height: 1.2;
    }

    .progress-copy small {
        display: none;
    }

    .signature-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
        padding: 10px 24px 24px;
    }

    .signature-cta-note {
        margin: 0;
        text-align: left;
    }

    .signature-cta,
    .signature-cta-secondary {
        width: 100%;
        min-height: 52px;
    }

    .showcase-footer {
        padding-bottom: 24px;
    }

    .showcase-footer .container {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 430px) and (max-height: 860px) {
    .signature-copy {
        padding-top: 22px;
        padding-bottom: 10px;
    }

    .signature-brand {
        margin-bottom: 12px;
    }

    .signature-copy h1 {
        font-size: 2.35rem;
    }

    .signature-lead {
        margin-top: 11px;
        font-size: 0.9rem;
        line-height: 1.45;
    }

    .signature-facts {
        margin-top: 11px;
    }

    .signature-panel {
        grid-template-rows: auto auto 300px auto;
    }

    .product-stage {
        min-height: 300px;
    }

    .product-screen {
        width: 168px;
    }

    .progress-step {
        min-height: 72px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-screen,
    .progress-track span,
    .state-overlay,
    .progress-step,
    .signature-cta,
    .signature-cta-secondary {
        transition-duration: 0.01ms !important;
    }
}

/* Full FlowTime product narrative */

body {
    overflow-x: clip;
}

main {
    overflow: visible;
}

section[id] {
    scroll-margin-top: 16px;
}

#signature {
    scroll-margin-top: 104px;
}

.product-screen {
    top: 53%;
}

.editorial-section,
.product-story {
    padding: clamp(68px, 7vw, 112px) 0;
}

.product-subnav {
    position: sticky;
    z-index: 900;
    top: 93px;
    border-top: 1px solid rgba(70, 57, 47, 0.08);
    border-bottom: 1px solid rgba(70, 57, 47, 0.1);
    background: rgba(251, 248, 244, 0.92);
    box-shadow: 0 14px 34px -28px rgba(48, 37, 29, 0.52);
    backdrop-filter: blur(18px) saturate(1.12);
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

.product-subnav__inner {
    display: grid;
    min-height: 58px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(18px, 3vw, 42px);
}

.product-subnav__brand {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    color: #302820;
    text-decoration: none;
    white-space: nowrap;
}

.product-subnav__brand span {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.product-subnav__brand small {
    color: #8a796b;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-subnav__links {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
}

.product-subnav__links a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    color: #5e5147;
    font-size: 0.76rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background 180ms ease, color 180ms ease;
}

.product-subnav__links a:hover {
    background: rgba(114, 101, 90, 0.08);
    color: #302820;
}

.product-subnav__cta {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 16px;
    border-radius: 999px;
    background: #302820;
    color: #fffaf5;
    font-size: 0.75rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: background 180ms ease, box-shadow 180ms ease, transform 180ms var(--signature-ease);
}

.product-subnav__cta:hover {
    background: #493b30;
    box-shadow: 0 12px 24px -16px rgba(48, 37, 29, 0.7);
    transform: translateY(-1px);
}

.product-subnav__cta-short {
    display: none;
}

.product-subnav__brand:focus-visible,
.product-subnav__links a:focus-visible,
.product-subnav__cta:focus-visible {
    outline: 3px solid #b99168;
    outline-offset: 2px;
}

.section-kicker {
    margin: 0;
    color: #936b47;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.5;
    text-transform: uppercase;
}

.section-kicker--inverse {
    color: var(--signature-copper-light);
}

.section-intro {
    max-width: 820px;
    margin-bottom: clamp(34px, 4.5vw, 56px);
}

.section-intro--split {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.7fr);
    align-items: end;
    gap: clamp(32px, 6vw, 88px);
}

.section-intro h2,
.feature-copy h2,
.privacy-copy h2,
.access-copy h2,
.maker-note h2 {
    margin: 12px 0 0;
    color: #302820;
    font-size: clamp(2.35rem, 4.4vw, 4.25rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.02;
    text-wrap: balance;
}

.feature-copy h2 {
    font-size: clamp(2.35rem, 4vw, 3.7rem);
    overflow-wrap: normal;
}

.section-intro > p:last-child,
.section-intro--split > p,
.feature-copy > p,
.privacy-copy > p,
.access-copy > p,
.maker-note > div > p:last-child {
    margin: 20px 0 0;
    color: #70645a;
    font-size: clamp(1rem, 1.25vw, 1.12rem);
    line-height: 1.72;
}

.problem-section {
    padding-top: clamp(74px, 8vw, 126px);
}

.friction-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(70, 57, 47, 0.14);
    border-bottom: 1px solid rgba(70, 57, 47, 0.14);
}

.friction-item {
    display: grid;
    min-width: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 18px;
    padding: 34px clamp(22px, 3vw, 42px);
}

.friction-item + .friction-item {
    border-left: 1px solid rgba(70, 57, 47, 0.14);
}

.friction-item > i {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(147, 107, 71, 0.24);
    border-radius: 13px;
    color: #936b47;
}

.friction-item span {
    color: #a58d78;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.friction-item h3 {
    margin: 7px 0 0;
    color: #302820;
    font-size: 1.08rem;
}

.friction-item p {
    margin: 10px 0 0;
    color: #766a60;
    font-size: 0.93rem;
    line-height: 1.62;
}

.process-section {
    background: rgba(255, 255, 255, 0.44);
}

.process-theatre {
    display: grid;
    min-height: 624px;
    grid-template-columns: minmax(440px, 1.04fr) minmax(360px, 0.96fr);
    gap: clamp(42px, 6vw, 82px);
    align-items: center;
    padding: clamp(38px, 4.5vw, 64px);
    overflow: hidden;
    border: 1px solid rgba(87, 69, 55, 0.1);
    border-radius: clamp(34px, 4vw, 52px);
    background: #eee5dc;
    box-shadow: 0 44px 100px -62px rgba(52, 40, 31, 0.55);
}

.process-visual {
    position: relative;
    min-height: 542px;
}

.process-phone {
    position: absolute;
    width: min(270px, 50%);
    aspect-ratio: 1344 / 2992;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(79, 62, 49, 0.13);
    border-radius: 30px;
    background: #f8f7f5;
    box-shadow: 0 34px 72px -34px rgba(49, 38, 30, 0.58);
}

.process-phone img,
.detail-phone > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.process-phone--rear {
    top: 15%;
    left: 4%;
    opacity: 0.34;
    filter: saturate(0.66);
    transform: rotate(-4deg) scale(0.88);
    transform-origin: bottom center;
}

.process-phone--front {
    top: 2%;
    right: 9%;
    z-index: 2;
}

.process-note {
    position: absolute;
    right: 0;
    bottom: 10%;
    z-index: 3;
    display: flex;
    width: min(244px, 58%);
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 17px;
    background: rgba(255, 250, 245, 0.82);
    box-shadow: 0 20px 48px -30px rgba(51, 38, 28, 0.66);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.process-note i {
    margin-top: 2px;
    color: #936b47;
}

.process-note span,
.process-note strong {
    display: block;
}

.process-note span {
    color: #8a796b;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.process-note strong {
    margin-top: 4px;
    color: #302820;
    font-size: 0.86rem;
    line-height: 1.45;
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(70, 57, 47, 0.13);
}

.process-list li:first-child {
    border-top: 1px solid rgba(70, 57, 47, 0.13);
}

.process-index {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(147, 107, 71, 0.24);
    border-radius: 50%;
    color: #936b47;
    font-size: 0.72rem;
    font-weight: 800;
}

.process-list h3 {
    margin: 0;
    color: #302820;
    font-size: 1.06rem;
}

.process-list p {
    margin: 8px 0 0;
    color: #71665d;
    font-size: 0.93rem;
    line-height: 1.6;
}

.product-story {
    background: #fbf8f4;
}

.product-story--warm {
    background: #eee5dc;
}

.feature-story {
    display: grid;
    min-height: 660px;
    grid-template-columns: minmax(300px, 0.76fr) minmax(340px, 0.9fr);
    align-items: center;
    gap: clamp(56px, 9vw, 144px);
}

.feature-story--reverse .feature-copy {
    grid-column: 2;
    grid-row: 1;
}

.feature-story--reverse .detail-phone {
    grid-column: 1;
    grid-row: 1;
}

.feature-story--compact {
    min-height: 590px;
}

.feature-copy {
    max-width: 570px;
}

.feature-copy > p {
    max-width: 540px;
}

.feature-points {
    display: grid;
    gap: 14px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.feature-points li {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    color: #51463d;
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.5;
}

.feature-points i {
    display: inline-grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: #e7d5c3;
    color: #7d5b3c;
    font-size: 0.72rem;
}

.detail-phone {
    position: relative;
    justify-self: center;
    width: min(340px, 100%);
    aspect-ratio: 1344 / 2992;
    margin: 0;
    padding: 9px;
    border: 1px solid rgba(65, 51, 40, 0.14);
    border-radius: 38px;
    background: #f9f7f4;
    box-shadow: 0 46px 90px -42px rgba(48, 37, 29, 0.56);
}

.detail-phone > img {
    overflow: hidden;
    border-radius: 29px;
}

.detail-phone figcaption {
    position: absolute;
    right: -92px;
    bottom: 11%;
    display: flex;
    width: 220px;
    align-items: flex-start;
    gap: 11px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    background: rgba(255, 250, 245, 0.86);
    box-shadow: 0 20px 46px -30px rgba(46, 35, 27, 0.72);
    color: #4d4239;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.45;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.feature-story--reverse .detail-phone figcaption {
    right: auto;
    left: -92px;
}

.detail-phone figcaption i {
    margin-top: 2px;
    color: #936b47;
}

.text-action {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    color: #6e4f35;
    font-weight: 700;
    text-decoration: none;
}

.text-action:hover {
    color: #302820;
}

.text-action:focus-visible,
.access-cta:focus-visible,
.access-link:focus-visible,
.faq-list summary:focus-visible {
    outline: 3px solid #b99168;
    outline-offset: 4px;
}

.privacy-wrap,
.access-wrap {
    padding-top: clamp(30px, 4.5vw, 64px);
    padding-bottom: clamp(30px, 4.5vw, 64px);
}

.privacy-panel,
.access-panel {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(34px, 4vw, 52px);
    background: #241e19;
    box-shadow: 0 48px 110px -56px rgba(38, 29, 22, 0.68);
    color: var(--signature-ink);
}

.privacy-panel {
    padding: clamp(40px, 5.4vw, 74px);
}

.privacy-copy {
    max-width: 860px;
}

.privacy-copy h2,
.access-copy h2 {
    color: var(--signature-ink);
}

.privacy-copy > p,
.access-copy > p {
    color: rgba(255, 250, 245, 0.72);
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: clamp(34px, 5vw, 58px);
}

.privacy-grid article {
    min-width: 0;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.055);
}

.privacy-grid i {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(223, 192, 157, 0.26);
    border-radius: 14px;
    color: var(--signature-copper-light);
}

.privacy-grid h3 {
    margin: 20px 0 0;
    color: var(--signature-ink);
    font-size: 1.02rem;
    line-height: 1.4;
}

.privacy-grid p {
    margin: 10px 0 0;
    color: rgba(255, 250, 245, 0.68);
    font-size: 0.88rem;
    line-height: 1.62;
}

.audience-section {
    padding-top: clamp(84px, 9vw, 136px);
}

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

.fit-card {
    min-width: 0;
    padding: clamp(28px, 4vw, 46px);
    border: 1px solid rgba(77, 60, 47, 0.11);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.65);
}

.fit-card--positive {
    background: #eee5dc;
}

.fit-card i {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(147, 107, 71, 0.22);
    border-radius: 15px;
    color: #8a6444;
}

.fit-card > span {
    display: block;
    margin-top: 24px;
    color: #936b47;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fit-card h3 {
    margin: 8px 0 0;
    color: #302820;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.18;
}

.fit-card p {
    margin: 15px 0 0;
    color: #71665d;
    font-size: 0.94rem;
    line-height: 1.65;
}

.maker-note {
    display: grid;
    grid-template-columns: minmax(210px, 300px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(34px, 6vw, 76px);
    margin-top: clamp(48px, 7vw, 92px);
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid rgba(77, 60, 47, 0.1);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 34px 80px -58px rgba(49, 38, 30, 0.45);
}

.maker-note picture,
.maker-note img {
    display: block;
    width: 100%;
}

.maker-note img {
    aspect-ratio: 648 / 888;
    border-radius: 26px;
    object-fit: cover;
}

.maker-note h2 {
    font-size: clamp(2rem, 3.7vw, 3.35rem);
}

.access-panel {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
    grid-template-areas:
        "copy steps"
        "actions steps"
        "note steps";
    gap: 24px clamp(40px, 6vw, 82px);
    align-items: center;
    padding: clamp(40px, 5.4vw, 70px);
}

.access-copy {
    grid-area: copy;
}

.access-mobile-lead {
    display: none;
}

.access-steps {
    grid-area: steps;
    margin: 0;
    padding: 0;
    list-style: none;
}

.access-steps li {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.access-steps li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.access-steps li > span {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(223, 192, 157, 0.34);
    border-radius: 50%;
    color: var(--signature-copper-light);
    font-size: 0.78rem;
    font-weight: 800;
}

.access-steps strong {
    color: var(--signature-ink);
    font-size: 0.96rem;
}

.access-steps p {
    margin: 7px 0 0;
    color: rgba(255, 250, 245, 0.66);
    font-size: 0.86rem;
    line-height: 1.58;
}

.access-actions {
    grid-area: actions;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 22px;
}

.access-action-note,
.access-email-fallback {
    flex-basis: 100%;
    margin: 0;
    color: rgba(255, 250, 245, 0.58);
    font-size: 0.74rem;
    line-height: 1.5;
}

.access-email-fallback {
    margin-top: -7px;
    color: rgba(255, 250, 245, 0.48);
}

.access-email-fallback strong {
    color: rgba(255, 250, 245, 0.78);
}

.access-cta {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 22px;
    border-radius: 14px;
    background: #fffaf5;
    color: #302820;
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms var(--signature-ease), background 180ms ease;
}

.access-cta:hover {
    background: #fff;
    transform: translateY(-2px);
}

.access-link {
    min-height: 44px;
    color: rgba(255, 250, 245, 0.82);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 44px;
    text-underline-offset: 4px;
}

.access-note {
    grid-area: note;
    margin: 0;
    color: rgba(255, 250, 245, 0.5);
    font-size: 0.76rem;
}

.faq-section {
    padding-bottom: clamp(52px, 6vw, 88px);
}

.faq-list {
    max-width: 920px;
    border-top: 1px solid rgba(70, 57, 47, 0.15);
}

.faq-list details {
    border-bottom: 1px solid rgba(70, 57, 47, 0.15);
}

.faq-list summary {
    display: grid;
    min-height: 76px;
    grid-template-columns: minmax(0, 1fr) 36px;
    align-items: center;
    gap: 24px;
    padding: 18px 0;
    color: #302820;
    cursor: pointer;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    font-weight: 700;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary i {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(147, 107, 71, 0.2);
    border-radius: 50%;
    color: #936b47;
    font-size: 0.75rem;
    transition: transform 180ms var(--signature-ease);
}

.faq-list details[open] summary i {
    transform: rotate(45deg);
}

.faq-list details > p {
    max-width: 760px;
    margin: -2px 0 0;
    padding: 0 54px 24px 0;
    color: #71665d;
    font-size: 0.94rem;
    line-height: 1.68;
}

.closing-cta-wrap {
    padding-bottom: clamp(72px, 8vw, 120px);
}

.closing-cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(34px, 6vw, 82px);
    overflow: hidden;
    padding: clamp(38px, 5.4vw, 68px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(30px, 4vw, 48px);
    background:
        radial-gradient(circle at 92% 0%, rgba(208, 169, 126, 0.18), transparent 34%),
        #241e19;
    box-shadow: 0 42px 96px -54px rgba(38, 29, 22, 0.68);
}

.closing-cta-panel h2 {
    max-width: 760px;
    margin: 12px 0 0;
    color: var(--signature-ink);
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.04em;
    line-height: 1.02;
    text-wrap: balance;
}

.closing-cta-panel > div:first-child > p:last-child {
    max-width: 680px;
    margin: 18px 0 0;
    color: rgba(255, 250, 245, 0.7);
    font-size: 0.96rem;
    line-height: 1.65;
}

.closing-cta-actions {
    display: grid;
    min-width: min(100%, 292px);
    gap: 12px;
}

.closing-cta-actions .access-cta {
    width: 100%;
}

.closing-cta-actions p {
    max-width: 292px;
    margin: 0;
    color: rgba(255, 250, 245, 0.5);
    font-size: 0.74rem;
    line-height: 1.5;
}

.showcase-footer {
    padding: 36px 0 42px;
    border-top: 1px solid rgba(70, 57, 47, 0.1);
}

.showcase-footer .footer-main {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto auto;
    align-items: center;
    gap: 28px;
}

.footer-main > div strong,
.footer-main > div span {
    display: block;
}

.footer-main > div strong {
    color: #302820;
    font-size: 0.86rem;
}

.footer-main > div span {
    margin-top: 3px;
    color: #8b7d72;
    font-size: 0.72rem;
}

.showcase-footer nav {
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 1050px) {
    .product-subnav__inner {
        gap: 14px;
    }

    .product-subnav__brand small {
        display: none;
    }

    .product-screen {
        top: 72%;
    }

    .section-intro--split,
    .process-theatre,
    .access-panel {
        grid-template-columns: 1fr;
    }

    .section-intro--split {
        align-items: start;
    }

    .process-theatre {
        gap: 24px;
    }

    .process-visual {
        min-height: 520px;
    }

    .process-phone {
        width: min(250px, 42%);
    }

    .process-phone--rear {
        left: 19%;
    }

    .process-phone--front {
        right: 23%;
    }

    .process-note {
        right: 14%;
    }

    .feature-story {
        gap: clamp(46px, 7vw, 80px);
    }

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

    .access-panel {
        grid-template-areas:
            "copy"
            "steps"
            "actions"
            "note";
    }

    .access-copy {
        max-width: 760px;
    }
}

@media (max-width: 840px) {
    .friction-grid,
    .fit-grid,
    .feature-story {
        grid-template-columns: 1fr;
    }

    .friction-item + .friction-item {
        border-top: 1px solid rgba(70, 57, 47, 0.14);
        border-left: 0;
    }

    .feature-story {
        min-height: 0;
    }

    .feature-story--reverse .feature-copy,
    .feature-story--reverse .detail-phone {
        grid-column: auto;
        grid-row: auto;
    }

    .feature-story--reverse .feature-copy {
        order: 0;
    }

    .feature-story--reverse .detail-phone {
        order: 1;
    }

    .feature-copy {
        max-width: 720px;
    }

    .detail-phone {
        width: min(310px, 82%);
    }

    .detail-phone figcaption,
    .feature-story--reverse .detail-phone figcaption {
        right: -78px;
        left: auto;
    }

    .maker-note {
        grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
    }

    .closing-cta-panel {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .closing-cta-actions {
        width: min(100%, 360px);
    }

    .showcase-footer .footer-main {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .showcase-footer nav {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    html {
        scroll-padding-top: 142px;
    }

    section[id] {
        scroll-margin-top: 12px;
    }

    #signature {
        scroll-margin-top: 86px;
    }

    .product-subnav {
        top: 85px;
    }

    .product-subnav__inner {
        min-height: 56px;
        gap: 6px;
    }

    .product-subnav__brand {
        margin-right: 2px;
    }

    .product-subnav__brand span {
        font-size: 0.84rem;
    }

    .product-subnav__links {
        justify-content: flex-start;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
    }

    .product-subnav__links::-webkit-scrollbar {
        display: none;
    }

    .product-subnav__links a {
        min-height: 44px;
        padding: 0 8px;
        font-size: 0.7rem;
    }

    .product-subnav__cta {
        min-height: 44px;
        gap: 7px;
        padding: 0 12px;
    }

    .product-subnav__cta-label {
        display: none;
    }

    .product-subnav__cta-short {
        display: inline;
    }

    .product-screen {
        top: 63%;
    }

    .editorial-section,
    .product-story {
        padding: 64px 0;
    }

    .section-intro h2,
    .feature-copy h2,
    .privacy-copy h2,
    .access-copy h2,
    .maker-note h2,
    .closing-cta-panel h2 {
        font-size: clamp(2rem, 9.5vw, 3rem);
    }

    .section-intro > p:last-child,
    .section-intro--split > p,
    .feature-copy > p,
    .privacy-copy > p,
    .access-copy > p,
    .maker-note > div > p:last-child {
        margin-top: 16px;
        font-size: 0.96rem;
        line-height: 1.65;
    }

    .friction-item {
        padding: 28px 4px;
    }

    .process-theatre {
        min-height: 0;
        padding: 26px 20px;
        border-radius: 28px;
    }

    .process-visual {
        min-height: 450px;
    }

    .process-phone {
        width: 210px;
        border-radius: 24px;
    }

    .process-phone--rear {
        top: 14%;
        left: 1%;
    }

    .process-phone--front {
        top: 2%;
        right: 2%;
    }

    .process-note {
        right: 2%;
        bottom: 7%;
        width: min(220px, 72%);
    }

    .process-list li {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 14px;
        padding: 21px 0;
    }

    .process-index {
        width: 38px;
        height: 38px;
    }

    .feature-story {
        gap: 42px;
    }

    .detail-phone {
        width: min(270px, 82%);
    }

    .detail-phone figcaption,
    .feature-story--reverse .detail-phone figcaption {
        right: -34px;
        width: 190px;
    }

    .privacy-wrap,
    .access-wrap,
    .closing-cta-wrap {
        padding-right: 10px;
        padding-left: 10px;
    }

    .privacy-panel,
    .access-panel {
        padding: 32px 24px;
        border-radius: 28px;
    }

    .access-panel {
        grid-template-areas:
            "copy"
            "lead"
            "steps"
            "actions"
            "note";
    }

    .access-mobile-lead {
        display: grid;
        grid-area: lead;
        gap: 10px;
    }

    .access-mobile-lead .access-cta {
        width: 100%;
    }

    .access-mobile-lead p {
        margin: 0;
        color: rgba(255, 250, 245, 0.56);
        font-size: 0.74rem;
        line-height: 1.5;
    }

    .privacy-grid article {
        padding: 22px;
    }

    .fit-card {
        padding: 28px 24px;
        border-radius: 24px;
    }

    .maker-note {
        grid-template-columns: 1fr;
        padding: 24px;
        border-radius: 26px;
    }

    .maker-note picture {
        max-width: 300px;
    }

    .access-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .access-cta,
    .access-link {
        width: 100%;
        text-align: center;
    }

    .access-action-note,
    .access-email-fallback {
        width: 100%;
        text-align: left;
    }

    .closing-cta-panel {
        gap: 28px;
        padding: 32px 24px;
        border-radius: 28px;
    }

    .faq-list details > p {
        padding-right: 0;
    }

    .showcase-footer nav {
        gap: 12px 18px;
    }
}

@media (max-width: 430px) {
    html {
        scroll-padding-top: 130px;
    }

    section[id] {
        scroll-margin-top: 12px;
    }

    #signature {
        scroll-margin-top: 74px;
    }

    .product-subnav {
        top: 76px;
    }

    .product-subnav__brand {
        display: none;
    }

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

    .section-intro {
        margin-bottom: 34px;
    }

    .section-intro h2,
    .feature-copy h2,
    .privacy-copy h2,
    .access-copy h2,
    .maker-note h2,
    .closing-cta-panel h2 {
        font-size: 2rem;
    }

    .process-visual {
        min-height: 390px;
    }

    .process-phone {
        width: 176px;
    }

    .process-note {
        right: -2px;
        bottom: 4%;
        width: 192px;
        padding: 13px;
    }

    .detail-phone {
        width: min(244px, 76%);
    }

    .detail-phone figcaption,
    .feature-story--reverse .detail-phone figcaption {
        right: -34px;
        bottom: 8%;
        width: 172px;
        padding: 12px;
        font-size: 0.72rem;
    }

    .privacy-panel,
    .access-panel {
        padding: 28px 20px;
    }

    .closing-cta-panel {
        padding: 28px 20px;
    }

    .maker-note img {
        aspect-ratio: 4 / 3;
        object-position: center 18%;
    }

    .faq-list summary {
        min-height: 70px;
        gap: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .text-action,
    .access-cta,
    .product-subnav__links a,
    .product-subnav__cta,
    .faq-list summary i {
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}


/* Shared production-page adaptations */
.showcase-page{--showcase-accent:#b99168;--showcase-accent-light:#dfc09d;--showcase-panel:#302820;--showcase-panel-deep:#171310}
.showcase-page--leasing{--showcase-accent:#d2a46e;--showcase-accent-light:#f0c994;--showcase-panel:#31271d;--showcase-panel-deep:#15100c}
.showcase-page--podcasts{--showcase-accent:#c89976;--showcase-accent-light:#efc7a7;--showcase-panel:#2d2420;--showcase-panel-deep:#130f0d}
.showcase-page .signature-panel{--signature-copper:var(--showcase-accent);--signature-copper-light:var(--showcase-accent-light);--signature-panel:var(--showcase-panel);--signature-panel-deep:var(--showcase-panel-deep)}
.showcase-page .signature-kicker{display:block;margin:0 0 8px;color:var(--showcase-accent-light)}
.showcase-page .product-screen,.showcase-page .process-phone,.showcase-page .detail-phone{aspect-ratio:var(--showcase-screen-ratio,1344 / 2992)}
.showcase-page--leasing,.showcase-page--podcasts{--showcase-screen-ratio:1080 / 1920}
.showcase-page .signature-brand img{object-fit:cover}
.showcase-page .signature-facts{max-width:560px}
.showcase-page .feature-story--compact{min-height:610px}
.showcase-page .detail-phone--wide{width:min(330px,86vw)}
.showcase-page .privacy-links{display:flex;flex-wrap:wrap;gap:12px 22px;margin-top:28px}
.showcase-page .privacy-links a{color:var(--signature-ink);font-size:.86rem;font-weight:700;text-underline-offset:5px}
.showcase-page .product-subnav__brand{min-width:0}
.showcase-page .footer-main>div{display:grid}
.showcase-page .faq-list details>p a{color:#4f4035;font-weight:700}
.showcase-page .fit-card--positive{background:#f6eee5}
.showcase-page .signature-copy h1 span{max-width:660px}
.showcase-page--leasing .signature-copy h1{font-size:clamp(3rem,4vw,3.9rem);overflow-wrap:normal}
.showcase-page--podcasts .signature-brand{margin-bottom:clamp(8px,1vh,10px)}
.showcase-page .product-name{white-space:nowrap}
.showcase-page--leasing .access-copy h2{font-size:clamp(2.25rem,3.4vw,3.1rem)}
.showcase-page .access-actions{align-items:flex-start}
.has-js .showcase-page .product-screen[aria-hidden=true]{visibility:visible}
@media(max-width:720px){.showcase-page .signature-copy h1 span{max-width:none}.showcase-page--leasing .signature-copy h1{font-size:clamp(2.1rem,9.5vw,2.4rem);letter-spacing:-.06em}.showcase-page--leasing .signature-facts{grid-template-columns:1fr}.showcase-page .feature-story--compact{min-height:0}.showcase-page .privacy-links{flex-direction:column}}
@media(max-width:720px){.showcase-page--leasing .access-copy h2{font-size:clamp(2rem,9.2vw,2.25rem)}.showcase-page--leasing #faq{scroll-margin-top:36px}}
@media(prefers-reduced-motion:reduce){.showcase-page *{scroll-behavior:auto!important}}
