:root {
    --bg: #f6fbff;
    --surface: rgba(255, 255, 255, 0.8);
    --surface-strong: rgba(255, 255, 255, 0.96);
    --text: #11243c;
    --muted: #5c6c80;
    --line: rgba(17, 36, 60, 0.1);
    --brand-blue: #2fafe6;
    --brand-pink: #ff4f8b;
    --brand-deep: #177db6;
    --gradient: linear-gradient(135deg, #2fafe6 0%, #ff4f8b 100%);
    --shadow-soft: 0 18px 50px rgba(23, 62, 112, 0.12);
    --shadow-strong: 0 30px 80px rgba(47, 175, 230, 0.18);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: clip;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(47, 175, 230, 0.22), transparent 24%),
        radial-gradient(circle at top right, rgba(255, 79, 139, 0.18), transparent 22%),
        linear-gradient(180deg, #f7fcff 0%, #eef7ff 38%, #fff8fb 100%);
    font-family: "Plus Jakarta Sans", "Inter", "Segoe UI", sans-serif;
}

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

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

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

.site-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 20%, rgba(47, 175, 230, 0.18), transparent 24%),
        radial-gradient(circle at 88% 14%, rgba(255, 79, 139, 0.14), transparent 22%),
        radial-gradient(circle at 68% 78%, rgba(47, 175, 230, 0.08), transparent 16%);
    z-index: -1;
}

.site-header,
.section-shell,
.site-footer {
    width: min(calc(100% - 32px), var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 14px;
    z-index: 40;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark,
.footer-mark {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 30px rgba(47, 175, 230, 0.14);
}

.brand-mark {
    width: 54px;
    height: 54px;
}

.brand-mark img,
.footer-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-copy strong {
    font-size: 1rem;
    line-height: 1;
}

.brand-copy small,
.hero-text,
.section-heading p,
.trial-copy p,
.feature-card p,
.mini-highlight-card p,
.showcase-copy p,
.footer-brand p,
.footer-meta p,
.floating-badge span {
    color: var(--muted);
}

.brand-copy small {
    font-size: 0.86rem;
}

.nav-toggle {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text);
    padding: 10px 14px;
    font: inherit;
    font-weight: 700;
}

.site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    padding-top: 8px;
}

.site-header.is-open .site-nav {
    display: flex;
}

.site-nav a {
    padding: 12px 16px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: rgba(47, 175, 230, 0.1);
    color: var(--text);
    transform: translateY(-1px);
}

.header-action {
    background: var(--gradient);
    color: #ffffff !important;
    box-shadow: 0 16px 36px rgba(255, 79, 139, 0.2);
}

.section-shell {
    padding-top: 84px;
}

.hero {
    display: grid;
    gap: 36px;
    align-items: center;
    padding-top: 42px;
    padding-bottom: 72px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow,
.showcase-kicker,
.mini-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(47, 175, 230, 0.1);
    color: var(--brand-deep);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mini-kicker {
    background: rgba(255, 79, 139, 0.12);
    color: var(--brand-pink);
}

.hero h1,
.section-heading h2,
.trial-copy h2 {
    margin: 0;
    font-size: clamp(2.85rem, 8vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.section-heading h2,
.trial-copy h2 {
    font-size: clamp(2.2rem, 6vw, 4rem);
}

.hero-text,
.section-heading p,
.trial-copy p,
.showcase-copy p,
.mini-highlight-card p {
    line-height: 1.75;
    font-size: 1rem;
}

.hero-text {
    max-width: 62ch;
    margin: 22px 0 0;
    font-size: 1.08rem;
}

.hero-actions,
.trial-actions,
.brand-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions,
.trial-actions {
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    text-align: center;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--gradient);
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(255, 79, 139, 0.22);
}

.button-secondary {
    border-color: rgba(47, 175, 230, 0.24);
    background: rgba(255, 255, 255, 0.82);
}

.hero-note {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.hero-visual-tag {
    display: none;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.hero-points span,
.brand-points span {
    padding: 10px 14px;
    border: 1px solid rgba(47, 175, 230, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 700;
}

.hero-visual {
    position: relative;
    min-height: 840px;
    isolation: isolate;
    z-index: 1;
}

.visual-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(24px);
    opacity: 0.9;
    z-index: -1;
}

.visual-glow-a {
    top: 12%;
    left: 4%;
    width: 260px;
    height: 260px;
    background: rgba(47, 175, 230, 0.26);
}

.visual-glow-b {
    right: 0;
    bottom: 8%;
    width: 210px;
    height: 210px;
    background: rgba(255, 79, 139, 0.22);
}

.phone-wrap {
    position: absolute;
    left: 50%;
    top: 44%;
    transform: translate(-50%, -50%);
    animation: phone-float 6s ease-in-out infinite;
}

.phone-mockup {
    --tilt-x: 0;
    --tilt-y: 0;
    position: relative;
    width: min(76vw, 360px);
    padding: 14px 12px 18px;
    border-radius: 46px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(222, 235, 247, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 30px rgba(11, 42, 84, 0.14), 0 30px 80px rgba(17, 54, 96, 0.18);
    transform: perspective(1400px) rotate(-11deg) rotateX(calc(var(--tilt-y) * 1deg)) rotateY(calc(var(--tilt-x) * -1deg));
    transition: transform 220ms ease;
}

.phone-top {
    width: 120px;
    height: 24px;
    margin: 0 auto 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, #0d1620 0%, #1e2936 100%);
}

.phone-screen {
    overflow: hidden;
    border-radius: 34px;
    background: #eff4fa;
    aspect-ratio: 9 / 19.5;
}

.screen-strip {
    display: flex;
    flex-direction: column;
    animation: screen-scroll 14s ease-in-out infinite;
}

.screen-strip img {
    width: 100%;
    height: auto;
    flex: 0 0 auto;
}

.floating-badge {
    position: absolute;
    max-width: 220px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-soft);
    animation: badge-float 5s ease-in-out infinite;
}

.floating-badge strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.badge-top {
    top: 10%;
    left: 0;
}

.badge-bottom {
    right: 2%;
    bottom: 18%;
    animation-delay: -2s;
}

.mini-highlight-card,
.feature-card,
.country-pill,
.event-card,
.trial-card,
.showcase-card,
.workflow-card {
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.mini-highlight-card,
.trial-card,
.showcase-card,
.workflow-card,
.feature-card,
.country-pill,
.event-card,
.footer-brand,
.footer-meta {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mini-highlight-card:hover,
.trial-card:hover,
.showcase-card:hover,
.workflow-card:hover,
.feature-card:hover,
.country-pill:hover,
.event-card:hover,
.footer-brand:hover,
.footer-meta:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(47, 175, 230, 0.22);
}

.mini-highlight-card {
    padding: 22px 24px;
    border-radius: var(--radius-lg);
}

.mini-highlight-card p {
    margin: 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-heading p,
.trial-copy p {
    margin: 18px 0 0;
}

.narrow {
    max-width: 680px;
}

.showcase-grid,
.workflow-grid,
.feature-grid,
.country-grid,
.event-grid {
    display: grid;
    gap: 16px;
}

.showcase-card {
    padding: 22px;
    border-radius: var(--radius-lg);
}

.showcase-copy h3,
.feature-card h3,
.event-card strong {
    margin: 0 0 10px;
}

.showcase-copy h3 {
    font-size: 1.32rem;
    line-height: 1.2;
}

.showcase-copy p {
    margin: 0;
}

.showcase-shot {
    width: min(100%, 230px);
    height: clamp(280px, 38vw, 420px);
    margin-top: 20px;
    padding: 10px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 250, 0.88));
    box-shadow: inset 0 0 0 1px rgba(17, 36, 60, 0.06);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-shot img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    object-position: top center;
}

.showcase-shot-compact {
    width: min(100%, 180px);
    height: clamp(260px, 34vw, 360px);
}

.showcase-shot-wide {
    width: min(100%, 250px);
    height: clamp(300px, 36vw, 430px);
}

.workflow-grid {
    grid-template-columns: 1fr;
}

.workflow-card {
    padding: 22px;
    border-radius: var(--radius-lg);
}

.workflow-copy h3 {
    margin: 0 0 10px;
    font-size: 1.26rem;
    line-height: 1.25;
}

.workflow-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.workflow-kicker {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 79, 139, 0.1);
    color: var(--brand-pink);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.workflow-shots {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.workflow-shots-dual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.workflow-shot {
    height: clamp(250px, 34vw, 370px);
    padding: 10px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 250, 0.88));
    box-shadow: inset 0 0 0 1px rgba(17, 36, 60, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow-shot img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: cover;
    object-position: top center;
}

.workflow-shot-map {
    height: clamp(280px, 36vw, 420px);
}

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

.feature-card {
    padding: 22px;
    border-radius: var(--radius-lg);
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(47, 175, 230, 0.16), rgba(255, 79, 139, 0.16));
    font-size: 1.45rem;
}

.feature-card p {
    margin: 0;
    line-height: 1.7;
}

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

.country-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 86px;
    padding: 18px 16px;
    border-radius: 20px;
    text-align: center;
}

.country-pill span {
    font-size: 1.8rem;
}

.country-pill strong {
    font-size: 1rem;
}

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

.event-card {
    min-height: 150px;
    padding: 22px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-card span {
    font-size: 2rem;
}

.trial-card {
    padding: 28px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(47, 175, 230, 0.12), transparent 28%),
        radial-gradient(circle at bottom left, rgba(255, 79, 139, 0.14), transparent 26%),
        rgba(255, 255, 255, 0.9);
}

.site-footer {
    display: grid;
    gap: 20px;
    padding: 84px 0 36px;
}

.footer-brand,
.footer-meta {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-soft);
}

.footer-brand-stack {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-mark {
    width: 70px;
    height: 70px;
}

.footer-brand strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.footer-wordmark {
    width: min(100%, 220px);
    height: 58px;
    margin-bottom: 8px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(47, 175, 230, 0.12), rgba(255, 79, 139, 0.12));
    padding: 6px 10px;
}

.footer-wordmark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.footer-brand p,
.footer-meta p {
    margin: 0;
    line-height: 1.7;
}

.platform-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px !important;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(47, 175, 230, 0.1);
    color: var(--brand-deep);
    font-weight: 800;
}

.platform-chip img {
    width: 24px;
    height: 24px;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 420ms ease, transform 420ms ease;
}

[data-reveal].hero-copy,
[data-reveal].hero-visual {
    opacity: 1;
    transform: none;
}

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

@keyframes phone-float {
    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-14px);
    }
}

@keyframes phone-float-mobile {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes badge-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes screen-scroll {
    0%,
    24% {
        transform: translateY(0);
    }
    33%,
    57% {
        transform: translateY(-33.3333%);
    }
    66%,
    90% {
        transform: translateY(-66.6666%);
    }
    100% {
        transform: translateY(0);
    }
}

@media (min-width: 720px) {
    .nav-toggle {
        display: none;
    }

    .site-nav,
    .site-header.is-open .site-nav {
        display: flex;
        width: auto;
        flex-direction: row;
        align-items: center;
        gap: 6px;
        padding-top: 0;
    }

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

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

    .showcase-card-wide {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 24px;
    }

    .showcase-card-wide .showcase-shot {
        margin-top: 0;
    }

    .workflow-card-map {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 24px;
    }

    .workflow-card-map .workflow-shots {
        margin-top: 0;
    }

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

    .trial-card {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 24px;
        align-items: center;
    }

    .site-footer {
        grid-template-columns: 1.05fr 0.95fr;
    }
}

@media (min-width: 720px) and (max-width: 979px) {
    .site-header {
        gap: 12px;
        padding: 14px 16px;
    }

    .site-nav {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .hero {
        gap: 18px;
        padding-top: 28px;
        padding-bottom: 40px;
    }

    .hero-copy {
        max-width: 720px;
    }

    .hero h1 {
        font-size: clamp(3rem, 8vw, 4.5rem);
    }

    .hero-text {
        max-width: 58ch;
    }

    .hero-visual {
        min-height: 620px;
        margin-top: -72px;
    }

    .phone-wrap {
        top: 52%;
    }

    .phone-mockup {
        width: min(56vw, 350px);
        transform: perspective(1400px) rotate(-8deg) rotateX(calc(var(--tilt-y) * 1deg)) rotateY(calc(var(--tilt-x) * -1deg));
    }

    .floating-badge {
        max-width: 200px;
    }

    .badge-top {
        top: 12%;
        left: 4%;
    }

    .badge-bottom {
        right: 6%;
        bottom: 15%;
    }
}

@media (min-width: 980px) {
    .hero {
        grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
    }

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

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

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

@media (max-width: 719px) {
    .site-header,
    .section-shell,
    .site-footer {
        width: min(calc(100% - 20px), var(--container));
    }

    .site-header:not(.is-open) {
        flex-wrap: nowrap;
    }

    .site-header.is-open {
        flex-wrap: wrap;
    }

    .site-header {
        top: 8px;
        margin-top: 8px;
        gap: 12px;
        padding: 10px 12px 12px;
        border-radius: 28px;
    }

    .brand {
        gap: 10px;
        min-width: 0;
        flex: 1 1 auto;
        max-width: calc(100% - 84px);
    }

    .brand-mark {
        width: 46px;
        height: 46px;
        border-radius: 18px;
    }

    .brand-copy {
        min-width: 0;
    }

    .brand-copy strong {
        font-size: 0.95rem;
    }

    .brand-copy small {
        display: none;
    }

    .nav-toggle {
        flex: 0 0 auto;
        padding: 9px 12px;
    }

    .section-shell {
        padding-top: 72px;
    }

    .hero {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding-top: 14px;
        padding-bottom: 18px;
    }

    .hero-visual {
        order: 1;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        min-height: auto;
        margin-top: -6px;
        padding: 0;
        overflow: visible;
        border-radius: 0;
        margin-bottom: 10px;
    }

    .hero-copy {
        order: 2;
        margin-top: 2px;
        padding-left: 0;
    }

    .eyebrow,
    .showcase-kicker,
    .mini-kicker,
    .workflow-kicker {
        margin-bottom: 14px;
        padding: 8px 12px;
        font-size: 0.76rem;
    }

    .hero h1 {
        font-size: clamp(2.65rem, 12vw, 3.35rem);
        line-height: 0.97;
    }

    .hero-copy > .eyebrow {
        display: inline-flex;
        margin-left: 0;
        transform: none;
    }

    .hero-text {
        margin-top: 12px;
        font-size: 1rem;
        line-height: 1.58;
    }

    .hero-actions {
        display: none;
    }

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

    .hero-note {
        display: none;
    }

    .hero-points {
        display: none;
    }

    .visual-glow {
        display: none;
    }

    .phone-wrap {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        display: flex;
        justify-content: center;
        width: 100%;
        padding-left: 0;
        z-index: 2;
        animation: phone-float-mobile 6s ease-in-out infinite;
    }

    .phone-mockup {
        width: min(60vw, 232px);
        padding: 11px 9px 15px;
        border-radius: 36px;
        transform-origin: center center;
        transform: perspective(1400px) rotate(-7deg) rotateX(calc(var(--tilt-y) * 1deg)) rotateY(calc(var(--tilt-x) * -1deg));
    }

    .phone-top {
        width: 96px;
        height: 18px;
        margin-bottom: 10px;
    }

    .phone-screen {
        border-radius: 26px;
    }

    .floating-badge {
        display: none;
    }

    .hero-visual-tag {
        display: none;
    }

    .showcase-card,
    .workflow-card,
    .feature-card,
    .trial-card,
    .mini-highlight-card,
    .footer-brand,
    .footer-meta {
        padding: 18px;
    }

    .showcase-shot,
    .showcase-shot-wide,
    .showcase-shot-compact,
    .workflow-shot,
    .workflow-shot-map {
        width: min(100%, 244px);
        height: auto;
        min-height: 0;
        aspect-ratio: 9 / 19.5;
        margin-inline: auto;
    }

    .showcase-shot img,
    .workflow-shot img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center top;
        background: linear-gradient(180deg, #f7fbff 0%, #eef5fb 100%);
    }

    .country-grid {
        grid-template-columns: 1fr;
    }

    .event-grid {
        grid-template-columns: 1fr;
    }

    .trial-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .footer-wordmark {
        width: min(100%, 180px);
    }

    .workflow-shots-dual {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .phone-mockup {
        width: min(62vw, 224px);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
