/* Theme: Noir • Ember • Cream | No external CSS dependencies */

/* =========================================================
   01. DESIGN TOKENS
   ========================================================= */
:root {
    --bg: #111114;
    --bg-2: #17171b;
    --surface: #1c1c21;
    --surface-2: #232329;
    --text: #f6f1ea;
    --muted: #b4ada4;
    --line: rgba(246,241,234,.1);
    --ember: #ff5a2d;
    --ember-2: #ff8a4c;
    --cream: #efe4d4;
    --ink: #16141a;
    --grad: linear-gradient(135deg,#ff5a2d 0%,#ff8a4c 100%);
    --grad-soft: linear-gradient(135deg,rgba(255,90,45,.16),rgba(255,138,76,.08));
    --shadow: 0 28px 60px rgba(0,0,0,.35);
    --radius: 18px;
    --container: 1140px;
    --header: 72px;
}

/* =========================================================
   02. RESET & GLOBAL
   ========================================================= */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
    color: var(--text);
    line-height: 1.7;
    background:
        radial-gradient(ellipse 80% 50% at 100% -10%,rgba(255,90,45,.14),transparent 50%),
        radial-gradient(ellipse 60% 40% at 0% 20%,rgba(255,138,76,.07),transparent 45%),
        #111114;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.shell {
    width: min(calc(100% - 40px),var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: -90px;
    left: 16px;
    z-index: 99999;
    background: var(--cream);
    color: var(--ink);
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 800;
}

.skip-link:focus {
    top: 12px;
}

.sr-only {
    position: absolute!important;
    width: 1px!important;
    height: 1px!important;
    padding: 0!important;
    margin: -1px!important;
    overflow: hidden!important;
    clip: rect(0,0,0,0)!important;
    white-space: nowrap!important;
    border: 0!important;
}

/* =========================================================
   03. HEADER
   ========================================================= */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--header);
    background: rgba(17,17,20,.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: .25s;
}

.site-header.scrolled {
    background: rgba(17,17,20,.96);
    border-bottom-color: rgba(255,90,45,.22);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand img {
    width: 118px;
    height: 52px;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    gap: 2px;
    margin-left: auto;
}

.nav-link {
    padding: 8px 13px;
    text-decoration: none;
    color: #c9c2b8;
    font-size: 13px;
    font-weight: 650;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 2px;
    height: 2px;
    background: var(--ember);
    transform: scaleX(0);
    transform-origin: left;
    transition: .2s;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link.active::after,
.nav-link:hover::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    gap: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 750;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .18s,filter .18s,background .18s;
}

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

.btn-primary {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 10px 24px rgba(255,90,45,.28);
}

.btn-outline {
    border-color: rgba(239,228,212,.28);
    background: transparent;
    color: var(--cream);
}

.btn-soft {
    background: var(--surface-2);
    color: var(--cream);
    border-color: var(--line);
}

.btn-sm {
    min-height: 36px;
    padding: 0 13px;
    font-size: 12px;
}

.btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    width: 44px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
    color: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
}

/* =========================================================
   04. MOBILE MENU
   ========================================================= */
.menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1080;
    background: rgba(8,8,10,.78);
    opacity: 0;
    visibility: hidden;
    transition: .25s;
}

.menu-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1090;
    width: min(380px,92vw);
    height: 100dvh;
    padding: 18px;
    background: #17171b;
    border-left: 1px solid rgba(255,90,45,.2);
    transform: translateX(104%);
    transition: .28s;
    overflow: auto;
}

.mobile-menu.open {
    transform: none;
}

.mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.mobile-brand img {
    width: 118px;
}

.menu-close {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: var(--surface-2);
    color: #fff;
    border-radius: 10px;
    font-size: 26px;
}

.mobile-nav {
    display: grid;
    gap: 6px;
    padding: 18px 0;
}

.mobile-link {
    padding: 14px 16px;
    text-decoration: none;
    border-radius: 12px;
    color: #d8d1c7;
    font-weight: 650;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.mobile-link:hover,
.mobile-link.active {
    background: var(--grad-soft);
    color: #fff;
}

.mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.menu-note {
    font-size: 13px;
    color: var(--muted);
    margin-top: 16px;
    padding: 14px;
    border-left: 3px solid var(--ember);
    background: rgba(255,90,45,.06);
}

/* =========================================================
   05. HERO
   ========================================================= */
main {
    padding-top: var(--header);
}

.hero {
    position: relative;
    min-height: 680px;
    display: grid;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero::after {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    right: -120px;
    bottom: -160px;
    border-radius: 50%;
    background: rgba(255,90,45,.12);
    filter: blur(40px);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 64px;
    align-items: center;
    padding: 80px 0 72px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ember-2);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ember);
}

.hero-logo {
    width: min(320px,78%);
    margin: 18px 0 10px;
}

.hero h1,
.page-hero h1 {
    font-size: clamp(36px,5.4vw,62px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0;
    max-width: 780px;
}

.gradient-text {
    color: var(--ember);
    background: none;
}

.hero-lead {
    max-width: 560px;
    margin: 22px 0 28px;
    color: var(--muted);
    font-size: 17px;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-points {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cream);
    font-size: 13px;
    padding: 0;
    border: 0;
    background: none;
}

.hero-points svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--ember);
    stroke-width: 2;
}

.hero-panel {
    position: relative;
    padding: 8px 0 0;
    border-radius: 0;
    background: none;
    border: 0;
    box-shadow: none;
    overflow: visible;
}

.hero-panel::before {
    display: none;
}

.panel-title {
    margin: 0 0 18px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ember-2);
}

.quick-list {
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(28,28,33,.72);
}

.quick-card {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    min-height: 86px;
    padding: 16px 18px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    border-radius: 0;
    text-decoration: none;
    transition: background .18s;
}

.quick-card:last-child {
    border-bottom: 0;
}

.quick-card:hover {
    background: rgba(255,90,45,.08);
    transform: none;
}

.quick-icon,
.feature-icon,
.step-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    color: #fff;
    background: var(--grad);
    border: 0;
}

.quick-icon svg,
.feature-icon svg,
.step-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quick-card strong {
    display: block;
    font-size: 15px;
    padding-right: 0;
}

.quick-card small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
    margin-top: 3px;
}

.arrow {
    position: static;
    margin-left: auto;
    width: auto;
    height: auto;
    background: none;
    color: var(--ember);
    font-size: 18px;
}

/* =========================================================
   06. SECTIONS & CARDS
   ========================================================= */
.section {
    padding: 88px 0;
}

.section-tight {
    padding: 64px 0;
}

.section-border {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

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

.kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--ember);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.section h2,
.section-tight h2 {
    margin: 0 0 12px;
    font-size: clamp(28px,4vw,40px);
    line-height: 1.15;
    letter-spacing: -1px;
}

.section-head p,
.muted {
    color: var(--muted);
}

.grid-3 {
    display: grid;
    grid-template-columns: 1.2fr .9fr .9fr;
    gap: 16px;
    counter-reset: feat;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
}

.feature-card,
.content-card,
.step-card,
.faq-item,
.notice,
.info-card {
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: var(--radius);
}

.feature-card,
.content-card,
.step-card,
.info-card {
    position: relative;
    overflow: hidden;
    padding: 28px 24px 24px;
}

.feature-card::before,
.content-card::before,
.step-card::before,
.info-card::before {
    display: none;
}

.feature-card {
    counter-increment: feat;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(180deg,transparent 20%,rgba(17,17,20,.55)),
        var(--surface);
    transition: border-color .2s,transform .2s;
}

.feature-card::after {
    content: counter(feat, decimal-leading-zero);
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2px;
    color: rgba(255,90,45,.16);
    line-height: 1;
}

.feature-card:first-child {
    background:
        linear-gradient(160deg,rgba(255,90,45,.18),transparent 46%),
        var(--surface);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,90,45,.4);
}

.feature-card h3,
.content-card h3,
.step-card h3 {
    margin: 14px 0 8px;
    font-size: 20px;
}

.feature-card p,
.content-card p,
.step-card p,
.info-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
}

.stat {
    padding: 18px;
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 14px;
}

.stat strong {
    display: block;
    font-size: 22px;
    color: var(--ember);
}

.stat span {
    font-size: 12px;
    color: var(--muted);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    counter-reset: step;
}

.step-card {
    counter-increment: step;
}

.step-card::after {
    content: "0" counter(step);
    position: absolute;
    top: 16px;
    right: 18px;
    color: rgba(255,90,45,.22);
    font-size: 28px;
    font-weight: 800;
}

.article-wrap {
    display: grid;
    grid-template-columns: minmax(0,1fr) 280px;
    gap: 40px;
    align-items: start;
}

.article-body h2 {
    margin: 40px 0 12px;
    font-size: 28px;
    letter-spacing: -.6px;
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body h3 {
    margin: 24px 0 8px;
    font-size: 20px;
}

.article-body p {
    color: #d2cbc2;
    margin: 0 0 16px;
}

.article-body ul,
.article-body ol,
.content-card ul {
    padding-left: 21px;
    color: #c9c2b8;
}

.article-body li,
.content-card li {
    margin: 7px 0;
}

.article-body a {
    color: var(--ember-2);
    text-underline-offset: 3px;
}

.notice {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 18px;
    margin: 22px 0;
    background: rgba(255,90,45,.07);
    border-color: rgba(255,90,45,.2);
}

.notice svg {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--ember);
    stroke-width: 2;
}

.notice p {
    margin: 0;
}

.toc {
    position: sticky;
    top: 96px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
}

.toc h2 {
    font-size: 13px;
    margin: 0 0 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ember-2);
}

.toc a {
    display: block;
    padding: 8px 0;
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid var(--line);
}

.toc a:last-child {
    border-bottom: 0;
}

.toc a:hover {
    color: #fff;
}

.page-hero {
    position: relative;
    padding: 80px 0 56px;
    border-bottom: 1px solid var(--line);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%,rgba(255,90,45,.12),transparent 36%);
}

.page-hero .shell {
    position: relative;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    color: #8e877e;
    font-size: 12px;
    margin-bottom: 18px;
}

.breadcrumb a {
    color: var(--cream);
    text-decoration: none;
}

.page-hero p {
    max-width: 680px;
    color: var(--muted);
    font-size: 16px;
    margin: 16px 0 0;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    background: none;
    border: 0;
    color: #fff;
    text-align: left;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    min-height: 64px;
}

.faq-question span:last-child {
    font-size: 22px;
    color: var(--ember);
    transition: .2s;
}

.faq-item.open .faq-question span:last-child {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .26s;
}

.faq-answer>div {
    overflow: hidden;
}

.faq-answer p {
    margin: 0;
    padding: 0 20px 18px;
    color: var(--muted);
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.cta {
    position: relative;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,90,45,.28);
    background:
        linear-gradient(135deg,rgba(255,90,45,.14),transparent 42%),
        var(--surface);
}

.cta h2 {
    max-width: 700px;
}

.cta p {
    max-width: 700px;
    color: var(--muted);
}

.cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px;
}

/* =========================================================
   07. FOOTER
   ========================================================= */
.site-footer {
    padding: 56px 0 96px;
    border-top: 1px solid var(--line);
    background: #0d0d10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr .7fr;
    gap: 36px;
}

.footer-brand img {
    width: 140px;
}

.footer-grid p {
    max-width: 460px;
    color: #8e877e;
    font-size: 14px;
}

.footer-grid h2 {
    font-size: 12px;
    margin: 0 0 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--cream);
}

.footer-grid a:not(.footer-brand) {
    display: block;
    text-decoration: none;
    color: var(--muted);
    font-size: 14px;
    padding: 5px 0;
}

.footer-grid a:hover {
    color: var(--ember-2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    margin-top: 28px;
    border-top: 1px solid var(--line);
    color: #8e877e;
    font-size: 12px;
}

.bottom-nav {
    display: none;
}

.bottom-nav svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================================
   08. REVEAL
   ========================================================= */
[data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s ease,transform .5s ease;
    transition-delay: var(--delay,0ms);
}

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

/* =========================================================
   09. TABLET
   ========================================================= */
@media (max-width: 960px) {
    .desktop-nav,
    .header-actions {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 56px 0 48px;
    }
    .hero {
        min-height: auto;
    }
    .grid-3,
    .steps {
        grid-template-columns: 1fr 1fr;
    }
    .feature-card:first-child {
        grid-column: 1 / -1;
        min-height: 200px;
    }
    .article-wrap {
        grid-template-columns: 1fr;
    }
    .toc {
        position: static;
        order: -1;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid>div:first-child {
        grid-column: 1/-1;
    }
}

/* =========================================================
   10. MOBILE
   ========================================================= */
@media (max-width: 640px) {
    :root {
        --header: 64px;
    }
    .shell {
        width: min(calc(100% - 24px),var(--container));
    }
    .brand img {
        width: 102px;
        height: 44px;
    }
    .hero-grid {
        padding: 32px 0 24px;
        gap: 28px;
    }
    .hero-logo {
        width: 200px;
        margin: 12px 0 6px;
    }
    .hero h1,
    .page-hero h1 {
        font-size: clamp(30px,8.2vw,38px);
        letter-spacing: -1.2px;
    }
    .hero-lead {
        font-size: 15px;
        margin: 14px 0 20px;
    }
    .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .hero-actions .btn {
        width: 100%;
        min-height: 48px;
    }
    .hero-actions .btn-soft {
        grid-column: 1 / -1;
    }
    .hero-points {
        gap: 12px 16px;
        margin-top: 18px;
    }
    .panel-title {
        margin-bottom: 12px;
    }
    .quick-card {
        min-height: 76px;
        padding: 14px;
    }
    .section {
        padding: 52px 0;
    }
    .section-tight {
        padding: 40px 0;
    }
    .grid-3,
    .grid-2,
    .steps,
    .stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .feature-card,
    .feature-card:first-child {
        grid-column: auto;
        min-height: 0;
        padding: 22px 18px;
    }
    .feature-card::after {
        font-size: 36px;
    }
    .page-hero {
        padding: 48px 0 36px;
    }
    .article-body h2 {
        font-size: 24px;
    }
    .cta {
        padding: 24px 18px;
    }
    .cta-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .cta-actions .btn {
        width: 100%;
        min-height: 46px;
    }
    .cta-actions .btn-soft {
        grid-column: 1 / -1;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-grid>div:first-child {
        grid-column: auto;
    }
    .footer-bottom {
        flex-direction: column;
    }
    .site-footer {
        padding: 40px 0 120px;
    }
    .bottom-nav {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: calc(12px + env(safe-area-inset-bottom));
        z-index: 1050;
        display: grid;
        grid-template-columns: repeat(5,1fr);
        align-items: end;
        padding: 8px 6px;
        background: rgba(23,23,27,.94);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border: 1px solid var(--line);
        border-radius: 20px;
        box-shadow: 0 12px 32px rgba(0,0,0,.4);
    }
    .bottom-nav>a {
        display: flex;
        min-width: 0;
        min-height: 50px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        text-decoration: none;
        color: #c9c2b8;
        font-size: 10px;
        font-weight: 700;
    }
    .bottom-nav>a>svg {
        width: 20px;
        height: 20px;
    }
    .bottom-nav .bottom-main {
        transform: translateY(-16px);
        color: #fff;
    }
    .bottom-main i {
        display: grid;
        place-items: center;
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background: var(--grad);
        border: 3px solid #111114;
        box-shadow: 0 8px 20px rgba(255,90,45,.35);
        font-style: normal;
        color: #fff;
    }
    .bottom-main i svg {
        width: 24px;
        height: 24px;
    }
    .bottom-main span {
        font-size: 10px;
    }
}

@media (max-width: 380px) {
    .hero-actions,
    .cta-actions {
        grid-template-columns: 1fr;
    }
    .hero-actions .btn-soft,
    .cta-actions .btn-soft {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .btn,
    .quick-card,
    .feature-card {
        transition: none;
    }
}
