:root {
    --red: #EB5C5A;
    --red-soft: #fdeceb;
    --ink: #1c1c1e;
    --charcoal: #333334;
    --muted: #6d6d75;
    --line: #ececee;
    --band: #f6f7f9;
    --radius: 18px;
    --serif: "Playfair Display", Georgia, serif;
    --sans: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, sans-serif;
}

.dl {
    font-family: var(--sans);
    color: var(--charcoal);
}

.dl h1,
.dl h2 {
    font-family: var(--serif);
    color: var(--ink);
    font-weight: 600;
    margin: 0;
    letter-spacing: -.02em;
}

.dl .eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red);
    margin: 0 0 14px;
}

.dl .serif-em {
    font-style: italic;
    color: var(--red);
    font-weight: 500;
}

/* ---------- Layout ---------- */
.dl-hero {
    padding: 70px 0 90px;
}

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

.dl-copy h1 {
    font-size: 56px;
    line-height: 1.04;
}

.dl-lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 460px;
    margin: 24px 0 34px;
}

/* ---------- Store badges ---------- */
.dl-stores {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--ink);
    color: #fff;
    border-radius: 14px;
    padding: 12px 22px;
    transition: transform .15s ease, box-shadow .2s ease;
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(20, 20, 30, .2);
}

.store-btn svg {
    flex: none;
}

.store-btn span {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.store-btn small {
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
}

.store-btn b {
    font-size: 17px;
    font-weight: 700;
}

/* ---------- QR card ---------- */
.dl-qr {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 22px;
    box-shadow: 0 4px 18px rgba(20, 20, 30, .04);
}

.qr-box {
    flex: none;
    width: 78px;
    height: 78px;
    border-radius: 12px;
    background: var(--band);
    display: grid;
    place-items: center;
}

.qr-text h4 {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 4px;
}

.qr-text p {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--muted);
    max-width: 210px;
}

/* ---------- Phone mockups ---------- */
.dl-media {
    position: relative;
    min-height: 560px;
}

.phone {
    position: absolute;
    top: 50%;
    width: 244px;
    aspect-ratio: 244 / 500;
    background: #17171b;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 40px 80px rgba(20, 20, 30, .28);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.screen-media {
    flex: 1;
}

.grad-pink {
    background: linear-gradient(180deg, #f7b8b6, #fce4e3 70%);
}

.grad-grey {
    background: linear-gradient(180deg, #8f9096, #dfe0e4 75%);
}

.screen-card {
    background: #fff;
    padding: 16px 18px 20px;
}

.screen-eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
    margin: 0 0 6px;
}

.screen-card h4 {
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 4px;
}

.screen-card span {
    font-size: 12.5px;
    color: var(--muted);
}

.phone-front {
    left: 4%;
    transform: translateY(-50%) rotate(-2deg);
    z-index: 2;
}

.phone-back {
    right: 2%;
    transform: translateY(-52%) rotate(7deg);
    z-index: 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .dl-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .dl-copy h1 {
        font-size: 42px;
    }

    .dl-media {
        min-height: 500px;
        margin-top: 20px;
    }

    .phone {
        width: 210px;
    }

    .phone-front {
        left: 12%;
    }

    .phone-back {
        right: 12%;
    }
}

@media (max-width: 560px) {
    .dl-hero {
        padding: 48px 0 64px;
    }

    .dl-copy h1 {
        font-size: 34px;
    }

    .dl-qr {
        display: flex;
    }

    .phone {
        width: 168px;
    }

    .phone-front {
        left: 2%;
    }

    .phone-back {
        right: 0;
    }
}
