:root {
  --ink: #102b3a;
  --ink-soft: #4c626d;
  --navy: #071d2b;
  --navy-2: #0c2b3d;
  --navy-3: #123d51;
  --paper: #f4f6f3;
  --white: #ffffff;
  --line: #d5ddd9;
  --line-dark: rgba(220, 237, 241, 0.18);
  --orange: #ffb000;
  --orange-dark: #c96e00;
  --aqua: #52d7cf;
  --green: #6de0a5;
  --shadow: 0 24px 60px rgba(8, 34, 48, 0.1);
  --radius: 3px;
  --shell: 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, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

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

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.page-shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 79% 38%, rgba(64, 199, 202, 0.12), transparent 25%),
    linear-gradient(135deg, var(--navy) 0%, #092435 58%, #0d3042 100%);
  color: var(--white);
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(90deg, black, transparent 52%, black);
}

.site-header::after {
  position: absolute;
  top: 84px;
  right: -150px;
  z-index: -1;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 95px rgba(255, 255, 255, 0.025),
    0 0 0 190px rgba(255, 255, 255, 0.018);
}

.topbar {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--line-dark);
}

.wordmark {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.wordmark-mark {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.wordmark-mark svg {
  width: 23px;
  height: 23px;
  overflow: visible;
}

.wordmark-mark svg path:first-child {
  fill: var(--orange);
  stroke: none;
}

.wordmark-mark svg path:last-child {
  fill: none;
  stroke: var(--navy);
  stroke-width: 2;
}

.wordmark-text {
  display: inline-flex;
  align-items: baseline;
  letter-spacing: -0.03em;
}

.wordmark-text strong {
  font-size: 22px;
  font-style: italic;
  font-weight: 900;
}

.wordmark-text span {
  color: #bdd0d8;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  color: #d3e0e5;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.primary-nav a:not(.nav-external)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav .nav-external {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.independent-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid rgba(106, 225, 167, 0.28);
  background: rgba(105, 219, 163, 0.08);
  color: #b5efd1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(109, 224, 165, 0.1);
}

.hero {
  display: grid;
  min-height: 636px;
  padding-block: 72px 84px;
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: clamp(60px, 8vw, 120px);
}

.hero-copy {
  max-width: 710px;
}

.eyebrow {
  margin: 0 0 20px;
  color: #8ca7b4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--orange);
}

.eyebrow.dark {
  color: #70818a;
}

.eyebrow.dark span {
  color: var(--orange-dark);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(56px, 7vw, 86px);
  font-weight: 790;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.hero h1 em {
  position: relative;
  color: #b8cbd4;
  font-style: normal;
  font-weight: 420;
}

.hero h1 em::after {
  position: absolute;
  right: 2px;
  bottom: -12px;
  left: 4px;
  height: 4px;
  background:
    linear-gradient(90deg, var(--orange) 0 66%, transparent 66% 70%, var(--orange) 70% 100%);
  content: "";
  transform: skewX(-20deg);
}

.hero-intro {
  max-width: 620px;
  margin: 36px 0 30px;
  color: #c3d1d7;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.resource-search {
  position: relative;
  display: flex;
  min-height: 66px;
  max-width: 670px;
  align-items: center;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}

.search-icon {
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  margin-left: 21px;
  fill: none;
  stroke: #5b717c;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.resource-search input {
  width: 100%;
  min-width: 0;
  padding: 18px 16px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font-size: 16px;
}

.resource-search input::placeholder {
  color: #73858e;
  opacity: 1;
}

.resource-search:focus-within {
  box-shadow:
    0 0 0 3px var(--orange),
    0 20px 50px rgba(0, 0, 0, 0.16);
}

.resource-search input:focus-visible {
  outline: 0;
}

.resource-search kbd {
  flex: 0 0 auto;
  margin-right: 16px;
  padding: 3px 9px;
  border: 1px solid #d4dcda;
  border-bottom-width: 2px;
  border-radius: 3px;
  background: #f2f4f2;
  color: #687b84;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
}

.search-clear {
  flex: 0 0 auto;
  min-width: 44px;
  min-height: 44px;
  padding: 7px 8px;
  border: 0;
  background: transparent;
  color: #526872;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.search-help {
  margin: 11px 0 0;
  color: #839ca8;
  font-size: 12px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  margin-top: 27px;
  font-size: 12px;
}

.quick-links > span {
  color: #75909d;
  font-weight: 700;
  text-transform: uppercase;
}

.quick-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #d9e6eb;
  font-weight: 700;
  text-decoration-color: rgba(217, 230, 235, 0.36);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.quick-links a:hover {
  color: var(--orange);
}

.radar-card {
  position: relative;
  width: 100%;
  max-width: 430px;
  justify-self: end;
  padding: 18px;
  border: 1px solid rgba(176, 219, 226, 0.21);
  background: rgba(2, 21, 32, 0.65);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.radar-card::before,
.radar-card::after {
  position: absolute;
  width: 16px;
  height: 16px;
  content: "";
}

.radar-card::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
}

.radar-card::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
}

.radar-topline {
  display: flex;
  padding: 0 4px 14px;
  align-items: center;
  justify-content: space-between;
  color: #8ca5b0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.live-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #a5eac7;
}

.live-label i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.radar-display {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.38 / 1;
  border: 1px solid rgba(159, 205, 214, 0.14);
  background:
    linear-gradient(rgba(91, 174, 180, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 174, 180, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(38, 122, 133, 0.24), rgba(3, 24, 34, 0.9) 65%);
  background-size: 26px 26px, 26px 26px, auto;
}

.radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(90, 215, 207, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.radar-ring-one {
  width: 46%;
  aspect-ratio: 1;
}

.radar-ring-two {
  width: 82%;
  aspect-ratio: 1;
}

.radar-crosshair {
  position: absolute;
  background: rgba(90, 215, 207, 0.16);
}

.radar-crosshair-x {
  top: 50%;
  right: 8%;
  left: 8%;
  height: 1px;
}

.radar-crosshair-y {
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 1px;
}

.radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 43%;
  height: 43%;
  transform-origin: 0 0;
  animation: radar-sweep 5s linear infinite;
  background: conic-gradient(from 270deg, rgba(77, 216, 207, 0.42), transparent 23%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.radar-point {
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1px solid #dffdf7;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 4px rgba(82, 215, 207, 0.1), 0 0 12px var(--aqua);
  animation: radar-pulse 2.6s ease-in-out infinite;
}

.point-one {
  top: 23%;
  left: 29%;
}

.point-two {
  top: 32%;
  right: 20%;
  animation-delay: 900ms;
}

.point-three {
  right: 31%;
  bottom: 19%;
  animation-delay: 1.5s;
}

.radar-aircraft {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  fill: var(--orange);
  filter: drop-shadow(0 0 9px rgba(255, 176, 0, 0.24));
  transform: translate(-50%, -50%) rotate(18deg);
}

.radar-bearing,
.radar-range {
  position: absolute;
  color: #63838f;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.radar-bearing {
  top: 8px;
  left: 10px;
}

.radar-range {
  right: 10px;
  bottom: 8px;
}

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

.status-grid > div {
  min-width: 0;
  padding: 2px 10px 0;
  border-right: 1px solid var(--line-dark);
}

.status-grid > div:first-child {
  padding-left: 3px;
}

.status-grid > div:last-child {
  padding-right: 3px;
  border-right: 0;
}

.status-grid dt {
  color: #668390;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-grid dd {
  margin: 3px 0 0;
  overflow: hidden;
  color: #d8e7ec;
  font-size: 11px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-grid dd .status-dot {
  width: 5px;
  height: 5px;
  margin-right: 4px;
}

.header-stripe {
  height: 7px;
  background:
    repeating-linear-gradient(
      -45deg,
      var(--orange) 0,
      var(--orange) 18px,
      #e98c00 18px,
      #e98c00 36px
    );
}

.sources-section {
  padding-block: 108px 120px;
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: 60px;
}

.section-heading h2,
.roadmap-copy h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.filter-row {
  display: flex;
  margin: 52px 0 24px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filter-button {
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 1px;
  background: transparent;
  color: #4e626c;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
  transition:
    border-color 150ms ease,
    background 150ms ease,
    color 150ms ease;
}

.filter-button:hover {
  border-color: #8ea09f;
  color: var(--navy);
}

.filter-button.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.resource-count {
  flex: 0 0 auto;
  margin: 0;
  color: #708189;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.resource-count strong {
  color: var(--ink);
}

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

.resource-card {
  position: relative;
  display: flex;
  min-height: 430px;
  padding: 30px 28px 25px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  text-decoration: none;
  transition:
    border-color 170ms ease,
    box-shadow 170ms ease,
    transform 170ms ease;
}

.resource-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--navy);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 170ms ease;
}

.resource-card:hover {
  z-index: 1;
  border-color: #a8b5b2;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.resource-card:hover::before {
  transform: scaleX(1);
}

.resource-card.featured {
  border-color: #f0bb57;
  background:
    linear-gradient(145deg, rgba(255, 176, 0, 0.08), transparent 48%),
    var(--white);
}

.resource-card.featured::before {
  background: var(--orange);
  transform: scaleX(1);
}

.resource-card.caution-card::before {
  background: var(--orange);
}

.card-number {
  position: absolute;
  top: 26px;
  right: 25px;
  color: #a0adae;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.card-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 25px;
  place-items: center;
  border: 1px solid #ced8d5;
  background: #f3f6f4;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #1a4254;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.resource-card.featured .card-icon {
  border-color: #f2bf5c;
  background: var(--orange);
}

.resource-card.featured .card-icon svg {
  fill: var(--navy);
  stroke: var(--navy);
}

.card-kicker {
  display: flex;
  min-height: 18px;
  margin: 0 0 9px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--orange-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.card-kicker span {
  color: #809096;
  font-size: 8px;
  text-align: right;
}

.resource-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 770;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.resource-card > p:not(.card-kicker):not(.card-note) {
  margin: 0;
  color: #526872;
  font-size: 14px;
  line-height: 1.7;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.card-tags li {
  padding: 3px 7px;
  border: 1px solid #d9e1df;
  color: #64777f;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-note {
  margin: 16px 0 0;
  padding-left: 10px;
  border-left: 2px solid var(--orange);
  color: #7c5a20;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.45;
}

.card-action {
  display: flex;
  width: 100%;
  margin-top: auto;
  padding-top: 23px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e0e6e3;
  color: var(--navy);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.02em;
}

.card-action span {
  color: var(--orange-dark);
  font-size: 17px;
  transition: transform 150ms ease;
}

.resource-card:hover .card-action span {
  transform: translate(2px, -2px);
}

.empty-state {
  margin-top: 14px;
  padding: 54px 24px;
  border: 1px dashed #adbdb8;
  text-align: center;
}

.empty-state p {
  margin: 0 0 16px;
  color: var(--ink-soft);
}

.empty-state strong {
  color: var(--ink);
}

.empty-state button {
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.noscript-note {
  margin: 20px 0 0;
  padding: 13px 16px;
  border-left: 3px solid var(--orange);
  background: #fff4d9;
  color: #674a15;
  font-size: 13px;
}

.roadmap-section {
  position: relative;
  overflow: hidden;
  padding-block: 112px;
  background:
    radial-gradient(circle at 10% 85%, rgba(82, 215, 207, 0.11), transparent 28%),
    var(--navy);
  color: var(--white);
}

.roadmap-section::after {
  position: absolute;
  top: -250px;
  right: -220px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(82, 215, 207, 0.09);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 80px rgba(82, 215, 207, 0.025),
    0 0 0 160px rgba(82, 215, 207, 0.018);
}

.roadmap-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(400px, 1.08fr);
  gap: clamp(70px, 10vw, 130px);
}

.roadmap-copy h2 {
  max-width: 590px;
}

.roadmap-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 27px 0 0;
  color: #aebfc7;
  font-size: 15px;
  line-height: 1.8;
}

.independence-note {
  display: flex;
  margin-top: 34px;
  padding: 17px 18px;
  align-items: flex-start;
  gap: 13px;
  border: 1px solid rgba(173, 206, 217, 0.17);
  background: rgba(255, 255, 255, 0.035);
}

.independence-note > span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 700;
}

.independence-note p {
  margin: 0;
  color: #aebfc7;
  font-size: 12px;
  line-height: 1.65;
}

.independence-note strong {
  color: var(--white);
}

.roadmap-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap-list::before {
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 25px;
  width: 1px;
  background: rgba(174, 210, 220, 0.2);
  content: "";
}

.roadmap-list li {
  position: relative;
  display: grid;
  min-height: 126px;
  padding: 26px 0;
  align-items: start;
  grid-template-columns: 52px 1fr auto;
  gap: 18px;
  border-bottom: 1px solid rgba(174, 210, 220, 0.14);
}

.roadmap-list li:last-child {
  border-bottom: 0;
}

.roadmap-list li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid #355565;
  background: var(--navy);
  color: #718d99;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 750;
}

.roadmap-list li.is-current > span {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--navy);
}

.roadmap-list li div p {
  margin: 1px 0 3px;
  color: #718e9b;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.roadmap-list li.is-current div p {
  color: var(--orange);
}

.roadmap-list h3 {
  margin: 0 0 5px;
  font-size: 20px;
  font-weight: 720;
  letter-spacing: -0.025em;
}

.roadmap-list small {
  display: block;
  color: #8fa5af;
  font-size: 12px;
  line-height: 1.5;
}

.roadmap-list li > i {
  margin-top: 13px;
  padding: 4px 8px;
  border: 1px solid rgba(109, 224, 165, 0.25);
  background: rgba(109, 224, 165, 0.07);
  color: #a8eecb;
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.safety-note {
  border-bottom: 1px solid #d8dfdc;
  background: var(--orange);
}

.safety-inner {
  display: grid;
  min-height: 148px;
  padding-block: 28px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
}

.safety-symbol {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid var(--navy);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
}

.safety-inner h2 {
  margin: 0;
  font-size: 17px;
  letter-spacing: -0.015em;
}

.safety-inner p {
  max-width: 780px;
  margin: 4px 0 0;
  color: #604809;
  font-size: 12px;
  line-height: 1.55;
}

.safety-inner > a {
  display: inline-flex;
  min-height: 44px;
  padding: 11px 15px;
  align-items: center;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.safety-inner > a:hover {
  background: var(--navy);
  color: var(--white);
}

.site-footer {
  padding-top: 54px;
  background: #f8f9f7;
}

.footer-main {
  display: grid;
  padding-bottom: 48px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 42px;
}

.footer-wordmark {
  color: var(--navy);
}

.footer-wordmark .wordmark-mark {
  border-color: #bdc8c6;
  background: var(--white);
}

.footer-wordmark .wordmark-text span {
  color: #647982;
}

.footer-main > p {
  margin: 0;
  color: #6b7c83;
  font-size: 12px;
}

.footer-main nav {
  display: flex;
  gap: 26px;
}

.footer-main nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #48606b;
  font-size: 11px;
  font-weight: 750;
  text-underline-offset: 4px;
}

.footer-meta {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #dce2df;
  color: #829097;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-meta p {
  margin: 0;
}

.not-found-page {
  display: grid;
  min-height: 100vh;
  padding: 24px;
  place-items: center;
  background:
    radial-gradient(circle at 78% 20%, rgba(82, 215, 207, 0.12), transparent 24%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}

.not-found-card {
  width: min(100%, 640px);
  padding: clamp(32px, 7vw, 70px);
  border: 1px solid rgba(190, 220, 229, 0.2);
  background: rgba(2, 19, 29, 0.5);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.not-found-card .wordmark {
  margin-bottom: 70px;
}

.not-found-card h1 {
  margin: 0;
  font-size: clamp(42px, 8vw, 68px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.not-found-card > p:not(.eyebrow) {
  max-width: 510px;
  margin: 25px 0 30px;
  color: #aec0c8;
}

.not-found-action {
  display: inline-flex;
  padding: 12px 15px;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--orange);
  background: var(--orange);
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

@keyframes radar-sweep {
  to {
    transform: rotate(360deg);
  }
}

@keyframes radar-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.78);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1020px) {
  .independent-pill {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(315px, 0.72fr);
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(54px, 7.4vw, 74px);
  }

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

  .roadmap-grid {
    gap: 70px;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .topbar {
    min-height: 80px;
  }

  .primary-nav a:not(.nav-external) {
    display: none;
  }

  .hero {
    padding-block: 64px 72px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 700px;
  }

  .radar-card {
    max-width: 600px;
    justify-self: start;
  }

  .radar-display {
    aspect-ratio: 1.7 / 1;
  }

  .section-heading {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .filter-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .roadmap-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .roadmap-copy {
    max-width: 650px;
  }

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

  .safety-inner > a {
    grid-column: 2;
    justify-self: start;
  }

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

  .footer-main nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  .page-shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .topbar {
    gap: 18px;
  }

  .primary-nav {
    margin-left: auto;
  }

  .primary-nav .nav-external {
    padding: 8px 10px;
    font-size: 11px;
  }

  .wordmark-text strong {
    font-size: 20px;
  }

  .wordmark-mark {
    width: 32px;
    height: 32px;
  }

  .hero {
    padding-block: 50px 58px;
    gap: 46px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 64px);
    line-height: 0.99;
  }

  .hero-intro {
    margin-top: 30px;
    font-size: 16px;
  }

  .resource-search {
    min-height: 62px;
  }

  .resource-search input {
    padding-inline: 12px;
    font-size: 14px;
  }

  .resource-search kbd {
    display: none;
  }

  .quick-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .radar-card {
    padding: 14px;
  }

  .radar-display {
    aspect-ratio: 1.35 / 1;
  }

  .status-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .status-grid > div,
  .status-grid > div:first-child,
  .status-grid > div:last-child {
    display: flex;
    padding: 5px 3px;
    align-items: center;
    justify-content: space-between;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

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

  .status-grid dd {
    margin: 0;
  }

  .sources-section {
    padding-block: 78px 82px;
  }

  .section-heading h2,
  .roadmap-copy h2 {
    font-size: 42px;
  }

  .filter-row {
    margin-top: 38px;
  }

  .filter-buttons {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-button {
    padding-inline: 8px;
  }

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

  .resource-card {
    min-height: 405px;
  }

  .roadmap-section {
    padding-block: 82px;
  }

  .roadmap-list li {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }

  .roadmap-list::before {
    left: 22px;
  }

  .roadmap-list li > span {
    width: 46px;
    height: 46px;
  }

  .roadmap-list li > i {
    display: none;
  }

  .safety-inner {
    padding-block: 32px;
    align-items: start;
    grid-template-columns: 1fr;
  }

  .safety-inner > a {
    grid-column: 1;
  }

  .footer-main {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-main nav {
    grid-column: 1;
    flex-wrap: wrap;
  }

  .footer-meta {
    padding-block: 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

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

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

@media (prefers-contrast: more) {
  .site-header {
    background: #00131e;
  }

  .resource-card {
    border-color: #758b8c;
    background: var(--white);
  }

  .card-kicker span,
  .resource-card > p:not(.card-kicker):not(.card-note) {
    color: #314d58;
  }
}

@media print {
  .site-header,
  .filter-row,
  .roadmap-section,
  .safety-note,
  .site-footer,
  .noscript-note {
    display: none;
  }

  body {
    background: var(--white);
    color: #000;
  }

  .sources-section {
    width: 100%;
    padding: 0;
  }

  .resource-grid {
    display: block;
  }

  .resource-card {
    min-height: 0;
    margin-bottom: 12px;
    padding: 16px;
    break-inside: avoid;
    border-color: #999;
  }

  .card-icon,
  .card-tags,
  .card-action {
    display: none;
  }

  .resource-card::after {
    margin-top: 10px;
    content: attr(href);
    font-size: 9pt;
    word-break: break-all;
  }
}
