:root {
    color-scheme: light;
    --bg: #f6f7f9;
    --bg-strong: #edf0f5;
    --surface: rgba(255, 255, 255, 0.76);
    --surface-strong: #ffffff;
    --surface-soft: #f2f4f7;
    --panel: #0c1320;
    --panel-soft: #121b2c;
    --border: rgba(8, 17, 31, 0.08);
    --border-strong: rgba(8, 17, 31, 0.14);
    --text: #08111f;
    --text-muted: #5d6879;
    --text-soft: #7a8696;
    --accent: #d3ff36;
    --accent-ink: #08111f;
    --shadow: 0 30px 90px rgba(8, 17, 31, 0.18);
    --shadow-soft: 0 14px 34px rgba(8, 17, 31, 0.08);
    --card-shadow: 0 16px 40px rgba(8, 17, 31, 0.06);
    --radius-xl: 42px;
    --radius-lg: 30px;
    --radius-md: 22px;
    --radius-pill: 999px;
}

html.dark {
    color-scheme: dark;
    --bg: #070d18;
    --bg-strong: #0d1524;
    --surface: rgba(12, 18, 32, 0.78);
    --surface-strong: rgba(12, 18, 32, 0.94);
    --surface-soft: rgba(255, 255, 255, 0.05);
    --panel: #0b1220;
    --panel-soft: #121b2c;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --text: #f5f7fb;
    --text-muted: #b4bfd0;
    --text-soft: #8d9bad;
    --accent: #d8ff47;
    --accent-ink: #08111f;
    --shadow: 0 34px 100px rgba(0, 0, 0, 0.36);
    --shadow-soft: 0 18px 42px rgba(0, 0, 0, 0.24);
    --card-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: clip;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body.site-page {
    margin: 0;
    min-height: 100vh;
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(720px 420px at 0% 0%, rgba(216, 255, 71, 0.08), transparent 65%),
        radial-gradient(840px 420px at 100% 0%, rgba(98, 132, 255, 0.08), transparent 60%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-strong) 100%);
    overflow-x: hidden;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

.hidden {
    display: none !important;
}

.site-orb {
    display: none;
}

.site-shell,
.site-footer {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    width: min(1200px, calc(100% - 32px));
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.site-brand-mark {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(211, 255, 54, 0.22);
    color: var(--accent-ink);
    flex: 0 0 auto;
}

.site-brand-wordmark {
    font-size: 1.08rem;
}

.site-nav,
.site-header-actions,
.site-footer-links,
.button-row,
.inline-links,
.hero-actions,
.page-hero-actions,
.plan-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.site-nav {
    flex: 1 1 auto;
    justify-content: center;
    gap: 20px;
}

.site-header-actions {
    justify-content: flex-end;
}

.site-nav a,
.site-header-link,
.site-footer a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.94rem;
    font-weight: 700;
}

.site-nav a[aria-current="page"],
.site-nav a:hover,
.site-header-link:hover,
.site-footer a:hover {
    color: var(--text);
}

.theme-toggle {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    transition: color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.theme-toggle:hover {
    color: var(--text);
    border-color: var(--border-strong);
    transform: translateY(-1px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0.88rem 1.35rem;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: transform 0.16s ease, border-color 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--accent);
    color: var(--accent-ink);
}

.btn-primary:hover {
    background: #c3f32e;
}

.btn-secondary {
    background: var(--surface-soft);
    border-color: var(--border);
    color: var(--text);
}

.btn-secondary:hover {
    border-color: var(--border-strong);
}

.site-main {
    padding: 108px 0 64px;
}

.hero {
    padding: 62px 0 0;
}

.hero-inner {
    display: grid;
    gap: 46px;
}

.hero-split {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: start;
}

.hero-copy {
    max-width: 36rem;
    margin: 0;
    text-align: left;
    padding-top: 28px;
}

.site-kicker,
.section-label,
.card-label,
.stage-label,
.plan-tag,
.hero-eyebrow {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-soft);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-kicker {
    margin-bottom: 18px;
}

.site-kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.hero-copy h1,
.page-hero h1 {
    margin: 0;
    text-wrap: balance;
    font-size: clamp(3.2rem, 5.2vw, 5.7rem);
    line-height: 0.94;
    letter-spacing: -0.08em;
    font-weight: 800;
}

.hero-copy h1 {
    max-width: 8ch;
}

.page-hero h1 {
    max-width: 10ch;
    font-size: clamp(2.9rem, 4.4vw, 4.9rem);
}

.hero-copy h1 + p,
.page-hero h1 + p {
    margin: 20px 0 0;
    max-width: 34rem;
    color: var(--text-muted);
    font-size: 1.04rem;
    line-height: 1.72;
    font-weight: 600;
    text-wrap: pretty;
}

.hero-actions,
.page-hero-actions,
.button-row {
    justify-content: flex-start;
    margin-top: 28px;
}

.page-hero-actions {
    justify-content: center;
}

.plan-actions {
    margin-top: 8px;
}

.hero-note,
.page-hero-note,
.muted-note {
    margin: 18px 0 0;
    max-width: 34rem;
    color: var(--text-soft);
    font-size: 0.97rem;
    line-height: 1.6;
    text-align: left;
}

.hero-subproof {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    margin-top: 18px;
    color: var(--text-soft);
    font-size: 0.94rem;
    font-weight: 700;
}

.hero-subproof a {
    text-decoration: none;
    color: var(--text);
}

.hero-subproof span {
    position: relative;
    padding-left: 15px;
}

.hero-subproof span::before {
    content: "";
    position: absolute;
    top: 0.58rem;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

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

.hero-pain-card {
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.48);
}

html.dark .hero-pain-card {
    background: rgba(255, 255, 255, 0.03);
}

.hero-pain-card span {
    display: block;
    color: var(--text-soft);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-pain-card strong {
    display: block;
    margin-top: 10px;
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.42;
    text-wrap: balance;
}

.hero-stage-shell {
    position: relative;
    overflow: hidden;
    padding: 28px 30px 30px;
    border-radius: 38px;
    background: linear-gradient(180deg, var(--panel) 0%, var(--panel-soft) 100%);
    color: #f5f7fb;
    box-shadow: var(--shadow);
}

.hero-stage-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 320px at 0% 0%, rgba(211, 255, 54, 0.14), transparent 65%),
        radial-gradient(680px 360px at 100% 0%, rgba(116, 164, 255, 0.16), transparent 58%);
    pointer-events: none;
}

.hero-stage-shell > * {
    position: relative;
    z-index: 1;
}

.hero-stage-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stage-head h2 {
    margin: 12px 0 0;
    max-width: 14ch;
    font-size: clamp(1.9rem, 3vw, 2.65rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    font-weight: 800;
    color: #ffffff;
    text-wrap: balance;
}

.hero-stage-kpi {
    margin: 0;
    padding: 0.58rem 0.88rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(226, 232, 240, 0.74);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-stage-body {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 28px;
    padding-top: 24px;
    align-items: start;
}

.hero-flow-column {
    display: grid;
    gap: 20px;
}

.voice-note-player,
.pricing-card,
.plain-card,
.proof-card,
.compare-card,
.trial-band {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface-strong);
    box-shadow: var(--card-shadow);
}

.voice-note-player {
    padding: 20px;
    display: grid;
    gap: 12px;
}

.voice-note-player-inline {
    max-width: none;
    padding: 0 0 18px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.voice-note-player h2,
.pricing-card h2,
.plain-card h2,
.proof-card h2,
.feature-card h2,
.cta-band h2 {
    margin: 0;
    font-size: 1.46rem;
    line-height: 1.12;
    letter-spacing: -0.05em;
    font-weight: 800;
    text-wrap: balance;
}

.voice-note-player p,
.pricing-card p,
.plain-card p,
.proof-card p,
.feature-card p,
.compare-table td,
.compare-table th,
.trial-band,
.cta-band p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.66;
}

.voice-note-player audio {
    width: 100%;
}

.voice-note-player-inline audio {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 8px;
}

.inline-links a {
    font-weight: 800;
    text-decoration: none;
}

.voice-note-player-inline .inline-links a:first-child {
    color: #ffffff;
}

.voice-note-player-inline .inline-links a:last-child {
    color: rgba(226, 232, 240, 0.76);
}

.hero-flow-list {
    position: relative;
    display: grid;
    gap: 0;
    padding-left: 18px;
}

.hero-flow-list::before {
    content: "";
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 4px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-flow-step {
    position: relative;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 18px;
    padding: 16px 0;
}

.hero-flow-step::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(216, 255, 71, 0.12);
}

.hero-flow-time {
    color: rgba(226, 232, 240, 0.58);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding-top: 4px;
}

.hero-flow-step strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.42;
}

.hero-flow-step p {
    margin: 0;
    margin-top: 8px;
    color: rgba(226, 232, 240, 0.74);
    line-height: 1.6;
}

.hero-lead-card {
    display: grid;
    gap: 18px;
    padding: 22px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.hero-stage-shell .hero-eyebrow {
    color: rgba(226, 232, 240, 0.64);
}

.hero-message-bubble {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-message-bubble strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.3;
}

.hero-message-bubble p {
    margin: 8px 0 0;
    color: rgba(226, 232, 240, 0.76);
    line-height: 1.62;
}

.hero-summary-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-summary-item:last-child {
    border-bottom: 0;
}

.hero-summary-item span {
    color: rgba(226, 232, 240, 0.64);
    font-size: 0.86rem;
}

.hero-summary-item strong {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.42;
    font-weight: 800;
    text-align: right;
}

.hero-summary-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0.42rem 0.7rem;
    border-radius: var(--radius-pill);
    background: rgba(211, 255, 54, 0.16);
    color: #f2ffb4;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-handoff-note {
    display: grid;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-handoff-note strong {
    color: #ffffff;
    font-size: 1.14rem;
    line-height: 1.35;
    font-weight: 800;
}

.hero-handoff-note p:last-child {
    color: rgba(226, 232, 240, 0.76);
    line-height: 1.62;
}

.site-section {
    padding: 96px 0 0;
}

.section-head {
    max-width: 44rem;
    margin-bottom: 36px;
}

.page-hero {
    max-width: 40rem;
    margin: 0 auto;
    text-align: center;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    font-weight: 800;
    text-wrap: balance;
}

.section-head p {
    margin: 16px 0 0;
    max-width: 38rem;
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

.page-hero p {
    margin-left: auto;
    margin-right: auto;
}

.stat-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 28px;
    border-top: 1px solid var(--border);
}

.stat-band article {
    padding: 28px 0 0;
}

.stat-band article + article {
    padding-left: 28px;
    border-left: 1px solid var(--border);
}

.stat-band span {
    display: block;
    margin-bottom: 12px;
    color: var(--text-soft);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.stat-band strong,
.compare-table strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.42;
}

.stat-band p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.64;
}

.feature-grid,
.pricing-grid,
.proof-grid,
.split-grid {
    display: grid;
    gap: 20px;
}

.feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 42px;
    border-top: 1px solid var(--border);
}

.feature-card {
    padding: 28px 0 30px;
    border-bottom: 1px solid var(--border);
}

.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

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

.pricing-card,
.plain-card,
.proof-card,
.compare-card,
.trial-band {
    padding: 26px;
}

.pricing-card,
.plain-card,
.proof-card {
    display: grid;
    align-content: start;
    gap: 12px;
}

.pricing-card ul,
.plain-card ul,
.proof-card ul {
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.pricing-card li,
.plain-card li,
.proof-card li {
    position: relative;
    padding-left: 18px;
    color: var(--text-muted);
    line-height: 1.62;
}

.pricing-card li::before,
.plain-card li::before,
.proof-card li::before {
    content: "";
    position: absolute;
    top: 0.7rem;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.pricing-card.featured {
    background: linear-gradient(180deg, var(--panel) 0%, var(--panel-soft) 100%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.pricing-card.featured .plan-tag,
.pricing-card.featured p,
.pricing-card.featured li,
.pricing-card.featured .price-line span {
    color: rgba(226, 232, 240, 0.76);
}

.pricing-card.featured h2,
.pricing-card.featured strong,
.pricing-card.featured .price-line strong {
    color: #f5f7fb;
}

.price-line {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.price-line strong {
    margin: 0;
    color: var(--text);
    font-size: clamp(2.8rem, 4.8vw, 3.9rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
}

.price-line span {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.compare-card {
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.compare-table th,
.compare-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.compare-table thead th {
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.compare-table tbody tr:last-child td {
    border-bottom: 0;
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 0;
    color: var(--text);
    font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 0;
    padding: 0 0 22px;
    max-width: 44rem;
    color: var(--text-muted);
    line-height: 1.68;
}

.trial-band strong {
    color: var(--text);
}

.legal-note {
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.legal-note p {
    margin: 0;
    max-width: 46rem;
    color: var(--text-muted);
    line-height: 1.68;
}

.cta-band {
    padding: 36px;
    border-radius: 34px;
    background: linear-gradient(180deg, var(--panel) 0%, var(--panel-soft) 100%);
    box-shadow: var(--shadow);
}

.cta-band h2 {
    color: #f5f7fb;
}

.cta-band p,
.cta-band .card-label {
    color: rgba(226, 232, 240, 0.76);
}

.site-divider {
    height: 1px;
    margin-top: 76px;
    background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

.site-footer {
    padding: 28px 0 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.site-footer p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.92rem;
}

@media (max-width: 1080px) {
    .hero-split,
    .hero-stage-body,
    .pricing-grid,
    .proof-grid,
    .split-grid,
    .feature-grid,
    .stat-band {
        grid-template-columns: 1fr;
    }

    .stat-band article + article {
        padding-left: 0;
        padding-top: 24px;
        margin-top: 24px;
        border-left: 0;
        border-top: 1px solid var(--border);
    }

    .site-nav {
        display: none;
    }

    .hero-pain-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding-top: 0;
    }
}

@media (max-width: 760px) {
    .site-header {
        top: 10px;
        width: calc(100% - 20px);
        padding: 12px 14px;
        border-radius: 20px;
    }

    .site-header-actions .site-header-link {
        display: none;
    }

    .site-shell,
    .site-footer {
        width: calc(100% - 20px);
    }

    .site-main {
        padding-top: 84px;
        padding-bottom: 36px;
    }

    .hero {
        padding-top: 34px;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 3rem;
    }

    .hero-copy h1 + p,
    .page-hero h1 + p,
    .section-head p {
        font-size: 1rem;
    }

    .hero-actions .btn,
    .page-hero-actions .btn,
    .button-row .btn,
    .plan-actions .btn {
        flex: 1 1 100%;
    }

    .hero-subproof {
        display: grid;
        gap: 10px;
    }

    .hero-subproof span,
    .hero-subproof a {
        width: fit-content;
    }

    .hero-stage-shell {
        padding: 20px 20px 22px;
        border-radius: 32px;
    }

    .hero-stage-head {
        display: grid;
        gap: 14px;
    }

    .hero-stage-head h2 {
        font-size: 2rem;
    }

    .hero-flow-step {
        grid-template-columns: 1fr;
        gap: 6px;
        padding-left: 14px;
    }

    .hero-flow-step::before {
        top: 20px;
    }

    .hero-flow-time {
        padding-top: 0;
    }

    .voice-note-player,
    .pricing-card,
    .plain-card,
    .proof-card,
    .compare-card,
    .trial-band {
        padding: 20px;
        border-radius: 24px;
    }

    .voice-note-player-inline {
        padding: 0 0 18px;
    }

    .hero-lead-card {
        padding: 20px;
        border-radius: 24px;
    }

    .cta-band {
        padding: 28px;
        border-radius: 28px;
    }

    .compare-table {
        min-width: 640px;
    }

    .site-footer {
        padding-top: 24px;
        padding-bottom: 30px;
    }
}

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

    .btn,
    .theme-toggle {
        transition: none;
    }
}
