:root {
  --cypress: #0b2d2b;
  --cypress-2: #123b37;
  --paper: #f7f4ea;
  --white: #fffdf7;
  --ink: #17312f;
  --muted: #506b67;
  --sea: #6fb3a0;
  --sage: #b9cea5;
  --amber: #f2b441;
  --brick: #b9473d;
  --line: rgba(11, 45, 43, .16);
  --soft-line: rgba(11, 45, 43, .09);
  --shadow: 0 24px 70px rgba(11, 45, 43, .13);
  --shadow-small: 0 12px 34px rgba(11, 45, 43, .09);
  --radius: 22px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-size: 16px; line-height: 1.6; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
.sr-only {
  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;
}
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding-block: 106px; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--cypress);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 850;
}
.skip-link:focus { transform: translateY(0); }

.urgent-bar { background: var(--brick); color: white; }
.urgent-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: .9rem;
}
.urgent-inner p { margin: 0; }
.urgent-inner a { font-weight: 900; text-underline-offset: 3px; }

.site-header {
  background: rgba(247, 244, 234, .95);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand img { border-radius: 50%; }
.brand span { display: grid; line-height: 1.15; }
.brand strong { text-transform: uppercase; letter-spacing: .04em; font-size: .95rem; }
.brand small {
  color: #56706c;
  font-size: .72rem;
  margin-top: 5px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
nav { display: flex; align-items: center; gap: 28px; }
nav a { text-decoration: none; font-weight: 750; font-size: .9rem; }
nav a:not(.button):hover { text-decoration: underline; text-underline-offset: 6px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--cypress);
  border-radius: 999px;
  background: var(--cypress);
  color: white;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(11, 45, 43, .16);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover { background: #16443f; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(11, 45, 43, .2); }
.button-small { min-height: 42px; padding: 0 18px; font-size: .88rem; }
.button-light {
  background: var(--paper);
  color: var(--cypress);
  border-color: var(--paper);
  box-shadow: none;
}
.button-light:hover { color: var(--cypress); background: white; }
.button-outline { background: transparent; color: var(--cypress); box-shadow: none; }
.button-outline:hover { color: white; }
.button-quiet {
  background: transparent;
  color: var(--cypress);
  border-color: var(--line);
  box-shadow: none;
}
.button-quiet:hover { background: var(--white); color: var(--cypress); }
.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #526f6b;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .74rem;
  font-weight: 900;
}
.eyebrow > span { width: 36px; height: 4px; background: var(--amber); border-radius: 999px; }
.eyebrow.light { color: var(--sage); }
.eyebrow.center { justify-content: center; }
.eyebrow.center > span:last-child { background: var(--sea); }
.mini-label,
.footer-label {
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

h1, h2 {
  font-family: var(--serif);
  color: var(--cypress);
  letter-spacing: -.045em;
  line-height: .98;
}
h1 { font-size: clamp(3.8rem, 7.4vw, 6.9rem); margin: 22px 0 26px; font-weight: 500; }
h1 em { color: var(--cypress); font-weight: 400; }
h2 { font-size: clamp(2.7rem, 5vw, 4.65rem); margin: 20px 0 0; font-weight: 500; }
h3 { line-height: 1.22; }

.hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
  padding-block: 66px 78px;
}
.hero-lede { max-width: 650px; font-size: clamp(1.08rem, 1.6vw, 1.3rem); color: #3c5652; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; }
.text-link, .arrow-link { font-weight: 850; text-underline-offset: 6px; text-decoration-thickness: 1px; }
.arrow-link { display: inline-flex; gap: 10px; margin-top: 15px; }
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
  color: #59706d;
  font-size: .88rem;
  font-weight: 750;
}
.trust-list li::before { content: "✓"; color: var(--cypress); margin-right: 7px; }
.hero-system {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: var(--cypress);
  color: white;
  padding: 34px;
  box-shadow: var(--shadow);
}
.hero-system::before,
.hero-system::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-system::before { width: 340px; height: 340px; background: rgba(111, 179, 160, .09); right: -160px; top: -170px; }
.hero-system::after { width: 180px; height: 180px; border: 1px solid rgba(247, 244, 234, .08); left: -90px; bottom: -80px; }
.hero-mark {
  position: relative;
  z-index: 1;
  width: 188px;
  margin: 4px auto 28px;
  padding: 5px;
  border-radius: 50%;
  background: var(--paper);
}
.steps-list { position: relative; z-index: 1; margin: 0; padding: 0; list-style: none; display: grid; gap: 4px; }
.steps-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 18px 12px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.steps-list li > span { color: var(--amber); font-weight: 900; font-size: .78rem; letter-spacing: .12em; }
.steps-list strong, .steps-list small { display: block; }
.steps-list strong { font-size: 1rem; }
.steps-list small { color: rgba(255, 255, 255, .68); margin-top: 4px; line-height: 1.45; font-size: .82rem; }

.quick-band { background: var(--cypress); color: white; }
.quick-links { min-height: 74px; display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; }
.quick-links span { color: var(--sage); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 850; }
.quick-links a { text-underline-offset: 5px; font-weight: 750; }

.intro-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  border-bottom: 1px solid var(--line);
}
.intro-copy { font-size: 1.18rem; color: #405b57; max-width: 660px; }
.intro-copy p:first-child { margin-top: 12px; }
.section-heading { margin-bottom: 50px; }
.split-heading {
  display: grid;
  grid-template-columns: 1fr .7fr;
  align-items: end;
  gap: 70px;
}
.split-heading > p { max-width: 490px; margin: 0 0 8px; color: var(--muted); font-size: 1.08rem; }
.centered-heading { max-width: 800px; margin-inline: auto; text-align: center; }
.centered-heading > p:last-child { color: var(--muted); max-width: 620px; margin: 24px auto 0; font-size: 1.08rem; }

.needs-section { padding-top: 104px; }
.needs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.need-card {
  min-height: 265px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--cypress);
  text-decoration: none;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.need-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-small); }
.need-card h3 { margin: 0 30px 7px 0; font-family: var(--serif); font-size: 1.65rem; font-weight: 500; letter-spacing: -.025em; }
.need-card p { margin: 0; color: rgba(11, 45, 43, .75); font-size: .9rem; line-height: 1.5; }
.card-number { position: absolute; top: 24px; left: 28px; font-size: .7rem; font-weight: 900; letter-spacing: .13em; }
.card-number::after { content: ""; display: block; width: 30px; height: 3px; margin-top: 10px; background: currentColor; border-radius: 5px; }
.card-arrow { position: absolute; right: 24px; bottom: 24px; font-size: 1.25rem; }
.tone-amber { background: var(--amber); border-color: transparent; }
.tone-sage { background: var(--sage); border-color: transparent; }
.tone-sea { background: var(--sea); border-color: transparent; }
.tone-paper { background: var(--white); }

.dawn-section { background: var(--cypress); color: white; overflow: hidden; }
.dawn-grid { min-height: 720px; display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.dawn-art { position: relative; align-self: end; min-height: 650px; display: flex; align-items: flex-end; justify-content: center; }
.dawn-art::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  left: 5%;
  bottom: 56px;
  border: 1px solid rgba(247, 244, 234, .15);
  border-radius: 50%;
}
.dawn-art::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 11%;
  bottom: 290px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 24px -60px 0 var(--sea), 10px 82px 0 var(--sage);
}
.dawn-sun { position: absolute; width: 290px; height: 290px; bottom: 122px; border-radius: 50%; background: rgba(242, 180, 65, .82); }
.dawn-art img {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  padding: 14px;
  border-radius: 48% 52% 45% 55% / 45% 48% 52% 55%;
  background: var(--paper);
  filter: drop-shadow(0 26px 32px rgba(0, 0, 0, .18));
}
.dawn-copy { padding-block: 90px; max-width: 610px; }
.dawn-copy h2 { color: white; font-size: clamp(3rem, 5.4vw, 5.1rem); }
.dawn-copy > p:not(.eyebrow) { color: rgba(255, 255, 255, .78); font-size: 1.15rem; max-width: 580px; margin: 26px 0; }
.dawn-note { margin: 34px 0; padding: 22px 24px; border-left: 5px solid var(--amber); background: rgba(247, 244, 234, .08); }
.dawn-note p { margin: 9px 0 0; color: rgba(255, 255, 255, .72); }
.did-you-know { color: var(--amber); font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 900; }

.standards-section { padding-bottom: 118px; }
.standards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.standard-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.standard-card h3 { margin: 28px 0 12px; font-family: var(--serif); font-size: 1.55rem; font-weight: 500; color: var(--cypress); }
.standard-card p { margin: 0; color: var(--muted); }
.standard-mark { display: block; width: 62px; height: 9px; border-radius: 99px; }
.amber-mark { background: var(--amber); }
.sage-mark { background: var(--sage); }
.sea-mark { background: var(--sea); }
.verification-panel {
  margin-top: 20px;
  padding: 46px;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
  background: var(--cypress);
  color: white;
  border-radius: 28px;
}
.verification-panel .mini-label { color: var(--sage); }
.verification-panel h3 { margin: 14px 0 0; max-width: 380px; font-family: var(--serif); font-size: 2.2rem; font-weight: 500; }
.verification-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.verification-list li { display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: start; }
.verification-list li > span { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 50%; background: var(--paper); color: var(--cypress); font-weight: 900; font-size: .78rem; }
.verification-list p { margin: 3px 0 0; color: rgba(255, 255, 255, .7); line-height: 1.5; }
.verification-list strong { display: block; color: white; margin-bottom: 2px; }

.roadmap-section { background: var(--sage); }
.roadmap-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; align-items: start; }
.roadmap-grid h2 { font-size: clamp(2.8rem, 5vw, 4.7rem); }
.roadmap-copy { font-size: 1.12rem; color: #294a46; padding-top: 32px; }

.involved-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.involved-intro > p:not(.eyebrow) { color: var(--muted); font-size: 1.1rem; }
.involved-points { margin-top: 35px; border-top: 1px solid var(--line); }
.involved-points p { padding: 18px 0; margin: 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.involved-points strong { color: var(--cypress); }
.suggestion-form {
  padding: 38px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-small);
}
.form-heading { display: flex; justify-content: space-between; align-items: start; gap: 30px; padding-bottom: 24px; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.form-heading p { max-width: 320px; margin: 0; color: var(--muted); font-size: .8rem; text-align: right; }
label { display: block; margin: 18px 0 7px; color: var(--cypress); font-size: .82rem; font-weight: 850; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(11, 45, 43, .25);
  border-radius: 11px;
  background: var(--paper);
  color: var(--ink);
  padding: 13px 14px;
}
input, select { min-height: 51px; }
textarea { resize: vertical; min-height: 120px; }
input::placeholder, textarea::placeholder { color: #758986; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.suggestion-form .button { width: 100%; margin-top: 24px; }
.form-result { margin-top: 18px; padding: 18px; border: 1px solid rgba(111, 179, 160, .7); border-radius: 12px; background: rgba(111, 179, 160, .13); }
.form-result p { margin: 0 0 12px; }
.result-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.mini-button {
  min-height: 38px;
  border: 1px solid var(--cypress);
  border-radius: 999px;
  background: var(--cypress);
  color: white;
  padding: 0 14px;
  font-weight: 800;
  font-size: .78rem;
  cursor: pointer;
}
.mini-button.secondary { color: var(--cypress); background: transparent; }

.site-footer { background: #082321; color: rgba(255, 255, 255, .7); padding: 52px 0; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 36px; border-bottom: 1px solid rgba(255, 255, 255, .13); }
.footer-brand strong { color: white; }
.footer-brand small { color: var(--sage); }
.footer-grid {
  display: grid;
  grid-template-columns: .55fr .55fr 1.3fr;
  gap: 50px;
  padding-top: 34px;
}
.footer-grid > div:not(.footer-fineprint) { display: grid; align-content: start; justify-items: start; gap: 8px; }
.footer-grid a { color: rgba(255, 255, 255, .76); text-underline-offset: 4px; font-size: .86rem; }
.footer-label { color: var(--amber); margin-bottom: 7px; }
.footer-fineprint { font-size: .82rem; }
.footer-fineprint p { margin: 0 0 10px; }
.footer-fineprint strong { color: white; }

/* Find-help page */
.finder-page { background: #f3f0e6; }
.finder-header .nav-wrap { min-height: 74px; }
.finder-main { padding-bottom: 90px; }
.finder-hero { padding-block: 58px 44px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: .82rem; font-weight: 800; text-decoration: none; }
.back-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.finder-title-row { display: grid; grid-template-columns: 1fr .55fr; gap: 60px; align-items: end; margin-top: 24px; }
.finder-title-row h1 { font-size: clamp(3.2rem, 6.4vw, 5.8rem); margin: 0; }
.finder-title-row > p { margin: 0 0 10px; color: var(--muted); font-size: 1.05rem; max-width: 460px; }

.finder-layout { display: grid; grid-template-columns: 1.45fr .55fr; gap: 20px; align-items: stretch; }
.guide-panel {
  border-radius: 28px;
  background: var(--cypress);
  color: white;
  padding: 36px;
  box-shadow: var(--shadow);
}
.guide-panel-head { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: start; }
.guide-identity { display: flex; align-items: center; gap: 16px; }
.guide-avatar {
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--paper);
}
.guide-avatar img { width: 82px; transform: translateY(7px); }
.guide-identity h2 { margin: 0 0 3px; color: white; font-family: var(--sans); letter-spacing: -.02em; font-size: 1.35rem; font-weight: 850; }
.guide-identity p { margin: 0; color: rgba(255, 255, 255, .67); font-size: .86rem; }
.privacy-pill { border: 1px solid rgba(255, 255, 255, .2); border-radius: 999px; padding: 7px 11px; color: var(--sage); font-size: .7rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }
.guide-question { margin: 32px 0 10px; font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.2rem); letter-spacing: -.035em; line-height: 1.05; }
.guide-help { margin: 0 0 16px; color: rgba(255, 255, 255, .7); font-size: .9rem; }
.guide-input-wrap { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: stretch; }
.guide-input-wrap textarea {
  min-height: 118px;
  background: var(--white);
  border-color: transparent;
  font-size: 1.05rem;
}
.guide-input-wrap .button {
  min-width: 156px;
  align-self: stretch;
  border-radius: 13px;
  border-color: var(--amber);
  background: var(--amber);
  color: var(--cypress);
  box-shadow: none;
}
.guide-input-wrap .button:hover { background: #ffc95e; }
.guide-examples { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 16px; }
.guide-examples > span { color: rgba(255, 255, 255, .55); font-size: .75rem; margin-right: 4px; }
.example-chip {
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  background: transparent;
  color: white;
  padding: 7px 11px;
  font-size: .76rem;
  cursor: pointer;
}
.example-chip:hover { background: rgba(255, 255, 255, .1); }
.guide-privacy { margin: 17px 0 0; color: rgba(255, 255, 255, .54); font-size: .76rem; }

.urgent-cards { display: grid; grid-template-rows: 1fr 1fr; gap: 12px; }
.urgent-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  padding: 24px;
  border-radius: 23px;
  text-decoration: none;
}
.urgent-card:first-child { background: var(--brick); color: white; }
.urgent-card:last-child { background: var(--amber); color: var(--cypress); }
.urgent-card span { font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; opacity: .8; }
.urgent-card strong { display: block; font-family: var(--serif); font-size: 2.25rem; line-height: 1; font-weight: 500; }
.urgent-card p { margin: 7px 0 0; font-size: .83rem; line-height: 1.45; }
.urgent-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-small); }

.answer-panel {
  margin-top: 20px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(111, 179, 160, .65);
  border-radius: 18px;
  background: rgba(111, 179, 160, .14);
}
.answer-panel.urgent-answer { border-color: rgba(185, 71, 61, .65); background: rgba(185, 71, 61, .1); }
.answer-mark { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; background: var(--cypress); color: white; font-weight: 900; }
.answer-copy strong { display: block; color: var(--cypress); font-size: 1.03rem; }
.answer-copy p { margin: 2px 0 0; color: var(--muted); font-size: .88rem; }
.answer-panel button { white-space: nowrap; }

.directory-section { padding-top: 70px; }
.directory-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.directory-head h2 { font-size: clamp(2.4rem, 4.5vw, 4rem); }
.directory-actions { display: flex; gap: 10px; }
.directory-actions .button { min-height: 44px; font-size: .8rem; }
.filter-wrap { margin: 30px 0 22px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.filter-label { margin: 0 0 12px; color: var(--muted); font-size: .75rem; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.filter-list { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip {
  min-height: 39px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--cypress);
  font-size: .78rem;
  font-weight: 800;
  cursor: pointer;
}
.filter-chip:hover, .filter-chip[aria-pressed="true"] { background: var(--cypress); color: white; border-color: var(--cypress); }
.results-meta { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 20px 0; }
.results-meta p { margin: 0; color: var(--muted); font-size: .86rem; }
.clear-button {
  border: 0;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--cypress);
  font-weight: 800;
  font-size: .8rem;
  cursor: pointer;
}
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.resource-card {
  display: flex;
  flex-direction: column;
  min-height: 380px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}
.resource-card.featured { border-top: 7px solid var(--sea); padding-top: 19px; }
.resource-card.urgent-resource { border-top-color: var(--brick); }
.resource-source { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 18px; }
.source-badge {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(185, 206, 165, .45);
  color: var(--cypress);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.source-scope { color: var(--muted); font-size: .7rem; font-weight: 750; }
.resource-card h3 { margin: 0; font-family: var(--serif); color: var(--cypress); font-size: 1.55rem; font-weight: 500; letter-spacing: -.025em; }
.resource-summary { margin: 12px 0; color: var(--muted); font-size: .88rem; }
.resource-next {
  margin: 0 0 16px;
  padding: 12px 13px;
  border-left: 4px solid var(--amber);
  background: var(--paper);
  color: #34504c;
  font-size: .8rem;
  line-height: 1.45;
}
.resource-detail { display: grid; gap: 6px; margin: 0 0 18px; color: var(--muted); font-size: .77rem; }
.resource-detail p { margin: 0; }
.resource-detail strong { color: var(--cypress); }
.resource-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: auto; }
.resource-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border: 1px solid var(--cypress);
  border-radius: 999px;
  color: var(--cypress);
  text-decoration: none;
  text-align: center;
  font-size: .76rem;
  font-weight: 850;
}
.resource-actions a.primary { background: var(--cypress); color: white; }
.resource-check { margin: 14px 0 0; color: #71837f; font-size: .68rem; }
.no-results { padding: 40px; grid-column: 1 / -1; border: 1px dashed var(--line); border-radius: 18px; text-align: center; }
.no-results h3 { font-family: var(--serif); font-size: 1.8rem; color: var(--cypress); margin: 0 0 8px; }
.no-results p { max-width: 560px; margin: 0 auto 20px; color: var(--muted); }

.public-note { margin-top: 84px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.notice-card { min-height: 330px; padding: 34px; border-radius: 24px; }
.notice-card.alerts { background: var(--amber); color: var(--cypress); }
.notice-card.scams { background: var(--cypress); color: white; }
.notice-card .mini-label { color: inherit; opacity: .72; }
.notice-card h2 { color: inherit; font-size: clamp(2.3rem, 4vw, 3.6rem); max-width: 520px; }
.notice-card p { max-width: 540px; }
.notice-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.notice-links a { min-height: 43px; display: inline-flex; align-items: center; padding: 0 15px; border: 1px solid currentColor; border-radius: 999px; font-weight: 850; font-size: .78rem; text-decoration: none; }
.notice-card.scams p { color: rgba(255, 255, 255, .72); }
.notice-card.scams .notice-links a { color: white; }
.directory-disclaimer { margin-top: 32px; padding: 24px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
.directory-disclaimer strong { color: var(--cypress); }

.error-page {
  min-height: calc(100vh - 42px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: 70px;
}
.error-page > img { margin-bottom: 24px; border-radius: 50%; }
.error-page h1 { max-width: 850px; font-size: clamp(3.2rem, 7vw, 6rem); }
.error-page > p:not(.eyebrow) { max-width: 580px; color: var(--muted); font-size: 1.1rem; }

@media (max-width: 1050px) {
  .needs-grid { grid-template-columns: repeat(2, 1fr); }
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .finder-layout { grid-template-columns: 1fr; }
  .urgent-cards { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .urgent-card { min-height: 165px; }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 28px, 680px); }
  .section { padding-block: 76px; }
  .urgent-inner { padding-block: 8px; gap: 5px; flex-direction: column; line-height: 1.3; }
  nav > a:not(.button) { display: none; }
  .brand small { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-block: 54px 64px; }
  h1 { font-size: clamp(3.4rem, 15vw, 5.5rem); }
  .hero-system { padding: 26px 20px; border-radius: 26px; }
  .hero-mark { width: 150px; }
  .quick-links { justify-content: flex-start; padding-block: 18px; gap: 12px 20px; }
  .quick-links span { width: 100%; }
  .intro-section,
  .split-heading,
  .dawn-grid,
  .roadmap-grid,
  .involved-section,
  .verification-panel,
  .finder-title-row {
    grid-template-columns: 1fr;
  }
  .intro-section { gap: 30px; }
  .split-heading { gap: 25px; }
  .dawn-grid { gap: 0; }
  .dawn-art { min-height: 480px; order: 2; }
  .dawn-art img { width: 430px; }
  .dawn-art::before { width: 330px; height: 330px; }
  .dawn-sun { width: 230px; height: 230px; bottom: 92px; }
  .dawn-copy { padding: 75px 0 20px; }
  .standards-grid { grid-template-columns: 1fr; }
  .verification-panel { gap: 35px; padding: 34px 26px; }
  .roadmap-grid { gap: 35px; }
  .roadmap-copy { padding-top: 0; }
  .involved-section { gap: 45px; }
  .finder-title-row { gap: 20px; }
  .finder-title-row > p { margin-bottom: 0; }
  .guide-panel-head { grid-template-columns: 1fr; gap: 18px; }
  .privacy-pill { justify-self: start; }
  .guide-input-wrap { grid-template-columns: 1fr; }
  .guide-input-wrap .button { min-height: 52px; }
  .directory-head { align-items: start; flex-direction: column; }
  .public-note { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-fineprint { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .nav-wrap { min-height: 70px; }
  .brand img { width: 44px; height: 44px; }
  .brand strong { font-size: .78rem; }
  .button-small { padding-inline: 14px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .text-link { text-align: center; }
  .needs-grid,
  .resource-grid,
  .form-row,
  .urgent-cards { grid-template-columns: 1fr; }
  .need-card { min-height: 230px; }
  .dawn-art { min-height: 410px; margin-inline: -14px; }
  .dawn-art img { width: 370px; }
  .dawn-art::before { width: 280px; height: 280px; bottom: 45px; }
  .dawn-sun { width: 200px; height: 200px; bottom: 75px; }
  .form-heading { flex-direction: column; gap: 10px; }
  .form-heading p { text-align: left; }
  .suggestion-form { padding: 26px 20px; }
  .footer-top { align-items: stretch; flex-direction: column; }
  .footer-top .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-fineprint { grid-column: auto; }
  .guide-panel { padding: 26px 20px; border-radius: 22px; }
  .guide-identity { align-items: start; }
  .guide-avatar { width: 60px; height: 60px; }
  .guide-avatar img { width: 68px; }
  .guide-question { font-size: 2rem; }
  .urgent-card { min-height: 150px; }
  .answer-panel { grid-template-columns: 44px 1fr; padding: 20px; }
  .answer-mark { width: 42px; height: 42px; }
  .answer-panel button { grid-column: 1 / -1; }
  .directory-actions { width: 100%; flex-direction: column; }
  .directory-actions .button { width: 100%; }
  .resource-card { min-height: 0; }
  .resource-actions { grid-template-columns: 1fr; }
  .results-meta { align-items: start; flex-direction: column; gap: 8px; }
  .notice-card { padding: 28px 24px; }
}

@media print {
  .urgent-bar, .site-header, .guide-panel, .urgent-cards, .answer-panel, .filter-wrap,
  .directory-actions, .public-note, .site-footer, .resource-actions { display: none !important; }
  body { background: white; font-size: 11pt; }
  .shell { width: 100%; }
  .finder-hero { padding: 0 0 20px; }
  .finder-title-row { display: block; }
  .finder-title-row h1 { font-size: 32pt; }
  .directory-section { padding-top: 0; }
  .resource-grid { display: block; }
  .resource-card { min-height: 0; margin-bottom: 10px; break-inside: avoid; box-shadow: none; }
  .resource-check { color: #333; }
  a { text-decoration: none; }
}

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