:root {
    --bg: #fff8ea;
    --bg-soft: #fff0c8;
    --surface: rgba(255, 255, 255, 0.88);
    --surface-solid: #ffffff;
    --ink: #241436;
    --muted: #625471;
    --violet: #6736ff;
    --violet-dark: #321aa8;
    --cyan: #36c8ff;
    --pink: #ff5ba8;
    --leaf: #82dc35;
    --sun: #ffd939;
    --orange: #ff9826;
    --ring: rgba(103, 54, 255, 0.24);
    --shadow: 0 24px 70px rgba(70, 37, 132, 0.16);
    color-scheme: light;
}

body.night-theme {
    --bg: #151827;
    --bg-soft: #202540;
    --surface: rgba(29, 34, 57, 0.9);
    --surface-solid: #232a46;
    --ink: #fff9e8;
    --muted: #cbc4dd;
    --ring: rgba(128, 91, 255, 0.4);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 217, 57, 0.46), transparent 30rem),
        radial-gradient(circle at 88% 14%, rgba(103, 54, 255, 0.22), transparent 34rem),
        linear-gradient(180deg, var(--bg) 0%, #fff 50%, #fff2d8 100%);
}

body.night-theme {
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 217, 57, 0.18), transparent 28rem),
        radial-gradient(circle at 88% 14%, rgba(103, 54, 255, 0.36), transparent 34rem),
        linear-gradient(180deg, var(--bg) 0%, #111522 58%, #17162a 100%);
}

body.modal-open {
    overflow: hidden;
}

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

button {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: fixed;
    top: 16px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 18px;
}

.nav-shell {
    width: min(1160px, 100%);
    min-height: 70px;
    margin: 0 auto;
    padding: 10px 12px 10px 16px;
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: 999px;
    background: var(--surface);
    box-shadow: 0 12px 34px rgba(63, 39, 110, 0.1);
    backdrop-filter: blur(18px);
    transition: box-shadow 200ms ease, background 200ms ease;
}

.site-header.is-scrolled .nav-shell {
    box-shadow: 0 18px 46px rgba(63, 39, 110, 0.18);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand strong {
    display: block;
    font-family: "Fredoka", sans-serif;
    font-size: clamp(1rem, 1.6vw, 1.22rem);
    line-height: 1;
}

.brand small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(103, 54, 255, 0.22);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
}

.nav-links a {
    padding: 12px 15px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 800;
    transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--ink);
    background: rgba(255, 217, 57, 0.28);
    outline: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-toggle,
.nav-toggle,
.modal-close {
    border: 0;
    cursor: pointer;
}

.theme-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--violet);
    background: rgba(103, 54, 255, 0.1);
    transition: transform 180ms ease, background 180ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
    transform: translateY(-2px);
    background: rgba(103, 54, 255, 0.18);
    outline: 3px solid var(--ring);
}

.nav-cta,
.modal-action {
    min-height: 46px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    color: #331600;
    font-weight: 900;
    background: linear-gradient(180deg, #ffe767 0%, var(--orange) 100%);
    box-shadow: inset 0 -5px 0 rgba(141, 71, 0, 0.22), 0 12px 22px rgba(255, 139, 33, 0.26);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta {
    padding: 0 22px;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.modal-action:hover,
.modal-action:focus-visible {
    transform: translateY(-2px);
    box-shadow: inset 0 -5px 0 rgba(141, 71, 0, 0.18), 0 16px 30px rgba(255, 139, 33, 0.34);
    outline: 3px solid rgba(255, 160, 42, 0.28);
}

.nav-toggle {
    width: 46px;
    height: 46px;
    display: none;
    place-items: center;
    gap: 4px;
    border-radius: 999px;
    background: rgba(103, 54, 255, 0.1);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
}

.hero-section {
    position: relative;
    padding: 138px 22px 70px;
    isolation: isolate;
}

.hero-glow {
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    pointer-events: none;
}

.hero-glow-one {
    width: 330px;
    height: 330px;
    left: -80px;
    top: 16%;
    background: radial-gradient(circle, rgba(255, 217, 57, 0.34), transparent 66%);
}

.hero-glow-two {
    width: 430px;
    height: 430px;
    right: -110px;
    top: 16%;
    background: radial-gradient(circle, rgba(54, 200, 255, 0.22), transparent 66%);
}

.hero-layout {
    width: min(1160px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    align-items: center;
    gap: clamp(28px, 5vw, 68px);
}

.hero-copy h1,
.section-heading h2,
.download-copy h2 {
    margin: 0;
    font-family: "Fredoka", sans-serif;
    color: var(--ink);
    letter-spacing: -0.045em;
}

.hero-copy h1 {
    max-width: 660px;
    font-size: clamp(3.1rem, 7vw, 6.5rem);
    line-height: 0.9;
    text-shadow: 0 7px 0 rgba(255, 194, 34, 0.25);
}

.hero-copy p {
    max-width: 590px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(1.04rem, 1.6vw, 1.24rem);
    line-height: 1.72;
    font-weight: 700;
}

.eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 9px 14px;
    border: 1px solid rgba(103, 54, 255, 0.16);
    border-radius: 999px;
    color: var(--violet);
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.night-theme .eyebrow {
    background: rgba(255, 255, 255, 0.09);
}

.eyebrow svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.6;
}

.hero-buttons,
.download-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-buttons {
    margin-top: 30px;
}

.store-button {
    min-height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    border-radius: 20px;
    cursor: pointer;
    padding: 12px 20px;
    text-align: left;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.store-button svg {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    stroke-width: 2.5;
}

.store-button span {
    display: grid;
    gap: 1px;
    font-weight: 900;
    font-size: 1.05rem;
}

.store-button small {
    color: currentColor;
    font-size: 0.71rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    opacity: 0.76;
    text-transform: uppercase;
}

.primary-store {
    color: #ffffff;
    background: linear-gradient(180deg, #8454ff 0%, #3320c0 100%);
    box-shadow: inset 0 -6px 0 rgba(15, 9, 85, 0.26), 0 16px 32px rgba(82, 51, 216, 0.3);
}

.secondary-store {
    color: #351700;
    background: linear-gradient(180deg, #fff36f 0%, #ff971f 100%);
    box-shadow: inset 0 -6px 0 rgba(155, 76, 0, 0.22), 0 16px 32px rgba(255, 152, 31, 0.3);
}

.store-button:hover,
.store-button:focus-visible {
    transform: translateY(-3px);
    filter: saturate(1.08);
    outline: 3px solid var(--ring);
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 32px;
    max-width: 540px;
}

.quick-stats div {
    padding: 15px 14px;
    border: 1px solid rgba(103, 54, 255, 0.13);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 24px rgba(80, 39, 120, 0.08);
}

body.night-theme .quick-stats div {
    background: rgba(255, 255, 255, 0.08);
}

.quick-stats strong,
.quick-stats span {
    display: block;
}

.quick-stats strong {
    font-family: "Fredoka", sans-serif;
    font-size: 1.05rem;
}

.quick-stats span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.83rem;
    font-weight: 800;
}

.hero-stage {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 18px;
}

.banner-card {
    width: min(420px, 100%);
    padding: 10px;
    border-radius: 30px;
    background: #121720;
    box-shadow: 0 22px 52px rgba(19, 18, 45, 0.22);
}

.banner-card img {
    width: 100%;
    aspect-ratio: 1024 / 500;
    object-fit: cover;
    border-radius: 21px;
}

.phone-card {
    position: relative;
    width: min(310px, 82vw);
    padding: 13px;
    border-radius: 38px;
    background: linear-gradient(180deg, #2f2358 0%, #111827 100%);
    box-shadow:
        0 0 0 8px rgba(255, 255, 255, 0.5),
        0 0 34px rgba(117, 69, 255, 0.36),
        var(--shadow);
}

.main-phone {
    transform: rotate(1.2deg);
}

.phone-speaker {
    width: 74px;
    height: 7px;
    margin: 0 auto 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

.phone-card img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    object-position: top center;
    border-radius: 27px;
    border: 2px solid rgba(255, 255, 255, 0.18);
}

.hero-ticket {
    grid-column: 1 / -1;
    width: min(960px, 100%);
    margin: 8px auto 0;
    padding: 22px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) minmax(220px, 0.4fr);
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(103, 54, 255, 0.16);
    border-radius: 26px;
    background: var(--surface);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.ticket-topline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--violet));
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-ticket h2 {
    margin: 0;
    font-family: "Fredoka", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.45rem);
    line-height: 0.98;
}

.hero-ticket p {
    margin: 6px 0 0;
    color: var(--muted);
    line-height: 1.55;
    font-weight: 700;
}

.progress-card {
    padding: 15px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.66);
}

body.night-theme .progress-card {
    background: rgba(255, 255, 255, 0.08);
}

.progress-card > span,
.progress-card strong {
    display: inline-block;
    font-weight: 900;
}

.progress-card > span {
    color: var(--muted);
    font-size: 0.82rem;
}

.progress-card strong {
    float: right;
    color: var(--violet);
}

.progress-card div {
    clear: both;
    height: 12px;
    margin-top: 11px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(103, 54, 255, 0.12);
}

.progress-card div span {
    display: block;
    width: 90%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--leaf), var(--sun));
}

.screens-section,
.features-section,
.download-section {
    padding: 82px 22px;
}

.section-heading,
.screens-grid,
.feature-rail,
.download-card {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.42fr);
    align-items: end;
    gap: 28px;
}

.section-heading::after {
    content: "A clean app-store layout keeps real screenshots readable while preserving the playful flower-shop identity.";
    padding: 22px;
    border-left: 6px solid var(--sun);
    border-radius: 0 24px 24px 0;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.72);
    font-weight: 800;
    line-height: 1.55;
}

.compact-heading::after {
    content: "Uploaded images are used directly from the images folder with fixed ratios so the layout stays stable.";
}

body.night-theme .section-heading::after {
    background: rgba(255, 255, 255, 0.08);
}

.section-heading h2,
.download-copy h2 {
    font-size: clamp(2.35rem, 4vw, 4.7rem);
    line-height: 0.98;
}

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

.screen-card {
    min-width: 0;
    padding: 10px;
    border: 1px solid rgba(103, 54, 255, 0.13);
    border-radius: 28px;
    background: var(--surface);
    box-shadow: 0 18px 40px rgba(54, 30, 104, 0.1);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.screen-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 54px rgba(54, 30, 104, 0.16);
}

.screen-card img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px;
}

.screen-card h3 {
    margin: 12px 6px 4px;
    font-family: "Fredoka", sans-serif;
    font-size: 1rem;
    line-height: 1.1;
    text-align: center;
}

.feature-rail {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    min-height: 278px;
    padding: 24px;
    border: 1px solid rgba(103, 54, 255, 0.14);
    border-radius: 30px;
    background: var(--surface);
    box-shadow: 0 18px 40px rgba(54, 30, 104, 0.1);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(103, 54, 255, 0.28);
    box-shadow: 0 24px 54px rgba(54, 30, 104, 0.16);
}

.feature-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 21px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--violet), var(--cyan));
    box-shadow: inset 0 -5px 0 rgba(16, 24, 81, 0.18), 0 14px 24px rgba(80, 64, 220, 0.23);
}

.feature-icon svg {
    width: 31px;
    height: 31px;
    stroke-width: 2.5;
}

.feature-number {
    display: block;
    margin-top: 34px;
    color: var(--pink);
    font-family: "Fredoka", sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.feature-card h3 {
    margin: 12px 0 12px;
    font-family: "Fredoka", sans-serif;
    font-size: 1.48rem;
    line-height: 1.08;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.62;
}

.download-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 32px;
    padding: clamp(28px, 5vw, 62px);
    border-radius: 42px;
    background:
        radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.48), transparent 18rem),
        linear-gradient(135deg, #6e38ff 0%, #a647ff 44%, #ff66ad 100%);
    color: #ffffff;
    box-shadow: 0 30px 76px rgba(87, 45, 190, 0.28);
}

.download-card::before {
    content: "";
    position: absolute;
    inset: 20px;
    border: 2px solid rgba(255, 255, 255, 0.24);
    border-radius: 30px;
    pointer-events: none;
}

.download-copy,
.download-actions {
    position: relative;
    z-index: 1;
}

.download-copy .eyebrow {
    color: #351700;
    background: rgba(255, 233, 107, 0.96);
}

.download-copy h2 {
    color: #ffffff;
    text-shadow: 0 7px 0 rgba(58, 23, 129, 0.18);
}

.download-copy p {
    max-width: 650px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.7;
}

.download-actions {
    flex-direction: column;
}

.site-footer {
    width: min(1160px, calc(100% - 44px));
    margin: 0 auto 24px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid rgba(103, 54, 255, 0.14);
    border-radius: 30px;
    background: var(--surface);
    box-shadow: 0 18px 42px rgba(54, 30, 104, 0.1);
    backdrop-filter: blur(18px);
}

.footer-brand p {
    margin: 14px 0 0;
    color: var(--muted);
    font-weight: 800;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 14px 20px;
}

.footer-links a {
    color: var(--muted);
    font-weight: 900;
    transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--violet);
    outline: none;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 22px;
    background: rgba(20, 17, 38, 0.58);
    backdrop-filter: blur(12px);
}

.modal-backdrop[hidden] {
    display: none;
}

.download-modal {
    position: relative;
    width: min(430px, 100%);
    padding: 34px;
    text-align: center;
    border-radius: 32px;
    background: var(--surface-solid);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
    animation: popModal 220ms ease both;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--muted);
    background: rgba(103, 54, 255, 0.1);
}

.modal-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 25px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--leaf), var(--violet));
    box-shadow: inset 0 -6px 0 rgba(18, 80, 19, 0.16), 0 18px 28px rgba(66, 163, 58, 0.22);
}

.modal-icon svg {
    width: 38px;
    height: 38px;
}

.download-modal h2 {
    margin: 0;
    font-family: "Fredoka", sans-serif;
    font-size: 2.3rem;
}

.download-modal p {
    margin: 12px 0 22px;
    color: var(--muted);
    font-weight: 800;
    line-height: 1.65;
}

.modal-action {
    width: 100%;
    padding: 0 18px;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 560ms ease var(--delay, 0ms), transform 560ms ease var(--delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes popModal {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 980px) {
    .nav-toggle {
        display: grid;
        margin-left: auto;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 12px);
        left: 18px;
        right: 18px;
        display: grid;
        gap: 6px;
        padding: 14px;
        border-radius: 24px;
        background: var(--surface-solid);
        box-shadow: 0 22px 50px rgba(54, 30, 104, 0.18);
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .nav-links.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links a {
        padding: 13px 16px;
    }

    .nav-actions .nav-cta {
        display: none;
    }

    .nav-toggle.is-open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero-layout,
    .section-heading,
    .download-card {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-copy .eyebrow,
    .hero-copy p,
    .hero-buttons,
    .quick-stats {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-stage {
        max-width: 520px;
        margin: 0 auto;
    }

    .hero-ticket {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .section-heading::after {
        border-left: 0;
        border-top: 6px solid var(--sun);
        border-radius: 24px;
    }

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

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

    .download-actions {
        flex-direction: row;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .site-header {
        top: 10px;
        padding: 0 10px;
    }

    .nav-shell {
        min-height: 62px;
        gap: 10px;
        padding: 8px 10px;
    }

    .brand small {
        display: none;
    }

    .brand-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .theme-toggle,
    .nav-toggle {
        width: 42px;
        height: 42px;
    }

    .hero-section {
        padding: 106px 16px 58px;
    }

    .hero-copy h1 {
        font-size: clamp(2.8rem, 14vw, 4.3rem);
    }

    .hero-copy p {
        font-size: 1rem;
    }

    .hero-buttons,
    .download-actions {
        width: 100%;
    }

    .store-button {
        width: 100%;
        min-height: 62px;
    }

    .quick-stats {
        grid-template-columns: 1fr;
    }

    .banner-card {
        border-radius: 24px;
    }

    .phone-card {
        width: min(280px, 82vw);
        border-radius: 32px;
        box-shadow:
            0 0 0 5px rgba(255, 255, 255, 0.52),
            0 0 28px rgba(117, 69, 255, 0.28),
            var(--shadow);
    }

    .phone-card img {
        border-radius: 23px;
    }

    .screens-section,
    .features-section,
    .download-section {
        padding: 66px 16px;
    }

    .section-heading h2,
    .download-copy h2 {
        font-size: clamp(2.25rem, 11vw, 3.4rem);
    }

    .screens-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .screen-card {
        width: min(330px, 100%);
        margin: 0 auto;
    }

    .feature-rail {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: auto;
    }

    .download-card {
        padding: 28px;
        border-radius: 30px;
    }

    .download-card::before {
        inset: 12px;
        border-radius: 23px;
    }

    .site-footer {
        width: calc(100% - 32px);
        padding: 22px;
    }

    .footer-links {
        display: grid;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
