/* False Accusations page — every selector is scoped to prevent cross-page bleed. */
.false-accusations-page {
    --fa-blue: #2e6fff;
    --fa-red: #ed232d;
    --fa-green: #20d779;
    --fa-panel: #0a111d;
    --fa-panel-2: #0c192d;
    --fa-border: #2c405e;
    --fa-text: #f7f9ff;
    --fa-muted: #b9c9df;
    margin: 0;
    color: var(--fa-text);
    background:
        radial-gradient(circle at 3% 12%, rgba(46,111,255,.15), transparent 27rem),
        radial-gradient(circle at 98% 35%, rgba(237,35,45,.13), transparent 31rem),
        #000;
    overflow-x: hidden;
}

.false-accusations-page *,
.false-accusations-page *::before,
.false-accusations-page *::after { box-sizing: border-box; }

.false-accusations-page main {
    width: min(100% - 40px, 1500px);
    margin-inline: auto;
}

.false-accusations-page h1,
.false-accusations-page h2,
.false-accusations-page h3 {
    margin-top: 0;
    color: #fff;
    line-height: 1.08;
}

.false-accusations-page p { overflow-wrap: anywhere; }

.false-accusations-page .eyebrow {
    display: block;
    width: 100%;
    margin: 0 0 16px;
    color: #75a4ff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .23em;
    line-height: 1.5;
    text-align: inherit;
    white-space: normal;
    word-break: normal;
}

.case-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(330px, .55fr);
    gap: clamp(30px, 5vw, 76px);
    align-items: center;
    margin: 34px 0 28px;
    padding: clamp(48px, 7vw, 105px);
    border: 1px solid #263d62;
    border-radius: 32px;
    background:
        linear-gradient(110deg, rgba(5,24,61,.96), rgba(3,5,9,.98) 51%, rgba(62,3,8,.96)),
        #030507;
    box-shadow: 0 28px 85px rgba(0,0,0,.45);
}

.case-hero h1 {
    margin-bottom: 28px;
    font-size: clamp(48px, 6.3vw, 98px);
    letter-spacing: -.045em;
}

.case-hero h1 span { color: var(--fa-red); }

.hero-intro {
    max-width: 900px;
    color: var(--fa-muted);
    font-size: clamp(19px, 1.8vw, 26px);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-actions a,
.crisis-section > a {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 15px 26px;
    border-radius: 13px;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    text-decoration: none;
    transition: transform .2s ease;
}

.hero-actions a:hover,
.crisis-section > a:hover { transform: translateY(-2px); }

.red-button {
    border: 1px solid #ff5158;
    background: linear-gradient(135deg, #f33139, #a00812);
    box-shadow: 0 12px 30px rgba(237,35,45,.24);
}

.blue-button {
    border: 1px solid #568aff;
    background: linear-gradient(135deg, #3475ff, #123b98);
    box-shadow: 0 12px 30px rgba(46,111,255,.22);
}

.case-status {
    padding: 30px;
    border: 1px solid #42679e;
    border-radius: 22px;
    background: rgba(7,17,33,.94);
}

.status-label {
    color: #ff676e;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .2em;
}

.case-status > div {
    padding: 16px 0;
    border-bottom: 1px solid #2a3d5a;
}

.case-status span { color: #78a7ff; font-weight: 900; letter-spacing: .12em; }
.case-status p { margin: 6px 0 0; color: #d3def0; line-height: 1.5; }
.case-status strong { display: block; margin-top: 20px; color: #fff; font-size: 18px; }

.feature-image {
    padding: clamp(8px, 1.3vw, 18px);
    border: 2px solid var(--fa-blue);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(46,111,255,.12), rgba(237,35,45,.1));
    box-shadow: 0 0 38px rgba(46,111,255,.18);
}

.feature-image img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    background: #050505;
}

.truth-banner,
.impact-section,
.first-hours,
.evidence-section,
.public-record,
.video-section,
.research-section,
.support-section,
.resource-section,
.closing-cta,
.sources { margin-top: clamp(55px, 7vw, 105px); }

.truth-banner {
    padding: clamp(38px, 5vw, 72px);
    text-align: center;
    border-top: 3px solid var(--fa-blue);
    border-bottom: 3px solid var(--fa-red);
    background: linear-gradient(100deg, rgba(46,111,255,.09), rgba(237,35,45,.09));
}

.truth-banner h2,
.false-accusations-page .section-heading h2,
.closing-cta h2 {
    margin-bottom: 20px;
    font-size: clamp(38px, 5vw, 68px);
}

.truth-banner > p:not(.eyebrow),
.false-accusations-page .section-heading > p:not(.eyebrow),
.closing-cta > p:not(.eyebrow) {
    max-width: 1000px;
    margin: 0 auto;
    color: var(--fa-muted);
    font-size: clamp(18px, 1.7vw, 24px);
    line-height: 1.7;
}

.false-accusations-page .section-heading {
    display: flex !important;
    width: 100% !important;
    max-width: 1100px !important;
    margin: 0 auto 38px !important;
    padding: 0 !important;
    grid-template-columns: none !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    text-align: center !important;
}

.false-accusations-page .section-heading .eyebrow,
.false-accusations-page .section-heading h2,
.false-accusations-page .section-heading > p {
    display: block !important;
    width: 100% !important;
    max-width: 1050px !important;
    text-align: center !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.impact-grid article,
.support-grid article {
    padding: 30px 24px;
    border: 1px solid #30476a;
    border-top: 4px solid var(--fa-blue);
    border-radius: 19px;
    background: linear-gradient(145deg, #0c182b, #090d14);
}

.impact-grid article:last-child { border-top-color: var(--fa-red); }
.impact-grid span,
.support-grid span { color: #ff5961; font-weight: 900; letter-spacing: .13em; }
.impact-grid h3,
.support-grid h3 { margin: 18px 0 12px; font-size: 24px; }
.impact-grid p,
.support-grid p { margin: 0; color: var(--fa-muted); line-height: 1.65; }

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

.hours-grid article {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 18px;
    align-items: start;
    padding: 26px;
    border: 1px solid #2e4260;
    border-radius: 18px;
    background: #080e17;
}

.hours-grid b {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: #fff;
    font-size: 24px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--fa-blue), #123c98);
}

.hours-grid article:nth-child(even) b { background: linear-gradient(145deg, var(--fa-red), #941018); }
.hours-grid h3 { margin-bottom: 8px; font-size: 25px; }
.hours-grid p { margin: 0; color: var(--fa-muted); line-height: 1.6; }

.evidence-section {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: clamp(25px, 4vw, 60px);
    padding: clamp(35px, 5vw, 70px);
    border: 1px solid #2f4770;
    border-radius: 28px;
    background: linear-gradient(120deg, #081831, #05070c 52%, #250309);
}

.evidence-copy h2,
.public-record h2 { font-size: clamp(40px, 4.5vw, 64px); }
.evidence-copy > p:not(.eyebrow),
.public-record > div > p:not(.eyebrow) { color: var(--fa-muted); font-size: 20px; line-height: 1.7; }

.evidence-warning {
    margin-top: 28px;
    padding: 22px;
    border-left: 5px solid var(--fa-red);
    background: rgba(237,35,45,.09);
}

.evidence-warning strong { color: #ff5d64; font-size: 25px; text-transform: uppercase; }
.evidence-warning p { margin: 8px 0 0; color: #e3eaf5; line-height: 1.6; }

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

.evidence-board article { padding: 23px; border: 1px solid #304b76; border-radius: 15px; background: rgba(9,22,42,.9); }
.evidence-board span { color: #76a6ff; font-weight: 900; letter-spacing: .12em; }
.evidence-board p { margin: 10px 0 0; color: #c4d2e6; line-height: 1.55; }

.public-record {
    display: grid;
    grid-template-columns: minmax(260px, .5fr) minmax(0, 1fr);
    gap: clamp(35px, 6vw, 90px);
    align-items: center;
    padding: clamp(35px, 5vw, 70px);
    border-top: 2px solid var(--fa-blue);
    border-bottom: 2px solid var(--fa-red);
}

.phone-mockup {
    max-width: 390px;
    padding: 28px;
    border: 2px solid #3e5778;
    border-radius: 28px;
    background: #0b111c;
    box-shadow: 0 20px 45px rgba(0,0,0,.45);
}

.phone-mockup span { color: #ff646a; font-weight: 900; letter-spacing: .14em; }
.phone-mockup p { min-height: 140px; padding: 20px 0; color: #fff; font-size: 25px; }
.phone-mockup div { padding: 16px; text-align: center; color: #fff; font-weight: 900; border-radius: 11px; background: #b71922; }

.video-section {
    padding: clamp(35px, 5vw, 70px);
    border: 1px solid #2f4770;
    border-radius: 28px;
    background:
        linear-gradient(130deg, rgba(46,111,255,.11), rgba(4,6,10,.96) 47%, rgba(237,35,45,.1)),
        #05070b;
}

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

.video-card {
    overflow: hidden;
    border: 1px solid #36527b;
    border-radius: 19px;
    background: #080e17;
}

.video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: linear-gradient(135deg, #091a38, #260308);
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-card > div:last-child { padding: 24px; }
.video-card span { color: #ff6269; font-size: 13px; font-weight: 900; letter-spacing: .14em; }
.video-card h3 { margin: 12px 0; font-size: 24px; }
.video-card p { margin: 0; color: var(--fa-muted); line-height: 1.55; }

.video-note {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 22px;
    padding: 20px 24px;
    border-left: 5px solid var(--fa-blue);
    background: rgba(46,111,255,.09);
}

.video-note strong { flex: 0 0 auto; color: #78a7ff; }
.video-note p { margin: 0; color: #d2dced; line-height: 1.55; }

.accordion { display: grid; gap: 14px; max-width: 1150px; margin: 0 auto; }
.accordion details { border: 1px solid #30476a; border-radius: 16px; background: #080e17; overflow: hidden; }
.accordion summary { display: flex; justify-content: space-between; gap: 20px; padding: 24px 27px; color: #fff; font-size: 20px; font-weight: 900; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary b { color: #76a6ff; }
.accordion details[open] summary { border-bottom: 1px solid #273b5a; }
.accordion details[open] summary b { transform: rotate(45deg); }
.accordion details > div { padding: 24px 27px; color: var(--fa-muted); font-size: 18px; line-height: 1.7; }
.accordion details > div p { margin: 0; }

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

.resource-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.resource-grid a {
    display: block;
    padding: 30px;
    color: #fff;
    text-decoration: none;
    border: 1px solid #36527b;
    border-radius: 18px;
    background: linear-gradient(145deg, #0b1930, #080c13);
    transition: transform .2s ease, border-color .2s ease;
}
.resource-grid a:hover { transform: translateY(-3px); border-color: #6b99f5; }
.resource-grid span { color: #ff6269; font-size: 13px; font-weight: 900; letter-spacing: .14em; }
.resource-grid h3 { margin: 15px 0 10px; font-size: 25px; }
.resource-grid p { margin: 0; color: var(--fa-muted); line-height: 1.6; }

.crisis-section {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 25px;
    align-items: center;
    margin-top: clamp(55px, 7vw, 105px);
    padding: clamp(28px, 4vw, 48px);
    border: 2px solid var(--fa-red);
    border-radius: 22px;
    background: linear-gradient(110deg, rgba(111,4,12,.9), #090b11 60%);
}

.crisis-mark {
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 46px;
    font-weight: 900;
    background: var(--fa-red);
}
.crisis-section h2 { margin-bottom: 10px; font-size: clamp(28px, 3vw, 44px); }
.crisis-section p { margin: 0; color: #e5eaf3; font-size: 18px; line-height: 1.6; }
.crisis-section > a { background: #fff; color: #9d0710; min-width: 130px; }

.closing-cta {
    padding: clamp(42px, 6vw, 85px);
    text-align: center;
    border: 1px solid #334e75;
    border-radius: 28px;
    background: linear-gradient(120deg, #0a1c3e, #05070b 50%, #3a0509);
}
.closing-cta .hero-actions { justify-content: center; }

.sources details { border: 1px solid #2d405b; border-radius: 15px; background: #080c12; }
.sources summary { display: flex; justify-content: space-between; padding: 23px 26px; color: #fff; font-weight: 900; cursor: pointer; list-style: none; }
.sources summary::-webkit-details-marker { display: none; }
.sources details > div { padding: 0 26px 25px; color: var(--fa-muted); line-height: 1.65; }
.sources a { color: #7eaaff; }

@media (max-width: 1100px) {
    .impact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .impact-grid article:last-child { grid-column: 1 / -1; }
    .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
    .false-accusations-page main { width: min(100% - 24px, 760px); }
    .case-hero,
    .evidence-section,
    .public-record { grid-template-columns: 1fr; }
    .case-hero { padding: 36px 25px; border-radius: 24px; }
    .case-hero h1 { font-size: clamp(42px, 10vw, 64px); }
    .case-status { padding: 23px; }
    .feature-image { border-radius: 20px; }
    .feature-image img { border-radius: 12px; }
    .hours-grid,
    .video-grid,
    .resource-grid { grid-template-columns: 1fr; }
    .video-note { align-items: flex-start; flex-direction: column; gap: 7px; }
    .crisis-section { grid-template-columns: auto 1fr; }
    .crisis-section > a { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
    .false-accusations-page main { width: min(100% - 18px, 520px); }
    .case-hero { margin-top: 18px; padding: 28px 20px; }
    .case-hero h1 { margin-bottom: 18px; font-size: clamp(35px, 11.2vw, 52px); }
    .hero-intro { font-size: 17px; line-height: 1.55; }
    .hero-actions { display: grid; margin-top: 24px; }
    .hero-actions a { min-height: 52px; padding: 13px 17px; }
    .case-status { padding: 19px; }
    .feature-image { padding: 5px; }
    .truth-banner,
    .impact-section,
    .first-hours,
    .evidence-section,
    .public-record,
    .video-section,
    .research-section,
    .support-section,
    .resource-section,
    .closing-cta,
    .sources { margin-top: 42px; }
    .truth-banner { padding: 30px 18px; }
    .truth-banner h2,
    .false-accusations-page .section-heading h2,
    .closing-cta h2 { font-size: 34px; }
    .false-accusations-page .section-heading { margin-bottom: 25px !important; }
    .impact-grid,
    .support-grid,
    .evidence-board { grid-template-columns: 1fr; }
    .impact-grid article:last-child { grid-column: auto; }
    .impact-grid article,
    .support-grid article { padding: 22px 20px; }
    .hours-grid article { grid-template-columns: 48px 1fr; padding: 20px 17px; gap: 13px; }
    .hours-grid b { width: 46px; height: 46px; font-size: 20px; }
    .hours-grid h3 { font-size: 21px; }
    .evidence-section,
    .video-section,
    .closing-cta { padding: 28px 18px; border-radius: 21px; }
    .evidence-copy h2,
    .public-record h2 { font-size: 36px; }
    .evidence-board article { padding: 19px; }
    .public-record { padding: 28px 11px; }
    .phone-mockup { padding: 22px; }
    .video-card > div:last-child { padding: 20px; }
    .accordion summary { padding: 20px; font-size: 17px; }
    .accordion details > div { padding: 20px; font-size: 16px; }
    .resource-grid a { padding: 23px; }
    .crisis-section { grid-template-columns: 1fr; padding: 25px 20px; text-align: center; }
    .crisis-mark { margin-inline: auto; }
    .crisis-section > a { grid-column: auto; }
}

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