:root {
    --accent: #fc427b;
    --accent-dark: #ec2864;
    --accent-soft: #ff7fa7;
    --ink: #2f3342;
    --ink-soft: #667085;
    --slate: #2f3b48;
    --slate-dark: #26313d;
    --white: #ffffff;
    --surface: #ffffff;
    --surface-alt: #f7f9fc;
    --border: rgba(47, 59, 72, 0.12);
    --shadow: 0 24px 60px rgba(24, 26, 39, 0.12);
    --shadow-soft: 0 14px 36px rgba(24, 26, 39, 0.08);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1140px;
    --nav-offset: 108px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

[id] {
    scroll-margin-top: 0;
}

#top {
    scroll-margin-top: 0;
}

body {
    margin: 0;
    color: var(--ink);
    font: 400 1rem/1.7 "Open Sans", sans-serif;
    background: linear-gradient(180deg, #ffffff 0%, #fff9fb 55%, #ffffff 100%);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.section-block {
    padding: 5.75rem 0 0;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 0.95rem;
    color: var(--accent);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-kicker-light {
    color: rgba(255, 255, 255, 0.82);
}

h1,
h2,
h3 {
    margin: 0;
    color: inherit;
    font-family: "Space Grotesk", "Open Sans", sans-serif;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.8rem, 5.8vw, 4.6rem);
    line-height: 1.02;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
}

h3 {
    font-size: 1.35rem;
    line-height: 1.22;
}

p {
    margin: 0;
    color: var(--ink-soft);
}

.hero-shell {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    overflow: hidden;
    padding-top: 6.75rem;
    background: linear-gradient(135deg, var(--accent) 0%, #ff5b92 55%, #ff6c9b 100%);
    color: var(--white);
}


.hero-glow {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(6px);
    pointer-events: none;
}

.hero-glow-one {
    top: -120px;
    right: -70px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 72%);
}

.hero-glow-two {
    left: -130px;
    bottom: 80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(77, 25, 43, 0.26) 0%, rgba(77, 25, 43, 0) 74%);
}

.site-nav-wrap {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 80;
    padding: 1.25rem 0 0;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
    padding: 1rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 24px;
    transition: background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, border-color 220ms ease, color 220ms ease;
}

.site-nav.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(252, 66, 123, 0.14);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 34px rgba(93, 12, 39, 0.14);
}

.site-nav.is-scrolled .brand {
    color: var(--ink);
}

.site-nav.is-scrolled .site-menu a {
    color: var(--ink);
}

.site-nav.is-scrolled .site-menu a:hover,
.site-nav.is-scrolled .site-menu a:focus-visible {
    background: rgba(252, 66, 123, 0.1);
    color: var(--accent);
}

.site-nav.is-scrolled .nav-toggle {
    background: rgba(252, 66, 123, 0.08);
}

.site-nav.is-scrolled .nav-toggle span {
    background: var(--ink);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
    color: var(--white);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.brand img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    box-shadow: 0 10px 18px rgba(122, 11, 47, 0.26);
}

.site-menu {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-menu a {
    padding: 0.7rem 0.9rem;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
    font-weight: 700;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-menu a:hover,
.site-menu a:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--white);
}

.hero {
    flex: 1 1 auto;
    min-height: calc(100dvh - var(--nav-offset));
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2.5rem;
    align-items: center;
    padding: 2.5rem 0 4rem;
}


.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-copy h1 {
    max-width: 12ch;
}

.hero-text {
    margin-top: 1.25rem;
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}


.hero-media {
    position: relative;
    min-height: 560px;
}


.screen-card {
    position: absolute;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 70px rgba(93, 12, 39, 0.24);
}

.screen-card-main {
    top: 0;
    right: 0;
    width: min(100%, 620px);
}

.screen-card-detail {
    left: 0;
    bottom: 0;
    width: min(72%, 370px);
    padding: 1rem;
}

.screen-card-bar {
    display: flex;
    gap: 0.45rem;
    padding: 0.9rem 1rem 0;
}

.screen-card-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(47, 59, 72, 0.14);
}

.screen-card-main img {
    padding: 1rem;
}

.screen-badge {
    display: inline-flex;
    margin-bottom: 0.85rem;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(252, 66, 123, 0.1);
    color: var(--accent-dark);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}



.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 1rem 1.45rem;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 800;
    text-align: center;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button .js-version-label {
    display: inline-block;
    margin-left: 0.3rem;
}

.button-primary,
.button-light {
    background: var(--white);
    color: var(--accent);
    box-shadow: 0 14px 28px rgba(95, 15, 46, 0.16);
}

.button-primary:hover,
.button-light:hover,
.button-primary:focus-visible,
.button-light:focus-visible {
    box-shadow: 0 18px 32px rgba(95, 15, 46, 0.2);
}

.button-ghost {
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--white);
    background: transparent;
}

.button-ghost:hover,
.button-ghost:focus-visible {
    background: rgba(255, 255, 255, 0.12);
}

.button-outline {
    border-color: rgba(252, 66, 123, 0.22);
    color: var(--accent);
    background: transparent;
}

.button-outline:hover,
.button-outline:focus-visible {
    background: rgba(252, 66, 123, 0.08);
}

.download-section {
    margin-top: 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 2.25rem;
    text-align: center;
}

.section-heading-left {
    margin-left: 0;
    text-align: left;
}

.section-heading h2 {
    margin-bottom: 1rem;
}

.section-heading p {
    max-width: 64ch;
    margin: 0 auto;
}

.showcase,
.footer-main {
    display: grid;
    gap: 1.4rem;
}

.showcase-frame,
.testimonial-card,
.legal-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.detail-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.detail-list li {
    position: relative;
    padding-left: 1.45rem;
    color: var(--ink-soft);
}

.detail-list li + li {
    margin-top: 0.8rem;
}

.detail-list li::before {
    content: "";
    position: absolute;
    top: 0.74rem;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    transform: translateY(-50%);
}

.consent-row {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 1.8rem;
    color: var(--ink);
    font-weight: 600;
}

.consent-row input {
    margin-top: 0.28rem;
    accent-color: var(--accent);
}

.consent-row a,
.legal-card-head a,
.footer-links a,
.testimonial-copy a {
    color: var(--accent);
    font-weight: 700;
}

.inline-error {
    margin-top: 0.75rem;
    color: #cc2f57;
    font-weight: 700;
}

.feature-band {
    background: linear-gradient(180deg, rgba(252, 66, 123, 0.05) 0%, rgba(252, 66, 123, 0) 100%);
}

.showcase {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
}

.showcase-copy {
    max-width: 520px;
}

.showcase-media {
    display: flex;
    justify-content: center;
}

.showcase-frame {
    width: min(100%, 640px);
    margin: 0 auto;
    padding: 1rem;
    background: linear-gradient(180deg, #fff 0%, #fff2f7 100%);
}

.testimonial-wrap {
    padding-bottom: 0;
}

.testimonial-card {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
    padding: 1.8rem;
    background: linear-gradient(180deg, rgba(252, 66, 123, 0.04) 0%, #ffffff 100%);
}

.testimonial-avatar img {
    width: 118px;
    height: 118px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-copy {
    text-align: center;
}

.testimonial-text {
    color: var(--ink);
    font-size: 1.06rem;
    font-style: italic;
}

.testimonial-author {
    display: inline-block;
    margin-top: 0.9rem;
    color: var(--ink);
}

.legal-card {
    padding: 1.3rem;
}

.legal-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.legal-content {
    min-height: 560px;
    margin: 0;
    padding: 1rem;
    overflow: auto;
    border-radius: var(--radius-lg);
    background: #23303c;
    color: #eff4fb;
    font: 400 0.92rem/1.7 Consolas, "Courier New", monospace;
    white-space: pre-wrap;
}

.site-footer-wrap {
    margin-top: 5.5rem;
    background: var(--accent);
}

.site-footer {
    padding: 2rem 0 2.6rem;
}

.footer-main {
    grid-template-columns: minmax(0, 1fr) 240px;
    align-items: start;
}

.brand-footer,
.footer-copy,
.footer-links a,
.copyright {
    color: rgba(255, 255, 255, 0.92);
}

.footer-copy {
    max-width: 62ch;
    margin-top: 1rem;
}

.footer-links {
    display: grid;
    gap: 0.75rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--white);
}

.copyright {
    margin-top: 1.4rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 700ms ease, transform 700ms ease;
}

html.reveal-ready .reveal {
    opacity: 0;
    transform: translateY(24px);
}

html.reveal-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top {
    position: fixed;
    right: 1.35rem;
    bottom: 1.35rem;
    z-index: 70;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #ff5b92 100%);
    color: var(--white);
    box-shadow: 0 18px 36px rgba(93, 12, 39, 0.22);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(93, 12, 39, 0.28);
}

.back-to-top i {
    font-size: 1rem;
}

.floating-card {
    animation: floatMain 5.6s ease-in-out infinite;
}

.floating-card-delayed {
    animation: floatSecondary 6.4s ease-in-out infinite;
}

@keyframes floatMain {
    0%,
    100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes floatSecondary {
    0%,
    100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@media (max-width: 1080px) {
    .hero,
    .showcase,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 3rem;
    }

    .hero-copy h1 {
        max-width: 13ch;
    }

    .hero-media {
        min-height: auto;
    }

    .screen-card,
    .screen-card-main,
    .screen-card-detail {
        position: relative;
        width: 100%;
        max-width: none;
    }

    .screen-card-detail {
        margin-top: 1rem;
    }
}

@media (max-width: 920px) {
    .site-nav {
        position: relative;
    }

    .nav-toggle {
        display: inline-block;
    }

    .site-menu {
        position: absolute;
        top: calc(100% + 0.7rem);
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 0.65rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: var(--shadow);
    }

    .site-menu.is-open {
        display: flex;
    }

    .site-menu a {
        color: var(--ink);
    }

    .site-menu a:hover,
    .site-menu a:focus-visible {
        background: rgba(252, 66, 123, 0.08);
        color: var(--accent);
    }

    .testimonial-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 1.25rem), var(--container));
    }

    .back-to-top {
        right: 1rem;
        bottom: 1rem;
        width: 50px;
        height: 50px;
    }

    .site-nav-wrap {
        padding-top: 0.8rem;
    }

    .site-nav {
        padding: 0.85rem 1rem;
        border-radius: 20px;
    }

    .brand span {
        font-size: 1rem;
    }

    .hero {
        padding-top: 2.4rem;
    }

    .hero-actions {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .legal-card,
    .testimonial-card {
        padding: 1.3rem;
    }



    .legal-card-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .legal-content {
        min-height: 360px;
    }
}


.support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
    max-width: 1120px;
    margin: 0 auto;
}

.support-card {
    padding: 1.7rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    text-align: left;
}

.support-logo {
    display: block;
    width: auto;
    max-width: 100%;
    height: 76px;
    margin-bottom: 1.15rem;
    object-fit: contain;
    object-position: left center;
}

.support-card h3 {
    margin-bottom: 0.6rem;
}

.support-card p {
    color: var(--ink-soft);
}

@media (max-width: 1080px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
}
.terms-section {
    padding-bottom: 1rem;
}

.legal-stack {
    display: grid;
    gap: 1.4rem;
    max-width: 980px;
    margin: 0 auto;
}

.legal-card-inline {
    padding: 1.35rem;
}

.legal-content-inline {
    min-height: 260px;
}

@media (max-width: 640px) {
    .legal-content-inline {
        min-height: 220px;
    }
}

.download-section {
    position: relative;
}

.download-heading {
    max-width: 860px;
    margin: 0 auto 2.8rem;
}

.download-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.6rem;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
}

.download-panel {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.download-panel-main {
    padding: 2.2rem;
}

.download-panel-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem;
    background:
        radial-gradient(circle at top left, rgba(252, 66, 123, 0.14), transparent 42%),
        linear-gradient(180deg, #fff6fa 0%, #ffffff 100%);
}

.download-panel.download-panel-side {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.download-panel-head h3 {
    margin-top: 0.15rem;
    font-size: 2.05rem;
}


.download-intro {
    max-width: 40ch;
    margin-top: 1.45rem;
}

.requirements-list {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.requirements-list li {
    position: relative;
    padding-left: 1.45rem;
    color: var(--ink-soft);
}

.requirements-list li + li {
    margin-top: 0.8rem;
}

.requirements-list li::before {
    content: "";
    position: absolute;
    top: 0.74rem;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    transform: translateY(-50%);
}

.requirements-list a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.18em;
}

.requirements-list a:hover,
.requirements-list a:focus-visible {
    color: var(--accent-dark);
}

.download-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.7rem;
}

.download-preview-image {
    display: block;
    width: min(100%, 560px);
    height: auto;
    margin: 0 auto;
}

@media (max-width: 1080px) {
    .download-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.6rem;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
}

    .download-panel-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem;
    background:
        radial-gradient(circle at top left, rgba(252, 66, 123, 0.14), transparent 42%),
        linear-gradient(180deg, #fff6fa 0%, #ffffff 100%);
}
}

@media (max-width: 640px) {
    .download-panel-side {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.1rem;
        background:
            radial-gradient(circle at top left, rgba(252, 66, 123, 0.14), transparent 42%),
            linear-gradient(180deg, #fff6fa 0%, #ffffff 100%);
    }

    .download-panel-head h3 {
        font-size: 1.8rem;
    }

    .download-panel-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
.legal-card-inline {
    position: relative;
}

.legal-content-inline {
    min-height: 0;
}

.legal-content-inline.is-collapsible {
    overflow: hidden;
    transition: max-height 260ms ease;
}

.legal-content-inline.is-collapsed {
    position: relative;
}

.legal-content-inline.is-collapsed::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 64px;
    background: linear-gradient(180deg, rgba(35, 48, 60, 0) 0%, rgba(35, 48, 60, 0.96) 100%);
    pointer-events: none;
}

.legal-toggle {
    display: block;
    margin: 1rem auto 0;
    padding: 0.85rem 1.15rem;
    border: 1px solid rgba(252, 66, 123, 0.22);
    border-radius: 999px;
    background: rgba(252, 66, 123, 0.08);
    color: var(--accent-dark);
    font-weight: 800;
    cursor: pointer;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.legal-toggle:hover,
.legal-toggle:focus-visible {
    background: rgba(252, 66, 123, 0.14);
    border-color: rgba(252, 66, 123, 0.34);
    transform: translateY(-1px);
}

.footer-links-title {
    margin: 0 0 0.4rem;
    color: rgba(255, 255, 255, 0.96);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}






















/* Layout consistency overrides */
.section-block {
    padding: clamp(4.75rem, 8vw, 6.2rem) 0;
}

.download-section,
.showcase,
.terms-section {
    margin-top: 0;
}

.download-shell,
.support-grid,
.showcase,
.legal-stack {
    align-items: center;
}

.feature-band .container {
    max-width: 1120px;
    margin: 0 auto;
}

.support-card {
    height: 100%;
}

.download-panel-main {
    align-self: center;
}

.download-panel-side {
    min-height: 100%;
}

.terms-section .section-heading,
.feature-band .section-heading,
.download-section .section-heading {
    margin-bottom: clamp(2rem, 4vw, 2.8rem);
}

@media (max-width: 1080px) {
    .section-block {
        padding: 4.5rem 0;
    }

    .download-shell,
    .support-grid,
    .showcase,
    .legal-stack {
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .section-block {
        padding: 3.75rem 0;
    }

    .section-heading {
        margin-bottom: 1.8rem;
    }
}

/* Navigation and anchor recalibration */
.section-block {
    padding: clamp(4rem, 6vw, 5.25rem) 0;
}

.download-section.section-block {
    padding-top: clamp(3.25rem, 5vw, 4.25rem);
}

#download,
#terms {
    scroll-margin-top: 0;
}

.download-heading,
.terms-section .section-heading,
.feature-band .section-heading,
.showcase-copy,
.testimonial-card,
.legal-stack {
    position: relative;
}

.download-heading,
.terms-section .section-heading,
.feature-band .section-heading {
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.download-shell,
.support-grid,
.showcase,
.legal-stack {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.legal-stack {
    max-width: 980px;
}

@media (max-width: 1080px) {
    .download-shell {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .download-panel-side {
        min-height: 0;
        padding: 0;
    }
}

@media (max-width: 640px) {
    .section-block {
        padding: 3.5rem 0;
    }

    .download-section.section-block {
        padding-top: 2.75rem;
    }

    .download-panel-main {
        padding: 1.35rem;
    }

    .download-panel-side {
        padding: 0;
    }
}


/* Presentation image rounding */
.screen-card-main img,
.screen-card-detail img,
.showcase-frame img,
.download-preview-image {
    border-radius: 22px;
}



/* Stable anchor sections */
.download-section.reveal,
.terms-section.reveal {
    opacity: 1;
    transform: none;
    transition: none;
}






body[data-page="installed"] .testimonial-wrap {
    padding-bottom: clamp(4rem, 7vw, 5.5rem);
}

body[data-page="installed"] .site-footer-wrap {
    margin-top: 0;
}
body[data-page="404"] .site-footer-wrap {
    margin-top: 0;
}
body[data-page="404"] .hero {
    grid-template-columns: 1fr;
    justify-items: center;
}

body[data-page="404"] .hero-copy {
    width: min(100%, 860px);
    text-align: center;
}

body[data-page="404"] .hero-copy h1 {
    max-width: none;
}

body[data-page="404"] .hero-404-heading {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    width: fit-content;
    max-width: min(100%, 780px);
    margin: 0 auto;
    text-align: left;
}

body[data-page="404"] .hero-404-heading h1 {
    margin: 0;
    max-width: 12ch;
    text-align: left;
}

body[data-page="404"] .hero-404-heading .section-kicker {
    margin: 0;
    white-space: nowrap;
}

body[data-page="404"] .hero-text-404 {
    margin-left: auto;
    margin-right: auto;
}

body[data-page="404"] .hero-actions-404 {
    justify-content: center;
}

@media (max-width: 640px) {
    body[data-page="404"] .hero-404-heading {
        align-items: center;
        text-align: center;
    }

    body[data-page="404"] .hero-404-heading h1 {
        text-align: center;
    }

    body[data-page="404"] .hero-404-heading .section-kicker {
        margin-top: 0;
    }
}


/* Motion and responsive polish */
body {
    overflow-x: clip;
}

.site-nav-wrap {
    transition: padding 260ms ease, transform 260ms ease, opacity 260ms ease;
}

.site-nav {
    will-change: transform, background-color, box-shadow;
}

.site-nav.is-scrolled {
    transform: translateY(-2px) scale(0.992);
}

.site-nav .brand,
.site-nav .brand img,
.site-menu a,
.nav-toggle,
.nav-toggle span,
.button,
.support-card,
.download-panel,
.showcase-frame,
.testimonial-card,
.legal-card,
.back-to-top {
    transition-duration: 220ms;
    transition-timing-function: ease;
}

.site-menu a,
.button,
.support-card,
.download-panel,
.showcase-frame,
.testimonial-card,
.legal-card {
    will-change: transform, box-shadow, opacity;
}

.support-card:hover,
.support-card:focus-within,
.download-panel-main:hover,
.showcase-frame:hover,
.testimonial-card:hover,
.legal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 48px rgba(93, 12, 39, 0.12);
}

.showcase-frame:hover img,
.screen-card:hover img {
    transform: scale(1.015);
}

.screen-card img,
.showcase-frame img,
.download-preview-image {
    transition: transform 420ms ease;
}

.site-nav-wrap,
.hero-copy > *,
.hero-media,
.hero-copy-404 > *,
.testimonial-card,
.download-panel,
.support-card,
.showcase-copy,
.showcase-frame,
.legal-card,
.site-footer-wrap {
    opacity: 1;
    transform: none;
    transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
    animation: intro-rise 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes intro-rise {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.site-nav-wrap {
    animation-delay: 0ms;
}

.hero-copy > .section-kicker,
.hero-copy-404 > .section-kicker,
.hero-copy-404 > .hero-404-heading {
    animation-delay: 90ms;
}

.hero-copy > h1,
.hero-copy-404 > .hero-text-404 {
    animation-delay: 180ms;
}

.hero-copy > .hero-text,
.hero-copy > .hero-actions,
.hero-copy-404 > .hero-actions-404 {
    animation-delay: 270ms;
}

.hero-media {
    animation-delay: 360ms;
}

body[data-page="home"] .hero-copy,
body[data-page="installed"] .hero-copy,
body[data-page="404"] .hero-copy {
    min-width: 0;
}

body[data-page="404"] .hero {
    align-items: center;
}

body[data-page="404"] .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body[data-page="404"] .hero-text-404,
body[data-page="404"] .hero-actions-404 {
    width: 100%;
}

body[data-page="404"] .hero-404-heading {
    align-items: flex-start;
}

@media (max-width: 1200px) {
    .hero {
        gap: clamp(1.8rem, 4vw, 3rem);
    }

    .screen-card-main {
        width: min(100%, 560px);
    }

    .screen-card-detail {
        width: min(76%, 340px);
    }
}

@media (max-width: 1080px) {
    .hero {
        min-height: auto;
        padding: 2rem 0 3.5rem;
        justify-items: center;
        text-align: center;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-copy h1,
    .hero-text {
        max-width: 18ch;
        text-wrap: balance;
    }

    .hero-text {
        max-width: 62ch;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-media {
        width: min(100%, 760px);
        margin: 0 auto;
    }

    .download-shell,
    .showcase,
    .support-grid,
    .legal-stack,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .showcase-copy {
        max-width: none;
        text-align: center;
    }

    .detail-list {
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .testimonial-card {
        max-width: 760px;
    }
}

@media (max-width: 920px) {
    .site-nav-wrap {
        padding-top: 0.9rem;
    }

    .site-nav {
        width: min(calc(100% - 1.25rem), var(--container));
        padding: 0.9rem 1rem;
    }

    .site-menu {
        display: flex;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px) scale(0.985);
        transform-origin: top center;
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    .site-menu.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .site-menu a {
        padding: 0.9rem 1rem;
    }
}

@media (max-width: 760px) {
    .hero-shell {
        padding-top: 6.15rem;
    }

    .hero {
        padding: 1.35rem 0 2.8rem;
    }

    .hero-copy h1,
    body[data-page="404"] .hero-404-heading h1 {
        max-width: 11ch;
        font-size: clamp(2.35rem, 9vw, 3.35rem);
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-actions,
    .download-panel-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .button,
    .download-panel-actions .button {
        width: 100%;
    }

    .screen-card-main {
        width: 100%;
    }

    .screen-card-detail {
        width: min(88%, 320px);
    }

    .download-panel-main {
        padding: 1.5rem;
    }

    .section-heading h2,
    .showcase-copy h2 {
        text-wrap: balance;
    }

    .support-card,
    .legal-card,
    .testimonial-card,
    .showcase-frame {
        border-radius: 24px;
    }

    body[data-page="installed"] .hero,
    body[data-page="404"] .hero {
        min-height: calc(100dvh - var(--nav-offset));
    }
}

@media (max-width: 640px) {
    .section-block {
        padding: 3.4rem 0;
    }

    .site-nav-wrap {
        padding-top: 0.7rem;
    }

    .site-nav {
        border-radius: 18px;
    }

    .brand {
        gap: 0.65rem;
        font-size: 1rem;
    }

    .brand img {
        width: 38px;
        height: 38px;
    }

    .hero-copy h1,
    body[data-page="404"] .hero-404-heading h1 {
        max-width: 10.5ch;
    }

    .hero-text,
    body[data-page="404"] .hero-text-404 {
        font-size: 0.98rem;
    }

    .hero-media {
        width: 100%;
    }

    .screen-card-main img,
    .screen-card-detail img,
    .showcase-frame img,
    .download-preview-image {
        border-radius: 18px;
    }

    .screen-card {
        border-radius: 22px;
    }

    .screen-card-detail {
        padding: 0.8rem;
    }

    .download-heading,
    .feature-band .section-heading,
    .terms-section .section-heading,
    .section-heading {
        margin-bottom: 1.5rem;
    }

    .download-panel-main,
    .support-card,
    .legal-card,
    .testimonial-card {
        padding: 1.3rem;
    }

    .consent-row {
        align-items: flex-start;
    }

    .download-preview-image {
        width: 100%;
    }

    .footer-main {
        text-align: center;
    }

    .footer-links {
        justify-items: center;
    }

    .footer-copy {
        margin-left: auto;
        margin-right: auto;
    }

    body[data-page="404"] .hero-404-heading {
        align-items: center;
        text-align: center;
    }

    body[data-page="404"] .hero-404-heading h1 {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

.nav-toggle span {
    transition: transform 220ms ease, opacity 220ms ease, background-color 220ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
}


/* Hard mobile compatibility overrides */
@media (max-width: 920px) {
    body {
        overflow-x: hidden;
    }

    .site-nav {
        align-items: center;
    }

    .site-menu {
        position: absolute;
        top: calc(100% + 0.75rem);
        right: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        padding: 0.65rem;
        border: 1px solid rgba(252, 66, 123, 0.12);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 20px 40px rgba(24, 26, 39, 0.12);
        backdrop-filter: blur(14px);
    }

    .site-menu a {
        color: var(--ink) !important;
        text-align: center;
    }

    .hero,
    .download-shell,
    .support-grid,
    .showcase,
    .legal-stack,
    .footer-main {
        grid-template-columns: 1fr !important;
    }

    .hero {
        min-height: auto;
        text-align: center;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-copy h1,
    .hero-text,
    .section-heading h2,
    .showcase-copy h2 {
        max-width: 100%;
    }

    .hero-actions,
    .download-panel-actions {
        justify-content: center;
    }

    .hero-media {
        width: 100%;
        min-height: auto;
    }

    .screen-card,
    .screen-card-main,
    .screen-card-detail {
        position: relative;
        inset: auto;
        width: 100% !important;
        max-width: 100%;
        margin: 0 auto;
    }

    .screen-card-detail {
        margin-top: 1rem;
    }

    .download-panel-side {
        min-height: 0;
        padding: 0 !important;
    }

    .showcase-copy,
    .section-heading,
    .footer-main {
        text-align: center;
    }

    .detail-list {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .testimonial-card {
        grid-template-columns: 1fr !important;
        justify-items: center;
        text-align: center;
    }

    .testimonial-avatar {
        display: flex;
        justify-content: center;
    }

    .footer-links {
        justify-items: center;
    }
}

@media (max-width: 640px) {
    .site-nav-wrap {
        padding-top: 0.65rem;
    }

    .site-nav {
        width: min(calc(100% - 1rem), var(--container));
        padding: 0.8rem 0.9rem;
        border-radius: 18px;
    }

    .brand {
        gap: 0.6rem;
        min-width: 0;
    }

    .brand span {
        font-size: 0.95rem;
        line-height: 1.2;
    }

    .brand img {
        width: 36px;
        height: 36px;
    }

    .hero-shell {
        padding-top: 5.9rem;
    }

    .hero,
    body[data-page="installed"] .hero,
    body[data-page="404"] .hero {
        min-height: auto;
        padding: 1.2rem 0 2.4rem;
    }

    h1 {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }

    h2 {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

    .hero-text,
    body[data-page="404"] .hero-text-404 {
        max-width: 100%;
        font-size: 0.98rem;
    }

    .hero-actions,
    .download-panel-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .button,
    .download-panel-actions .button,
    .button {
        width: 100%;
    }

    .screen-card,
    .support-card,
    .download-panel,
    .legal-card,
    .testimonial-card,
    .showcase-frame {
        border-radius: 22px;
    }

    .screen-card-main img,
    .screen-card-detail img,
    .showcase-frame img,
    .download-preview-image {
        border-radius: 16px;
    }

    .download-panel-main,
    .support-card,
    .legal-card,
    .testimonial-card,
    .showcase-frame {
        padding: 1.2rem;
    }

    .download-preview-image {
        width: 100%;
    }

    .legal-content,
    .legal-content-inline {
        font-size: 0.84rem;
    }

    .footer-copy {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .back-to-top {
        right: 0.9rem;
        bottom: 0.9rem;
        width: 48px;
        height: 48px;
    }

    body[data-page="404"] .hero-copy {
        width: 100%;
    }

    body[data-page="404"] .hero-404-heading {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    body[data-page="404"] .hero-404-heading h1 {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(calc(100% - 0.85rem), var(--container));
    }

    .site-nav {
        padding: 0.75rem 0.8rem;
    }

    .nav-toggle {
        width: 44px;
        height: 44px;
    }

    .section-block {
        padding: 3rem 0;
    }

    .download-panel-main,
    .support-card,
    .legal-card,
    .testimonial-card,
    .showcase-frame {
        padding: 1rem;
    }

    .section-kicker {
        letter-spacing: 0.14em;
        font-size: 0.72rem;
    }
}

/* Responsive cleanup v2 */
@media (max-width: 1024px) {
    .hero,
    .download-shell,
    .support-grid,
    .showcase,
    .legal-stack,
    .footer-main {
        grid-template-columns: 1fr !important;
    }

    .hero {
        min-height: auto;
        gap: 1.75rem;
        padding: 1.75rem 0 3rem;
        justify-items: center;
        text-align: center;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-copy h1,
    .hero-text,
    .section-heading h2,
    .showcase-copy h2 {
        max-width: 100%;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .download-panel-actions {
        justify-content: center;
    }

    .hero-media {
        width: min(100%, 760px);
        min-height: auto;
        margin: 0 auto;
    }

    .screen-card,
    .screen-card-main,
    .screen-card-detail {
        position: relative;
        inset: auto;
        width: 100% !important;
        max-width: 100%;
        margin: 0 auto;
    }

    .screen-card-detail {
        margin-top: 1rem;
        padding: 0.9rem;
    }

    .showcase-copy,
    .section-heading,
    .footer-main {
        text-align: center;
    }

    .detail-list {
        max-width: min(100%, 680px);
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .testimonial-card {
        grid-template-columns: 1fr !important;
        justify-items: center;
        text-align: center;
        max-width: 760px;
    }

    .testimonial-avatar {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    body {
        overflow-x: hidden;
    }

    .site-nav-wrap {
        padding-top: 0.85rem;
    }

    .site-nav {
        position: relative;
        width: min(calc(100% - 1.1rem), var(--container));
        padding: 0.9rem 1rem;
        border-radius: 20px;
    }

    .site-nav.is-scrolled {
        transform: none;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .site-menu {
        position: absolute;
        top: calc(100% + 0.7rem);
        right: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        max-height: min(70vh, 420px);
        padding: 0.65rem;
        overflow: auto;
        border: 1px solid rgba(252, 66, 123, 0.12);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 20px 40px rgba(24, 26, 39, 0.12);
        backdrop-filter: blur(14px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px) scale(0.985);
        transform-origin: top center;
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    .site-menu.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .site-menu a {
        color: var(--ink) !important;
        text-align: center;
        padding: 0.9rem 1rem;
    }

    .download-section.section-block {
        padding-top: 2.9rem;
    }

    .download-shell {
        gap: 1.15rem;
        align-items: stretch;
    }

    .download-panel-main {
        padding: 1.45rem !important;
    }

    .download-panel.download-panel-side {
        order: 2;
        padding: 0 !important;
    }

    .download-preview-image {
        width: 100%;
        max-width: 100%;
    }

    .support-card,
    .legal-card,
    .testimonial-card,
    .showcase-frame,
    .download-panel {
        border-radius: 24px;
    }

    .footer-links {
        justify-items: center;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 1rem), var(--container));
    }

    .site-nav-wrap {
        padding-top: 0.65rem;
    }

    .site-nav {
        width: min(calc(100% - 1rem), var(--container));
        padding: 0.78rem 0.88rem;
        border-radius: 18px;
    }

    .brand {
        gap: 0.6rem;
        min-width: 0;
    }

    .brand img {
        width: 36px;
        height: 36px;
    }

    .brand span {
        font-size: 0.94rem;
        line-height: 1.15;
    }

    .hero-shell {
        padding-top: 5.8rem;
    }

    .hero,
    body[data-page="installed"] .hero,
    body[data-page="404"] .hero {
        min-height: auto;
        gap: 1.2rem;
        padding: 1.15rem 0 2.35rem;
    }

    h1 {
        font-size: clamp(2.15rem, 10.5vw, 2.95rem);
    }

    h2 {
        font-size: clamp(1.7rem, 8.2vw, 2.3rem);
    }

    .hero-text,
    body[data-page="404"] .hero-text-404 {
        max-width: 100%;
        font-size: 0.98rem;
    }

    .hero-actions,
    .download-panel-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .hero-actions .button,
    .download-panel-actions .button,
    .button {
        width: 100%;
    }

    .floating-card,
    .floating-card-delayed {
        animation: none;
    }

    .screen-card,
    .download-panel,
    .support-card,
    .legal-card,
    .testimonial-card,
    .showcase-frame {
        border-radius: 20px;
    }

    .screen-card-main img,
    .screen-card-detail img,
    .showcase-frame img,
    .download-preview-image {
        border-radius: 16px;
    }

    .download-section.section-block {
        padding-top: 2.45rem;
    }

    .download-heading,
    .feature-band .section-heading,
    .terms-section .section-heading,
    .section-heading {
        margin-bottom: 1.35rem;
    }

    .download-panel-main {
        padding: 1.2rem !important;
    }

    .download-panel-head h3 {
        font-size: 1.55rem;
    }

    .download-intro {
        max-width: none;
        margin-top: 0.95rem;
        font-size: 0.97rem;
    }

    .requirements-list {
        margin-top: 1.2rem;
    }

    .requirements-list li,
    .detail-list li {
        padding-left: 1.2rem;
    }

    .requirements-list li + li,
    .detail-list li + li {
        margin-top: 0.7rem;
    }

    .consent-row {
        gap: 0.65rem;
        margin-top: 1.2rem;
        font-size: 0.95rem;
    }

    .inline-error {
        font-size: 0.92rem;
    }

    .support-card,
    .legal-card,
    .testimonial-card,
    .showcase-frame {
        padding: 1.15rem;
    }

    .support-card,
    .showcase-copy,
    .section-heading,
    .footer-main {
        text-align: center;
    }

    .support-logo {
        height: 60px;
        margin-left: auto;
        margin-right: auto;
        object-position: center;
    }

    .legal-content,
    .legal-content-inline {
        font-size: 0.84rem;
    }

    .footer-copy {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .back-to-top {
        right: 0.9rem;
        bottom: 0.9rem;
        width: 48px;
        height: 48px;
    }

    body[data-page="404"] .hero-copy {
        width: 100%;
    }

    body[data-page="404"] .hero-404-heading,
    body[data-page="404"] .hero-404-heading h1 {
        width: 100%;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(calc(100% - 0.85rem), var(--container));
    }

    .site-nav {
        padding: 0.72rem 0.78rem;
    }

    .nav-toggle {
        width: 44px;
        height: 44px;
    }

    .section-block {
        padding: 3rem 0;
    }

    .download-panel-main,
    .support-card,
    .legal-card,
    .testimonial-card,
    .showcase-frame {
        padding: 1rem !important;
    }

    .section-kicker {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
    }
}

@media (hover: none) and (pointer: coarse) {
    .support-card:hover,
    .download-panel:hover,
    .showcase-frame:hover,
    .testimonial-card:hover,
    .legal-card:hover,
    .button:hover,
    .back-to-top:hover {
        transform: none;
    }
}

/* Mobile download layout */
@media (max-width: 700px) {
    .download-shell {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        align-items: stretch !important;
    }

    .download-panel-main {
        display: block !important;
        width: 100% !important;
        padding: 1.2rem !important;
        background: var(--surface) !important;
        border: 1px solid var(--border) !important;
        box-shadow: var(--shadow-soft) !important;
    }

    .download-panel-main > * {
        width: 100% !important;
    }

    .download-panel-head,
    .download-panel-head > div {
        display: block !important;
        width: 100% !important;
    }

    .download-panel-head h3 {
        font-size: 1.55rem !important;
        line-height: 1.08;
    }

    .download-intro {
        display: block !important;
        max-width: none !important;
        margin-top: 0.95rem !important;
        font-size: 0.97rem !important;
        line-height: 1.65;
    }

    .requirements-list {
        display: block !important;
        margin: 1.15rem 0 0 !important;
        padding: 0 !important;
    }

    .requirements-list li {
        display: block !important;
        padding-left: 1.2rem !important;
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .consent-row {
        display: flex !important;
        align-items: flex-start !important;
        gap: 0.65rem !important;
        margin-top: 1.15rem !important;
    }

    .consent-row span {
        display: block !important;
        flex: 1 1 auto;
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .download-panel-actions {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.7rem !important;
        width: 100% !important;
        margin-top: 1.25rem !important;
    }

    .download-panel-actions .button {
        width: 100% !important;
        min-height: 52px;
        white-space: normal;
    }

    .download-panel.download-panel-side {
        display: block !important;
        order: 2;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .download-preview-image {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
    }
}

/* Mobile navbar polish */
@media (max-width: 700px) {
    .site-nav-wrap {
        padding-top: 0.7rem !important;
    }

    .site-nav {
        width: min(calc(100% - 1rem), var(--container)) !important;
        min-height: 60px;
        padding: 0.72rem 0.85rem !important;
        border: 1px solid rgba(255, 255, 255, 0.18) !important;
        border-radius: 18px !important;
        background: rgba(255, 255, 255, 0.12) !important;
        backdrop-filter: blur(16px);
        box-shadow: 0 16px 34px rgba(93, 12, 39, 0.16);
    }

    .site-nav .brand {
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 56px);
        gap: 0.7rem;
    }

    .site-nav .brand img {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
    }

    .site-nav .brand span {
        display: block;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0.98rem;
        line-height: 1.15;
    }

    .nav-toggle {
        width: 44px !important;
        height: 44px !important;
        margin-left: 0.6rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.16) !important;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    }

    .nav-toggle span {
        width: 17px;
        height: 2px;
        margin: 4px auto;
    }

    .site-nav.is-scrolled {
        transform: none !important;
        background: rgba(255, 255, 255, 0.92) !important;
        border-color: rgba(252, 66, 123, 0.16) !important;
    }

    .site-nav.is-scrolled .brand {
        color: var(--ink) !important;
    }

    .site-nav.is-scrolled .nav-toggle {
        background: rgba(252, 66, 123, 0.08) !important;
        box-shadow: inset 0 0 0 1px rgba(252, 66, 123, 0.12);
    }

    .site-menu {
        top: calc(100% + 0.55rem) !important;
        border-radius: 18px !important;
    }
}

@media (max-width: 420px) {
    .site-nav {
        min-height: 56px;
        padding: 0.68rem 0.78rem !important;
    }

    .site-nav .brand {
        max-width: calc(100% - 50px);
        gap: 0.62rem;
    }

    .site-nav .brand img {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .site-nav .brand span {
        font-size: 0.92rem;
    }

    .nav-toggle {
        width: 42px !important;
        height: 42px !important;
        margin-left: 0.45rem;
    }
}

/* Burger icon fix */
@media (max-width: 700px) {
    .nav-toggle {
        position: relative;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .nav-toggle span {
        position: absolute;
        left: 50%;
        width: 16px;
        height: 2px;
        margin: 0;
        border-radius: 999px;
        transform-origin: center;
        background: var(--white);
    }

    .nav-toggle span:first-child {
        top: 17px;
        transform: translateX(-50%);
    }

    .nav-toggle span:last-child {
        top: 23px;
        transform: translateX(-50%);
    }

    .nav-toggle[aria-expanded="true"] span:first-child {
        top: 20px;
        transform: translateX(-50%) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:last-child {
        top: 20px;
        transform: translateX(-50%) rotate(-45deg);
    }

    .site-nav.is-scrolled .nav-toggle span {
        background: var(--ink);
    }
}

@media (max-width: 420px) {
    .nav-toggle span:first-child {
        top: 16px;
    }

    .nav-toggle span:last-child {
        top: 22px;
    }

    .nav-toggle[aria-expanded="true"] span:first-child,
    .nav-toggle[aria-expanded="true"] span:last-child {
        top: 19px;
    }
}
