:root {
  --ink: #0b1f33;
  --navy: #0d2438;
  --navy-2: #12334c;
  --gold: #d3a84b;
  --gold-deep: #9a762c;
  --gold-soft: #f4e6bd;
  --paper: #faf8f2;
  --paper-2: #f1eee6;
  --white: #ffffff;
  --muted: #5f6b76;
  --line: #d9d2c3;
  --teal: #2f6f73;
  --teal-soft: #d9ece9;
  --shadow: 0 18px 48px rgba(11, 31, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

section[id] {
  scroll-margin-top: 92px;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  border-bottom: 1px solid rgba(13, 36, 56, 0.12);
  background: rgba(250, 248, 242, 0.94);
  padding: 14px 32px;
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  flex: 0 0 auto;
  object-fit: contain;
}

.brand img {
  width: 44px;
  height: 44px;
}

.footer-brand img {
  width: 38px;
  height: 38px;
}

.nav-links {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.nav-links a {
  border-radius: 6px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  padding: 10px 12px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--white);
  color: var(--navy);
  outline: none;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.header-cta {
  flex: 0 0 auto;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
}

.header-cta:hover,
.header-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  background: #071827;
  outline: 3px solid rgba(211, 168, 75, 0.42);
  outline-offset: 2px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: 48px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 32px 72px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 14px;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  color: var(--navy);
  font-size: 64px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero-lede {
  max-width: 690px;
  margin-top: 24px;
  color: #2d3f4f;
  font-size: 22px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  max-width: 100%;
  padding: 13px 18px;
}

.button-primary {
  background: var(--navy);
  color: var(--white);
}

.button-secondary {
  border: 1px solid rgba(13, 36, 56, 0.22);
  background: var(--white);
  color: var(--navy);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.inline-link:hover,
.inline-link:focus-visible {
  border-color: var(--gold-deep);
  color: #6d501a;
  outline: none;
}

.button-secondary.dark {
  border-color: rgba(255, 255, 255, 0.38);
  background: transparent;
  color: var(--white);
}

.button-secondary.dark:hover,
.button-secondary.dark:focus-visible {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.support-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(244, 230, 189, 0.46);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-soft);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
  padding: 13px 18px;
  text-align: center;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.proof-strip div {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 14px;
}

.proof-strip dt {
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.proof-strip dd {
  margin-top: 4px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.hero-visual {
  display: flex;
  min-width: 0;
  justify-content: center;
}

.compass-field {
  position: relative;
  width: min(100%, 460px);
  min-height: 460px;
  border: 1px solid rgba(13, 36, 56, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(13, 36, 56, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(13, 36, 56, 0.08) 1px, transparent 1px),
    var(--white);
  background-size: 44px 44px;
  box-shadow: var(--shadow);
}

.compass-field::before,
.compass-field::after {
  position: absolute;
  inset: 50px;
  border: 1px solid rgba(211, 168, 75, 0.36);
  border-radius: 50%;
  content: "";
}

.compass-field::after {
  inset: 92px;
  border-color: rgba(47, 111, 115, 0.28);
}

.compass-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 210px;
  height: 210px;
  transform: translate(-50%, -50%);
  place-items: center;
}

.compass-ring img {
  width: 210px;
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(11, 31, 51, 0.18));
}

.orbit {
  position: absolute;
  max-width: 168px;
  border: 1px solid rgba(13, 36, 56, 0.14);
  border-radius: 8px;
  background: rgba(250, 248, 242, 0.92);
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  padding: 10px 12px;
  box-shadow: 0 10px 26px rgba(11, 31, 51, 0.08);
}

.orbit-one {
  left: 26px;
  top: 58px;
}

.orbit-two {
  bottom: 42px;
  left: 52px;
}

.orbit-three {
  right: 30px;
  top: 126px;
}

.mission-section,
.audience-section,
.research-section,
.contact-section {
  background: var(--white);
}

.work-section,
.resources-section {
  background: var(--paper);
}

.support-section {
  background: var(--navy);
  color: var(--white);
}

.section-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 82px 32px;
}

.two-column,
.support-layout,
.contact-layout,
.resources-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 0;
}

h2 {
  color: var(--navy);
  font-size: 42px;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.08;
}

.support-section h2 {
  color: var(--white);
}

.section-heading p:not(.section-kicker),
.mission-copy p,
.resources-layout p,
.support-layout p,
.contact-layout p {
  color: #314657;
  font-size: 18px;
  line-height: 1.65;
}

.support-layout p {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading p:not(.section-kicker) {
  margin-top: 16px;
  max-width: 720px;
}

.mission-copy {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.audience-list article,
.resource-panel,
.trust-box {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-card {
  padding: 24px;
}

.card-marker {
  display: block;
  width: 34px;
  height: 6px;
  border-radius: 4px;
  background: var(--gold);
  margin-bottom: 28px;
}

.marker-teal {
  background: var(--teal);
}

.marker-navy {
  background: var(--navy);
}

h3 {
  color: var(--navy);
  font-size: 22px;
  font-weight: 820;
  line-height: 1.18;
}

.feature-card p,
.audience-list p,
.resource-panel li,
.trust-box dd,
.site-footer p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.feature-card p {
  margin-top: 14px;
}

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

.audience-list article {
  padding: 20px;
}

.audience-list p {
  margin-top: 8px;
}

.resource-panel {
  align-self: start;
  padding: 26px;
}

.resource-panel ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.resource-panel li {
  position: relative;
  padding-left: 24px;
}

.resource-panel li::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.trust-box {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  padding: 26px;
}

.trust-box h3,
.trust-box dt,
.trust-box dd,
.trust-box a {
  color: var(--white);
}

.trust-box dl {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.trust-box dt {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.trust-box dd {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
}

.trust-box a {
  text-decoration-color: rgba(244, 230, 189, 0.7);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-layout {
  align-items: start;
}

.inline-link {
  display: inline-flex;
  margin-top: 18px;
  border-bottom: 1px solid var(--gold-deep);
  color: var(--navy);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.3;
  text-decoration: none;
}

.contact-note {
  margin-top: 16px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(13, 36, 56, 0.12);
  background: var(--paper-2);
  padding: 26px 32px;
}

.site-footer > div,
.site-footer > p {
  max-width: 560px;
}

.site-footer p {
  margin-top: 6px;
}

.site-footer > p {
  margin-top: 0;
  text-align: right;
}

@media (max-width: 980px) {
  section[id] {
    scroll-margin-top: 128px;
  }

  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 14px 22px;
  }

  .nav-links {
    order: 3;
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .two-column,
  .support-layout,
  .contact-layout,
  .resources-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 36px;
    padding: 68px 24px 58px;
  }

  h1 {
    font-size: 50px;
  }

  .hero-lede {
    font-size: 20px;
  }

  .compass-field {
    min-height: 380px;
  }

  .section-shell {
    padding: 68px 24px;
  }

  .section-heading.compact {
    margin-bottom: 20px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer > p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .site-header {
    gap: 12px;
  }

  .nav-links {
    gap: 0;
    justify-content: space-between;
    overflow: visible;
  }

  .brand span {
    font-size: 17px;
  }

  .header-cta {
    padding: 10px 13px;
  }

  .nav-links a {
    font-size: 12px;
    padding: 8px 4px;
  }

  .hero {
    padding: 46px 18px 48px;
  }

  h1 {
    font-size: 40px;
    line-height: 1;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-lede,
  .section-heading p:not(.section-kicker),
  .mission-copy p,
  .resources-layout p,
  .support-layout p,
  .contact-layout p {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .proof-strip,
  .audience-list {
    grid-template-columns: 1fr;
  }

  .compass-field {
    min-height: 330px;
  }

  .hero-visual {
    display: none;
  }

  .compass-field::before {
    inset: 34px;
  }

  .compass-field::after {
    inset: 68px;
  }

.compass-ring,
.compass-ring img {
  width: 160px;
  height: 160px;
}

  .orbit {
    max-width: 132px;
    font-size: 12px;
    padding: 8px 10px;
  }

  .orbit-one {
    left: 14px;
    top: 42px;
  }

  .orbit-two {
    bottom: 26px;
    left: 20px;
  }

  .orbit-three {
    right: 14px;
    top: 104px;
  }

  .section-shell {
    padding: 54px 18px;
  }

  .feature-card,
  .audience-list article,
  .resource-panel,
  .trust-box {
    padding: 20px;
  }
}

@media (max-width: 380px) {
  .nav-links a {
    font-size: 11px;
    padding-left: 3px;
    padding-right: 3px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .header-cta {
    width: 100%;
  }

  .compass-field {
    min-height: 300px;
  }

  .orbit-three {
    top: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
