:root {
  --paper: #f4f0e8;
  --sheet: #ffffff;
  --ink: #182033;
  --navy: #253f78;
  --navy-deep: #18315f;
  --muted: #667085;
  --hairline: #d9d4c8;
  --orange: #f47c20;
  --orange-deep: #e8551c;
  --teal: #00a9a5;
  --soft-blue: #eaf2ff;
  --soft-orange: #fff0e4;
  --focus: #0f766e;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 10;
  transform: translateY(-140%);
  background: var(--sheet);
  border: 1px solid var(--navy);
  border-radius: 6px;
  padding: 10px 14px;
  font-weight: 700;
}

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

.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;
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 24px;
}

.concept-bar {
  background: var(--navy-deep);
  color: #ffffff;
  padding: 8px 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.site-header {
  background: rgba(244, 240, 232, 0.96);
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(12px);
}

.header-grid {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand img {
  width: 206px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ghost-link,
.button,
.menu-button {
  min-height: 42px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 800;
}

.ghost-link {
  background: var(--sheet);
  color: var(--navy);
  border: 1px solid var(--hairline);
  padding: 0 16px;
}

.menu-button {
  width: 44px;
  border: 1px solid var(--hairline);
  background: var(--sheet);
  color: var(--navy);
  cursor: pointer;
  display: none;
}

.menu-button svg,
.button svg,
.icon-wrap svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--hairline);
  background: var(--sheet);
  padding: 10px 24px 20px;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  color: var(--navy);
  font-weight: 800;
  border-bottom: 1px solid var(--hairline);
}

.section-pad {
  padding: 88px 0;
}

.hero {
  padding-top: 64px;
  background:
    linear-gradient(90deg, rgba(244, 240, 232, 0.96), rgba(244, 240, 232, 0.76)),
    radial-gradient(circle at 75% 20%, rgba(0, 169, 165, 0.18), transparent 32%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 44px;
  align-items: center;
}

.eyebrow,
.kicker,
.panel-label {
  margin: 0 0 12px;
  color: var(--orange-deep);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.proof-copy h2,
.paths-grid h2 {
  margin: 0;
  color: var(--navy-deep);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: 64px;
}

.hero-lede {
  max-width: 660px;
  margin: 24px 0 0;
  color: #344054;
  font-size: 20px;
  line-height: 1.5;
}

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

.button {
  border: 1px solid transparent;
  padding: 0 18px;
}

.button-alert {
  background: var(--orange-deep);
  color: #ffffff;
}

.button-dark {
  background: var(--navy);
  color: #ffffff;
}

.button-light {
  background: #ffffff;
  color: var(--navy);
  border-color: rgba(255, 255, 255, 0.5);
}

.route-board {
  background: var(--sheet);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  overflow: hidden;
}

.route-media {
  aspect-ratio: 16 / 9;
  background: var(--soft-blue);
}

.route-media img,
.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-panel {
  padding: 24px;
}

.route-panel a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px dashed var(--hairline);
}

.route-panel span {
  color: var(--ink);
  font-weight: 800;
}

.route-panel strong {
  color: var(--teal);
  font-size: 13px;
  white-space: nowrap;
}

.action-strip {
  padding: 0 0 40px;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.action-item,
.service-card,
.story-card,
.path-list {
  background: var(--sheet);
  border: 1px solid var(--hairline);
  border-radius: 8px;
}

.action-item {
  padding: 22px;
  min-height: 262px;
  display: flex;
  flex-direction: column;
}

.action-item.emergency {
  border-color: rgba(232, 85, 28, 0.38);
  background: var(--soft-orange);
}

.icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #ffffff;
  margin-bottom: 18px;
}

.emergency .icon-wrap {
  background: var(--orange-deep);
}

.action-item h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: 22px;
  line-height: 1.16;
  letter-spacing: 0;
}

.action-item p:not(.kicker) {
  margin: 12px 0 18px;
  color: #475467;
  font-size: 15px;
}

.action-item a {
  margin-top: auto;
  color: var(--orange-deep);
  font-weight: 900;
}

.section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-head.compact {
  max-width: 860px;
}

.section-head h2,
.proof-copy h2,
.paths-grid h2 {
  font-size: 42px;
}

.section-head p:not(.eyebrow),
.proof-copy p:not(.eyebrow),
.paths-grid p {
  color: #475467;
  font-size: 18px;
  max-width: 740px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  padding: 24px;
  min-height: 244px;
  display: flex;
  flex-direction: column;
}

.service-card span {
  width: fit-content;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  color: var(--orange-deep);
  padding: 4px 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
}

.service-card h3 {
  margin: 24px 0 10px;
  color: var(--navy-deep);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0;
}

.service-card p {
  margin: 0;
  color: #475467;
}

.proof-band {
  background: var(--navy-deep);
  color: #ffffff;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 48px;
  align-items: center;
}

.proof-copy h2,
.proof-copy p:not(.eyebrow) {
  color: #ffffff;
}

.proof-copy .eyebrow {
  color: #ffb061;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  overflow: hidden;
}

.stats-grid div {
  min-height: 160px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.stats-grid div:nth-child(2n) {
  border-right: 0;
}

.stats-grid div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.stats-grid strong {
  display: block;
  color: #ffffff;
  font-size: 46px;
  line-height: 1;
  letter-spacing: 0;
}

.stats-grid span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.energy-section {
  background: #fbfaf7;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
}

.story-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.story-card img {
  aspect-ratio: 4 / 3;
}

.feature-story img {
  aspect-ratio: 16 / 9;
}

.story-card div {
  padding: 24px;
}

.story-card h3 {
  margin: 0;
  color: var(--navy-deep);
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: 0;
}

.story-card p:not(.kicker) {
  color: #475467;
}

.story-card a {
  color: var(--orange-deep);
  font-weight: 900;
}

.public-paths {
  background: var(--paper);
}

.paths-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 40px;
  align-items: start;
}

.path-list {
  padding: 8px 24px;
}

.path-list a {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px dashed var(--hairline);
}

.path-list a:last-child {
  border-bottom: 0;
}

.path-list strong {
  color: var(--navy-deep);
  font-size: 18px;
}

.path-list span {
  color: #475467;
}

.site-footer {
  background: var(--navy);
  color: #ffffff;
  padding: 56px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.7fr) minmax(160px, 0.4fr);
  gap: 40px;
  align-items: start;
}

.footer-logo {
  width: 220px;
  margin-bottom: 22px;
}

.site-footer p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
}

.site-footer nav {
  display: grid;
  gap: 12px;
}

.site-footer nav a,
.owner-link {
  color: #ffffff;
  font-weight: 800;
}

.footer-proof img {
  width: 120px;
  height: auto;
  margin-bottom: 14px;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .header-grid {
    grid-template-columns: auto 1fr;
  }

  .header-actions {
    justify-content: end;
  }

  .hero-grid,
  .proof-grid,
  .paths-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 50px;
  }

  .route-board {
    max-width: 680px;
  }

  .action-grid,
  .service-grid,
  .story-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-story {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    padding: 0 18px;
  }

  .concept-bar {
    font-size: 11px;
    line-height: 1.35;
  }

  .site-header {
    position: static;
  }

  .header-grid {
    min-height: 72px;
    gap: 12px;
  }

  .brand img {
    width: 164px;
  }

  .ghost-link {
    display: none;
  }

  .section-pad {
    padding: 58px 0;
  }

  .hero {
    padding-top: 44px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.08;
  }

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

  .hero-cta,
  .hero-cta .button {
    width: 100%;
  }

  .route-panel a,
  .path-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .action-grid,
  .service-grid,
  .story-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .action-strip {
    padding-bottom: 20px;
  }

  .section-head h2,
  .proof-copy h2,
  .paths-grid h2 {
    font-size: 32px;
    line-height: 1.12;
  }

  .action-item,
  .service-card {
    min-height: auto;
  }

  .stats-grid div,
  .stats-grid div:nth-child(2n),
  .stats-grid div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .stats-grid div:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
