:root {
    --canvas: #f6f8fb;
    --paper: #ffffff;
    --navy: #102a43;
    --navy-deep: #0a2035;
    --blue: #1d4ed8;
    --blue-dark: #173fae;
    --blue-soft: #eaf0ff;
    --teal: #0f766e;
    --teal-soft: #e7f5f3;
    --amber: #9a4b08;
    --amber-soft: #fff7e8;
    --red: #b42318;
    --red-soft: #fff0ee;
    --ink: #243b53;
    --muted: #5f7185;
    --line: #d9e2ec;
    --line-strong: #bcccdc;
    --shadow-sm: 0 1px 2px rgba(16, 42, 67, .05), 0 8px 24px rgba(16, 42, 67, .05);
    --shadow-md: 0 18px 50px rgba(16, 42, 67, .1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--canvas);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 3px solid rgba(29, 78, 216, .28);
    outline-offset: 2px;
}
::selection { color: var(--navy); background: #cddcff; }
[hidden] { display: none !important; }
.site-container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    color: #fff;
    background: var(--navy);
    border-radius: 8px;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: relative;
    z-index: 20;
    background: rgba(246, 248, 251, .94);
    border-bottom: 1px solid rgba(188, 204, 220, .7);
    backdrop-filter: blur(16px);
}
.site-header-compact { background: rgba(255, 255, 255, .96); }
.header-inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--navy); }
.brand-mark {
    display: grid;
    width: 40px;
    height: 44px;
    place-items: center;
    color: #fff;
    background: var(--navy);
    border-radius: 13px 13px 16px 16px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .12);
}
.brand-mark span { font-size: 12px; font-weight: 850; letter-spacing: .05em; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { font-size: 18px; letter-spacing: -.025em; }
.brand-copy small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 650;
    letter-spacing: .055em;
    text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: 28px; color: #40566c; font-size: 14px; font-weight: 680; }
.site-nav > a:not(.button) { transition: color 160ms ease; }
.site-nav > a:not(.button):hover { color: var(--blue); }

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 11px;
    cursor: pointer;
    font-weight: 760;
    line-height: 1.2;
    text-align: center;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.button:hover:not(:disabled) { transform: translateY(-1px); }
.button:disabled { cursor: not-allowed; opacity: .58; }
.button-small { min-height: 40px; padding: 8px 15px; border-radius: 9px; font-size: 14px; }
.button-large { min-height: 54px; padding: 14px 23px; }
.button-primary { color: #fff; background: var(--blue); border-color: var(--blue); box-shadow: 0 8px 18px rgba(29, 78, 216, .18); }
.button-primary:hover:not(:disabled) { background: var(--blue-dark); border-color: var(--blue-dark); box-shadow: 0 10px 25px rgba(29, 78, 216, .23); }
.button-secondary { color: var(--navy); background: #fff; border-color: var(--line-strong); box-shadow: 0 1px 2px rgba(16, 42, 67, .04); }
.button-secondary:hover:not(:disabled) { border-color: #8aa4bd; background: #fbfdff; }
.button-quiet { color: var(--muted); background: transparent; }
.button-white { color: var(--blue); background: #fff; box-shadow: 0 10px 24px rgba(0, 0, 0, .15); }
.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 14px;
    color: var(--teal);
    font-size: 12px;
    font-weight: 820;
    letter-spacing: .095em;
    text-transform: uppercase;
}
.eyebrow > span { width: 21px; height: 2px; background: currentColor; }
.eyebrow-centered { justify-content: center; }
.eyebrow-light { color: #8fe1d9; }

.hero { position: relative; overflow: hidden; padding: 86px 0 94px; background: linear-gradient(115deg, rgba(255, 255, 255, .72), rgba(246, 248, 251, .2)), var(--canvas); }
.hero-halo { position: absolute; border-radius: 999px; pointer-events: none; }
.hero-halo-one { width: 420px; height: 420px; top: -170px; right: -80px; background: radial-gradient(circle, rgba(29, 78, 216, .12), rgba(29, 78, 216, 0)); }
.hero-halo-two { width: 300px; height: 300px; bottom: -150px; left: 18%; background: radial-gradient(circle, rgba(15, 118, 110, .1), rgba(15, 118, 110, 0)); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, .75fr); align-items: center; gap: 76px; }
.hero-copy h1,
.section-heading h2,
.prepare-section-grid h2,
.safety-panel h2,
.cta-card h2,
.report-intro h1,
.legal-header h1,
.report-success h2 {
    margin: 0;
    color: var(--navy);
    font-weight: 820;
    letter-spacing: -.045em;
    line-height: 1.08;
}
.hero-copy h1 { max-width: 700px; font-size: clamp(42px, 5.2vw, 68px); }
.hero-lede { max-width: 655px; margin: 24px 0 0; color: #486581; font-size: 19px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.assurance-row { display: flex; flex-wrap: wrap; gap: 16px 25px; margin-top: 26px; color: var(--muted); font-size: 13px; font-weight: 670; }
.assurance-row span { position: relative; padding-left: 16px; }
.assurance-row span::before { position: absolute; top: .55em; left: 0; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; content: ""; }

.prepare-card { position: relative; padding: 30px; background: #fff; border: 1px solid rgba(188, 204, 220, .82); border-radius: 20px; box-shadow: var(--shadow-md); }
.prepare-card::before { position: absolute; top: 0; right: 30px; left: 30px; height: 4px; background: linear-gradient(90deg, var(--blue), var(--teal)); border-radius: 0 0 6px 6px; content: ""; }
.prepare-card-top { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 14px; }
.mini-label, .time-pill, .sidebar-kicker { color: var(--teal); font-size: 11px; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.time-pill { padding: 5px 9px; color: var(--muted); background: #f0f4f8; border-radius: 999px; letter-spacing: 0; text-transform: none; }
.prepare-card h2 { margin: 0 0 20px; color: var(--navy); font-size: 24px; letter-spacing: -.025em; line-height: 1.25; }
.check-list { display: grid; gap: 15px; margin: 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 25px 1fr; gap: 10px; align-items: start; color: #40566c; font-size: 14px; line-height: 1.45; }
.check-list li span { display: grid; width: 22px; height: 22px; place-items: center; color: var(--teal); background: var(--teal-soft); border-radius: 50%; font-size: 12px; font-weight: 900; }
.danger-note { display: grid; gap: 3px; margin-top: 24px; padding: 14px 16px; color: #713f12; background: var(--amber-soft); border: 1px solid #f2d19c; border-radius: 11px; font-size: 13px; line-height: 1.5; }
.danger-note strong { color: var(--amber); }

.independence-band { color: #d9e6f0; background: var(--navy); }
.independence-inner { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 20px; padding-block: 23px; }
.independence-inner p { margin: 0; font-size: 13px; line-height: 1.55; }
.independence-inner strong { color: #fff; }
.independence-icon { display: grid; width: 30px; height: 30px; place-items: center; color: #fff; border: 1px solid rgba(255, 255, 255, .5); border-radius: 50%; font-family: Georgia, serif; font-weight: 800; }
.independence-inner a { color: #9bc1ff; font-size: 13px; font-weight: 760; white-space: nowrap; }

.section { padding: 100px 0; }
.section-tinted { background: #edf2f7; border-block: 1px solid var(--line); }
.section-heading { max-width: 680px; margin-bottom: 45px; }
.section-heading-centered { margin-inline: auto; text-align: center; }
.section-heading h2, .prepare-section-grid h2, .safety-panel h2, .cta-card h2, .report-intro h1, .legal-header h1, .report-success h2 { font-size: clamp(32px, 4vw, 48px); }
.section-heading > p:last-child, .section-lede { margin: 17px 0 0; color: var(--muted); font-size: 17px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card { position: relative; min-height: 315px; padding: 30px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); }
.step-number { position: absolute; top: 23px; right: 25px; color: #c5d2df; font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.step-symbol { display: grid; width: 55px; height: 55px; margin-bottom: 37px; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 16px; font-size: 11px; font-weight: 850; letter-spacing: .035em; text-transform: uppercase; }
.step-card:nth-child(2) .step-symbol { color: var(--teal); background: var(--teal-soft); }
.step-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 20px; letter-spacing: -.02em; }
.step-card p { margin: 0; color: var(--muted); font-size: 14px; }
.prepare-section-grid { display: grid; grid-template-columns: .8fr 1.15fr; align-items: start; gap: 90px; }
.text-link { display: inline-flex; gap: 8px; margin-top: 26px; color: var(--blue); font-weight: 760; }
.detail-list { padding: 8px 28px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); }
.detail-row { display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.detail-row:last-child { border-bottom: 0; }
.detail-row span { color: var(--teal); font-size: 12px; font-weight: 820; letter-spacing: .08em; }
.detail-row p { margin: 0; color: #40566c; font-weight: 650; }
.safety-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; }
.safety-panel { padding: 45px; border-radius: 22px; }
.safety-panel-dark { color: #d9e6f0; background: var(--navy); }
.safety-panel-dark h2 { color: #fff; }
.safety-panel > p:not(.eyebrow) { margin: 20px 0 0; color: #c5d8e7; }
.safety-callout { margin-top: 28px; padding: 18px; color: #eaf3f8; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14); border-radius: 13px; font-size: 14px; }
.safety-rules { padding: 42px; background: #fff; border: 1px solid var(--line); border-radius: 22px; }
.safety-rules h3 { margin: 0; color: var(--navy); font-size: 25px; }
.safety-rules ul { display: grid; gap: 15px; margin: 27px 0 23px; padding: 0; list-style: none; }
.safety-rules li { display: grid; grid-template-columns: 25px 1fr; gap: 10px; color: #40566c; font-weight: 670; }
.safety-rules li span { display: grid; width: 21px; height: 21px; place-items: center; color: var(--red); background: var(--red-soft); border-radius: 50%; font-size: 14px; }
.safety-rules p { margin: 0; color: var(--muted); font-size: 14px; }

.official-section { background: #fff; border-top: 1px solid var(--line); }
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.resource-card { display: flex; min-height: 230px; flex-direction: column; padding: 24px; background: var(--canvas); border: 1px solid var(--line); border-radius: 15px; }
.resource-agency { align-self: flex-start; padding: 4px 8px; color: var(--teal); background: var(--teal-soft); border-radius: 6px; font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.resource-card h3 { margin: 17px 0 8px; color: var(--navy); font-size: 17px; line-height: 1.3; }
.resource-card p { margin: 0 0 20px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.resource-card a { margin-top: auto; color: var(--blue); font-size: 13px; font-weight: 760; }
.resource-grid-compact { grid-template-columns: repeat(2, 1fr); margin-bottom: 30px; text-align: left; }
.resource-grid-compact .resource-card { min-height: 200px; }
.cta-section { padding: 70px 0 90px; background: #fff; }
.cta-card { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 48px 55px; color: #dce9f2; background: linear-gradient(120deg, var(--navy), #123f63); border-radius: 23px; }
.cta-card h2 { max-width: 690px; color: #fff; }
.cta-card p:not(.eyebrow) { max-width: 670px; margin: 15px 0 0; }
.cta-card .button { flex: 0 0 auto; }

.site-footer { padding: 68px 0 25px; color: #adc1d1; background: var(--navy-deep); }
.site-footer .brand { color: #fff; }
.site-footer .brand-mark { color: var(--navy); background: #fff; }
.site-footer .brand-copy small { color: #91aabd; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; }
.footer-brand-block > p { max-width: 440px; margin: 22px 0 0; font-size: 14px; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 35px; }
.footer-links > div { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-links strong { margin-bottom: 6px; color: #fff; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .11); font-size: 12px; }
.footer-bottom p { margin: 0; }

.report-page { padding: 58px 0 100px; }
.report-intro { display: grid; grid-template-columns: 1fr 360px; align-items: center; gap: 70px; margin-bottom: 45px; }
.report-intro > div > p:last-child { max-width: 700px; margin: 18px 0 0; color: var(--muted); font-size: 17px; }
.report-intro-note { display: grid; gap: 5px; padding: 19px 21px; color: #713f12; background: var(--amber-soft); border: 1px solid #f0cf99; border-radius: 13px; font-size: 13px; }
.report-intro-note strong { color: var(--amber); }
.report-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; align-items: start; gap: 30px; }
.report-form-column { min-width: 0; }
.report-sidebar { position: sticky; top: 22px; display: grid; gap: 16px; }
.sidebar-card { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 15px; box-shadow: var(--shadow-sm); }
.sidebar-card h2 { margin: 8px 0 14px; color: var(--navy); font-size: 20px; }
.sidebar-card ul { display: grid; gap: 10px; margin: 0; padding-left: 20px; color: var(--muted); font-size: 13px; }
.sidebar-card p { margin: 8px 0 12px; color: var(--muted); font-size: 13px; }
.sidebar-card a { color: var(--blue); font-size: 13px; font-weight: 760; }
.sidebar-card-muted { background: #edf2f7; }
.sidebar-help { display: grid; gap: 3px; padding: 8px 5px; font-size: 13px; }
.sidebar-help strong { color: var(--navy); }
.sidebar-help a { color: var(--blue); }

.honeypot-field { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }
.form-steps { margin-bottom: 18px; padding: 0 18px; }
.form-steps ol { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; list-style: none; }
.form-steps ol::before { position: absolute; z-index: 0; top: 18px; right: 10%; left: 10%; height: 2px; background: var(--line); content: ""; }
.form-steps li { position: relative; z-index: 1; display: flex; justify-content: center; }
.form-steps button { display: grid; min-width: 64px; gap: 5px; justify-items: center; padding: 0; color: #8093a6; background: transparent; border: 0; cursor: pointer; }
.form-steps button:disabled { cursor: default; }
.form-steps button > span { display: grid; width: 37px; height: 37px; place-items: center; background: #fff; border: 2px solid var(--line); border-radius: 50%; font-size: 12px; font-weight: 800; }
.form-steps button small { font-size: 11px; font-weight: 720; }
.form-steps li.current button { color: var(--blue); }
.form-steps li.current button > span { color: #fff; background: var(--blue); border-color: var(--blue); box-shadow: 0 0 0 5px var(--blue-soft); }
.form-steps li.complete button { color: var(--teal); }
.form-steps li.complete button > span { color: #fff; background: var(--teal); border-color: var(--teal); }

.form-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-md); }
.form-card-header { padding: 24px 32px 22px; background: #f9fbfd; border-bottom: 1px solid var(--line); }
.form-card-header p { margin: 0 0 3px; color: var(--teal); font-size: 11px; font-weight: 820; letter-spacing: .07em; text-transform: uppercase; }
.form-card-header h2 { margin: 0; color: var(--navy); font-size: 29px; letter-spacing: -.03em; }
.form-step { padding: 34px 32px 12px; }
.js .form-step { display: none; }
.js .form-step.is-active { display: block; }
.form-section-title { margin: 0 0 6px; color: var(--navy); font-size: 21px; letter-spacing: -.02em; }
.form-intro { margin: 0 0 27px; color: var(--muted); font-size: 14px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.field { min-width: 0; }
.field-wide { grid-column: 1 / -1; }
.field > label { display: block; margin-bottom: 7px; color: var(--navy); font-size: 13px; font-weight: 750; }
.required-mark { margin-left: 4px; color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.field-hint { margin: -3px 0 8px; color: var(--muted); font-size: 11px; line-height: 1.45; }
input, select, textarea { width: 100%; color: var(--ink); background: #fff; border: 1px solid var(--line-strong); border-radius: 9px; }
input, select { min-height: 45px; padding: 9px 12px; }
textarea { min-height: 100px; padding: 11px 12px; resize: vertical; }
input:hover, select:hover, textarea:hover { border-color: #8da6bd; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29, 78, 216, .1); outline: none; }
input[type="checkbox"], input[type="radio"] { width: 18px; min-height: 18px; margin: 1px 0 0; padding: 0; accent-color: var(--blue); box-shadow: none; }
input[readonly] { color: #486581; background: #edf2f7; }
.was-validated input:invalid, .was-validated select:invalid, .was-validated textarea:invalid { border-color: var(--red); background: #fffafa; }
.mono-input { font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: 13px; }
.character-count { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; text-align: right; }
.section-divider { height: 1px; margin: 32px 0; background: var(--line); }
.nested-form-section { margin-top: 25px; padding: 25px; background: #f7f9fc; border: 1px solid var(--line); border-radius: 13px; }
.choice-fieldset, .radio-fieldset { margin: 29px 0 0; padding: 0; border: 0; }
.choice-fieldset legend, .radio-fieldset legend, .consent-list legend { margin-bottom: 11px; color: var(--navy); font-size: 13px; font-weight: 750; }
.choice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.choice-card { display: flex; min-height: 48px; align-items: center; gap: 9px; padding: 10px 11px; color: #40566c; background: #fff; border: 1px solid var(--line); border-radius: 9px; cursor: pointer; font-size: 12px; font-weight: 650; }
.choice-card:has(input:checked) { color: var(--blue); background: var(--blue-soft); border-color: #95b0f1; }
.radio-row { display: flex; flex-wrap: wrap; gap: 10px 28px; }
.radio-row label { display: inline-flex; align-items: center; gap: 8px; color: #40566c; font-size: 14px; cursor: pointer; }
.radio-row-stacked { display: grid; gap: 12px; }

.repeat-section { margin-top: 30px; }
.repeat-heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 13px; }
.repeat-heading h4 { margin: 0; color: var(--navy); font-size: 18px; }
.repeat-heading p { margin: 2px 0 0; color: var(--muted); font-size: 12px; }
.repeat-card { position: relative; margin: 0 0 16px; padding: 27px 23px 23px; background: #f9fbfd; border: 1px solid var(--line); border-radius: 13px; }
.repeat-card legend { padding: 0 8px; color: var(--navy); background: #f9fbfd; font-size: 13px; font-weight: 800; }
.remove-button { padding: 4px 7px; color: var(--red); background: transparent; border: 0; cursor: pointer; font-size: 12px; font-weight: 730; }
.repeat-card > .remove-button { position: absolute; top: 13px; right: 17px; }
.repeat-note { margin: -5px 0 18px; color: var(--muted); font-size: 12px; }
.suspect-card.identifier-error { border-color: var(--red); box-shadow: 0 0 0 2px var(--red-soft); }

.secret-warning { margin: 0 0 22px; padding: 16px 18px; color: #713f12; background: var(--amber-soft); border: 1px solid #f0cf99; border-radius: 10px; font-size: 13px; }
.secret-warning strong { display: block; color: var(--amber); }
.upload-zone { display: grid; min-height: 190px; place-items: center; align-content: center; gap: 7px; padding: 25px; color: var(--muted); background: #fafcff; border: 2px dashed #aabed0; border-radius: 14px; cursor: pointer; text-align: center; transition: border-color 160ms ease, background 160ms ease; }
.upload-zone:hover, .upload-zone.dragover { background: var(--blue-soft); border-color: var(--blue); }
.upload-zone strong { color: var(--navy); }
.upload-zone > span:last-of-type { font-size: 12px; }
.upload-symbol { display: grid; width: 42px; height: 42px; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 50%; font-size: 25px; }
.upload-zone input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.evidence-list { margin-top: 24px; }
.evidence-list h4 { margin: 0 0 10px; color: var(--navy); font-size: 14px; }
.evidence-item { position: relative; display: grid; grid-template-columns: 48px minmax(0, 1fr) auto; gap: 14px; align-items: start; margin-bottom: 10px; padding: 15px; background: #f7f9fc; border: 1px solid var(--line); border-radius: 11px; }
.evidence-thumb { width: 48px; height: 48px; object-fit: cover; background: #e4ebf2; border-radius: 8px; }
.evidence-item-main { min-width: 0; }
.file-line { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 9px; }
.file-line strong { overflow: hidden; color: var(--navy); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.file-line span { flex: 0 0 auto; color: var(--muted); font-size: 10px; }
.evidence-item .field > label { margin-bottom: 5px; font-size: 11px; }
.evidence-item input { min-height: 39px; font-size: 12px; }
.originals-reminder { margin-top: 25px; padding: 17px 19px; background: var(--teal-soft); border: 1px solid #acd9d3; border-radius: 11px; }
.originals-reminder strong { color: var(--teal); }
.originals-reminder p { margin: 4px 0 0; color: #345f5b; font-size: 12px; }

.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.review-grid > div { display: grid; gap: 2px; padding: 13px 15px; background: #f4f7fa; border-radius: 9px; }
.review-grid span { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.review-grid strong { overflow: hidden; color: var(--navy); font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.review-guidance { margin: 9px 0 25px; color: var(--muted); font-size: 11px; }
.consent-list { display: grid; gap: 10px; margin: 0; padding: 0; border: 0; }
.consent-list label { display: grid; grid-template-columns: 21px 1fr; gap: 12px; padding: 15px; color: #40566c; background: #f9fbfd; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; font-size: 12px; }
.consent-list label:has(input:checked) { background: var(--teal-soft); border-color: #acd9d3; }
.consent-list strong { color: var(--navy); }
.consent-list a { color: var(--blue); text-decoration: underline; }
.signature-box { display: grid; grid-template-columns: 1.4fr .65fr; gap: 18px; margin-top: 24px; padding: 22px; background: #f4f7fa; border-radius: 12px; }
.signature-box > p { grid-column: 1 / -1; margin: -5px 0 0; color: var(--muted); font-size: 11px; }

.form-alert { margin: 16px 0; padding: 13px 15px; border-radius: 9px; font-size: 13px; }
.form-alert-error { color: #7a271a; background: var(--red-soft); border: 1px solid #efb5ae; }
.form-main-alert { margin: 20px 32px 0; }
.form-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; margin-top: 25px; padding: 22px 32px 28px; border-top: 1px solid var(--line); }
.form-actions .button-quiet { margin-right: auto; }
.submit-progress { padding: 0 32px 27px; }
.progress-track { height: 8px; overflow: hidden; background: #e2e9f0; border-radius: 999px; }
.progress-track span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--blue), var(--teal)); border-radius: inherit; transition: width 160ms ease; }
.submit-progress p { margin: 8px 0 0; color: var(--muted); font-size: 12px; text-align: center; }

.report-success { padding: 45px 36px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-md); text-align: center; }
.success-mark { display: grid; width: 62px; height: 62px; margin: 0 auto 18px; place-items: center; color: #fff; background: var(--teal); border-radius: 50%; font-size: 25px; }
.report-success > p:not(.eyebrow):not(.report-reference) { max-width: 650px; margin: 14px auto; color: var(--muted); }
.report-reference { display: inline-block; margin: 24px 0 10px; padding: 11px 18px; color: var(--navy); background: var(--blue-soft); border: 1px solid #bfd0fb; border-radius: 9px; font-family: "SFMono-Regular", Consolas, monospace; font-size: 19px; font-weight: 800; letter-spacing: .04em; }
.success-reminder { max-width: 650px; margin: 22px auto 30px; padding: 16px; color: #345f5b; background: var(--teal-soft); border-radius: 10px; font-size: 13px; }
.report-success h3 { margin: 30px 0 15px; color: var(--navy); }

.legal-page { padding: 65px 0 100px; }
.legal-layout { max-width: 880px; }
.legal-header { margin-bottom: 30px; }
.legal-header > p:last-child { margin: 13px 0 0; color: var(--muted); font-size: 13px; }
.legal-callout { margin-bottom: 25px; padding: 18px 20px; color: #713f12; background: var(--amber-soft); border: 1px solid #f0cf99; border-radius: 11px; font-size: 14px; }
.legal-callout-blue { color: #244c7a; background: var(--blue-soft); border-color: #bed0f5; }
.legal-content { padding: 35px 42px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); }
.legal-content section { padding: 25px 0; border-bottom: 1px solid var(--line); }
.legal-content section:first-child { padding-top: 0; }
.legal-content section:last-child { padding-bottom: 0; border-bottom: 0; }
.legal-content h2 { margin: 0 0 10px; color: var(--navy); font-size: 20px; }
.legal-content p { margin: 9px 0 0; color: #486581; font-size: 14px; }
.legal-content ul { margin: 10px 0 0; padding-left: 22px; color: #486581; font-size: 14px; }
.legal-content li { margin: 5px 0; }
.legal-content a { color: var(--blue); text-decoration: underline; }

@media (max-width: 1000px) {
    .hero-grid { grid-template-columns: 1fr 350px; gap: 40px; }
    .site-nav { gap: 18px; }
    .report-intro { grid-template-columns: 1fr 320px; gap: 35px; }
    .report-layout { grid-template-columns: minmax(0, 1fr) 260px; gap: 20px; }
    .choice-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    .site-nav > a:not(.button) { display: none; }
    .hero { padding: 62px 0 70px; }
    .hero-grid, .report-intro, .report-layout, .prepare-section-grid, .safety-grid, .footer-grid { grid-template-columns: 1fr; }
    .hero-grid { gap: 42px; }
    .prepare-card { max-width: 570px; }
    .steps-grid, .resource-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid .step-card:last-child { grid-column: 1 / -1; min-height: 250px; }
    .prepare-section-grid { gap: 40px; }
    .section { padding: 75px 0; }
    .report-sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
    .sidebar-help { grid-column: 1 / -1; }
    .report-intro { margin-bottom: 30px; }
    .report-intro-note { max-width: 600px; }
    .footer-grid { gap: 45px; }
}

@media (max-width: 620px) {
    .site-container { width: min(100% - 28px, 1160px); }
    .header-inner { min-height: 68px; }
    .brand-mark { width: 36px; height: 40px; }
    .brand-copy strong { font-size: 16px; }
    .brand-copy small { display: none; }
    .site-nav .button { min-height: 38px; padding: 8px 12px; font-size: 12px; }
    .hero-copy h1 { font-size: 40px; }
    .hero-lede { font-size: 17px; }
    .hero-actions .button { width: 100%; }
    .prepare-card { padding: 24px 20px; }
    .independence-inner { grid-template-columns: 28px 1fr; gap: 13px; }
    .independence-inner a { grid-column: 2; }
    .steps-grid, .resource-grid, .resource-grid-compact, .report-sidebar, .form-grid, .review-grid, .signature-box, .footer-links { grid-template-columns: 1fr; }
    .steps-grid .step-card:last-child { grid-column: auto; }
    .step-card { min-height: 260px; }
    .safety-panel, .safety-rules { padding: 30px 24px; }
    .cta-card { display: grid; padding: 35px 25px; }
    .cta-card .button { width: 100%; }
    .footer-bottom { display: grid; }
    .report-page { padding: 38px 0 70px; }
    .report-intro h1 { font-size: 36px; }
    .form-steps { padding: 0; }
    .form-steps button { min-width: 42px; }
    .form-steps button small { display: none; }
    .form-card-header { padding: 20px; }
    .form-step { padding: 26px 20px 5px; }
    .field-wide { grid-column: auto; }
    .choice-grid { grid-template-columns: 1fr 1fr; }
    .repeat-heading { align-items: flex-start; flex-direction: column; }
    .repeat-card { padding: 25px 16px 18px; }
    .nested-form-section { padding: 20px 15px; }
    .evidence-item { grid-template-columns: 40px minmax(0, 1fr); }
    .evidence-thumb { width: 40px; height: 40px; }
    .evidence-item > .remove-button { grid-column: 2; justify-self: start; }
    .signature-box > p { grid-column: auto; }
    .form-main-alert { margin-inline: 20px; }
    .form-actions { flex-wrap: wrap; padding: 20px; }
    .form-actions .button-primary { flex: 1; }
    .submit-progress { padding-inline: 20px; }
    .report-success { padding: 35px 20px; }
    .legal-page { padding: 45px 0 75px; }
    .legal-content { padding: 25px 20px; }
}

@media (max-width: 400px) {
    .choice-grid { grid-template-columns: 1fr; }
    .prepare-card-top { align-items: flex-start; flex-direction: column; }
    .button { padding-inline: 14px; }
}

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