:root {
    --color-cream-paper: #ffffeb;
    --color-midnight-ink: #1a1a1a;
    --color-white: #ffffff;
    --color-stone-mist: #e4e4d0;
    --color-graphite-veil: #8a8a80;
    --color-smoke: #5f5f59;
    --color-charcoal: #222222;
    --color-charcoal-mist: #333333;
    --color-deep-forest-teal: #034f46;
    --color-lavender-whisper: #f0d7ff;
    --color-amber-pulse: #ffa946;
    --shadow-nav: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 24px 50px rgba(26, 26, 26, 0.08);
    --radius-control: 14px;
    --radius-card: 32px;
    --radius-pill: 999px;
    --page-max-width: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-cream-paper);
    color: var(--color-midnight-ink);
    font-family: "Figtree", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

button {
    font: inherit;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.announcement-bar {
    padding: 12px 20px;
    background: var(--color-deep-forest-teal);
    color: var(--color-white);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 16px 20px 0;
}

.nav-shell {
    width: min(var(--page-max-width), 100%);
    margin: 0 auto;
    padding: 12px 14px;
    border: 1px solid var(--color-stone-mist);
    border-radius: var(--radius-control);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-nav);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-logo {
    width: auto;
    height: 28px;
}

.nav-links,
.nav-actions,
.hero-actions,
.platform-pills,
.download-grid,
.beta-actions,
.footer-links,
.proof-metrics,
.hardware-points {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-links {
    flex: 1;
    justify-content: center;
    gap: 28px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
}

.nav-actions {
    gap: 10px;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-stone-mist);
    background: var(--color-cream-paper);
}

.lang-btn {
    padding: 6px 10px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-graphite-veil);
    transition: background 200ms ease, color 200ms ease;
}

.lang-btn.is-active {
    background: var(--color-midnight-ink);
    color: var(--color-white);
}

.notice-wrap {
    width: min(var(--page-max-width), calc(100% - 40px));
    margin: 0 auto;
    padding: 0 0 8px;
}

.update-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(251, 191, 36, 0.35);
    background: linear-gradient(120deg, rgba(255, 251, 235, 0.95), rgba(236, 253, 245, 0.95));
    box-shadow: 0 10px 24px rgba(146, 64, 14, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease;
}
.update-banner:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(146, 64, 14, 0.12);
}
.update-banner__badge {
    flex: 0 0 auto;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #92400e;
    background: rgba(254, 243, 199, 0.9);
}
.update-banner__body {
    flex: 1 1 auto;
    min-width: 240px;
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
}
.update-banner__meta {
    flex: 0 1 auto;
    font-size: 12px;
    color: #4b5563;
    white-space: nowrap;
}
.update-banner__cta {
    flex: 0 0 auto;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #047857;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: var(--radius-control);
    border: 1px solid var(--color-midnight-ink);
    font-size: 14px;
    font-weight: 600;
    transition: transform 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.button:hover,
.download-card:hover,
.beta-button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--color-lavender-whisper);
    color: var(--color-midnight-ink);
}

.button-ghost {
    background: transparent;
    color: var(--color-midnight-ink);
}

.button-ghost-inverse {
    color: var(--color-white);
    border-color: var(--color-white);
}

.floating-download {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 50;
    display: none;
    padding: 12px 18px;
    border: 1px solid var(--color-midnight-ink);
    border-radius: var(--radius-pill);
    background: var(--color-lavender-whisper);
    color: var(--color-midnight-ink);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 16px 30px rgba(26, 26, 26, 0.15);
    transition: opacity 220ms ease, transform 220ms ease;
}

.floating-download.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
}

.section-shell {
    width: min(var(--page-max-width), calc(100% - 40px));
    margin: 0 auto;
}

.hero-section,
.feature-overview,
.hardware-section,
.download-section {
    padding: 72px 0 88px;
}

.hero-grid,
.hardware-grid,
.dark-showcase-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 48px;
    align-items: center;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--color-graphite-veil);
}

.section-kicker-inverse {
    color: rgba(255, 255, 255, 0.72);
}

.hero-title,
.section-title,
.proof-title {
    margin: 0;
    font-family: "EB Garamond", "Noto Serif SC", serif;
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.hero-title {
    font-size: clamp(56px, 9vw, 108px);
    max-width: 8ch;
}

.hero-title .muted,
.section-title .muted {
    color: var(--color-graphite-veil);
}

.section-title {
    font-size: clamp(42px, 6vw, 72px);
    max-width: 9ch;
}

.section-title-inverse,
.proof-title {
    color: var(--color-white);
}

.hero-body,
.section-body,
.hardware-card-note,
.download-kicker,
.beta-note,
.showcase-note span,
.proof-item span,
.story-step p,
.feature-card p {
    font-size: 16px;
    line-height: 1.3;
    color: var(--color-smoke);
}

.section-body,
.hero-body {
    max-width: 38rem;
    margin: 24px 0 0;
}

.section-body-inverse,
.showcase-note span,
.proof-item span {
    color: rgba(255, 255, 255, 0.76);
}

.hero-actions {
    margin-top: 28px;
    flex-wrap: wrap;
}

.platform-pills {
    margin-top: 20px;
    flex-wrap: wrap;
}

.platform-pill {
    padding: 8px 14px;
    border: 1px solid var(--color-midnight-ink);
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
}

.hero-stage {
    position: relative;
    min-height: 680px;
    border-radius: var(--radius-card);
    padding: 48px 24px 24px;
    background:
        radial-gradient(circle at 20% 20%, rgba(240, 215, 255, 0.8), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(3, 79, 70, 0.15), transparent 30%),
        linear-gradient(180deg, #fffef3 0%, #f6f3e1 100%);
    border: 1px solid var(--color-stone-mist);
    overflow: hidden;
}

.hero-device-stack {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 18px;
    margin-top: 92px;
}

.device-card {
    overflow: hidden;
    border-radius: 40px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    background: var(--color-white);
    box-shadow: 0 24px 40px rgba(26, 26, 26, 0.16);
}

.device-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.device-main {
    width: min(280px, 42vw);
    aspect-ratio: 10 / 19.5;
    z-index: 2;
}

.device-side {
    width: min(188px, 28vw);
    aspect-ratio: 10 / 19;
    opacity: 0.92;
}

.device-side:first-child {
    transform: rotate(-8deg) translateY(38px);
}

.device-side:last-child {
    transform: rotate(8deg) translateY(38px);
}

.orb {
    position: absolute;
    display: grid;
    place-items: center;
    width: 140px;
    height: 140px;
    border-radius: 1600px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.orb-dark {
    top: 42px;
    left: 10px;
    background: var(--color-midnight-ink);
    color: var(--color-white);
}

.orb-lavender {
    right: 10px;
    top: 92px;
    background: var(--color-lavender-whisper);
    color: var(--color-midnight-ink);
    border: 1px solid var(--color-midnight-ink);
}

.hero-caption-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(26, 26, 26, 0.08);
    backdrop-filter: blur(10px);
}

.hero-caption-card p,
.hero-caption-card span {
    margin: 0;
}

.hero-caption-card p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

.hero-caption-card span {
    font-size: 14px;
    color: var(--color-smoke);
}

.editorial-intro {
    max-width: 760px;
    margin-bottom: 42px;
}

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

.feature-card,
.hardware-card,
.download-card {
    border-radius: var(--radius-card);
    border: 1px solid var(--color-stone-mist);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-card);
}

.feature-card {
    padding: 28px;
}

.feature-card-header,
.hardware-card-header,
.download-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.feature-index,
.feature-chip,
.hardware-card-header span {
    font-size: 14px;
    font-weight: 500;
}

.feature-chip,
.hardware-card-header span {
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-midnight-ink);
}

.feature-card h3,
.story-step h3 {
    margin: 18px 0 12px;
    font-size: 24px;
    line-height: 1;
    font-weight: 600;
}

.feature-visual,
.paper-frame {
    margin-top: 26px;
    padding: 18px;
    border-radius: 28px;
    background: var(--color-cream-paper);
    border: 1px solid var(--color-stone-mist);
}

.paper-frame img {
    width: 100%;
    border-radius: 20px;
}

.story-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.story-step {
    position: relative;
    padding: 28px;
    border-radius: var(--radius-card);
    border: 1px solid var(--color-stone-mist);
    background: rgba(255, 255, 255, 0.6);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.story-step::before {
    content: "";
    position: absolute;
    top: 22px;
    right: 22px;
    width: 14px;
    height: 14px;
    border-radius: var(--radius-pill);
    background: var(--color-lavender-whisper);
    border: 1px solid var(--color-midnight-ink);
}

.story-step.is-active {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: rgba(3, 79, 70, 0.25);
}

.story-eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-graphite-veil);
}

.dark-showcase {
    background: var(--color-midnight-ink);
}

.dark-showcase-inner {
    padding: 88px 0;
}

.showcase-stage {
    position: relative;
    min-height: 600px;
}

.showcase-phone {
    position: absolute;
    inset: 86px 92px 0 92px;
    margin: auto;
    width: min(320px, 100%);
    aspect-ratio: 10 / 19.5;
    padding: 14px;
    border-radius: 46px;
    background: linear-gradient(180deg, #121212 0%, #252525 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
}

.showcase-phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 34px;
}

.icon-arc {
    position: absolute;
    inset: 0;
}

.icon-arc span {
    position: absolute;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: var(--radius-pill);
    background: var(--color-lavender-whisper);
    color: var(--color-midnight-ink);
    font-weight: 700;
    border: 1px solid var(--color-midnight-ink);
}

.icon-arc span:nth-child(1) { top: 18px; left: 10%; }
.icon-arc span:nth-child(2) { top: 98px; left: 0; background: #c5f0ec; }
.icon-arc span:nth-child(3) { top: 210px; left: 6%; background: #ffd9b0; }
.icon-arc span:nth-child(4) { top: 78px; right: 2%; background: #dfe8ff; }
.icon-arc span:nth-child(5) { top: 228px; right: 10%; background: #ffeecf; }

.showcase-note {
    position: absolute;
    max-width: 220px;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.showcase-note strong {
    display: block;
    margin-bottom: 8px;
    font-size: 20px;
    color: var(--color-white);
}

.note-left {
    left: 0;
    bottom: 70px;
}

.note-right {
    right: 0;
    top: 310px;
}

.proof-band {
    background: var(--color-deep-forest-teal);
    color: var(--color-white);
}

.proof-band-inner {
    padding: 52px 0 58px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 28px;
    align-items: center;
}

.proof-title {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.04;
    max-width: 13ch;
}

.proof-metrics {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.proof-item {
    min-width: 190px;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-item strong {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
}

.hardware-points {
    margin: 26px 0 30px;
    align-items: stretch;
    flex-wrap: wrap;
}

.hardware-point {
    flex: 1 1 220px;
    padding: 18px 20px;
    border-radius: 24px;
    border: 1px solid var(--color-stone-mist);
    background: rgba(255, 255, 255, 0.5);
}

.hardware-point strong,
.download-card-copy strong {
    display: block;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 10px;
}

.hardware-point span {
    font-size: 16px;
    line-height: 1.3;
    color: var(--color-smoke);
}

.hardware-card {
    padding: 24px;
    background:
        radial-gradient(circle at top right, rgba(240, 215, 255, 0.9), transparent 30%),
        rgba(255, 255, 255, 0.72);
}

.hardware-image {
    margin: 24px 0 20px;
    width: 100%;
    border-radius: 28px;
    background: #f7f3e8;
}

.download-header {
    max-width: 760px;
    margin-bottom: 30px;
}

.download-grid {
    align-items: stretch;
    flex-wrap: wrap;
}

.download-card {
    flex: 1 1 240px;
    min-height: 200px;
    padding: 22px;
    position: relative;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.download-card-outline {
    background: rgba(255, 255, 255, 0.55);
}

.download-card-muted {
    background: rgba(228, 228, 208, 0.36);
}

.download-card-copy {
    margin-top: 52px;
}

.download-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--color-graphite-veil);
}

.download-button {
    position: relative;
}

.download-button.is-disabled {
    opacity: 0.56;
    cursor: not-allowed;
}

.download-button.is-disabled .disabled-tip {
    display: inline-block;
    margin-top: 16px;
    font-size: 12px;
    font-style: normal;
    color: var(--color-smoke);
}

.download-badge {
    width: 20px;
    height: 20px;
    border-radius: var(--radius-pill);
    background: var(--color-amber-pulse);
    color: var(--color-white);
    display: grid;
    place-items: center;
    font-size: 12px;
    box-shadow: 0 6px 14px rgba(255, 169, 70, 0.3);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 200ms ease, transform 200ms ease;
}

.download-button.is-recommended .download-badge {
    opacity: 1;
    transform: scale(1);
}

.store-icon {
    width: 28px;
    height: 28px;
    color: var(--color-midnight-ink);
}

.store-icon-play {
    color: var(--color-deep-forest-teal);
}

.store-icon-windows {
    color: #4169e1;
}

.beta-downloads {
    margin-top: 28px;
    padding: 24px 28px;
    border-radius: var(--radius-card);
    border: 1px solid var(--color-stone-mist);
    background: rgba(255, 255, 255, 0.52);
}

.beta-title {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-graphite-veil);
}

.beta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid var(--color-midnight-ink);
    border-radius: var(--radius-control);
    background: var(--color-cream-paper);
    transition: transform 200ms ease, background 200ms ease;
}

.beta-platform {
    padding: 4px 8px;
    border-radius: var(--radius-pill);
    background: var(--color-stone-mist);
    font-size: 12px;
}

.site-footer {
    padding: 0 0 28px;
}

.footer-shell {
    padding: 28px 0 0;
    border-top: 1px solid var(--color-stone-mist);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-mark,
.footer-copy {
    margin: 0;
}

.footer-mark {
    font-size: 14px;
    font-weight: 600;
}

.footer-copy,
.footer-links a {
    font-size: 14px;
    color: var(--color-smoke);
}

.story-item {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(2px);
    transition: opacity 800ms ease, transform 900ms ease, filter 900ms ease;
    transition-delay: var(--story-delay, 0ms);
}

.story-item.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.story-fade-in {
    transform: translateY(8px);
}

.story-rise {
    transform: translateY(24px);
}

.story-pop {
    transform: translateY(20px) scale(0.96);
}

.story-item.is-visible.story-pop {
    transform: translateY(0) scale(1);
}

.story-progress {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    flex-direction: column;
    gap: 14px;
    z-index: 30;
}

.story-dot {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(26, 26, 26, 0.55);
    background: rgba(255, 255, 255, 0.82);
    transition: transform 250ms ease, border-color 250ms ease, background 250ms ease;
}

.story-dot span {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--color-graphite-veil);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 250ms ease;
}

.story-dot.is-active {
    background: var(--color-midnight-ink);
    border-color: var(--color-midnight-ink);
    transform: scale(1.16);
}

.story-dot.is-active span,
.story-dot:hover span {
    opacity: 1;
}

@media (max-width: 1080px) {
    .nav-links {
        display: none;
    }

    .feature-grid,
    .story-steps,
    .proof-band-inner,
    .hero-grid,
    .hardware-grid,
    .dark-showcase-inner {
        grid-template-columns: 1fr;
    }

    .showcase-stage {
        min-height: 680px;
    }

.proof-metrics {
    justify-content: flex-start;
}
}

@media (max-width: 760px) {
    .site-nav {
        padding: 12px 16px 0;
    }

    .notice-wrap {
        width: calc(100% - 32px);
        padding-bottom: 4px;
    }

    .nav-shell {
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .nav-actions {
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .button {
        width: 100%;
    }

    .nav-actions .button {
        flex: 1 1 auto;
        width: auto;
    }

    .nav-actions .button-ghost {
        display: none;
    }

    .lang-switch {
        margin-left: auto;
    }

    .update-banner {
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px 12px;
    }

    .update-banner__body {
        min-width: 100%;
        font-size: 12px;
    }

    .update-banner__meta {
        white-space: normal;
        font-size: 11px;
    }

    .hero-title,
    .section-title {
        max-width: none;
    }

    .hero-title {
        font-size: clamp(42px, 17vw, 72px);
        line-height: 0.92;
    }

    .section-title {
        font-size: clamp(34px, 13vw, 58px);
    }

    .hero-section,
    .feature-overview,
    .hardware-section,
    .download-section {
        padding: 56px 0 72px;
    }

    .hero-stage {
        min-height: auto;
        padding: 134px 18px 18px;
    }

    .hero-device-stack {
        margin-top: 0;
        flex-direction: column;
        align-items: center;
    }

    .device-side,
    .device-main {
        width: min(78vw, 300px);
    }

    .device-side:first-child,
    .device-side:last-child {
        transform: none;
    }

    .orb {
        width: 118px;
        height: 118px;
        font-size: 13px;
    }

    .orb-dark {
        top: 22px;
        left: 14px;
    }

    .orb-lavender {
        top: 82px;
        right: 14px;
    }

    .hero-caption-card {
        position: static;
        margin-top: 24px;
    }
    .feature-card,
    .story-step,
    .hardware-card,
    .beta-downloads,
    .download-card {
        padding-left: 20px;
        padding-right: 20px;
    }

    .showcase-phone {
        position: relative;
        inset: auto;
        width: min(76vw, 320px);
    }

    .showcase-note {
        position: static;
        max-width: none;
        margin-top: 16px;
    }

    .icon-arc {
        display: none;
    }

    .download-grid,
    .beta-actions,
    .footer-shell,
    .footer-links,
    .platform-pills {
        flex-direction: column;
        align-items: stretch;
    }

    .platform-pill,
    .beta-button,
    .download-card,
    .proof-item {
        width: 100%;
    }

    .proof-title {
        max-width: none;
    }

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

    .floating-download {
        display: inline-flex;
    }
}

@media (min-width: 961px) {
    .story-progress {
        display: flex;
    }
}

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

    .story-item,
    .button,
    .download-card,
    .beta-button,
    .floating-download {
        transition: none;
        transform: none;
        filter: none;
        opacity: 1;
    }
}
