@charset "UTF-8";
:root {
    --primary: #6F5AE8;
    --primary-soft: #9A8CF2;
    --dark: #242433;
    --bg: #F8F8FC;
    --bg-soft: #F0EEFA;
    --text: #30303A;
    --muted: #70707D;
    --accent: #F29A4A;
    --white: #FFFFFF;
    --border: #DED9F3;
    --shadow: 0 18px 50px rgba(36, 36, 51, .09);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.75;
    overflow-wrap: anywhere;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; }
button { cursor: pointer; }
code { background: var(--bg-soft); padding: .12em .35em; border-radius: 6px; }

.skip-link {
    position: fixed;
    left: 16px;
    top: 10px;
    z-index: 200;
    padding: 10px 14px;
    background: var(--dark);
    color: var(--white);
    border-radius: 10px;
    transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248, 248, 252, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(111, 90, 232, .12);
}
.header-inner {
    width: min(var(--max), calc(100% - 40px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 800;
    text-decoration: none;
    color: var(--dark);
    white-space: nowrap;
}
.brand img { width: 44px; height: 44px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.main-nav a {
    text-decoration: none;
    color: #4F4F5A;
    padding: 10px 11px;
    border-radius: 10px;
    font-size: 15px;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { background: var(--bg-soft); color: var(--primary); }
.search-open, .menu-toggle {
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--dark);
    border-radius: 12px;
    padding: 9px 13px;
}
.menu-toggle { display: none; margin-left: auto; }

.breadcrumbs {
    width: min(var(--max), calc(100% - 40px));
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 14px;
}
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumbs li:not(:last-child)::after { content: "›"; margin-left: 8px; color: #A9A3C5; }
.breadcrumbs a { color: var(--primary); text-decoration: none; }

main { min-height: 60vh; }
.section, .hero, .page-hero {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}
.section { padding: 78px 0; }
.eyebrow {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--primary);
}
h1, h2, h3 { color: var(--dark); line-height: 1.25; margin-top: 0; }
h1 { font-size: clamp(36px, 5vw, 64px); letter-spacing: -.04em; }
h2 { font-size: clamp(28px, 3.5vw, 42px); letter-spacing: -.025em; }
h3 { font-size: 21px; }
p { margin: 0 0 1.15em; }
.section-heading { max-width: 820px; margin-bottom: 34px; }
.section-heading.narrow { max-width: 760px; }
.section-heading > p:last-child { color: var(--muted); font-size: 18px; }

.hero {
    min-height: 650px;
    padding: 74px 0 58px;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 56px;
}
.hero-copy { padding: 20px 0; }
.hero-lead { color: #555560; font-size: 19px; max-width: 690px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0; }
.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 13px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid transparent;
}
.button.primary { background: var(--primary); color: var(--white); }
.button.accent { background: var(--accent); color: #2D2117; }
.button.ghost { background: var(--white); color: var(--dark); border-color: var(--border); }
.button.light { background: var(--white); color: var(--dark); }
.button:hover { transform: translateY(-1px); }
.hero-media { margin: 0; }
.hero-media img {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}
.hero-media figcaption { margin-top: 12px; color: var(--muted); font-size: 14px; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 30px 0 0; }
.hero-facts div { border-top: 1px solid var(--border); padding-top: 14px; }
.hero-facts dt { font-size: 13px; color: var(--muted); }
.hero-facts dd { margin: 4px 0 0; font-weight: 700; line-height: 1.45; }

.page-hero {
    padding: 70px 0 58px;
    display: grid;
    grid-template-columns: 1fr .82fr;
    gap: 50px;
    align-items: center;
}
.page-hero.compact h1, .download-hero h1, .guide-hero h1 { font-size: clamp(36px, 4.5vw, 58px); }
.page-hero p { font-size: 18px; color: #5C5C67; }
.page-hero img { width: 100%; min-height: 350px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow); }

.intro-band { display: grid; grid-template-columns: 1.4fr .6fr; gap: 44px; align-items: start; }
.note-panel {
    background: var(--dark);
    color: #EDECF7;
    padding: 28px;
    border-radius: var(--radius-lg);
}
.note-panel strong { display: block; margin-bottom: 10px; color: var(--white); font-size: 20px; }

.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.path-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.path-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.path-card > div { padding: 24px; }
.path-card p { color: var(--muted); }
.text-link { color: var(--primary); font-weight: 700; text-decoration: none; }
.text-link::after { content: " →"; }

.split-feature {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 56px;
    align-items: center;
}
.split-feature.reverse { grid-template-columns: 1.1fr .9fr; }
.split-feature.reverse .split-media { order: 2; }
.split-feature.reverse .split-copy { order: 1; }
.split-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-xl); }
.split-copy p { color: #5D5D67; }
.check-list { padding-left: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; margin: 10px 0; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--primary); font-weight: 900; }

.editorial-strip, .question-band, .warning-panel {
    border-radius: var(--radius-xl);
    padding: 44px;
    display: grid;
    grid-template-columns: 1fr 1.35fr auto;
    align-items: center;
    gap: 34px;
    background: var(--dark);
    color: #E7E6F2;
}
.editorial-strip h2, .question-band h2, .warning-panel h2 { color: var(--white); margin-bottom: 0; }
.editorial-strip p, .question-band p, .warning-panel p { margin-bottom: 0; }
.editorial-strip .eyebrow, .question-band .eyebrow, .warning-panel .eyebrow { color: var(--primary-soft); }

.scenario-list { border-top: 1px solid var(--border); }
.scenario-list article { display: grid; grid-template-columns: 72px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.scenario-list article > span { font-size: 15px; color: var(--primary); font-weight: 800; }
.scenario-list h3 { margin-bottom: 8px; }
.scenario-list p { color: var(--muted); }
.scenario-list a { color: var(--primary); font-weight: 700; }

.visual-guide { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }
.visual-guide > img { border-radius: var(--radius-xl); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.mini-grid div { padding: 18px; background: var(--bg-soft); border-radius: 16px; }
.mini-grid strong { display: block; margin-bottom: 4px; color: var(--dark); }
.mini-grid span { color: var(--muted); font-size: 14px; }

.question-links { display: grid; gap: 8px; }
.question-links a { color: var(--white); text-decoration-color: rgba(255,255,255,.5); }

.about-brief { display: grid; grid-template-columns: .75fr 1.25fr; gap: 48px; align-items: center; }
.about-brief img { border-radius: var(--radius-xl); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.inline-links { display: flex; flex-wrap: wrap; gap: 16px; }
.inline-links a { color: var(--primary); font-weight: 700; }

.prose-grid, .prose-layout { display: grid; grid-template-columns: 1.55fr .65fr; gap: 54px; align-items: start; }
.prose-main { max-width: 820px; }
.prose-main.wide { max-width: 900px; }
.prose-main h2 { font-size: 32px; margin-top: 1.8em; }
.prose-main h2:first-child { margin-top: 0; }
.prose-main h3 { margin-top: 1.7em; }
.prose-main p { font-size: 17px; color: #51515C; }
.side-note { position: sticky; top: 110px; background: var(--bg-soft); border: 1px solid var(--border); padding: 26px; border-radius: var(--radius-lg); }
.side-note h2 { font-size: 24px; }
.side-note ol, .side-note ul { padding-left: 1.25em; }
.side-note li { margin: 8px 0; }

.compare-table { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.compare-row { display: grid; grid-template-columns: .8fr 1.2fr 1.2fr; border-top: 1px solid var(--border); }
.compare-row:first-child { border-top: 0; }
.compare-row > div { padding: 18px 20px; border-left: 1px solid var(--border); }
.compare-row > div:first-child { border-left: 0; }
.compare-row.head { background: var(--bg-soft); font-weight: 800; color: var(--dark); }

.action-steps .step-list, .step-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.step-list li { display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.step-list li > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--bg-soft); color: var(--primary); font-weight: 900; }
.step-list h3 { margin-bottom: 8px; }
.step-list p { color: var(--muted); }
.step-list a { color: var(--primary); font-weight: 700; }

.check-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.check-cards article { padding: 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.check-cards article > span { display: inline-block; margin-bottom: 34px; color: var(--primary); font-weight: 900; }
.check-cards p { color: var(--muted); }

.content-band { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; background: var(--bg-soft); padding-left: 44px; padding-right: 44px; border-radius: var(--radius-xl); }
.content-band img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); }
.content-band-copy p { color: #5B5B66; }

.timeline { position: relative; margin-left: 20px; border-left: 2px solid var(--border); }
.timeline article { position: relative; display: grid; grid-template-columns: 54px 1fr; gap: 18px; margin: 0 0 26px -28px; }
.timeline-dot { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--primary); color: var(--white); font-weight: 900; border: 6px solid var(--bg); }
.timeline article > div:last-child { padding-top: 6px; }
.timeline h3 { margin-bottom: 6px; }
.timeline p { color: var(--muted); }

.warning-panel { grid-template-columns: .8fr 1.4fr auto; }
.warning-panel ul { margin: 0; }
.warning-panel li { margin: 8px 0; }

.feature-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-block { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--white); }
.feature-block p, .feature-block li { color: var(--muted); }
.feature-block ul { padding-left: 1.2em; }

.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.guide-grid article { padding: 26px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.guide-grid article > span { color: var(--primary); font-weight: 900; font-size: 13px; }
.guide-grid h3 { margin: 18px 0 8px; }
.guide-grid p { color: var(--muted); }

.troubleshooting-list { display: grid; gap: 22px; }
.trouble-card { display: grid; grid-template-columns: 80px 1fr; gap: 24px; padding: 30px; border: 1px solid var(--border); background: var(--white); border-radius: var(--radius-lg); }
.trouble-number { font-size: 30px; color: var(--primary-soft); font-weight: 900; }
.trouble-card h2 { font-size: 28px; }
.trouble-card ol { margin-bottom: 0; padding-left: 1.3em; }
.trouble-card li { margin: 8px 0; color: #585864; }
.diagnosis-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.diagnosis-grid article { padding: 30px; background: var(--bg-soft); border-radius: var(--radius-lg); }
.diagnosis-grid p:last-child { color: var(--muted); }

.faq-list { max-width: 900px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; padding: 22px 0; color: var(--dark); font-size: 20px; font-weight: 800; }
.faq-icon { color: var(--primary); font-size: 28px; font-weight: 400; }
.faq-answer { padding: 0 52px 22px 0; color: #5B5B66; }
.faq-answer[hidden] { display: none; }
.faq-routing .route-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.route-grid a { display: block; padding: 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); text-decoration: none; }
.route-grid strong { display: block; margin-bottom: 7px; color: var(--dark); }
.route-grid span { color: var(--muted); }

.safety-matrix, .about-values, .feedback-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.safety-matrix article, .about-values article, .feedback-grid article { padding: 28px; border: 1px solid var(--border); background: var(--white); border-radius: var(--radius-lg); }
.safety-matrix p, .about-values p, .feedback-grid p { color: var(--muted); }
.safety-matrix strong { display: block; margin-top: 18px; color: var(--dark); }
.safety-matrix span { color: var(--muted); }
.about-values article > span { color: var(--primary); font-weight: 900; }
.about-values h2 { font-size: 26px; margin-top: 22px; }

.contact-note { background: var(--dark); color: #E8E7F1; border-radius: var(--radius-xl); padding-left: 48px; padding-right: 48px; }
.contact-note h2 { color: var(--white); }
.contact-note .eyebrow { color: var(--primary-soft); }
.contact-note ol { columns: 2; gap: 40px; }
.contact-note li { margin: 10px 0; break-inside: avoid; }

.search-page { max-width: 920px; }
.search-form { background: var(--bg-soft); border-radius: var(--radius-lg); padding: 24px; }
.search-form label { display: block; margin-bottom: 8px; font-weight: 800; }
.search-row { display: flex; gap: 10px; }
.search-row input { flex: 1; min-width: 0; border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; background: var(--white); }
.search-row button { border: 0; background: var(--primary); color: var(--white); border-radius: 12px; padding: 10px 18px; font-weight: 800; }
.search-form p { margin: 10px 0 0; color: var(--muted); font-size: 14px; }
.search-results { margin-top: 34px; }
.result-count { color: var(--muted); }
.search-results article { padding: 24px 0; border-bottom: 1px solid var(--border); }
.search-results h2 { font-size: 24px; margin-bottom: 8px; }
.search-results h2 a { text-decoration: none; }
.search-results p { color: var(--muted); }
.empty-state { margin-top: 34px; padding: 34px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.empty-state h2 { font-size: 26px; }
.empty-state a { color: var(--primary); }

.error-page { text-align: center; padding-top: 110px; padding-bottom: 120px; }
.error-code { font-size: clamp(70px, 14vw, 170px); line-height: 1; margin: 0; color: var(--primary-soft); font-weight: 900; letter-spacing: -.06em; }
.error-page h1 { font-size: clamp(34px, 5vw, 58px); margin: 20px 0 12px; }
.error-page > p:not(.error-code) { max-width: 620px; margin: 0 auto 24px; color: var(--muted); }
.error-page .hero-actions { justify-content: center; }

.site-footer { margin-top: 50px; background: var(--dark); color: #D8D6E4; }
.footer-grid {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 58px 0 40px;
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 34px;
}
.footer-grid h2 { font-size: 16px; color: var(--white); margin-bottom: 14px; }
.footer-grid p { color: #B6B3C7; font-size: 14px; }
.footer-grid a, .text-button { display: block; margin: 9px 0; color: #D8D6E4; text-decoration: none; font-size: 14px; }
.text-button { padding: 0; border: 0; background: transparent; }
.footer-grid a:hover, .text-button:hover { color: var(--white); text-decoration: underline; }
.footer-bottom { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 20px 0 26px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; color: #AAA7BA; font-size: 13px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #D8D6E4; }

.search-modal[hidden] { display: none !important; }
.search-modal { position: fixed; inset: 0; z-index: 220; display: grid; place-items: start center; padding-top: min(14vh, 110px); }
.search-backdrop { position: absolute; inset: 0; background: rgba(25,25,34,.62); }
.search-dialog { position: relative; width: min(720px, calc(100% - 34px)); background: var(--white); border-radius: var(--radius-xl); padding: 28px; box-shadow: 0 25px 80px rgba(0,0,0,.25); }
.search-dialog-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.search-dialog-head h2 { margin: 0; font-size: 28px; }
.search-close { border: 1px solid var(--border); background: var(--white); border-radius: 10px; padding: 8px 12px; }

@media (max-width: 1200px) {
    .header-inner, .section, .hero, .page-hero, .breadcrumbs, .footer-grid, .footer-bottom { width: min(100% - 48px, 1120px); }
    .main-nav a { padding-left: 8px; padding-right: 8px; }
    .path-grid, .guide-grid { gap: 16px; }
}

@media (max-width: 1024px) {
    .menu-toggle { display: inline-flex; }
    .main-nav {
        position: absolute;
        top: 76px;
        left: 24px;
        right: 24px;
        display: none;
        margin: 0;
        padding: 12px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 18px;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
    }
    .main-nav.is-open { display: flex; }
    .main-nav a { padding: 10px 12px; }
    .search-open { display: none; }
    .hero, .page-hero, .split-feature, .split-feature.reverse, .visual-guide, .about-brief, .content-band { grid-template-columns: 1fr; }
    .hero { min-height: 0; padding-top: 54px; }
    .hero-media img { min-height: 0; }
    .page-hero img { max-height: 460px; }
    .split-feature.reverse .split-media, .split-feature.reverse .split-copy { order: initial; }
    .path-grid { grid-template-columns: repeat(2, 1fr); }
    .path-card:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: .8fr 1.2fr; }
    .intro-band, .prose-grid, .prose-layout { grid-template-columns: 1fr; }
    .side-note { position: static; }
    .editorial-strip, .question-band, .warning-panel { grid-template-columns: 1fr; }
    .feature-columns, .guide-grid { grid-template-columns: repeat(2, 1fr); }
    .check-cards { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .header-inner, .section, .hero, .page-hero, .breadcrumbs, .footer-grid, .footer-bottom { width: min(100% - 32px, 100%); }
    .header-inner { min-height: 68px; }
    .brand img { width: 38px; height: 38px; }
    .main-nav { top: 68px; left: 16px; right: 16px; }
    .section { padding: 56px 0; }
    .hero { padding: 46px 0 38px; gap: 34px; }
    .page-hero { padding: 46px 0 30px; gap: 30px; }
    .hero-facts { grid-template-columns: 1fr; }
    .hero-facts div { display: grid; grid-template-columns: 110px 1fr; gap: 10px; }
    .path-grid, .feature-columns, .guide-grid, .diagnosis-grid, .safety-matrix, .about-values, .feedback-grid, .faq-routing .route-grid { grid-template-columns: 1fr; }
    .path-card:last-child { display: block; }
    .editorial-strip, .question-band, .warning-panel, .contact-note, .content-band { padding: 30px; }
    .mini-grid { grid-template-columns: 1fr; }
    .compare-row { grid-template-columns: 1fr; padding: 14px 0; }
    .compare-row.head { display: none; }
    .compare-row > div { border-left: 0; padding: 6px 18px; }
    .compare-row > div:first-child { font-weight: 800; color: var(--dark); }
    .check-cards { grid-template-columns: 1fr; }
    .trouble-card { grid-template-columns: 1fr; }
    .contact-note ol { columns: 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid section:first-child { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 600px) {
    h1 { font-size: 38px; }
    h2 { font-size: 30px; }
    .page-hero.compact h1, .download-hero h1, .guide-hero h1 { font-size: 38px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .button { width: 100%; }
    .scenario-list article { grid-template-columns: 44px 1fr; }
    .step-list li { grid-template-columns: 1fr; }
    .timeline { margin-left: 0; border-left: 0; }
    .timeline article { margin-left: 0; grid-template-columns: 48px 1fr; }
    .timeline-dot { width: 48px; height: 48px; border-width: 4px; }
    .search-row { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid section:first-child { grid-column: auto; }
}

@media (max-width: 375px) {
    .header-inner, .section, .hero, .page-hero, .breadcrumbs, .footer-grid, .footer-bottom { width: min(100% - 24px, 100%); }
    .brand span { font-size: 15px; }
    .menu-toggle { padding: 8px 10px; }
    h1, .page-hero.compact h1, .download-hero h1, .guide-hero h1 { font-size: 34px; }
    h2 { font-size: 27px; }
    .editorial-strip, .question-band, .warning-panel, .contact-note, .content-band { padding: 24px; border-radius: 22px; }
    .faq-question { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
}
