/* ---- page-specific ---- */
.hero {
    padding: 168px 0 80px;
}

.hero .wrap {
    display: grid;
    grid-template-columns:1fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 54px);
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: normal;
    color: var(--coral);
}

.hero p.lead {
    font-size: 18px;
    color: var(--ink-muted);
    max-width: 440px;
    margin-bottom: 32px;
}

.cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.store-note {
    font-size: 13px;
    color: var(--ink-muted);
}

.fan {
    position: relative;
    height: 420px;
}

.fan .photo-card {
    position: absolute;
    width: 150px;
    height: 190px;
}

.fan .f1 {
    top: 10px;
    left: 10px;
    transform: rotate(-11deg);
}

.fan .f2 {
    top: 60px;
    left: 110px;
    transform: rotate(6deg);
    z-index: 2;
}

.fan .f3 {
    top: 0;
    left: 210px;
    transform: rotate(-4deg);
}

.fan .f4 {
    top: 150px;
    left: 40px;
    transform: rotate(4deg);
    z-index: 3;
    width: 140px;
    height: 170px;
}

.fan .tag {
    position: absolute;
    top: 150px;
    left: 190px;
    z-index: 4;
}

.privacy-band {
    padding: 100px 0;
    text-align: center;
}

.privacy-band h2 {
    font-size: clamp(28px, 4vw, 44px);
    max-width: 680px;
    margin: 0 auto 18px;
}

.privacy-band p {
    color: var(--ink-muted);
    max-width: 480px;
    margin: 0 auto 30px;
    font-size: 16.5px;
}

.privacy-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.privacy-pill {
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 9px 18px;
    font-size: 13.5px;
    color: var(--ink-muted);
}

.how {
    padding: 100px 0;
}

.steps {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 36px;
}

.step-num {
    font-family: 'Fraunces', serif;
    font-size: 34px;
    color: var(--coral);
    display: block;
    margin-bottom: 14px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.step p {
    color: var(--ink-muted);
    font-size: 14.5px;
}

@media (max-width: 760px) {
    .steps {
        grid-template-columns:1fr;
        gap: 44px;
    }
}

.features {
    padding: 100px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 22px;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
}

.feature-card .dot {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.feature-card p {
    color: var(--ink-muted);
    font-size: 14.5px;
}

@media (max-width: 700px) {
    .feature-grid {
        grid-template-columns:1fr;
    }
}

.collage {
    padding: 100px 0;
}

.collage .wrap {
    display: grid;
    grid-template-columns:0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.collage h2 {
    font-size: clamp(26px, 3.4vw, 36px);
    margin-bottom: 16px;
}

.collage p {
    color: var(--ink-muted);
    font-size: 16px;
    margin-bottom: 16px;
}

.collage ul {
    list-style: none;
    margin-top: 22px;
}

.collage li {
    font-size: 14.5px;
    color: var(--ink-muted);
    padding: 10px 0;
    border-top: 1px solid var(--line);
}

.collage li:first-child {
    border-top: none;
}

.collage li b {
    color: var(--ink);
}

.stack-block {
    display: flex;
    flex-direction: column;
}

.stack-mini {
    position: relative;
    height: 280px;
}

.stack-mini .photo-card {
    position: absolute;
    width: 150px;
    height: 190px;
}

.stack-mini .s1 {
    top: 0;
    left: 40px;
    transform: rotate(-6deg);
}

.stack-mini .s2 {
    top: 40px;
    left: 130px;
    transform: rotate(7deg);
    z-index: 2;
}

.stack-caption {
    margin-top: 18px;
    font-size: 20px;
    color: var(--ink-muted);
}

.showcase {
    padding: 100px 0;
}

.showcase-scroll {
    margin-top: 60px;
}

.showcase-steps {
    list-style: none;
}

.showcase-step {
    padding: 32px 0;
    border-top: 1px solid var(--line);
}

.showcase-step:first-child {
    border-top: none;
    padding-top: 0;
}

.showcase-step-num {
    font-family: 'Fraunces', serif;
    font-size: 14px;
    letter-spacing: .06em;
    color: var(--coral-accessible);
    display: block;
    margin-bottom: 12px;
}

.showcase-step h3 {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 10px;
}

.showcase-step-copy p {
    color: var(--ink-muted);
    font-size: 16px;
    max-width: 420px;
}

.showcase-step-shot {
    margin: 28px 0 0;
    display: flex;
    justify-content: center;
}

.showcase-phone {
    position: relative;
    width: 300px;
    aspect-ratio: 1284 / 2778;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    box-shadow: 0 30px 60px -24px rgba(24, 24, 23, 0.3);
}

.showcase-shot-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.showcase-stage {
    display: none;
}

@media (min-width: 861px) {
    .showcase-scroll.showcase-js-desktop {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: start;
    }

    .showcase-js-desktop .showcase-step {
        min-height: 47vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0;
        border-top: none;
    }

    .showcase-js-desktop .showcase-step-copy {
        max-width: 400px;
    }

    .showcase-js-desktop .showcase-step-num {
        font-size: 15px;
    }

    .showcase-js-desktop .showcase-step h3 {
        font-size: clamp(26px, 2.6vw, 34px);
    }

    .showcase-js-desktop .showcase-step-shot {
        display: none;
    }

    .showcase-js-desktop .showcase-stage {
        display: flex;
        position: sticky;
        top: 130px;
        height: min(720px, 72vh);
        align-items: center;
        justify-content: center;
    }

    .showcase-stage-backdrop {
        position: absolute;
        inset: -28px;
        border-radius: 48px;
        background:
            radial-gradient(120% 120% at 22% 12%, rgba(242, 84, 45, 0.12), transparent 55%),
            radial-gradient(120% 120% at 82% 88%, rgba(47, 158, 136, 0.12), transparent 55%),
            var(--surface);
        border: 1px solid var(--line);
        box-shadow: 0 40px 90px -40px rgba(24, 24, 23, 0.28);
    }

    .showcase-stage-inner {
        position: relative;
        height: 100%;
        max-width: calc(100% - 140px);
        aspect-ratio: 1284 / 2778;
    }

    .showcase-stage-shot {
        position: absolute;
        inset: 0;
        opacity: 0;
        transform: translateY(16px) scale(.97);
    }

    .showcase-stage-shot.is-active {
        opacity: 1;
        transform: none;
        z-index: 1;
    }

    .showcase-stage-shot .showcase-phone {
        width: 100%;
        height: 100%;
    }

    .showcase-stage-progress {
        position: absolute;
        top: 12px;
        right: 12px;
        max-width: calc(50% - 12px);
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: .06em;
        color: var(--ink-muted);
        opacity: .75;
        font-variant-numeric: tabular-nums;
        white-space: nowrap;
    }
}

@media (min-width: 861px) and (prefers-reduced-motion: no-preference) {
    .showcase-js-desktop .showcase-stage-shot {
        transition: opacity .35s ease, transform .4s ease;
    }

    .showcase-js-desktop .showcase-stage-shot.is-active {
        transition: opacity .55s ease, transform .65s ease;
    }

    .showcase-js-desktop .showcase-step-copy {
        opacity: .4;
        transition: opacity .4s ease;
    }

    .showcase-js-desktop .showcase-step.is-active .showcase-step-copy {
        opacity: 1;
    }
}

@media (max-width: 860px) and (prefers-reduced-motion: no-preference) {
    .showcase-enhanced .showcase-step {
        opacity: 0;
        transform: translateY(18px);
        transition: opacity .5s ease, transform .5s ease;
    }

    .showcase-enhanced .showcase-step.is-active {
        opacity: 1;
        transform: none;
    }
}

.pricing {
    padding: 100px 0;
}

.price-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 22px;
}

.price-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    background: #fff;
}

.price-card.pro {
    border-color: var(--coral);
    position: relative;
}

.price-card.pro::before {
    content: "Most popular";
    position: absolute;
    top: -13px;
    left: 24px;
    background: var(--coral-deep);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
}

.price-card h3 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 16px;
}

.price-card .price {
    font-size: 32px;
    font-family: 'Fraunces', serif;
    margin-bottom: 18px;
}

.price-card .price span {
    font-size: 14px;
    color: var(--ink-muted);
    font-family: 'Inter', sans-serif;
}

.price-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.price-card li {
    font-size: 14px;
    color: var(--ink-muted);
    padding: 8px 0;
    border-top: 1px solid var(--line);
}

.price-card li:first-child {
    border-top: none;
}

@media (max-width: 760px) {
    .price-grid {
        grid-template-columns:1fr;
    }
}

.testimonials {
    padding: 100px 0;
}

.quote-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 24px;
}

.quote-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 28px;
}

.quote-card p {
    font-size: 14.5px;
    margin-bottom: 20px;
}

.quote-who {
    font-size: 12.5px;
    color: var(--ink-muted);
}

@media (max-width: 760px) {
    .quote-grid {
        grid-template-columns:1fr;
    }
}

.faq {
    padding: 100px 0;
}

.faq-list {
    max-width: 720px;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item button {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-item .plus {
    color: var(--coral);
    font-size: 20px;
    transition: transform .2s ease;
}

.faq-item.open .plus {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease;
}

.faq-answer p {
    color: var(--ink-muted);
    font-size: 14.5px;
    padding-bottom: 22px;
    max-width: 600px;
}

.final-cta {
    padding: 120px 0 60px;
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(30px, 4.6vw, 48px);
    max-width: 600px;
    margin: 0 auto 26px;
}

/* ---- mobile ---- */
@media (max-width: 860px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero .wrap {
        grid-template-columns:1fr;
        gap: 44px;
    }

    .hero p.lead {
        max-width: none;
    }

    .fan {
        height: 300px;
        max-width: 340px;
        margin: 0 auto;
    }

    .collage .wrap {
        grid-template-columns:1fr;
        gap: 36px;
    }

    .collage {
        padding: 70px 0;
    }

    .stack-block {
        order: -1;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .fan {
        height: 250px;
        max-width: 260px;
    }

    .fan .photo-card {
        width: 112px;
        height: 142px;
    }

    .fan .f4 {
        width: 104px;
        height: 128px;
    }

    .fan .f1 {
        left: 0;
        top: 8px;
    }

    .fan .f2 {
        left: 82px;
        top: 44px;
    }

    .fan .f3 {
        left: 156px;
        top: 0;
    }

    .fan .f4 {
        left: 30px;
        top: 112px;
    }

    .fan .tag {
        left: 142px;
        top: 112px;
        font-size: 15px;
    }

    .stack-mini {
        height: 190px;
        max-width: 230px;
        margin: 0 auto;
    }

    .stack-mini .photo-card {
        width: 112px;
        height: 142px;
    }

    .stack-mini .s1 {
        left: 0;
        top: 0;
    }

    .stack-mini .s2 {
        left: 96px;
        top: 30px;
    }

    .stack-caption {
        text-align: center;
        font-size: 17px;
        margin-top: 14px;
    }

    .privacy-band, .how, .features, .showcase, .pricing, .testimonials, .faq {
        padding: 64px 0;
    }

    .final-cta {
        padding: 80px 0 50px;
    }
}
