:root {
  color-scheme: light;
  --ink: #11251f;
  --muted: #58675f;
  --green: #0d6b45;
  --green-dark: #063e2b;
  --green-soft: #e9f3ed;
  --blue: #064978;
  --accent: #f3b52c;
  --cream: #f6f2e8;
  --white: #fff;
  --line: #d6dfd9;
  --shadow: 0 22px 60px rgba(5, 51, 35, .13);
  --radius: 24px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; color: var(--ink); background: #fbfaf6; line-height: 1.6; }
a { color: inherit; }
img { max-width: 100%; }
.skip-link { position: fixed; z-index: 100; top: .75rem; left: .75rem; transform: translateY(-180%); padding: .7rem 1rem; background: var(--ink); color: #fff; border-radius: 99px; }
.skip-link:focus { transform: none; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(214,223,217,.85); }
.nav { max-width: 1240px; min-height: 78px; margin: auto; padding: .65rem 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: 1rem; text-decoration: none; flex: 0 0 auto; }
.brand img { width: 144px; height: 54px; object-fit: contain; }
.brand strong,.brand small { display: block; }
.brand strong { font-size: 1rem; }
.brand small { color: var(--muted); font-size: .75rem; }
.nav-links { display: flex; align-items: center; gap: 1rem; }
.nav-links > a { text-decoration: none; font-weight: 700; font-size: .92rem; }
.nav-links > a:not(.button):hover { color: var(--green); }
.nav-toggle { display: none; border: 1px solid var(--line); background: #fff; border-radius: 99px; padding: .6rem .9rem; font: inherit; font-weight: 750; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: .8rem 1.15rem; border: 0; border-radius: 99px; background: var(--green); color: #fff; text-decoration: none; font: inherit; font-weight: 800; cursor: pointer; box-shadow: 0 12px 28px rgba(13,107,69,.2); }
.button:hover,.button:focus-visible { background: var(--green-dark); }
.button-small { min-height: 42px; padding: .55rem .85rem; color: #fff !important; }
.button-secondary { background: #fff; color: var(--green-dark); border: 1px solid var(--line); box-shadow: none; }
.button-accent { background: var(--accent); color: var(--ink); box-shadow: 0 14px 34px rgba(243,181,44,.25); }
.button-accent:hover,.button-accent:focus-visible { background: #ffd066; }
.button-glass { color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.48); box-shadow: none; backdrop-filter: blur(12px); }
.button-glass:hover,.button-glass:focus-visible { background: rgba(255,255,255,.23); }
a:focus-visible,button:focus-visible,input:focus,select:focus,textarea:focus,summary:focus-visible { outline: 3px solid rgba(243,181,44,.8); outline-offset: 3px; }
.hero { min-height: calc(100vh - 78px); max-height: 840px; position: relative; display: grid; align-items: end; overflow: hidden; color: #fff; background: var(--green-dark); }
.hero-image,.hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: 52% 52%; }
.hero-shade { background: linear-gradient(90deg, rgba(4,34,25,.9) 0%, rgba(4,34,25,.66) 43%, rgba(4,34,25,.08) 74%), linear-gradient(0deg, rgba(4,34,25,.55), transparent 45%); }
.hero-content { width: min(1240px, 100%); margin: auto; padding: clamp(4rem,10vh,8rem) 1.25rem 9.2rem; position: relative; z-index: 2; }
.eyebrow { margin: 0 0 .65rem; color: var(--green); font-weight: 850; text-transform: uppercase; letter-spacing: .09em; font-size: .83rem; }
.eyebrow-light { color: #d8f2e3; }
h1,h2,h3 { margin-top: 0; line-height: 1.08; }
h1 { max-width: 850px; margin-bottom: 1rem; font-size: clamp(3rem,6.6vw,6.1rem); letter-spacing: -.065em; }
h2 { font-size: clamp(2.1rem,4vw,3.7rem); letter-spacing: -.05em; }
h3 { font-size: clamp(1.2rem,2vw,1.55rem); }
.hero-content > p:not(.eyebrow) { max-width: 680px; margin: 0; color: rgba(255,255,255,.88); font-size: clamp(1.05rem,2vw,1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.7rem 0 1rem; }
.registered-link { font-weight: 750; color: #fff; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.hero-trust { position: absolute; z-index: 3; bottom: 0; left: 50%; transform: translateX(-50%); width: min(1240px,calc(100% - 2.5rem)); display: grid; grid-template-columns: repeat(3,1fr); background: rgba(255,255,255,.95); color: var(--ink); border-radius: 24px 24px 0 0; box-shadow: var(--shadow); }
.hero-trust span { padding: 1.15rem 1.3rem; border-right: 1px solid var(--line); color: var(--muted); }
.hero-trust span:last-child { border: 0; }
.hero-trust strong { display: block; color: var(--green-dark); font-size: 1.05rem; }
.section { max-width: 1180px; margin: auto; padding: 5.5rem 1.25rem; }
.section-heading { max-width: 850px; margin-bottom: 2rem; }
.section-heading h2 { margin-bottom: .8rem; }
.section-heading > p:not(.eyebrow,.updated) { color: var(--muted); font-size: 1.1rem; }
.compact-heading { position: relative; padding-right: 230px; }
.updated { position: absolute; top: .15rem; right: 0; margin: 0; color: var(--muted); font-size: .9rem; font-weight: 700; }
.updated span { display: inline-block; width: 9px; height: 9px; margin-right: .4rem; background: #21a363; border-radius: 50%; box-shadow: 0 0 0 4px rgba(33,163,99,.13); }
.status-section { padding-top: 4.5rem; }
.status-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 1rem; }
.status-main,.local-office,.next-steps { margin: 0; padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 14px 42px rgba(5,51,35,.07); }
.status-kicker { display: inline-block; margin-bottom: .8rem; padding: .35rem .65rem; border-radius: 99px; background: var(--green-soft); color: var(--green-dark); font-size: .8rem; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.status-main h3 { max-width: 660px; font-size: clamp(1.5rem,2.5vw,2.2rem); }
.status-intro { max-width: 690px; margin: .7rem 0 0; color: var(--muted); font-size: 1.02rem; }
.action-note { margin-top: 1.3rem; padding: 1rem 1.1rem; border-left: 4px solid var(--accent); background: #fff9e8; border-radius: 0 16px 16px 0; }
.action-note p { margin: .25rem 0 0; }
.status-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: .65rem; margin: 1.3rem 0; }
.status-facts div { padding: 1rem; border-radius: 16px; background: var(--green-soft); }
.status-facts strong,.status-facts span { display: block; }
.status-facts strong { color: var(--green-dark); font-size: clamp(1.5rem,3vw,2.3rem); line-height: 1; }
.status-facts span { margin-top: .35rem; color: var(--muted); font-size: .82rem; line-height: 1.3; }
.status-map { position: relative; margin: 1.4rem 0 1rem; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #f5f5f0; }
.status-map img { display: block; width: 100%; height: auto; }
.status-map figcaption { position: absolute; left: .7rem; bottom: .7rem; padding: .45rem .7rem; border-radius: 10px; background: rgba(255,255,255,.94); color: var(--ink); font-size: .78rem; font-weight: 750; box-shadow: 0 4px 18px rgba(5,51,35,.12); }
.area-status { display: grid; grid-template-columns: repeat(2,1fr); gap: .65rem; }
.area-status div { padding: .9rem 1rem; border: 1px solid var(--line); border-radius: 14px; background: #fbfcf9; }
.area-status span,.area-status strong { display: block; }
.area-status span { color: var(--muted); font-size: .78rem; line-height: 1.3; }
.area-status strong { margin-top: .3rem; color: var(--green-dark); font-size: .94rem; }
.status-details { display: grid; gap: .55rem; margin-top: 1rem; }
.status-details details { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.status-details summary { position: relative; padding: 1rem 3.2rem 1rem 1rem; color: var(--ink); font-weight: 800; line-height: 1.35; cursor: pointer; list-style: none; }
.status-details summary::-webkit-details-marker { display: none; }
.status-details summary::after { content: "+"; position: absolute; top: 50%; right: 1rem; width: 1.65rem; height: 1.65rem; display: grid; place-items: center; transform: translateY(-50%); border-radius: 50%; background: var(--green-soft); color: var(--green-dark); font-size: 1.25rem; line-height: 1; transition: transform .2s ease; }
.status-details details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.status-details details[open] summary { border-bottom: 1px solid var(--line); }
.status-details details > div { padding: .9rem 1rem 1rem; color: var(--muted); }
.status-details details p { margin: 0; }
.status-details details p + p { margin-top: .7rem; }
.status-details summary:focus-visible { outline: 3px solid rgba(22,123,84,.25); outline-offset: -3px; }
.status-sidebar { display: grid; gap: 1rem; }
.local-office { padding: 0; overflow: hidden; color: #fff; background: linear-gradient(145deg,var(--blue),#0d648d); border: 0; }
.office-image { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 45%; }
.office-content { padding: 1.35rem 1.5rem 1.5rem; }
.office-content h3 { margin-bottom: .45rem; }
.office-content p { margin: 0 0 1rem; }
.office-description { line-height: 1.55; }
.office-hours { font-weight: 800; }
.office-next { padding: .8rem .9rem; border: 1px solid rgba(255,255,255,.28); border-radius: 12px; background: rgba(255,255,255,.11); }
.office-next strong,.office-next time { display: block; }
.office-next strong { margin-bottom: .18rem; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; }
.office-next time { color: #fff; font-weight: 800; }
.local-office .status-kicker { background: rgba(255,255,255,.16); color: #fff; }
.local-office p { color: rgba(255,255,255,.82); }
.local-office .text-link { color: #fff; }
.next-steps ol { margin: 0; padding: 0; list-style: none; display: grid; gap: .45rem; }
.next-steps li { display: flex; gap: .9rem; align-items: flex-start; padding: .85rem; border-radius: 16px; background: var(--green-soft); }
.next-steps li > span,.system-steps li > span { flex: 0 0 38px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); background: #fff; font-weight: 850; }
.next-steps strong,.next-steps small { display: block; }
.next-steps small { margin-top: .18rem; color: var(--muted); line-height: 1.35; }
.status-actions { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1.2rem; }
.text-link { color: var(--green-dark); font-weight: 800; text-underline-offset: 4px; }
.benefits-section { background: var(--cream); }
.benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.benefit-grid article { padding: 1.5rem; background: #fff; border: 1px solid #e4dfd1; border-radius: var(--radius); }
.benefit-number { color: var(--accent); font-size: 1.6rem; font-weight: 900; }
.benefit-grid h3 { margin: .8rem 0 .5rem; }
.benefit-grid p { margin: 0; color: var(--muted); }
.early-response { margin-top: 1rem; padding: clamp(1.4rem,3vw,2rem); display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 1.5rem; align-items: center; color: #fff; background: linear-gradient(130deg,var(--green-dark),var(--green)); border-radius: var(--radius); box-shadow: var(--shadow); }
.early-response h3,.early-response p { margin-bottom: 0; }
.early-response > p { color: rgba(255,255,255,.8); }
.system-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.5rem; align-items: center; }
.system-grid > img { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.system-steps { margin: 0; padding: 0; list-style: none; display: grid; gap: .45rem; }
.system-steps li { display: flex; gap: .9rem; padding: .75rem; border-bottom: 1px solid var(--line); }
.system-steps strong { display: block; }
.system-steps p { margin: .2rem 0 0; color: var(--muted); }
.behind-scenes { margin-top: 1.2rem; border: 1px solid var(--line); border-radius: 18px; background: #fff; overflow: hidden; }
.behind-scenes summary { padding: 1rem 1.2rem; cursor: pointer; font-weight: 800; }
.behind-scenes div { display: grid; grid-template-columns: 220px 1fr; gap: 1.2rem; align-items: center; padding: 0 1.2rem 1.2rem; }
.behind-scenes img { width: 220px; aspect-ratio: 16/10; object-fit: cover; border-radius: 14px; }
.behind-scenes p { color: var(--muted); }
.calculator-section { color: #fff; background: linear-gradient(135deg,#063e2b,#0d6b45); }
.calculator-section .section { max-width: 1240px; display: grid; grid-template-columns: .56fr 1.44fr; gap: 2rem; align-items: start; }
.calculator-intro { position: sticky; top: 110px; }
.calculator-intro h2 { font-size: clamp(2.2rem,3.5vw,3.35rem); }
.calculator-intro > p:not(.eyebrow),.calculator-intro li { color: rgba(255,255,255,.82); }
.calculator-intro ul { padding-left: 1.2rem; }
.calculator-card { overflow: hidden; border-radius: var(--radius); background: #fff; box-shadow: 0 26px 70px rgba(0,0,0,.24); }
.calculator-card iframe { display: block; width: 100%; height: 860px; border: 0; background: #fff; }
.calculator-fallback { margin: 0; padding: .75rem 1rem; color: var(--muted); font-size: .86rem; text-align: center; border-top: 1px solid var(--line); }
.calculator-fallback a { color: var(--green); font-weight: 750; }
.signup-section { display: grid; grid-template-columns: .62fr 1.38fr; gap: 2rem; align-items: start; }
.signup-intro { position: sticky; top: 110px; }
.signup-intro h2 { font-size: clamp(2rem,3.3vw,3.2rem); }
.signup-intro > p:not(.eyebrow),.signup-intro li { color: var(--muted); }
.signup-intro ul { padding-left: 1.2rem; }
.signup-form { padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.form-progress { display: grid; grid-template-columns: repeat(4,1fr); gap: .5rem; margin-bottom: 1.5rem; }
.form-progress span { padding: .65rem; text-align: center; color: var(--muted); background: #eff1ee; border-radius: 99px; font-size: .85rem; font-weight: 800; }
.form-progress span.complete { color: var(--green-dark); background: var(--green-soft); }
.form-progress span.active { color: #fff; background: var(--green); }
.form-step { display: none; margin: 0; padding: 0; border: 0; gap: 1rem; }
.form-step.active { display: grid; }
legend { margin-bottom: 1rem; font-size: 1.5rem; font-weight: 850; }
.field-grid,.usage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: grid; gap: .35rem; font-weight: 750; }
input,select,textarea { width: 100%; padding: .85rem .9rem; border: 1px solid #b9c6be; border-radius: 12px; color: var(--ink); background: #fff; font: inherit; }
.field-note { margin: 0; color: var(--muted); font-size: .9rem; }
.radio-field { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; padding: .9rem; background: #f5f7f4; border-radius: 14px; }
.radio-field > span { flex-basis: 100%; font-weight: 750; }
.radio-field label,.checkbox { display: flex; align-items: flex-start; gap: .5rem; }
.radio-field input,.checkbox input { width: auto; margin-top: .3rem; }
.form-summary { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: .5rem; }
.form-summary div { padding: .75rem; background: #f4f7f4; border-radius: 12px; }
.form-summary span,.form-summary strong { display: block; }
.form-summary span { color: var(--muted); font-size: .78rem; }
.preview-note { padding: .85rem; background: #fff7df; border: 1px solid #ecd489; border-radius: 12px; font-size: .9rem; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-actions { display: flex; justify-content: space-between; gap: .75rem; margin-top: 1.4rem; }
#submit-form { display: none; }
.form-message { margin-bottom: 0; color: var(--green-dark); font-weight: 800; }
.faq-section { background: var(--green-soft); }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 2rem; }
.faq-list { display: grid; gap: .65rem; }
.faq-list details { padding: 1rem 1.1rem; border: 1px solid #ccdcd2; border-radius: 16px; background: #fff; }
.faq-list summary { cursor: pointer; font-weight: 800; }
.faq-list p { margin-bottom: 0; color: var(--muted); }
.download-section { padding-top: 4.5rem; }
.download-card { display: grid; grid-template-columns: auto 1fr auto; gap: 1.2rem; align-items: center; padding: 1.35rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 14px 42px rgba(5,51,35,.07); }
.pdf-icon { width: 66px; height: 78px; display: grid; place-items: center; border-radius: 10px; background: #b12d2d; color: #fff; font-weight: 900; }
.download-date { color: var(--green); font-size: .84rem; font-weight: 850; }
.download-card h3 { margin: .25rem 0; }
.download-card p { margin: 0; color: var(--muted); }
.download-card small { color: var(--muted); }
.contact-section { max-width: 1180px; margin: 0 auto 4rem; padding: 2rem; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; color: #fff; background: var(--blue); border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-section h2,.contact-section p { margin-bottom: .25rem; }
.contact-section > div:last-child { display: grid; gap: .35rem; text-align: right; }
.contact-section a { font-size: 1.2rem; font-weight: 800; }
.footer { padding: 2.5rem max(1.25rem,calc((100vw - 1180px)/2 + 1.25rem)); display: grid; grid-template-columns: 1fr 1.3fr auto; gap: 2rem; color: #d8e3dc; background: #10241e; }
.footer p { margin: .25rem 0 0; }
.project-partners span,.project-partners strong { display: block; }
.project-partners span { color: #90a39a; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }
.footer nav { display: flex; gap: 1rem; }

.legal-main { min-height: 70vh; background: linear-gradient(180deg,#edf5ef 0,#fff 24rem); }
.legal-hero { padding: clamp(5rem,9vw,8rem) var(--pad) 4rem; color: #fff; background: linear-gradient(135deg,#063e2b,#0d6b45 68%,#79b72b); }
.legal-hero > div { width: min(100%,920px); margin: 0 auto; }
.legal-hero h1 { max-width: 16ch; margin: .5rem 0 1rem; font-size: clamp(2.6rem,7vw,5.4rem); }
.legal-hero p:last-child { max-width: 62ch; color: rgba(255,255,255,.82); font-size: 1.08rem; }
.legal-shell { width: min(calc(100% - 2 * var(--pad)),980px); margin: 2rem auto 5rem; padding: clamp(1.5rem,4vw,3.5rem); border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); position: relative; }
.legal-copy { color: var(--muted); line-height: 1.75; overflow-wrap: anywhere; }
.legal-copy > * + * { margin-top: 1.15rem; }
.legal-copy > :first-child { margin-top: 0; }
.legal-copy h2,.legal-copy h3,.legal-copy h4,.legal-copy strong { color: var(--ink); }
.legal-copy h2 { margin-top: 2.75rem; font-size: clamp(1.45rem,3vw,2rem); }
.legal-copy h3 { margin-top: 2.25rem; font-size: 1.3rem; }
.legal-copy p strong:only-child { display: block; margin-top: 2.25rem; font-size: 1.2rem; }
.legal-copy a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.legal-copy ul,.legal-copy ol { padding-left: 1.3rem; }
.legal-copy figure { margin: 1rem 0; }
.legal-copy .uagb-is-root-container:first-child { display: none; }
.legal-back { display: inline-flex; align-items: center; gap: .5rem; margin-top: 2rem; font-weight: 800; color: var(--green); }

@media (max-width: 1050px) {
  .nav-toggle { display: inline-flex; }
  .nav-links { position: absolute; display: none; top: 70px; left: 1rem; right: 1rem; padding: 1rem; flex-direction: column; align-items: stretch; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .early-response { grid-template-columns: 1fr; }
  .calculator-section .section,.signup-section { grid-template-columns: 1fr; }
  .calculator-intro,.signup-intro { position: static; }
  .footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .brand img { width: 112px; }
  .brand span { display: none; }
  .hero { min-height: 780px; max-height: none; }
  .hero-image { object-position: 64% center; }
  .hero-shade { background: linear-gradient(0deg,rgba(4,34,25,.95) 0%,rgba(4,34,25,.7) 60%,rgba(4,34,25,.14) 100%); }
  .hero-content { padding: 12rem 1.25rem 13.5rem; align-self: end; }
  h1 { font-size: clamp(2.8rem,14vw,4.3rem); }
  .hero-actions,.form-actions { flex-direction: column; align-items: stretch; }
  .hero-trust { grid-template-columns: 1fr; }
  .hero-trust span { padding: .65rem 1rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-trust strong { display: inline; margin-right: .35rem; }
  .section { padding: 4rem 1rem; }
  .compact-heading { padding-right: 0; }
  .updated { position: static; margin-top: .7rem; }
  .status-layout,.benefit-grid,.system-grid,.faq-layout { grid-template-columns: 1fr; }
  .status-facts { grid-template-columns: 1fr; }
  .area-status { grid-template-columns: 1fr; }
  .behind-scenes div { grid-template-columns: 1fr; }
  .behind-scenes img { width: 100%; }
  .calculator-card iframe { height: 760px; }
  .field-grid,.usage-grid,.form-summary { grid-template-columns: 1fr; }
  .form-progress { grid-template-columns: 1fr 1fr; }
  .download-card { grid-template-columns: auto 1fr; }
  .download-card .button { grid-column: 1/-1; }
  .contact-section { margin: 0 1rem 3rem; grid-template-columns: 1fr; }
  .contact-section > div:last-child { text-align: left; }
  .footer { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-content { padding-top: 10rem; }
  .button { width: 100%; }
  .form-progress span { font-size: .75rem; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
@media print { .site-header,.hero-actions,.signup-form { display: none; } body { background: #fff; } }
