    :root {
        --bg: #090911;
        --bg-soft: #101018;
        --panel: #171727;
        --panel-2: #20203a;
        --text: #f7f8ff;
        --muted: #a9abc3;
        --border: rgba(255, 255, 255, .10);
        --cyan: #00d9ff;
        --blue: #2586ff;
        --purple: #9b59ff;
        --pink: #ff3b81;
        --yellow: #ffcc00;
        --green: #8cff00;
        --orange: #ff6b35;
        --max: 1180px;
        --radius: 24px;
        --shadow: 0 24px 80px rgba(0, 0, 0, .45);
    }

    * {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        color-scheme: dark;
    }

    body {
        margin: 0;
        min-width: 300px;
        overflow-x: hidden;
        font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        color: var(--text);
        background:
            radial-gradient(circle at 15% 5%, rgba(155, 89, 255, .20), transparent 25rem),
            radial-gradient(circle at 90% 15%, rgba(0, 217, 255, .16), transparent 28rem),
            linear-gradient(180deg, #111126 0%, var(--bg) 40%, #06060d 100%);
    }

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        opacity: .22;
        background-image:
            linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
        background-size: 38px 38px;
        mask-image: linear-gradient(to bottom, black, transparent 82%);
        z-index: -1;
    }

    img {
        max-width: 100%;
        display: block;
    }

    button,
    a {
        -webkit-tap-highlight-color: transparent;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    .container {
        width: min(var(--max), calc(100% - 36px));
        margin-inline: auto;
    }

    .skip-link {
        position: fixed;
        left: 16px;
        top: -60px;
        padding: 10px 14px;
        border-radius: 10px;
        background: var(--cyan);
        color: #00131a;
        z-index: 1000;
    }

    .skip-link:focus {
        top: 16px;
    }

    .nav-wrap {
        position: sticky;
        top: 0;
        z-index: 100;
        padding-top: env(safe-area-inset-top);
        background: rgba(9, 9, 17, .74);
        backdrop-filter: blur(18px);
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .nav {
        min-height: 74px;
        display: flex;
        align-items: center;
        gap: 24px;
    }

    .brand {
        display: inline-flex;
        align-items: center;
        gap: 11px;
        margin-right: auto;
        font-weight: 900;
        letter-spacing: -.03em;
    }

    .brand img {
        width: 43px;
        height: 43px;
        border-radius: 12px;
        object-fit: cover;
        box-shadow: 0 0 24px rgba(0, 217, 255, .26);
    }

    .brand span {
        font-size: 1.05rem;
    }

    .brand small {
        display: block;
        color: var(--muted);
        font-size: .64rem;
        letter-spacing: .13em;
        font-weight: 700;
        margin-top: 1px;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 25px;
        color: #d8d9e7;
        font-size: .92rem;
        font-weight: 650;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
        color: var(--cyan);
    }

    .lang-picker {
        position: relative;
        isolation: isolate;
        min-width: 102px;
        height: 46px;
        display: inline-flex;
        align-items: center;
        border: 1px solid rgba(0, 217, 255, .42);
        border-radius: 13px;
        background:
            linear-gradient(135deg, rgba(0, 217, 255, .13), transparent 46%),
            linear-gradient(180deg, #20203a, #111120);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, .12),
            inset 0 -3px 0 rgba(0, 0, 0, .30),
            0 0 0 1px rgba(0, 0, 0, .35),
            0 8px 22px rgba(0, 217, 255, .10);
        transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }

    .lang-picker::after {
        content: "";
        position: absolute;
        z-index: -1;
        inset: 5px;
        border: 1px solid rgba(255, 255, 255, .055);
        border-radius: 8px;
        pointer-events: none;
    }

    .lang-picker:hover {
        transform: translateY(-1px);
        border-color: rgba(0, 217, 255, .78);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, .15),
            inset 0 -3px 0 rgba(0, 0, 0, .30),
            0 0 0 1px rgba(0, 0, 0, .35),
            0 0 22px rgba(0, 217, 255, .22);
    }

    .lang-picker:focus-within {
        border-color: var(--yellow);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, .15),
            inset 0 -3px 0 rgba(0, 0, 0, .30),
            0 0 0 3px rgba(255, 204, 0, .18),
            0 0 24px rgba(255, 204, 0, .16);
    }

    .lang-blocks {
        position: relative;
        width: 25px;
        height: 25px;
        flex: 0 0 25px;
        margin-left: 11px;
        filter: drop-shadow(0 0 6px rgba(0, 217, 255, .55));
        pointer-events: none;
    }

    .lang-blocks i {
        position: absolute;
        width: 10px;
        height: 10px;
        border-radius: 2px;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45);
    }

    .lang-blocks i:nth-child(1) {
        top: 1px;
        left: 1px;
        background: var(--cyan);
    }

    .lang-blocks i:nth-child(2) {
        top: 1px;
        left: 13px;
        background: var(--purple);
    }

    .lang-blocks i:nth-child(3) {
        top: 13px;
        left: 13px;
        background: var(--pink);
    }

    .lang-select {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 100%;
        min-width: 0;
        appearance: none;
        -webkit-appearance: none;
        border: 0;
        outline: 0;
        color: var(--text);
        background: transparent;
        padding: 0 29px 2px 9px;
        font: inherit;
        font-size: .78rem;
        font-weight: 900;
        letter-spacing: .12em;
        text-shadow: 0 0 10px rgba(255, 255, 255, .22);
        cursor: pointer;
    }

    .lang-select option {
        color: var(--text);
        background: var(--panel);
        font-weight: 800;
    }

    .lang-chevron {
        position: absolute;
        z-index: 2;
        top: 50%;
        right: 12px;
        width: 8px;
        height: 8px;
        border-right: 2px solid var(--cyan);
        border-bottom: 2px solid var(--cyan);
        transform: translateY(-70%) rotate(45deg);
        filter: drop-shadow(0 0 4px rgba(0, 217, 255, .75));
        pointer-events: none;
    }

    .nav-cta,
    .primary-btn,
    .secondary-btn {
        min-height: 50px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border-radius: 15px;
        font-weight: 850;
        border: 0;
        cursor: pointer;
        transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    }

    .nav-cta {
        min-height: 44px;
        padding: 0 17px;
        background: linear-gradient(90deg, var(--cyan), var(--blue));
        color: #001018;
        box-shadow: 0 8px 30px rgba(0, 217, 255, .24);
    }

    .primary-btn {
        padding: 0 23px;
        color: #060610;
        background: linear-gradient(90deg, var(--cyan), #51a6ff 44%, var(--purple));
        box-shadow: 0 14px 36px rgba(0, 217, 255, .20);
    }

    .secondary-btn {
        padding: 0 23px;
        color: var(--text);
        border: 1px solid rgba(255, 255, 255, .15);
        background: rgba(255, 255, 255, .06);
    }

    .primary-btn:hover,
    .secondary-btn:hover,
    .nav-cta:hover {
        transform: translateY(-2px);
        filter: brightness(1.06);
    }

    .hero {
        position: relative;
        min-height: 770px;
        display: grid;
        grid-template-columns: .86fr 1.14fr;
        align-items: center;
        gap: 54px;
        padding: 80px 0 72px;
    }

    .hero-copy {
        position: relative;
        z-index: 2;
    }

    .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 8px 12px;
        border: 1px solid rgba(0, 217, 255, .20);
        border-radius: 999px;
        color: #c6f7ff;
        background: rgba(0, 217, 255, .08);
        font-size: .78rem;
        letter-spacing: .08em;
        font-weight: 850;
        text-transform: uppercase;
    }

    .eyebrow::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--green);
        box-shadow: 0 0 13px var(--green);
    }

    h1 {
        margin: 22px 0 18px;
        max-width: 650px;
        font-size: clamp(3.2rem, 7.7vw, 6.7rem);
        line-height: .86;
        letter-spacing: -.072em;
    }

    .block-word {
        display: block;
        color: #fff;
        text-shadow: 0 6px 0 #243b88, 0 0 32px rgba(0, 217, 255, .26);
    }

    .maker-word {
        display: block;
        color: var(--yellow);
        text-shadow: 0 6px 0 #a74608, 0 0 32px rgba(255, 204, 0, .25);
    }

    .hero-copy>p {
        max-width: 600px;
        margin: 0 0 30px;
        color: #c6c8db;
        font-size: clamp(1rem, 1.5vw, 1.18rem);
        line-height: 1.75;
    }

    .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 13px;
        margin-bottom: 28px;
    }

    .play-store-mark {
        width: 24px;
        height: 24px;
        display: grid;
        place-items: center;
        border-radius: 7px;
        background: #07121b;
        color: #fff;
        font-size: .85rem;
    }

    .hero-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .stat-pill {
        min-width: 124px;
        padding: 12px 15px;
        border: 1px solid var(--border);
        border-radius: 15px;
        background: rgba(255, 255, 255, .045);
    }

    .stat-pill strong {
        display: block;
        font-size: 1.18rem;
        color: var(--text);
    }

    .stat-pill span {
        display: block;
        margin-top: 3px;
        color: var(--muted);
        font-size: .78rem;
    }

    .hero-art {
        position: relative;
        min-height: 650px;
        display: grid;
        place-items: center;
    }

    .hero-glow {
        position: absolute;
        width: 90%;
        aspect-ratio: 1;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0, 217, 255, .20), rgba(155, 89, 255, .12) 38%, transparent 68%);
        filter: blur(18px);
    }

    .feature-banner {
        position: relative;
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 30px;
        overflow: hidden;
        transform: perspective(1100px) rotateY(-5deg) rotateX(1deg);
        box-shadow: var(--shadow), 0 0 50px rgba(155, 89, 255, .18);
        background: #080918;
    }

    .feature-banner img {
        width: 100%;
        aspect-ratio: 1.82 / 1;
        object-fit: cover;
    }

    .floating-phone {
        position: absolute;
        right: -8px;
        bottom: 5px;
        width: min(34%, 230px);
        padding: 7px;
        border: 1px solid rgba(255, 255, 255, .20);
        border-radius: 28px;
        background: linear-gradient(160deg, #31314d, #0d0d18);
        transform: rotate(5deg);
        box-shadow: 0 28px 70px rgba(0, 0, 0, .55), 0 0 32px rgba(0, 217, 255, .19);
    }

    .floating-phone img {
        width: 100%;
        border-radius: 21px;
        aspect-ratio: 9 / 19.5;
        object-fit: cover;
        object-position: top;
    }

    .floating-cube {
        position: absolute;
        width: 42px;
        height: 42px;
        border-radius: 9px;
        background: linear-gradient(145deg, #f8fbff, var(--purple) 30%, #4d12be);
        box-shadow: inset 0 3px 3px rgba(255, 255, 255, .6), 0 0 26px rgba(155, 89, 255, .8);
        animation: float 4.8s ease-in-out infinite;
    }

    .cube-a {
        left: 2%;
        bottom: 14%;
    }

    .cube-b {
        right: 12%;
        top: 2%;
        width: 29px;
        height: 29px;
        background: linear-gradient(145deg, #fff, var(--cyan) 30%, #0875d8);
        box-shadow: inset 0 3px 3px rgba(255, 255, 255, .6), 0 0 26px rgba(0, 217, 255, .8);
        animation-delay: -1.8s;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0) rotate(-6deg);
        }

        50% {
            transform: translateY(-18px) rotate(7deg);
        }
    }

    section {
        padding: 88px 0;
    }

    .section-head {
        max-width: 730px;
        margin: 0 auto 44px;
        text-align: center;
    }

    .section-head .mini-title {
        color: var(--cyan);
        font-size: .78rem;
        font-weight: 900;
        letter-spacing: .14em;
        text-transform: uppercase;
    }

    .section-head h2 {
        margin: 10px 0 13px;
        font-size: clamp(2rem, 4vw, 3.25rem);
        line-height: 1.05;
        letter-spacing: -.045em;
    }

    .section-head p {
        margin: 0;
        color: var(--muted);
        line-height: 1.7;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 17px;
    }

    .feature-card {
        position: relative;
        min-height: 205px;
        padding: 24px;
        overflow: hidden;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        background:
            linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .018));
        box-shadow: 0 15px 45px rgba(0, 0, 0, .20);
    }

    .feature-card::after {
        content: "";
        position: absolute;
        width: 110px;
        height: 110px;
        right: -42px;
        top: -42px;
        border-radius: 50%;
        background: var(--card-accent, var(--cyan));
        filter: blur(48px);
        opacity: .22;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        display: grid;
        place-items: center;
        margin-bottom: 19px;
        border-radius: 14px;
        color: #fff;
        font-size: 1.35rem;
        background: color-mix(in srgb, var(--card-accent, var(--cyan)) 35%, transparent);
        border: 1px solid color-mix(in srgb, var(--card-accent, var(--cyan)) 55%, transparent);
        box-shadow: 0 0 24px color-mix(in srgb, var(--card-accent, var(--cyan)) 25%, transparent);
    }

    .feature-card h3 {
        margin: 0 0 9px;
        font-size: 1.08rem;
    }

    .feature-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.62;
        font-size: .92rem;
    }

    .gallery-section {
        overflow: hidden;
        background:
            radial-gradient(circle at 50% 0%, rgba(0, 217, 255, .08), transparent 38rem),
            linear-gradient(180deg, transparent, rgba(255, 255, 255, .02), transparent);
    }

    .gallery {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(210px, 260px);
        gap: 18px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 12px max(18px, calc((100vw - var(--max)) / 2)) 27px;
        scrollbar-width: thin;
        scrollbar-color: var(--purple) rgba(255, 255, 255, .05);
    }

    .shot {
        position: relative;
        scroll-snap-align: center;
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 26px;
        overflow: hidden;
        background: #12121e;
        box-shadow: 0 20px 50px rgba(0, 0, 0, .34);
        cursor: zoom-in;
        transition: transform .25s ease, border-color .25s ease;
    }

    .shot:hover {
        transform: translateY(-7px);
        border-color: rgba(0, 217, 255, .45);
    }

    .shot img {
        width: 100%;
        aspect-ratio: 9 / 19.5;
        object-fit: cover;
        object-position: top;
    }

    .shot span {
        position: absolute;
        inset: auto 10px 10px;
        padding: 9px 11px;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 12px;
        font-size: .78rem;
        font-weight: 750;
        background: rgba(5, 5, 14, .70);
        backdrop-filter: blur(12px);
    }

    .how-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        counter-reset: steps;
    }

    .step {
        position: relative;
        padding: 28px 24px 26px;
        border-top: 2px solid var(--step-color, var(--cyan));
        border-radius: 0 0 22px 22px;
        background: rgba(255, 255, 255, .035);
        counter-increment: steps;
    }

    .step::before {
        content: "0" counter(steps);
        display: block;
        margin-bottom: 30px;
        color: var(--step-color, var(--cyan));
        font-size: 2rem;
        font-weight: 950;
        text-shadow: 0 0 18px var(--step-color, var(--cyan));
    }

    .step h3 {
        margin: 0 0 9px;
    }

    .step p {
        margin: 0;
        color: var(--muted);
        line-height: 1.65;
    }

    .video-layout {
        display: grid;
        grid-template-columns: 1.05fr .95fr;
        gap: 34px;
        align-items: center;
        padding: 34px;
        border: 1px solid var(--border);
        border-radius: 30px;
        background:
            radial-gradient(circle at 0% 0%, rgba(255, 59, 129, .10), transparent 22rem),
            linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .018));
        box-shadow: var(--shadow);
    }

    .video-copy h2 {
        margin: 0 0 14px;
        font-size: clamp(2rem, 4vw, 3.2rem);
        letter-spacing: -.045em;
        line-height: 1.05;
    }

    .video-copy p {
        color: var(--muted);
        line-height: 1.75;
        margin: 0 0 23px;
    }

    .video-frame {
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 24px;
        background: #06060c;
        box-shadow: 0 20px 55px rgba(0, 0, 0, .42);
    }

    .video-frame video {
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

    .video-notice {
        position: absolute;
        inset: auto 12px 12px;
        display: none;
        padding: 10px 12px;
        border-radius: 12px;
        background: rgba(5, 5, 14, .82);
        border: 1px solid rgba(255, 255, 255, .12);
        color: #e9e9f2;
        font-size: .78rem;
        backdrop-filter: blur(10px);
    }

    .cta-box {
        position: relative;
        overflow: hidden;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 30px;
        align-items: center;
        padding: 50px;
        border: 1px solid rgba(255, 255, 255, .13);
        border-radius: 32px;
        background:
            radial-gradient(circle at 0% 50%, rgba(0, 217, 255, .21), transparent 27rem),
            radial-gradient(circle at 100% 50%, rgba(255, 59, 129, .18), transparent 25rem),
            #151529;
        box-shadow: var(--shadow);
    }

    .cta-box::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        right: 3%;
        bottom: -86px;
        transform: rotate(20deg);
        border-radius: 36px;
        background: linear-gradient(145deg, var(--yellow), var(--orange));
        box-shadow: inset 0 10px 12px rgba(255, 255, 255, .35), 0 0 50px rgba(255, 204, 0, .23);
        opacity: .12;
    }

    .cta-box h2 {
        margin: 0 0 8px;
        font-size: clamp(2rem, 4vw, 3.4rem);
        letter-spacing: -.05em;
    }

    .cta-box p {
        margin: 0;
        color: var(--muted);
    }

    .faq {
        max-width: 850px;
        margin: 0 auto;
    }

    details {
        border-bottom: 1px solid var(--border);
    }

    summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 21px 0;
        cursor: pointer;
        font-weight: 800;
        list-style: none;
    }

    summary::-webkit-details-marker {
        display: none;
    }

    summary::after {
        content: "+";
        color: var(--cyan);
        font-size: 1.4rem;
    }

    details[open] summary::after {
        content: "−";
    }

    details p {
        margin: -5px 0 23px;
        color: var(--muted);
        line-height: 1.7;
    }

    footer {
        padding: 42px 0 calc(42px + env(safe-area-inset-bottom));
        border-top: 1px solid var(--border);
        color: var(--muted);
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 26px;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 20px;
        font-size: .9rem;
    }

    .footer-links a:hover {
        color: var(--cyan);
    }

    .modal {
        position: fixed;
        inset: 0;
        z-index: 999;
        display: none;
        place-items: center;
        padding: 20px;
        background: rgba(2, 2, 8, .88);
        backdrop-filter: blur(16px);
    }

    .modal.open {
        display: grid;
    }

    .modal img {
        max-height: min(88vh, 980px);
        width: auto;
        border-radius: 22px;
        box-shadow: 0 30px 100px rgba(0, 0, 0, .7);
    }

    .modal-close {
        position: fixed;
        right: 18px;
        top: 18px;
        width: 46px;
        height: 46px;
        display: grid;
        place-items: center;
        border: 1px solid var(--border);
        border-radius: 50%;
        background: rgba(255, 255, 255, .08);
        color: #fff;
        font-size: 1.4rem;
        cursor: pointer;
    }

    [data-reveal] {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .65s ease, transform .65s ease;
    }

    [data-reveal].visible {
        opacity: 1;
        transform: translateY(0);
    }

    @media (max-width: 980px) {
        .nav-links {
            display: none;
        }

        .hero {
            min-height: auto;
            grid-template-columns: 1fr;
            padding-top: 62px;
        }

        .hero-copy {
            text-align: center;
        }

        .hero-copy>p,
        h1 {
            margin-inline: auto;
        }

        .hero-actions,
        .hero-stats {
            justify-content: center;
        }

        .hero-art {
            min-height: 520px;
        }

        .features-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .video-layout {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 720px) {
        .container {
            width: min(100% - 24px, var(--max));
        }

        .nav {
            min-height: 66px;
            gap: 10px;
        }

        .brand small {
            display: none;
        }

        .brand span {
            display: none;
        }

        .nav-cta {
            padding-inline: 13px;
            font-size: .82rem;
        }

        .lang-picker {
            min-width: 91px;
            height: 42px;
        }

        .lang-blocks {
            margin-left: 8px;
            transform: scale(.88);
        }

        .lang-select {
            padding-left: 5px;
            padding-right: 24px;
            font-size: .72rem;
        }

        .lang-chevron {
            right: 10px;
        }

        .hero {
            gap: 22px;
            padding: 52px 0 48px;
        }

        .hero-art {
            min-height: 400px;
        }

        .feature-banner {
            transform: none;
            border-radius: 20px;
        }

        .floating-phone {
            width: 30%;
            border-radius: 18px;
            padding: 4px;
        }

        .floating-phone img {
            border-radius: 14px;
        }

        .floating-cube {
            display: none;
        }

        section {
            padding: 66px 0;
        }

        .features-grid,
        .how-grid {
            grid-template-columns: 1fr;
        }

        .feature-card {
            min-height: 0;
        }

        .video-layout {
            padding: 18px;
            border-radius: 23px;
        }

        .cta-box {
            grid-template-columns: 1fr;
            padding: 32px 24px;
            text-align: center;
        }

        .cta-box .primary-btn {
            width: 100%;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .footer-links {
            justify-content: center;
        }
    }

    @media (max-width: 430px) {
        .nav > .nav-cta {
            display: none;
        }

        h1 {
            font-size: 3.25rem;
        }

        .eyebrow {
            font-size: .65rem;
        }

        .hero-actions {
            flex-direction: column;
        }

        .hero-actions a {
            width: 100%;
        }

        .stat-pill {
            flex: 1 1 30%;
            min-width: 90px;
            padding-inline: 10px;
        }

        .stat-pill strong {
            font-size: 1rem;
        }

        .stat-pill span {
            font-size: .68rem;
        }

        .hero-art {
            min-height: 300px;
        }

        .floating-phone {
            display: none;
        }

        .gallery {
            grid-auto-columns: 77vw;
        }
    }

    @media (prefers-reduced-motion: reduce) {

        *,
        *::before,
        *::after {
            scroll-behavior: auto !important;
            animation-duration: .01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: .01ms !important;
        }
    }
