:root {
  color-scheme: light;
  --brand: #0176d3;
  --brand-text: #005ea8;
  --brand-hover: #005fae;
  --brand-tint: #eaf4ff;
  --paper: #fafaf7;
  --surface: #ffffff;
  --surface-raised: #f1f5f8;
  --ink: #142637;
  --ink-secondary: #455767;
  --ink-muted: #526476;
  --line: #d5dfe6;
  --line-strong: #b5c5d2;
  --success: #21663a;
  --success-bg: #edf7ef;
  --error: #a12622;
  --error-bg: #fff0ed;
  --warning: #805200;
  --warning-bg: #fff5dd;
  --focus: #005ea8;
  --shadow: 0 16px 44px rgb(24 54 77 / 7%);
  --radius: 18px;
  --header-height: 84px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-synthesis: none;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --brand: #71bdff;
  --brand-text: #8acaff;
  --brand-hover: #a4d5ff;
  --brand-mark-ink: #0e1821;
  --brand-tint: #122c44;
  --paper: #0e1821;
  --surface: #14222e;
  --surface-raised: #192b39;
  --ink: #f0f6fb;
  --ink-secondary: #c4d2df;
  --ink-muted: #a9bfce;
  --line: #354a5b;
  --line-strong: #5a7387;
  --success: #a0e4b4;
  --success-bg: #163326;
  --error: #ffb9ad;
  --error-bg: #3e2523;
  --warning: #f8d28a;
  --warning-bg: #392f1d;
  --focus: #8acaff;
  --shadow: 0 16px 44px rgb(0 0 0 / 18%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body.home-page { margin: 0; background: var(--paper); color: var(--ink); font-size: 17px; line-height: 1.7; }
body.home-page, button, input, textarea, select { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
img, svg { max-width: 100%; }
img { height: auto; }
svg { vertical-align: middle; }
button, input, textarea, select { font: inherit; }
button, a, input, textarea, summary { -webkit-tap-highlight-color: transparent; }
button, summary { cursor: pointer; }
button { color: inherit; }
a { color: var(--brand-text); text-underline-offset: .2em; text-decoration-thickness: .07em; }
a:hover { text-decoration-thickness: .12em; }
p { margin: 0 0 1.25em; text-align: justify; overflow-wrap: break-word; }
p:last-child { margin-bottom: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 720; color: var(--ink); line-height: 1.16; letter-spacing: -.035em; text-wrap: balance; overflow-wrap: break-word; }
h1 { max-width: 1000px; font-size: clamp(2.65rem, 5.8vw, 4.5rem); line-height: 1.055; letter-spacing: -.053em; }
h1 span { color: var(--brand-text); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); max-width: 820px; }
h3 { font-size: 1.3rem; letter-spacing: -.02em; line-height: 1.3; }
strong { font-weight: 680; }
ul, ol { padding-left: 1.3em; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 5px; }
[hidden] { display: none !important; }
section[id] { scroll-margin-top: calc(var(--header-height) + 24px); }

.shell { width: min(1160px, calc(100% - 80px)); margin-inline: auto; }
.visually-hidden, .honeypot {
  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;
}
.skip-link {
  position: fixed; z-index: 100; top: 12px; left: 16px; padding: 12px 20px;
  transform: translateY(-180%); border-radius: 8px; background: var(--ink);
  color: var(--paper); font-weight: 650;
}
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; z-index: 30; top: 0; background: var(--paper); border-bottom: 1px solid var(--line); }
.site-header > .shell { display: flex; align-items: center; gap: 16px; min-height: var(--header-height); }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 10px; color: var(--ink); font-size: 1.4rem; font-weight: 760; letter-spacing: -.055em; text-decoration: none; line-height: 1; }
.brand:hover { text-decoration: none; }
.brand span { color: var(--brand-text); }
.brand svg { width: 31px; height: 31px; flex: 0 0 auto; color: var(--brand-text); }
.brand img { width: auto; max-width: 174px; max-height: 40px; object-fit: contain; }
.header-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.site-nav { display: flex; flex: 1 1 auto; justify-content: flex-end; align-items: center; gap: 23px; margin-left: auto; }
.site-nav a { position: relative; display: inline-flex; align-items: center; min-height: 44px; color: var(--ink-secondary); font-size: .88rem; font-weight: 600; text-decoration: none; white-space: nowrap; }
.site-nav a::after { position: absolute; content: ""; left: 0; right: 0; bottom: 4px; height: 2px; background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform 160ms ease; }
.site-nav a:hover, .site-nav a[aria-current] { color: var(--brand-text); }
.site-nav a:hover::after, .site-nav a[aria-current]::after { transform: scaleX(1); }
#menu-toggle, #theme-toggle { display: inline-flex; justify-content: center; align-items: center; flex: 0 0 auto; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); }
#menu-toggle { display: none; }
#theme-toggle { margin-left: 6px; }
#theme-toggle:hover, #menu-toggle:hover { background: var(--brand-tint); border-color: var(--line-strong); }
#menu-toggle svg, #theme-toggle svg { width: 20px; height: 20px; flex-shrink: 0; }
#theme-toggle .icon-sun, #theme-toggle [data-theme-icon="sun"] { display: none; }
[data-theme="dark"] #theme-toggle .icon-sun, [data-theme="dark"] #theme-toggle [data-theme-icon="sun"] { display: block; }
[data-theme="dark"] #theme-toggle .icon-moon, [data-theme="dark"] #theme-toggle [data-theme-icon="moon"] { display: none; }

.hero { padding: clamp(64px, 7.8vw, 112px) 0 76px; }
.hero-copy { max-width: 1000px; }
.hero-deck { max-width: 890px; margin-top: 28px; margin-bottom: 27px; font-size: clamp(1.18rem, 2.05vw, 1.48rem); line-height: 1.5; color: var(--ink-secondary); letter-spacing: -.015em; }
.hero-copy > p:not(.hero-deck) { max-width: 850px; color: var(--ink-secondary); font-size: 1.055rem; }
.hero-copy > .answer-capsule { max-width: 850px; padding: 16px 20px; border-left: 3px solid var(--brand); background: var(--surface-raised); border-radius: 0 10px 10px 0; color: var(--ink); font-size: 1.02rem; line-height: 1.6; }
.eyebrow, .section-kicker { display: block; color: var(--brand-text); font-size: .76rem; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; line-height: 1.5; }
.section-kicker { margin: 0 0 18px; }

.signal-map { position: relative; isolation: isolate; margin: 54px 0 0; padding: 34px 36px 25px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); box-shadow: var(--shadow); overflow: hidden; }
.signal-map::before { position: absolute; z-index: -1; content: ""; width: 270px; height: 270px; right: -80px; top: -150px; background: radial-gradient(circle, var(--brand-tint), transparent 70%); pointer-events: none; }
.map-heading { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 12px 24px; padding-bottom: 30px; }
.map-heading strong { color: var(--ink-secondary); font-size: .93rem; font-weight: 600; }
.signal-map-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 46px; }
.map-node { position: relative; min-width: 0; }
.map-node:not(:last-child)::after { position: absolute; content: ""; top: 27px; left: 74px; width: calc(100% - 45px); height: 1px; background: var(--line-strong); }
.map-node:not(:last-child)::before { position: absolute; content: ""; top: 23px; right: -28px; width: 9px; height: 9px; border-top: 1px solid var(--line-strong); border-right: 1px solid var(--line-strong); transform: rotate(45deg); }
.map-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; margin-bottom: 20px; border: 1px solid var(--line); border-radius: 15px; background: var(--brand-tint); color: var(--brand-text); }
.map-icon svg { width: 28px; height: 28px; }
.map-step { display: block; margin-bottom: 5px; font-size: .75rem; font-weight: 650; color: var(--ink-muted); letter-spacing: .03em; }
.map-node > strong { display: block; margin-bottom: 10px; font-size: 1.12rem; letter-spacing: -.02em; }
.map-node p { max-width: 32ch; font-size: .92rem; line-height: 1.65; color: var(--ink-secondary); }
.signal-map figcaption { padding-top: 23px; margin-top: 25px; border-top: 1px solid var(--line); color: var(--ink-muted); font-size: .8rem; line-height: 1.6; }

.section { padding: 76px 0; border-top: 1px solid var(--line); }
.section-tinted { background: var(--surface-raised); }
.section-heading { margin-bottom: 36px; }
.section-intro { max-width: 850px; margin-top: 24px; color: var(--ink-secondary); }
.section-intro p { max-width: 850px; }
.method-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 36px; }
.method-step { position: relative; padding-top: 25px; border-top: 2px solid var(--line-strong); min-width: 0; }
.step-number { display: block; margin-bottom: 21px; color: var(--brand-text); font-size: .85rem; font-weight: 700; letter-spacing: .035em; }
.method-step h3 { margin-bottom: 14px; }
.method-step p { color: var(--ink-secondary); font-size: .96rem; }
.method-step:hover { border-color: var(--brand); }
.comparison-wrap { overflow-x: auto; overscroll-behavior-x: contain; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.comparison-wrap table { width: 100%; border-collapse: collapse; text-align: left; font-size: .96rem; }
.comparison-wrap caption { padding: 22px 25px; text-align: left; color: var(--ink); font-size: 1.05rem; font-weight: 650; }
.comparison-wrap th, .comparison-wrap td { padding: 21px 25px; vertical-align: top; border-bottom: 1px solid var(--line); line-height: 1.6; }
.comparison-wrap thead th { background: var(--surface-raised); color: var(--ink); font-size: .85rem; font-weight: 700; }
.comparison-wrap tbody th { width: 24%; font-size: .94rem; font-weight: 650; }
.comparison-wrap td { width: 38%; color: var(--ink-secondary); }
.comparison-wrap tbody tr:last-child > * { border-bottom: 0; }
.comparison-wrap tbody tr:hover { background: var(--brand-tint); }
.comparison-wrap:focus-visible { outline-offset: 5px; }

.delivery-layout { display: grid; grid-template-columns: 1fr 1.08fr; gap: 65px; align-items: start; }
.delivery-copy p { color: var(--ink-secondary); }
.delivery-copy h3 { margin-bottom: 18px; }
.delivery-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-strong); }
.delivery-list > li, .delivery-list > div { position: relative; padding: 24px 0 24px 32px; border-bottom: 1px solid var(--line); color: var(--ink-secondary); }
.delivery-list > li::before, .delivery-list > div::before { position: absolute; content: ""; left: 2px; top: 33px; width: 12px; height: 7px; border-left: 2px solid var(--brand-text); border-bottom: 2px solid var(--brand-text); transform: rotate(-45deg); }
.delivery-list dt, .delivery-list strong, .delivery-list h3 { display: block; margin-bottom: 7px; color: var(--ink); font-size: 1rem; letter-spacing: -.01em; }
.delivery-list dd { margin: 0; font-size: .96rem; line-height: 1.7; }
.delivery-list p { font-size: .96rem; }
.resource-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
body.home-page .resource-card { display: flex; position: relative; flex-direction: column; align-items: flex-start; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); color: var(--ink); text-decoration: none; min-width: 0; transition: border-color 180ms ease, transform 180ms ease; }
body.home-page .resource-card:hover { border-color: var(--brand-text); background: var(--brand-tint); transform: translateY(-3px); text-decoration: none; }
.resource-card > svg, .resource-icon svg { width: 27px; height: 27px; color: var(--brand-text); margin-bottom: 25px; }
.resource-card .eyebrow { margin-bottom: 14px; font-size: .7rem; }
.resource-card h3, .resource-card > strong { display: block; margin-bottom: 16px; font-size: 1.22rem; line-height: 1.28; }
.resource-card p { flex: 1 1 auto; margin-bottom: 24px; color: var(--ink-secondary); font-size: .93rem; }
.resource-card .text-link { margin-top: auto; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--brand-text); font-size: .9rem; font-weight: 650; text-decoration: none; }
.text-link svg { width: 18px; height: 18px; }
.text-link:hover { text-decoration: underline; }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; list-style: none; padding: 26px 52px 26px 0; color: var(--ink); font-size: 1.06rem; line-height: 1.5; font-weight: 650; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; content: "+"; right: 4px; top: 21px; width: 32px; height: 32px; font-size: 1.65rem; line-height: 30px; text-align: center; font-weight: 400; color: var(--brand-text); }
.faq-list details[open] > summary::after { content: "−"; }
.faq-list summary:hover { color: var(--brand-text); }
.faq-list details > p, .faq-list details > div { max-width: 860px; margin: 0; padding: 0 48px 26px 0; color: var(--ink-secondary); font-size: 1rem; }
.faq-list details > p + p { padding-top: 0; }

.anchor-alias { position: absolute; scroll-margin-top: calc(var(--header-height) + 24px); }
.contact-section { position: relative; padding: 82px 0 90px; border-top: 1px solid var(--line); background: var(--surface-raised); }
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 68px; align-items: start; }
.contact-copy h2 { font-size: clamp(2rem, 3.25vw, 2.75rem); margin-bottom: 24px; }
.contact-copy p { color: var(--ink-secondary); }
.contact-copy a { overflow-wrap: anywhere; }
.contact-form { min-width: 0; padding: 32px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 21px 18px; }
.field { min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 8px; color: var(--ink); font-size: .88rem; line-height: 1.5; font-weight: 650; }
.field label span, .field small { color: var(--ink-muted); font-weight: 400; }
.field input, .field textarea, .field select { display: block; width: 100%; min-width: 0; min-height: 48px; padding: 11px 13px; border: 1px solid var(--line-strong); border-radius: 8px; background: var(--paper); color: var(--ink); font-size: 16px; line-height: 1.5; }
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-muted); opacity: 1; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--focus); outline-offset: 2px; border-color: var(--focus); }
.field input:user-invalid, .field textarea:user-invalid, .field select:user-invalid { border-color: var(--error); }
.field small { display: block; margin-top: 7px; font-size: .8rem; line-height: 1.5; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 10px; min-height: 48px; padding: 12px 22px; border: 1px solid transparent; border-radius: 8px; font-size: .94rem; line-height: 1.5; font-weight: 680; text-decoration: none; transition: background-color 160ms ease; }
.button-primary { background: #0176d3; color: #ffffff; border-color: #0176d3; }
.button-primary:hover { background: #005fae; border-color: #005fae; text-decoration: none; }
.button:disabled { opacity: .68; cursor: wait; }
.button svg { width: 18px; height: 18px; }
.contact-form > .button, .contact-form > button[type="submit"] { width: 100%; margin-top: 24px; }
.contact-form .form-grid .button { width: 100%; }
.form-note, .contact-form > small { display: block; margin-top: 15px; color: var(--ink-muted); font-size: .8rem; line-height: 1.6; }
.contact-form .cf-turnstile { margin-top: 20px; max-width: 100%; }
#form-status { font-size: .92rem; line-height: 1.6; text-align: left; overflow-wrap: anywhere; }
#form-status:not(:empty) { padding: 13px 15px; margin-top: 18px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface-raised); }
#form-status[data-state="error"] { color: var(--error); background: var(--error-bg); border-color: currentColor; }
#form-status[data-state="success"] { color: var(--success); background: var(--success-bg); border-color: currentColor; }
#form-status[data-state="warning"] { color: var(--warning); background: var(--warning-bg); border-color: currentColor; }

.site-footer { border-top: 1px solid var(--line); padding: 34px 0; color: var(--ink-muted); font-size: .82rem; }
.site-footer > .shell { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px 36px; }
.site-footer p { margin: 0; }
.footer-top { display: flex; flex-basis: 100%; justify-content: space-between; align-items: center; gap: 20px 36px; }
.footer-legal { flex-basis: 100%; line-height: 1.8; }
.site-footer .brand { color: var(--ink); font-size: 1.3rem; }
.site-footer .brand strong { color: var(--brand-text); }
.site-footer nav, .footer-links { display: flex; flex-wrap: wrap; gap: 15px 24px; }
.site-footer a { display: inline-flex; align-items: center; min-height: 32px; color: var(--ink-secondary); }
.site-footer .sources, .site-footer small { display: block; font-size: .8rem; }
.site-footer .sources { flex-basis: 100%; padding-top: 18px; border-top: 1px solid var(--line); }

@media (min-width: 1500px) {
  .hero { padding-top: 112px; }
}

@media (max-width: 1050px) {
  .site-nav { gap: 15px; }
  .site-nav a { font-size: .82rem; }
  .site-header > .shell { gap: 12px; }
  .contact-layout { gap: 38px; }
  .delivery-layout { gap: 40px; }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }
  .shell { width: calc(100% - 48px); }
  .site-header > .shell { flex-wrap: wrap; }
  .brand { margin-right: auto; }
  .site-nav { order: 4; flex-basis: 100%; width: 100%; margin: 0; justify-content: flex-start; gap: 5px 22px; padding: 12px 0 18px; border-top: 1px solid var(--line); flex-wrap: wrap; }
  .site-nav a { font-size: .92rem; }
  .js #site-nav:not(.is-open) { display: none; }
  .js #menu-toggle { display: inline-flex; }
  #theme-toggle { margin-left: 0; }
  .hero { padding-top: 60px; padding-bottom: 62px; }
  .hero-copy { max-width: 100%; }
  .hero-deck { margin-top: 24px; }
  .signal-map { padding: 28px 25px 23px; }
  .signal-map-grid { gap: 28px; }
  .map-node:not(:last-child)::before { right: -18px; }
  .map-node:not(:last-child)::after { width: calc(100% - 54px); }
  .map-node p { font-size: .88rem; }
  .section { padding: 60px 0; }
  .method-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 28px; }
  .resource-grid { gap: 16px; }
  body.home-page .resource-card { padding: 22px; }
  .contact-layout { grid-template-columns: 1fr; gap: 34px; }
  .contact-copy { max-width: 700px; }
  .contact-copy h2 { max-width: 660px; }
  .contact-form { max-width: 760px; width: 100%; }
  .contact-section { padding: 64px 0; }
}

@media (max-width: 640px) {
  :root { --header-height: 68px; }
  body.home-page { font-size: 16px; line-height: 1.7; }
  .shell { width: calc(100% - 36px); }
  .site-header > .shell { column-gap: 10px; }
  .brand { font-size: 1.3rem; gap: 7px; }
  .brand svg { width: 27px; height: 27px; }
  .brand img { max-width: 144px; max-height: 34px; }
  #menu-toggle, #theme-toggle { width: 42px; height: 42px; padding: 10px; }
  .site-nav { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0 14px; }
  .site-nav a { min-height: 45px; }
  .site-nav a::after { display: none; }
  h1 { font-size: clamp(2.3rem, 8.9vw, 3.25rem); line-height: 1.08; letter-spacing: -.043em; }
  h2 { font-size: clamp(1.9rem, 6.6vw, 2.5rem); letter-spacing: -.04em; }
  h3 { font-size: 1.22rem; }
  .hero { padding: 44px 0 50px; }
  .hero-deck { margin-top: 22px; margin-bottom: 23px; font-size: 1.15rem; line-height: 1.55; }
  .hero-copy > p:not(.hero-deck) { font-size: 1rem; }
  .signal-map { margin-top: 34px; padding: 25px 22px 21px; border-radius: 16px; }
  .map-heading { display: block; padding-bottom: 26px; }
  .map-heading strong { display: block; margin-top: 8px; font-size: .89rem; line-height: 1.5; }
  .signal-map-grid { grid-template-columns: 1fr; gap: 24px; }
  .map-node { display: grid; grid-template-columns: 46px minmax(0, 1fr); column-gap: 17px; align-items: start; }
  .map-icon { grid-column: 1; grid-row: 1 / 4; width: 46px; height: 46px; margin-bottom: 0; border-radius: 12px; }
  .map-icon svg { width: 24px; height: 24px; }
  .map-node > .map-step, .map-node > strong, .map-node > p { grid-column: 2; }
  .map-node > strong { font-size: 1.07rem; margin-bottom: 7px; }
  .map-node p { font-size: .92rem; max-width: none; }
  .map-node:not(:last-child)::after { left: 23px; top: 57px; bottom: -14px; width: 1px; height: auto; }
  .map-node:not(:last-child)::before { display: none; }
  .signal-map figcaption { font-size: .78rem; margin-top: 24px; padding-top: 18px; }
  .section { padding: 48px 0; }
  .section-kicker { margin-bottom: 13px; font-size: .72rem; }
  .section-heading { margin-bottom: 29px; }
  .section-intro { margin-top: 21px; }
  .method-grid { grid-template-columns: 1fr; gap: 27px; }
  .method-step { padding-top: 20px; }
  .step-number { margin-bottom: 13px; }
  .method-step p { font-size: 1rem; }
  .comparison-wrap { border-radius: 12px; }
  .comparison-wrap table { min-width: 620px; }
  .comparison-wrap caption { padding: 18px; }
  .comparison-wrap th, .comparison-wrap td { padding: 17px 18px; }
  .delivery-layout { grid-template-columns: 1fr; gap: 28px; }
  .delivery-list > li { padding-top: 21px; padding-bottom: 21px; }
  .delivery-list > li::before { top: 30px; }
  .resource-grid { grid-template-columns: 1fr; gap: 15px; }
  body.home-page .resource-card { padding: 25px; }
  .resource-card > svg, .resource-icon svg { margin-bottom: 18px; }
  .resource-card p { margin-bottom: 19px; font-size: .98rem; }
  .faq-list summary { padding-top: 22px; padding-bottom: 22px; font-size: 1rem; }
  .faq-list summary::after { top: 17px; }
  .faq-list details > p, .faq-list details > div { padding-right: 10px; padding-bottom: 23px; font-size: .96rem; }
  .contact-section { padding: 50px 0; }
  .contact-copy h2 { font-size: 2rem; }
  .contact-form { padding: 25px 20px; border-radius: 16px; }
  .form-grid { grid-template-columns: 1fr; gap: 19px; }
  .field.full { grid-column: auto; }
  .site-footer { padding: 26px 0; }
  .site-footer > .shell { align-items: flex-start; flex-direction: column; gap: 15px; }
  .site-footer nav, .footer-links { gap: 8px 20px; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 18px; }
}

@media (max-width: 360px) {
  .shell { width: calc(100% - 28px); }
  .brand { font-size: 1.17rem; }
  .brand svg { width: 24px; height: 24px; }
  .brand img { max-width: 132px; }
  .site-header > .shell { column-gap: 7px; }
  h1 { font-size: 2.24rem; }
  .signal-map { padding: 22px 16px 19px; }
  .contact-form { padding: 23px 16px; }
  .map-node { column-gap: 13px; }
}

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

@media (forced-colors: active) {
  .map-icon, .button-primary, .resource-card, #theme-toggle, #menu-toggle { border: 1px solid ButtonText; }
  .button-primary { background: ButtonFace; color: ButtonText; }
  .map-node::before, .map-node::after { forced-color-adjust: none; background: CanvasText; border-color: CanvasText; }
}

@media print {
  :root, :root[data-theme="dark"] { color-scheme: light; --paper: #fff; --surface: #fff; --surface-raised: #f3f3f3; --ink: #111; --ink-secondary: #333; --ink-muted: #444; --line: #bbb; --line-strong: #999; --brand-text: #00528f; --shadow: none; }
  .site-header { position: static; }
  .site-nav, #menu-toggle, #theme-toggle, .skip-link, .contact-form { display: none !important; }
  .shell { width: 100%; }
  .hero, .section, .contact-section { padding: 24px 0; }
  h1 { font-size: 34pt; }
  h2 { font-size: 23pt; }
  .signal-map, .resource-card, .method-step, .delivery-list li { break-inside: avoid; }
  .comparison-wrap { overflow: visible; }
  .comparison-wrap table { min-width: 0; }
  .contact-layout { display: block; }
  .faq-list details > p { display: block !important; }
}
