:root {
    --ink: #1f1a15;
    --ink-soft: #3a3229;
    --paper: #f4efe6;
    --paper-soft: #fbf8f2;
    --gold: #c8a96e;
    --gold-deep: #9f7c42;
    --gold-soft: #eadbbd;
    --muted: #72685c;
    --border: #ddd3c2;
    --card: rgba(255, 252, 246, 0.72);
    --card-strong: rgba(255, 255, 255, 0.85);
    --shadow: 0 24px 70px rgba(31, 26, 21, 0.08);
    --shadow-soft: 0 12px 32px rgba(31, 26, 21, 0.06);
    --display: "Lora", "Iowan Old Style", "Palatino Linotype", serif;
    --body: "SF Pro Text", "Inter", system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

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

body::before {
    content: none;
}

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

.consent-banner {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 45;
    width: min(460px, calc(100vw - 32px));
    background: rgba(250, 246, 238, 0.96);
    border: 1px solid rgba(31, 26, 21, 0.1);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(31, 26, 21, 0.14);
    backdrop-filter: blur(12px);
}

.consent-banner-inner {
    padding: 18px 18px 16px;
}

.consent-copy {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.consent-title {
    margin: 0 0 6px;
    color: var(--ink);
    font-family: var(--body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.consent-text {
    margin: 0;
}

.consent-text a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.consent-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 16px;
}

.consent-button {
    min-height: 42px;
}

.hero,
.story-overview,
.principles,
.final-cta {
    width: min(1100px, calc(100vw - 48px));
    margin: 0 auto;
}

.story-flow {
    width: min(1220px, calc(100vw - 48px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    margin-top: 0;
    margin-bottom: 20px;
    min-height: 78px;
    padding: 0;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(31, 26, 21, 0.08);
    background: var(--paper);
    backdrop-filter: none;
    box-shadow: none;
    transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.site-header-inner {
    width: min(1100px, calc(100vw - 48px));
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0 18px;
}

.brand-wordmark {
    height: 34px;
    width: auto;
}

.site-nav {
    display: inline-flex;
    gap: 24px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--muted);
}

.site-nav a {
    position: relative;
    transition: color 180ms ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(199, 167, 110, 0.28) 100%);
    transform: scaleX(0.32);
    transform-origin: left center;
    opacity: 0;
    transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

.hero {
    width: min(1240px, calc(100vw - 48px));
    padding: 56px 0 92px;
}

.hero-copy {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.eyebrow,
.section-label {
    display: inline-block;
    margin: 0 0 18px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold-deep);
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--display);
    font-weight: 500;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(50px, 5.8vw, 58px);
    line-height: 1.02;
    max-width: none;
}

.hero h1 em,
.final-cta h2 em {
    font-style: italic;
    color: var(--muted);
}

.hero-text {
    max-width: 760px;
    margin: 22px 0 0;
    font-size: 16px;
    line-height: 1.65;
    color: var(--muted);
    margin-left: auto;
    margin-right: auto;
}

.hero-meta {
    margin: 16px 0 0;
    font-size: 12px;
    color: var(--muted);
    text-align: center;
}

.hero-meta span {
    display: inline-block;
    margin: 0 8px;
    color: var(--gold-deep);
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.button-primary {
    background: var(--ink);
    color: var(--paper);
    box-shadow: var(--shadow-soft);
}

.button-primary-alt {
    background: var(--gold);
    color: var(--ink);
    box-shadow: var(--shadow-soft);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.66);
    border-color: var(--border);
    color: var(--ink);
}

.button,
.method-card,
.screen-preview-block,
.screen-preview-example,
.screen-preview-support {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

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

.hero-shot {
    margin-top: 56px;
    border-radius: 24px;
    overflow: hidden;
}

.shot-window {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.48);
    border: 1px solid rgba(31, 26, 21, 0.08);
    padding: 10px;
    box-shadow: var(--shadow);
}

.shot-window-dark {
    background: linear-gradient(180deg, rgba(26, 22, 18, 0.94), rgba(19, 16, 14, 0.96));
    border-color: rgba(255, 255, 255, 0.08);
}

.shot-dots {
    display: flex;
    gap: 7px;
    padding: 0 0 8px 4px;
}

.shot-dots span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(31, 26, 21, 0.16);
}

.shot-window-dark .shot-dots span {
    background: rgba(255, 255, 255, 0.18);
}

.hero-screenshot,
.hero-video {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 18px 36px rgba(31, 26, 21, 0.08);
}

.hero-video {
    border-radius: 24px;
}

.story-overview {
    padding: 48px 0 56px;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 72px;
    align-items: center;
    border-top: 1px solid rgba(31, 26, 21, 0.08);
}

.story-overview-lede {
    max-width: 22rem;
}

.story-overview-lede h2 {
    font-size: clamp(36px, 4vw, 44px);
    line-height: 1.08;
    white-space: nowrap;
}

.story-overview-body {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.story-overview-body p + p {
    margin-top: 18px;
}

.legal-page {
    width: min(1100px, calc(100vw - 48px));
    margin: 0 auto;
    padding: 56px 0 96px;
}

.legal-shell {
    max-width: 760px;
}

.legal-title {
    font-size: clamp(44px, 5vw, 58px);
    line-height: 1.04;
}

.legal-intro {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.legal-section {
    margin-top: 44px;
    padding-top: 0;
}

.legal-section h2 {
    font-size: clamp(28px, 3.4vw, 34px);
    line-height: 1.14;
}

.legal-section p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
    max-width: 42rem;
}

.inline-link {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.story-flow {
    display: grid;
    gap: 0;
    padding: 0 0 80px;
}

.story-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
    gap: 84px;
    align-items: center;
    padding: 64px 0;
    border-top: 1px solid rgba(31, 26, 21, 0.1);
}

.story-panel-reverse {
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
}

.story-panel-reverse .story-shot {
    order: 2;
}

.story-panel-reverse .story-copy {
    order: 1;
}

.story-shot {
    border-radius: 0;
    overflow: hidden;
}

.story-panel .story-shot {
    justify-self: stretch;
}

.story-panel .story-copy {
    max-width: 30rem;
}

.story-screenshot {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 14px 28px rgba(31, 26, 21, 0.07);
}

.story-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    box-shadow: 0 14px 28px rgba(31, 26, 21, 0.07);
}

.story-copy h2,
.final-cta h2,
.method-cta h2,
.method-card h2 {
    font-size: clamp(30px, 4vw, 38px);
    line-height: 1.16;
}

.story-copy p,
.principles p,
.final-cta p,
.method-cta p,
.method-card p {
    margin: 18px 0 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 34rem;
}

.principles {
    width: 100%;
    padding: 88px 0 92px;
    margin-top: 16px;
    background: rgba(238, 232, 220, 0.82);
}

.principles-copy {
    width: min(1100px, calc(100vw - 48px));
    margin: 0 auto;
    max-width: 36rem;
}

.principles-copy h2 {
    font-size: clamp(36px, 4vw, 44px);
    line-height: 1.08;
}

.principles-grid {
    width: min(1100px, calc(100vw - 48px));
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.principles-grid article {
    padding: 22px 18px 20px;
    background: rgba(255, 255, 255, 0.42);
}

.principles-grid h3 {
    font-size: 15px;
    font-family: var(--body);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.principles-grid p {
    font-size: 14px;
    line-height: 1.65;
    margin-top: 10px;
    max-width: none;
}

.site-closing {
    width: 100%;
    background: #11110f;
}

.screen-preview {
    min-height: 360px;
    border-radius: 16px;
    padding: 22px;
    border: 1px solid rgba(31, 26, 21, 0.08);
    display: grid;
    gap: 14px;
}

.screen-preview-light {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 241, 231, 0.96));
}

.screen-preview-dark {
    background: linear-gradient(180deg, rgba(29, 26, 23, 0.96), rgba(22, 19, 17, 0.98));
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--paper);
}

.screen-preview-header,
.screen-preview-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.screen-preview-header span,
.screen-preview-block p,
.screen-preview-example span,
.screen-preview-row span {
    color: var(--muted);
}

.screen-preview-dark .screen-preview-header span,
.screen-preview-dark .screen-preview-block p,
.screen-preview-dark .screen-preview-example span,
.screen-preview-dark .screen-preview-row span {
    color: rgba(244, 239, 230, 0.72);
}

.screen-preview-block,
.screen-preview-example,
.screen-preview-support {
    border-radius: 14px;
    padding: 16px 18px;
    background: rgba(31, 26, 21, 0.04);
    border: 1px solid rgba(31, 26, 21, 0.08);
}

.screen-preview-block:hover,
.screen-preview-example:hover,
.screen-preview-support:hover {
    transform: translateY(-1px);
}

.screen-preview-dark .screen-preview-block,
.screen-preview-dark .screen-preview-example,
.screen-preview-dark .screen-preview-support {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.screen-preview-block strong,
.screen-preview-example strong,
.screen-preview-support strong {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
}

.screen-preview-example + .screen-preview-example {
    margin-top: 10px;
}

.screen-preview-support .screen-preview-row + .screen-preview-row {
    margin-top: 10px;
}

.final-cta {
    width: 100%;
    padding: 0 0 0;
    background: transparent;
}

.final-cta-band {
    width: 100%;
    padding: 88px 0 78px;
    background: transparent;
    color: var(--paper);
}

.final-cta-inner {
    width: min(1100px, calc(100vw - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    gap: 44px;
    align-items: center;
}

.final-cta-copy h2 {
    color: var(--paper);
    max-width: 12ch;
}

.final-actions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.final-cta p {
    max-width: 34rem;
    color: rgba(244, 239, 230, 0.66);
    margin-top: 0;
}

.site-footer {
    width: 100%;
    margin: 0 auto;
    padding: 0 0 34px;
    background: transparent;
    border-top: 0;
}

.site-footer-inner {
    width: min(1100px, calc(100vw - 48px));
    margin: 0 auto;
    border-top: 1px solid rgba(244, 239, 230, 0.08);
    padding-top: 22px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.footer-wordmark {
    height: 16px;
    width: auto;
}

.footer-nav {
    display: inline-flex;
    gap: 18px;
    flex-wrap: wrap;
    color: rgba(244, 239, 230, 0.42);
    font-size: 14px;
}

.final-link {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    color: rgba(244, 239, 230, 0.56);
    font-size: 15px;
    font-weight: 500;
    padding: 0 2px;
    transition: color 180ms ease, transform 180ms ease;
}

.final-link::after {
    content: "→";
    margin-left: 8px;
}

.final-link:hover,
.final-link:focus-visible {
    color: rgba(244, 239, 230, 0.84);
    transform: translateX(1px);
}

.method-main {
    width: min(960px, calc(100vw - 48px));
    margin: 0 auto;
    padding: 42px 0 92px;
}

.method-hero {
    padding: 28px 0 56px;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.method-card {
    border-radius: 22px;
    padding: 28px;
    background: var(--card);
    border: 1px solid rgba(31, 26, 21, 0.08);
    box-shadow: var(--shadow-soft);
}

.method-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(31, 26, 21, 0.08);
}

.method-card h2 {
    font-size: 30px;
}

.method-card p {
    max-width: none;
}

.method-cta {
    margin-top: 28px;
    border-radius: 24px;
    padding: 34px;
    text-align: center;
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(31, 26, 21, 0.08);
    box-shadow: var(--shadow-soft);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
    transition-delay: 40ms;
}

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

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

@keyframes heroFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.download-page {
    background: var(--paper);
}

.download-handoff {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 56px 24px;
}

.download-handoff-inner {
    width: min(100%, 680px);
    text-align: center;
}

.download-handoff-logo {
    width: min(230px, 68vw);
    max-width: 100%;
    height: auto;
    margin: 0 auto 22px;
    display: block;
}

.download-handoff h1 {
    margin: 0;
    max-width: 12ch;
    margin-inline: auto;
    font-size: clamp(30px, 3.8vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.download-handoff p {
    max-width: 34ch;
    margin: 18px auto 0;
    font-size: 18px;
    line-height: 1.65;
    color: var(--ink-soft);
}

.download-handoff-lede {
    max-width: 32ch;
    margin-top: 20px;
    font-size: 19px;
    line-height: 1.6;
}

.download-handoff-actions {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.download-handoff-actions .button {
    min-width: 216px;
}

.download-handoff-meta {
    max-width: 34rem;
    margin: 22px auto 0;
}

.download-handoff-note,
.download-handoff-preview {
    max-width: 40ch;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.65;
    color: var(--muted);
}

.download-handoff-preview {
    margin-top: 10px;
}

.download-handoff-steps {
    width: min(100%, 460px);
    margin: 22px auto 0;
    padding: 18px 22px 18px 42px;
    text-align: left;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.75;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.download-handoff-steps li + li {
    margin-top: 6px;
}

.download-handoff-frame {
    position: absolute;
    width: 0;
    height: 0;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 1080px) {
    .story-overview,
    .story-panel,
    .final-cta-inner,
    .method-grid {
        grid-template-columns: 1fr;
    }

    .story-panel .story-copy,
    .story-panel-reverse .story-copy {
        order: 1;
        max-width: none;
    }

    .story-panel .story-shot,
    .story-panel-reverse .story-shot {
        order: 2;
    }

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

    .story-overview {
        gap: 24px;
    }

}

@media (max-width: 760px) {
    .site-header-inner {
        min-height: 64px;
        padding: 16px 0 14px;
    }

    .site-nav {
        gap: 12px;
        flex-wrap: nowrap;
        font-size: 12.5px;
    }

    .brand-wordmark {
        height: 28px;
    }

    .site-footer-inner {
        grid-template-columns: 1fr;
        display: grid;
    }
}

@media (max-width: 680px) {
    .consent-banner {
        right: 12px;
        bottom: 12px;
        width: calc(100vw - 24px);
        border-radius: 16px;
    }

    .consent-banner-inner {
        padding: 16px 14px 14px;
    }

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

    .consent-button {
        width: 100%;
    }

    .legal-page {
        width: min(100vw - 24px, 1120px);
        padding: 40px 0 72px;
    }

    .legal-title {
        font-size: 42px;
        line-height: 1.06;
    }

    .legal-intro,
    .legal-section p {
        font-size: 15px;
        line-height: 1.7;
    }

    .legal-section {
        margin-top: 36px;
    }

    .legal-section h2 {
        font-size: 30px;
    }

    .hero,
    .story-overview,
    .story-flow,
    .principles,
    .final-cta,
    .site-footer,
    .method-main {
        width: min(100vw - 24px, 1120px);
    }

    .site-header-inner {
        width: min(100vw - 24px, 1120px);
    }

    .site-nav {
        gap: 11px;
        font-size: 12px;
    }

    .brand-wordmark {
        height: 28px;
    }

    h1 {
        max-width: none;
        font-size: 42px;
        line-height: 1.06;
    }

    .hero {
        padding: 42px 0 68px;
    }

    .hero-text {
        max-width: 34rem;
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.68;
    }

    .hero-actions {
        gap: 12px;
        margin-top: 26px;
    }

    .hero-meta {
        margin-top: 14px;
        font-size: 11.5px;
        line-height: 1.55;
    }

    .hero-shot {
        margin-top: 34px;
    }

    .hero-video,
    .hero-screenshot {
        max-height: 420px;
        object-fit: cover;
        object-position: top center;
    }

    .hero-video,
    .story-video {
        border-radius: 18px;
    }

    .story-overview {
        padding: 40px 0 44px;
        gap: 20px;
    }

    .story-overview-lede {
        max-width: none;
    }

.story-overview-body {
    font-size: 15px;
    line-height: 1.68;
}

.download-page {
    background: var(--paper);
}

.download-handoff {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 56px 24px;
}

.download-handoff-inner {
    width: min(100%, 620px);
    text-align: center;
}

.download-handoff-logo {
    width: min(240px, 72vw);
    max-width: 100%;
    height: auto;
    margin: 0 auto 28px;
    display: block;
}

.download-handoff h1 {
    margin: 0;
    font-size: clamp(40px, 5vw, 62px);
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.download-handoff p {
    max-width: 34ch;
    margin: 18px auto 0;
    font-size: 18px;
    line-height: 1.65;
    color: var(--ink-soft);
}

.download-handoff-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.download-handoff-note {
    max-width: 42ch;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.65;
}

.download-handoff-steps {
    width: min(100%, 480px);
    margin: 18px auto 0;
    padding-left: 20px;
    text-align: left;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.7;
}

.download-handoff-steps li + li {
    margin-top: 6px;
}

.download-handoff-frame {
    position: absolute;
    width: 0;
    height: 0;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

    .story-panel {
        gap: 24px;
        padding: 48px 0;
    }

    .story-copy h2 {
        max-width: 14ch;
    }

    .story-copy p {
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.68;
    }

    .story-flow {
        padding: 0 0 36px;
    }

    .story-panel:last-child {
        padding-bottom: 8px;
    }

    .principles {
        padding: 52px 0 64px;
    }

    .principles-grid {
        margin-top: 24px;
        gap: 12px;
    }

    .principles-grid article {
        padding: 20px 18px 18px;
    }

    .principles-grid h3 {
        font-size: 14.5px;
    }

    .principles-grid p {
        margin-top: 8px;
        font-size: 14px;
        line-height: 1.62;
    }

    .story-overview-lede h2 {
        white-space: normal;
    }
}

@media (max-width: 640px) {
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .principles-copy h2 {
        font-size: 34px;
    }

    .final-cta-band {
        padding: 68px 0 56px;
    }

    .download-handoff {
        padding: 44px 20px;
    }

    .download-handoff-logo {
        width: min(210px, 68vw);
        margin-bottom: 22px;
    }

    .download-handoff h1 {
        font-size: 38px;
    }

    .download-handoff p {
        font-size: 16px;
    }
}

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

    .hero-screenshot,
    [data-reveal],
    .button,
    .consent-banner,
    .method-card,
    .screen-preview-block,
    .screen-preview-example,
    .screen-preview-support {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}
