:root {
  --carbon: #111716;
  --carbon-2: #19211f;
  --carbon-3: #25302d;
  --mint: #67f6bd;
  --aqua: #46c8d3;
  --cream: #f4f3ec;
  --white: #fff;
  --text: #e9efec;
  --muted: #8e9b96;
  --line: rgba(255, 255, 255, .14);
  --page: min(1380px, calc(100% - 52px));
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--carbon);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

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

.container {
  width: var(--page);
  margin-inline: auto;
}

.skip {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--carbon);
  background: var(--mint);
  transform: translateY(-150%);
}

.skip:focus {
  transform: none;
}

.section-code {
  margin: 0 0 17px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .98;
}

/* Header */

.system-bar {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: #0b100f;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.system-bar .container {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.system-status,
.system-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mint);
}

.status-dot::before {
  width: 6px;
  height: 6px;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
  content: "";
}

.system-bar a {
  text-decoration: none;
}

.header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(17, 23, 22, .97);
}

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

.logo img {
  width: 220px;
  filter: brightness(0) invert(1);
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 42px);
}

.nav a {
  position: relative;
  color: #c0cbc6;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.nav a::before {
  position: absolute;
  top: 50%;
  left: -13px;
  width: 4px;
  height: 4px;
  background: var(--mint);
  content: "";
  opacity: 0;
  transform: translateY(-50%);
}

.nav a:hover {
  color: var(--white);
}

.nav a:hover::before {
  opacity: 1;
}

.header-actions {
  display: flex;
  gap: 8px;
}

.header-actions button,
.header-actions a {
  display: grid;
  min-width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.header-actions a {
  min-width: 74px;
  border-color: var(--mint);
  color: var(--carbon);
  background: var(--mint);
}

.menu-button {
  display: none !important;
}

.mobile-nav {
  position: fixed;
  z-index: 45;
  inset: 116px 0 0;
  padding: 20px 25px 45px;
  color: var(--text);
  background: var(--carbon);
  overflow-y: auto;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav details {
  border-bottom: 1px solid var(--line);
}

.mobile-nav summary {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 600;
  list-style: none;
}

.mobile-nav summary::after {
  color: var(--mint);
  content: "+";
  font-family: var(--mono);
}

.mobile-nav details[open] summary::after {
  content: "−";
}

.mobile-nav div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 22px;
  padding-bottom: 17px;
}

.mobile-nav a {
  padding: 8px 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  text-decoration: none;
}

/* Hero */

.hero {
  position: relative;
  padding: 42px 0 0;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  opacity: .22;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .88fr;
  border: 1px solid var(--line);
  background: var(--carbon);
}

.hero-copy {
  display: flex;
  min-height: 640px;
  flex-direction: column;
  justify-content: center;
  padding: 65px clamp(38px, 5.5vw, 78px);
  border-right: 1px solid var(--line);
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-kicker::before {
  width: 34px;
  height: 1px;
  background: var(--mint);
  content: "";
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 500;
  letter-spacing: -.07em;
  line-height: .9;
}

.hero h1 span {
  color: var(--mint);
}

.hero-copy > p {
  max-width: 620px;
  margin: 30px 0 38px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.primary-action {
  display: inline-flex;
  min-height: 53px;
  align-items: center;
  gap: 34px;
  padding: 0 20px;
  color: var(--carbon);
  background: var(--mint);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-action span {
  font-size: 17px;
}

.secondary-action {
  color: var(--text);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-console {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-rows: auto 1fr auto;
  background: var(--carbon-2);
}

.console-head {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.console-head span:last-child {
  color: var(--mint);
}

.console-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
}

.capital {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.capital small,
.graph-label,
.console-programs small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.capital strong {
  display: block;
  margin-top: 12px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: clamp(39px, 5vw, 67px);
  font-weight: 500;
  letter-spacing: -.06em;
}

.graph {
  position: relative;
  height: 190px;
  margin: 30px 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 100% 48px;
}

.graph svg {
  position: absolute;
  inset: 14px 0 0;
  width: 100%;
  height: calc(100% - 14px);
  overflow: visible;
}

.graph path {
  fill: none;
  stroke: var(--mint);
  stroke-width: 2;
}

.graph circle {
  fill: var(--carbon-2);
  stroke: var(--mint);
  stroke-width: 2;
}

.graph-label {
  position: absolute;
  top: 0;
  left: 0;
}

.console-programs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.console-programs div {
  min-height: 95px;
  padding: 14px;
  border: 1px solid var(--line);
}

.console-programs strong {
  display: block;
  margin-top: 20px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 500;
}

.console-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.console-foot a {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.console-foot a:last-child {
  border-right: 0;
}

.console-foot a:hover {
  color: var(--carbon);
  background: var(--mint);
}

.live-strip {
  position: relative;
  display: grid;
  grid-template-columns: 170px repeat(3, 1fr);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--carbon-2);
}

.live-strip > div,
.live-strip > a {
  min-height: 92px;
  padding: 19px;
  border-right: 1px solid var(--line);
}

.live-strip > *:last-child {
  border-right: 0;
}

.live-label {
  color: var(--carbon);
  background: var(--aqua);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.live-label strong {
  display: block;
  margin-top: 10px;
  font-size: 15px;
}

.live-strip a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
}

.live-strip a small {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

/* Route selector */

.routes {
  padding: 115px 0;
  background: var(--cream);
  color: var(--carbon);
}

.routes-head {
  display: grid;
  grid-template-columns: 1fr .55fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 52px;
}

.routes .section-code {
  color: #248867;
}

.routes-head > p {
  margin: 0 0 5px;
  color: #69716d;
  font-size: 14px;
  line-height: 1.75;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #aeb5b1;
  border-left: 1px solid #aeb5b1;
}

.route {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid #aeb5b1;
  border-bottom: 1px solid #aeb5b1;
  text-decoration: none;
  transition: color .2s, background .2s;
}

.route:hover {
  color: var(--text);
  background: var(--carbon);
}

.route-code {
  color: #248867;
  font-family: var(--mono);
  font-size: 9px;
}

.route h3 {
  margin: auto 0 15px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -.035em;
}

.route p {
  min-height: 58px;
  margin: 0;
  color: #747d78;
  font-size: 12px;
  line-height: 1.55;
}

.route:hover p {
  color: var(--muted);
}

.route-arrow {
  margin-top: 23px;
  color: #248867;
  font-family: var(--mono);
  font-size: 18px;
}

.route:hover .route-code,
.route:hover .route-arrow {
  color: var(--mint);
}

/* Programs */

.programs {
  padding: 110px 0;
  background: var(--carbon);
}

.programs-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}

.programs-head > a {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
}

.program-table {
  border-top: 1px solid var(--line);
}

.program-row {
  display: grid;
  min-height: 112px;
  grid-template-columns: 70px 1.1fr .75fr 80px;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.program-row:hover {
  background: var(--carbon-2);
}

.program-id {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 10px;
}

.program-row h3 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 37px);
  font-weight: 500;
  letter-spacing: -.04em;
}

.program-row p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.program-status {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 8px;
  text-align: right;
  text-transform: uppercase;
}

/* Impact */

.impact {
  padding: 105px 0;
  color: var(--carbon);
  background: var(--mint);
}

.impact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}

.impact .section-code {
  color: #21634f;
}

.impact-copy p:last-child {
  max-width: 500px;
  margin: 29px 0 0;
  color: #355a4c;
  font-size: 14px;
  line-height: 1.75;
}

.metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(17, 23, 22, .35);
  border-left: 1px solid rgba(17, 23, 22, .35);
}

.metric {
  min-height: 190px;
  padding: 26px;
  border-right: 1px solid rgba(17, 23, 22, .35);
  border-bottom: 1px solid rgba(17, 23, 22, .35);
}

.metric strong {
  display: block;
  margin-bottom: 28px;
  font-family: var(--mono);
  font-size: clamp(36px, 4.5vw, 63px);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: 1;
}

.metric span {
  max-width: 170px;
  display: block;
  color: #355a4c;
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.5;
  text-transform: uppercase;
}

/* Media */

.media {
  padding: 110px 0;
  background: var(--carbon-2);
}

.media-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 45px;
}

.media-head a {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 9px;
  text-decoration: none;
  text-transform: uppercase;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
}

.main-story {
  border: 1px solid var(--line);
  background: var(--carbon);
}

.main-story img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  filter: saturate(.7) contrast(1.06);
}

.main-story-body {
  padding: 30px 33px 36px;
}

.meta {
  display: flex;
  gap: 13px;
  margin-bottom: 16px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.meta span {
  color: var(--mint);
}

.main-story h3 {
  max-width: 690px;
  margin: 0;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.25;
}

.main-story a,
.story a {
  text-decoration: none;
}

.stories {
  display: grid;
  gap: 14px;
}

.story {
  display: grid;
  grid-template-columns: 170px 1fr;
  border: 1px solid var(--line);
  background: var(--carbon);
}

.story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.65);
}

.story-body {
  padding: 24px;
  border-left: 1px solid var(--line);
}

.story h3 {
  margin: 28px 0 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
}

/* Contact and footer */

.contact {
  border-top: 1px solid var(--line);
  background: var(--carbon);
}

.contact-grid {
  display: grid;
  min-height: 230px;
  grid-template-columns: 1fr 320px;
  align-items: stretch;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 50px;
}

.contact h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 71px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .98;
}

.contact h2 span {
  color: var(--mint);
}

.contact-actions {
  display: grid;
  grid-template-rows: 1fr 1fr;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-actions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-actions a:last-child {
  border-bottom: 0;
}

.contact-actions a:hover {
  color: var(--carbon);
  background: var(--mint);
}

.footer {
  padding: 62px 0 28px;
  border-top: 1px solid var(--line);
  background: #0b100f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .65fr);
  gap: 50px;
  padding-bottom: 54px;
}

.footer-brand img {
  width: 215px;
  margin-bottom: 23px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 280px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.footer h3 {
  margin: 0 0 18px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li {
  margin: 10px 0;
}

.footer a {
  color: var(--muted);
  font-size: 11px;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 21px;
  border-top: 1px solid var(--line);
  color: #5e6a65;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

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

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

  .header-actions .search,
  .header-actions .services-link {
    display: none;
  }

  .menu-button {
    display: grid !important;
  }

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

  .hero-copy {
    min-height: 560px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-console {
    min-height: 560px;
  }

  .live-strip {
    grid-template-columns: 1fr 1fr;
  }

  .live-strip > div,
  .live-strip > a {
    border-bottom: 1px solid var(--line);
  }

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

  .impact-grid {
    gap: 50px;
  }

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

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

@media (max-width: 760px) {
  :root {
    --page: calc(100% - 28px);
  }

  .system-bar .container {
    min-height: 30px;
  }

  .system-status > span:last-child,
  .system-links a:first-child {
    display: none;
  }

  .header-grid {
    min-height: 74px;
  }

  .logo img {
    width: 185px;
  }

  .mobile-nav {
    inset: 104px 0 0;
  }

  .hero {
    padding-top: 16px;
  }

  .hero-copy {
    min-height: 530px;
    padding: 48px 26px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 76px);
  }

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

  .primary-action {
    justify-content: space-between;
  }

  .console-body {
    padding: 25px;
  }

  .console-programs {
    grid-template-columns: 1fr;
  }

  .console-programs div {
    min-height: 75px;
  }

  .console-programs strong {
    margin-top: 12px;
  }

  .live-strip {
    grid-template-columns: 1fr;
  }

  .live-strip > * {
    border-right: 0 !important;
  }

  .routes,
  .programs,
  .impact,
  .media {
    padding: 80px 0;
  }

  .routes-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .route {
    min-height: 250px;
  }

  .programs-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .program-row {
    min-height: 135px;
    grid-template-columns: 45px 1fr 55px;
    gap: 14px;
  }

  .program-row p {
    display: none;
  }

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

  .metrics {
    margin-top: 12px;
  }

  .metric {
    min-height: 160px;
    padding: 20px;
  }

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

  .main-story img {
    height: 270px;
  }

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

  .contact-copy {
    min-height: 240px;
    padding-right: 0;
  }

  .contact-actions {
    min-height: 160px;
    border-top: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 25px;
  }

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

@media (max-width: 440px) {
  .system-links a:nth-child(2) {
    display: none;
  }

  .mobile-nav div {
    grid-template-columns: 1fr;
  }

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

  .console-foot {
    grid-template-columns: 1fr;
  }

  .console-foot a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .story img {
    height: 190px;
  }

  .story-body {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}
