:root {
  --ink: #03070c;
  --deep: #07111d;
  --deep-blue: #0b1d31;
  --panel: rgba(7, 19, 32, 0.82);
  --panel-solid: #0a1828;
  --blue: #8fc7ff;
  --cyan: #6ee7ff;
  --green: #8cffd2;
  --amber: #e9cf8b;
  --white: #f7fbff;
  --muted: rgba(226, 243, 255, 0.72);
  --quiet: rgba(226, 243, 255, 0.52);
  --faint: rgba(143, 199, 255, 0.16);
  --line: rgba(110, 231, 255, 0.24);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  --radius: 12px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(120deg, rgba(3, 7, 12, 0.98), rgba(7, 17, 29, 0.96) 52%, rgba(5, 12, 18, 0.98)),
    var(--ink);
  color: var(--white);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  background:
    linear-gradient(90deg, rgba(143, 199, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(143, 199, 255, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 46%, rgba(110, 231, 255, 0.07) 46% 46.35%, transparent 46.35% 100%);
  background-size: 72px 72px, 72px 72px, 100% 100%;
  content: '';
  inset: 0;
  opacity: 0.72;
  pointer-events: none;
  position: fixed;
  z-index: 1;
}

body::after {
  background:
    linear-gradient(180deg, rgba(3, 7, 12, 0) 0%, rgba(3, 7, 12, 0.5) 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 5px);
  content: '';
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 2;
}

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

a {
  color: var(--cyan);
}

a:hover {
  color: var(--green);
}

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

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.skip-link {
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -100px;
  transition: top 160ms ease;
  z-index: 1000;
}

.skip-link:focus {
  color: var(--ink);
  top: 16px;
}

.tech-field {
  height: 100vh;
  inset: 0;
  opacity: 0.72;
  pointer-events: none;
  position: fixed;
  width: 100vw;
  z-index: 0;
}

.inner-page .tech-field {
  opacity: 0.46;
}

.site-shell {
  min-height: 100vh;
  position: relative;
  z-index: 3;
}

.container {
  margin-inline: auto;
  max-width: var(--content);
  padding-inline: 24px;
  width: 100%;
}

.narrow {
  max-width: 820px;
}

.site-header {
  backdrop-filter: blur(18px);
  background: rgba(3, 9, 15, 0.76);
  border-bottom: 1px solid rgba(110, 231, 255, 0.16);
  position: sticky;
  top: 0;
  transition: background 180ms ease, box-shadow 180ms ease;
  z-index: 100;
}

.site-header.is-scrolled {
  background: rgba(3, 9, 15, 0.94);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.nav-shell {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 76px;
}

.site-brand {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  flex: 0 0 auto;
  gap: 11px;
  text-decoration: none;
}

.site-brand:hover {
  color: var(--white);
}

.brand-glyph {
  align-items: center;
  aspect-ratio: 1;
  background:
    linear-gradient(135deg, rgba(110, 231, 255, 0.18), rgba(140, 255, 210, 0.05)),
    var(--deep-blue);
  border: 1px solid rgba(110, 231, 255, 0.46);
  border-radius: 7px;
  box-shadow: inset 0 1px 0 rgba(247, 251, 255, 0.12), 0 0 24px rgba(110, 231, 255, 0.1);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.08em;
  width: 42px;
}

.brand-words {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-words strong {
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.brand-words span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-top: 5px;
  text-transform: uppercase;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 28px;
}

.site-nav ul {
  align-items: center;
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a:not(.button) {
  color: rgba(247, 251, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
  text-decoration: none;
}

.site-nav a:not(.button)::after {
  background: linear-gradient(90deg, var(--cyan), var(--green));
  bottom: -8px;
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
  width: 100%;
}

.site-nav a:not(.button):hover,
.site-nav a[aria-current='page']:not(.button) {
  color: var(--white);
}

.site-nav a:not(.button):hover::after,
.site-nav a[aria-current='page']:not(.button)::after {
  transform: scaleX(1);
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--white);
  cursor: pointer;
  display: none;
  height: 44px;
  padding: 10px;
  width: 44px;
}

.nav-toggle span {
  background: currentColor;
  display: block;
  height: 2px;
  margin: 5px 0;
  transition: transform 160ms ease, opacity 160ms ease;
  width: 100%;
}

.button,
.button:visited {
  align-items: center;
  background: linear-gradient(180deg, rgba(110, 231, 255, 0.16), rgba(5, 14, 24, 0.78));
  border: 1px solid rgba(110, 231, 255, 0.46);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(247, 251, 255, 0.12), 0 18px 48px rgba(0, 0, 0, 0.2);
  color: var(--white);
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.07em;
  min-height: 46px;
  padding: 11px 18px;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: rgba(140, 255, 210, 0.72);
  box-shadow: inset 0 1px 0 rgba(247, 251, 255, 0.16), 0 22px 52px rgba(0, 0, 0, 0.26), 0 0 28px rgba(110, 231, 255, 0.12);
  color: var(--white);
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, rgba(29, 126, 183, 0.88), rgba(16, 111, 111, 0.82));
  border-color: rgba(140, 255, 210, 0.62);
}

.button-quiet {
  background: rgba(5, 14, 24, 0.58);
  border-color: rgba(143, 199, 255, 0.28);
}

.button-small {
  font-size: 0.72rem;
  min-height: 40px;
  padding: 8px 13px;
}

.social-mark {
  align-items: center;
  background: #0a66c2;
  border-radius: 4px;
  color: white;
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 900;
  height: 23px;
  justify-content: center;
  letter-spacing: 0;
  text-transform: none;
  width: 23px;
}

.social-mark.facebook {
  background: #1877f2;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 1rem;
}

.eyebrow {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.65rem, 7vw, 5.9rem);
  letter-spacing: -0.035em;
  margin: 0;
}

h2 {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  letter-spacing: -0.025em;
  margin: 0;
}

h3 {
  font-size: 1.22rem;
  margin: 0;
}

.gradient-heading {
  background: linear-gradient(135deg, var(--white) 0%, var(--cyan) 52%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  line-height: 1.76;
  margin: 22px 0 0;
  max-width: 720px;
}

.hero {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.78fr);
  min-height: calc(100vh - 76px);
  padding-block: 84px 92px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 820px;
}

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

.hero-principles {
  border-top: 1px solid rgba(140, 255, 210, 0.22);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  list-style: none;
  margin: 34px 0 0;
  padding: 18px 0 0;
}

.hero-principles li {
  color: rgba(226, 243, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
}

.hero-visual-stack {
  align-content: center;
  display: grid;
  gap: 18px;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.hero-visual-stack .lake-sigil {
  aspect-ratio: 2.15;
}

.hero-visual-stack .visual-caption {
  font-size: 0.68rem;
  margin-top: 10px;
}

.hero-map-panel {
  position: relative;
  z-index: 2;
}

.hero-visual::before {
  background: radial-gradient(circle, rgba(110, 231, 255, 0.14), transparent 66%);
  content: '';
  inset: -24%;
  pointer-events: none;
  position: absolute;
}

.lake-sigil {
  aspect-ratio: 1.48;
  background:
    linear-gradient(90deg, rgba(110, 231, 255, 0.11) 1px, transparent 1px),
    linear-gradient(0deg, rgba(140, 255, 210, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 22% 36%, rgba(140, 255, 210, 0.2), transparent 1.8rem),
    linear-gradient(135deg, rgba(247, 251, 255, 0.08), rgba(110, 231, 255, 0.018));
  background-size: 24px 24px, 24px 24px, 100% 100%, 100% 100%;
  border: 1px solid rgba(110, 231, 255, 0.38);
  border-radius: 12px;
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(247, 251, 255, 0.12), 0 0 44px rgba(110, 231, 255, 0.12);
  overflow: hidden;
  position: relative;
}

.lake-sigil::before {
  border: 1px solid rgba(140, 255, 210, 0.34);
  border-radius: 8px;
  content: '';
  inset: 17%;
  position: absolute;
}

.lake-sigil::after {
  background: linear-gradient(105deg, transparent 0 36%, rgba(233, 207, 139, 0.25) 37%, transparent 39% 100%);
  content: '';
  inset: -20%;
  opacity: 0.76;
  position: absolute;
}

.sigil-blits {
  align-items: center;
  color: rgba(247, 251, 255, 0.9);
  display: flex;
  font-size: clamp(2.1rem, 6vw, 4.2rem);
  font-weight: 900;
  gap: 0.08em;
  inset: 0;
  justify-content: center;
  letter-spacing: 0.1em;
  line-height: 1;
  position: absolute;
  text-shadow: 0 0 22px rgba(110, 231, 255, 0.22);
  z-index: 2;
}

.morph-letter {
  color: var(--amber);
  display: inline-grid;
  min-width: 0.7em;
  perspective: 6rem;
  position: relative;
}

.morph-letter span {
  animation: blits-morph 9s ease-in-out infinite;
  grid-area: 1 / 1;
  transform-origin: 50% 50%;
}

.morph-letter span:last-child {
  animation-name: blits-morph-alt;
  opacity: 0;
}

@keyframes blits-morph {
  0%, 34%, 100% { opacity: 1; transform: rotate(0deg) scale(1); }
  48%, 64% { opacity: 0; transform: rotate(96deg) scale(0.9); }
}

@keyframes blits-morph-alt {
  0%, 34%, 100% { opacity: 0; transform: rotate(-96deg) scale(0.9); }
  48%, 64% { opacity: 1; transform: rotate(0deg) scale(1); }
}

.sigil-wave {
  border-top: 1px solid rgba(110, 231, 255, 0.68);
  height: 34%;
  left: 8%;
  position: absolute;
  right: 8%;
  transform: skewY(-5deg);
}

.wave-one { bottom: 22%; }
.wave-two { bottom: 12%; opacity: 0.54; }

.sigil-node {
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(140, 255, 210, 0.72);
  height: 7px;
  position: absolute;
  width: 7px;
}

.node-one { right: 17%; top: 22%; }
.node-two { bottom: 24%; left: 18%; }

.visual-caption {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin: 18px 0 0;
  text-align: center;
  text-transform: uppercase;
}

.page-note {
  color: var(--quiet);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 24px 0 0;
  text-transform: uppercase;
}

.section {
  padding-block: 98px;
  position: relative;
}

.section-tight {
  padding-block: 70px;
}

.section-line {
  border-top: 1px solid rgba(110, 231, 255, 0.16);
}

.section-soft {
  background: linear-gradient(135deg, rgba(10, 29, 49, 0.56), rgba(5, 14, 24, 0.28));
  border-block: 1px solid rgba(110, 231, 255, 0.13);
}

.section-head {
  align-items: end;
  display: flex;
  gap: 34px;
  justify-content: space-between;
  margin-bottom: 42px;
}

.section-head > div:first-child {
  max-width: 760px;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  margin: 18px 0 0;
  max-width: 680px;
}

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

.service-card,
.info-card,
.process-card,
.standard-card {
  background: linear-gradient(155deg, rgba(247, 251, 255, 0.065), rgba(5, 14, 24, 0.52));
  border: 1px solid rgba(110, 231, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(247, 251, 255, 0.06);
  position: relative;
}

.service-card {
  color: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 290px;
  overflow: hidden;
  padding: 26px;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.service-card::after {
  background: linear-gradient(90deg, var(--cyan), var(--green));
  bottom: 0;
  content: '';
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0.25);
  transform-origin: left;
  transition: opacity 180ms ease, transform 180ms ease;
  width: 100%;
}

.service-card:hover {
  background: linear-gradient(155deg, rgba(110, 231, 255, 0.1), rgba(5, 14, 24, 0.58));
  border-color: rgba(140, 255, 210, 0.44);
  color: var(--white);
  transform: translateY(-4px);
}

.service-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.card-number {
  align-items: center;
  background: rgba(110, 231, 255, 0.08);
  border: 1px solid rgba(110, 231, 255, 0.28);
  border-radius: 8px;
  color: var(--green);
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  width: 42px;
}

.service-card h3 {
  font-size: 1.3rem;
}

.service-card p {
  color: var(--muted);
  line-height: 1.68;
  margin: 13px 0 24px;
}

.card-link {
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-top: auto;
  text-transform: uppercase;
}

.split {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-top {
  align-items: start;
}

.local-copy-band {
  margin-inline: auto;
  max-width: 980px;
}

.copy-block p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.78;
  margin: 20px 0 0;
}

.check-list,
.detail-list {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.check-list li,
.detail-list li {
  color: rgba(247, 251, 255, 0.82);
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  align-items: center;
  background: rgba(140, 255, 210, 0.12);
  border: 1px solid rgba(140, 255, 210, 0.32);
  border-radius: 50%;
  color: var(--green);
  content: '✓';
  display: inline-flex;
  font-size: 0.68rem;
  height: 18px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0.25em;
  width: 18px;
}

.detail-list li::before {
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(110, 231, 255, 0.42);
  content: '';
  height: 5px;
  left: 7px;
  position: absolute;
  top: 0.7em;
  width: 5px;
}

.map-panel {
  background:
    radial-gradient(circle at 62% 58%, rgba(110, 231, 255, 0.12), transparent 32%),
    linear-gradient(155deg, rgba(247, 251, 255, 0.055), rgba(5, 14, 24, 0.6));
  border: 1px solid rgba(110, 231, 255, 0.22);
  border-radius: 14px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(247, 251, 255, 0.08);
  overflow: hidden;
  padding: 26px;
  position: relative;
}

.map-panel::before {
  background-image: radial-gradient(rgba(110, 231, 255, 0.22) 1px, transparent 1px);
  background-size: 20px 20px;
  content: '';
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  position: absolute;
}

.service-map {
  margin: 0 auto;
  max-width: 520px;
  position: relative;
  width: 100%;
}

.map-land {
  fill: rgba(27, 110, 161, 0.33);
  stroke: rgba(143, 199, 255, 0.78);
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.map-kicker {
  fill: rgba(143, 199, 255, 0.76);
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.map-inset-panel {
  fill: rgba(3, 12, 22, 0.7);
  stroke: rgba(110, 231, 255, 0.3);
  stroke-width: 1.2;
}

.map-inset-grid {
  fill: none;
  opacity: 0.16;
  stroke: rgba(143, 199, 255, 0.55);
  stroke-width: 0.7;
}

.map-connector {
  fill: none;
  stroke: rgba(110, 231, 255, 0.46);
  stroke-dasharray: 4 6;
  stroke-width: 1.4;
}

.map-link {
  fill: none;
  stroke: rgba(110, 231, 255, 0.5);
  stroke-dasharray: 5 7;
  stroke-width: 1.5;
}

.map-ring {
  fill: rgba(110, 231, 255, 0.07);
  stroke: rgba(110, 231, 255, 0.34);
  stroke-width: 1;
}

.map-ring.inset-ring {
  fill: none;
  opacity: 0.55;
}

.map-point {
  fill: var(--cyan);
  filter: drop-shadow(0 0 7px rgba(110, 231, 255, 0.9));
}

.map-hub {
  animation: map-pulse 2.8s ease-out infinite;
  fill: var(--green);
  transform-box: fill-box;
  transform-origin: center;
}

.map-label {
  fill: rgba(247, 251, 255, 0.84);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.map-label.hub-label {
  fill: var(--green);
  font-weight: 900;
}

.map-label.state-label {
  fill: rgba(247, 251, 255, 0.58);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.state-hub-label {
  font-size: 11px;
  letter-spacing: 0.04em;
}

.map-north path {
  fill: rgba(110, 231, 255, 0.74);
}

.map-north text {
  fill: rgba(247, 251, 255, 0.74);
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 800;
  text-anchor: middle;
}

@keyframes map-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.62; transform: scale(1.6); }
}

.map-caption {
  color: var(--quiet);
  font-size: 0.78rem;
  margin: 8px 0 0;
  position: relative;
  text-align: center;
}

.process-grid,
.info-grid,
.standards-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card,
.info-card,
.standard-card {
  padding: 26px;
}

.process-card strong {
  color: var(--green);
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.process-card p,
.info-card p,
.standard-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 12px 0 0;
}

.standard-card a {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-top: 18px;
  text-decoration: none;
  text-transform: uppercase;
}

.page-hero {
  padding-block: 104px 78px;
}

.breadcrumbs {
  align-items: center;
  color: var(--quiet);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.75rem;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.07em;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--blue);
  text-decoration: none;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 7vw, 5.5rem);
  max-width: 990px;
}

.page-hero .lede {
  max-width: 780px;
}

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

.capability-band {
  border-block: 1px solid rgba(110, 231, 255, 0.16);
  padding-block: 23px;
}

.capability-band ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.capability-band li {
  color: rgba(226, 243, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-panel {
  background: linear-gradient(145deg, rgba(110, 231, 255, 0.075), rgba(5, 14, 24, 0.66));
  border: 1px solid rgba(110, 231, 255, 0.22);
  border-radius: 14px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(247, 251, 255, 0.08);
  padding: clamp(26px, 5vw, 46px);
}

.feature-panel h2 {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
}

.feature-panel p {
  color: var(--muted);
  line-height: 1.76;
}

.note-panel {
  background: rgba(233, 207, 139, 0.055);
  border: 1px solid rgba(233, 207, 139, 0.26);
  border-left: 3px solid var(--amber);
  border-radius: 8px;
  color: rgba(247, 251, 255, 0.76);
  margin-top: 28px;
  padding: 20px 22px;
}

.note-panel strong {
  color: var(--amber);
  display: block;
  margin-bottom: 7px;
}

.note-panel p {
  margin: 0;
}

.contact-panel {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(15, 80, 122, 0.62), rgba(8, 54, 61, 0.58)),
    var(--panel-solid);
  border: 1px solid rgba(140, 255, 210, 0.3);
  border-radius: 16px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(247, 251, 255, 0.1);
  display: flex;
  gap: 36px;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(30px, 6vw, 58px);
  position: relative;
}

.contact-panel::after {
  background: radial-gradient(circle, rgba(140, 255, 210, 0.2), transparent 66%);
  content: '';
  height: 320px;
  pointer-events: none;
  position: absolute;
  right: -120px;
  top: -140px;
  width: 320px;
}

.contact-panel > div {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.contact-panel h2 {
  font-size: clamp(2rem, 5vw, 3.7rem);
}

.contact-panel p:not(.eyebrow) {
  color: rgba(247, 251, 255, 0.76);
  margin: 18px 0 0;
}

.social-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 12px;
  min-width: 245px;
  position: relative;
  z-index: 1;
}

.contact-choice-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
}

.contact-choice {
  align-items: flex-start;
  background: linear-gradient(155deg, rgba(247, 251, 255, 0.07), rgba(5, 14, 24, 0.62));
  border: 1px solid rgba(110, 231, 255, 0.22);
  border-radius: 14px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 30px;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.contact-choice:hover {
  border-color: rgba(140, 255, 210, 0.56);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-choice .social-mark {
  height: 34px;
  margin-bottom: 28px;
  width: 34px;
}

.contact-choice h2 {
  font-size: 1.65rem;
}

.contact-choice p {
  color: var(--muted);
  margin: 13px 0 24px;
}

.contact-choice .card-link {
  margin-top: auto;
}

.site-footer {
  border-top: 1px solid rgba(110, 231, 255, 0.15);
  padding-block: 54px 24px;
}

.footer-grid {
  display: grid;
  gap: 38px;
  grid-template-columns: 1.4fr 0.7fr 0.8fr;
}

.footer-brand p {
  color: var(--quiet);
  font-size: 0.88rem;
  margin: 18px 0 0;
  max-width: 430px;
}

.footer-group h2 {
  color: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.footer-group ul {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-group a {
  color: rgba(247, 251, 255, 0.72);
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-group a:hover {
  color: var(--green);
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(110, 231, 255, 0.11);
  color: var(--quiet);
  display: flex;
  font-size: 0.76rem;
  gap: 20px;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 22px;
}

.footer-bottom p {
  margin: 0;
}

.error-main {
  align-items: center;
  display: flex;
  min-height: calc(100vh - 230px);
  padding-block: 90px;
  text-align: center;
}

.error-code {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.error-main .lede {
  margin-inline: auto;
}

.error-main .hero-actions {
  justify-content: center;
}

@media (max-width: 980px) {
  .site-nav {
    gap: 16px;
  }

  .site-nav ul {
    gap: 17px;
  }

  .hero {
    gap: 42px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  }

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

  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-actions {
    flex-direction: row;
    min-width: 0;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    align-items: stretch;
    background: rgba(3, 9, 15, 0.98);
    border-bottom: 1px solid rgba(110, 231, 255, 0.2);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 22px 24px 26px;
    position: absolute;
    right: 0;
    top: 76px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav ul {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .site-nav a:not(.button) {
    display: block;
    font-size: 1rem;
    padding: 13px 0;
  }

  .site-nav a:not(.button)::after {
    bottom: 5px;
    width: 42px;
  }

  .site-nav .button {
    width: 100%;
  }

  .nav-toggle[aria-expanded='true'] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded='true'] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded='true'] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 76px;
  }

  .hero-visual {
    margin-inline: auto;
    max-width: 500px;
    width: 100%;
  }

  .hero-visual-stack {
    display: flex;
    flex-direction: column;
  }

  .hero-visual-stack .hero-map-panel {
    order: -1;
  }

  .split {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .process-grid,
  .info-grid,
  .standards-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .container {
    padding-inline: 17px;
  }

  .brand-words strong {
    font-size: 0.9rem;
  }

  .brand-words span {
    font-size: 0.61rem;
  }

  .section {
    padding-block: 74px;
  }

  .hero {
    gap: 30px;
    padding-block: 52px;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .hero-actions .button {
    flex: 1;
    font-size: 0.65rem;
    min-width: 0;
    padding-inline: 9px;
    width: auto;
  }

  .hero-principles {
    gap: 10px;
    justify-content: space-between;
  }

  .hero-principles li {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .hero-visual::before {
    inset: 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 32px;
  }

  .service-grid,
  .contact-choice-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 260px;
  }

  .page-hero {
    padding-block: 76px 58px;
  }

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

  .page-hero-actions .button,
  .social-actions .button {
    width: 100%;
  }

  .map-panel {
    padding: 14px 8px 18px;
  }

  .map-label {
    font-size: 15px;
  }

  .map-label.state-label {
    font-size: 14px;
  }

  .state-hub-label,
  .map-kicker {
    font-size: 12px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .morph-letter span:last-child {
    display: none;
  }
}
