:root {
  --ink: #172019;
  --ink-2: #222b24;
  --muted: #68716a;
  --paper: #f2f1eb;
  --white: #fbfbf7;
  --line: #d4d8d1;
  --green: #236c45;
  --green-bright: #77d298;
  --green-soft: #e2efe6;
  --red: #a53e32;
  --red-soft: #f7e6e2;
  --sand: #e8e2c7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: #e7dc9e;
}

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

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -.05em;
}

.brand span,
.kicker {
  color: var(--green);
}

.nav-links {
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-size: 12px;
}

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

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 74px;
  padding-block: 82px 96px;
}

.kicker {
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.authority-copy h2,
.closing h2 {
  margin: 0;
  letter-spacing: -.065em;
  font-weight: 640;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(50px, 5.4vw, 75px);
  line-height: .99;
}

.hero-dek {
  max-width: 680px;
  margin: 29px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -.012em;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
  transition: transform .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--ink);
  color: #fff;
}

.button.primary:hover {
  border-color: var(--green);
  background: var(--green);
}

.button.light {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.button.light:hover {
  border-color: var(--green-bright);
  background: var(--green-bright);
}

.text-link {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.text-link:hover {
  color: var(--ink);
}

.text-link span {
  margin-left: 7px;
}

.plain-facts {
  display: flex;
  gap: 20px;
  margin-top: 50px;
  color: #7a837c;
  font-size: 10px;
}

.plain-facts span::before {
  content: "✓";
  margin-right: 6px;
  color: var(--green);
}

.desk-panel {
  overflow: hidden;
  border: 1px solid #303a32;
  border-radius: 16px;
  background: var(--ink);
  color: #e8eee9;
  box-shadow: 0 28px 80px #1a261d29;
}

.desk-head {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid #354038;
}

.desk-head div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.desk-head p,
.desk-head strong,
.desk-head > span,
.desk-metrics span,
.desk-metrics strong,
.cycle-list,
.desk-denial,
.specimen-note {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}

.desk-head p {
  margin: 0;
  color: #7f8c83;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
}

.desk-head strong {
  font-size: 14px;
}

.desk-head > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #919d94;
  font-size: 8px;
}

.desk-head i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d3b866;
  box-shadow: 0 0 0 4px #d3b86619;
}

.desk-metrics {
  display: grid;
  grid-template-columns: 1.45fr .7fr .7fr;
  gap: 1px;
  background: #354038;
  border-bottom: 1px solid #354038;
}

.desk-metrics div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 13px 15px;
  background: #202a23;
}

.desk-metrics span {
  color: #76827a;
  font-size: 7px;
  text-transform: uppercase;
}

.desk-metrics strong {
  overflow: hidden;
  color: #cbd4cd;
  font-size: 9px;
  text-overflow: ellipsis;
}

.cycle-list {
  margin: 0;
  padding: 12px 20px 6px;
  list-style: none;
}

.cycle-list li {
  min-height: 47px;
  display: grid;
  grid-template-columns: 27px 1fr auto;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #303a32;
}

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

.cycle-list b {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid #465149;
  border-radius: 50%;
  color: #69766d;
  font-size: 7px;
}

.cycle-list li.done b {
  border-color: #376a49;
  color: var(--green-bright);
}

.cycle-list li.flag b {
  border-color: #74463e;
  color: #e69181;
}

.cycle-list li > span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cycle-list strong {
  font-size: 9px;
  font-weight: 700;
}

.cycle-list small {
  color: #7f8b82;
  font-size: 7px;
}

.cycle-list em {
  color: #647168;
  font-size: 7px;
  font-style: normal;
  text-transform: uppercase;
}

.cycle-list .done em {
  color: var(--green-bright);
}

.cycle-list .flag em {
  color: #e69181;
}

.desk-denial {
  margin: 10px 20px 0;
  padding: 14px;
  border: 1px solid #6b3c35;
  border-radius: 8px;
  background: #3b2926;
}

.desk-denial span {
  display: block;
  margin-bottom: 7px;
  color: #e69181;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .07em;
}

.desk-denial strong {
  font-size: 10px;
}

.desk-denial p {
  margin: 7px 0 0;
  color: #bca7a2;
  font-size: 8px;
  line-height: 1.5;
}

.specimen-note {
  margin: 12px 20px 16px;
  color: #68746b;
  font-size: 7px;
  line-height: 1.45;
}

.section {
  padding-block: 122px;
}

.thesis,
.assets {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.section-heading {
  max-width: 850px;
}

.section-heading h2 {
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 1.04;
}

.section-heading > p:last-child {
  max-width: 700px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.section-heading.compact h2 {
  font-size: clamp(38px, 4.2vw, 54px);
}

.plane-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 70px;
}

.plane-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f6f6f1;
}

.plane-card.authority-card {
  border-color: #294735;
  background: #e5efe7;
}

.plane-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plane-top span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
}

.authority-card .plane-top span {
  background: var(--green);
}

.plane-top em {
  color: var(--muted);
  font: 700 9px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  font-style: normal;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.plane-card h3 {
  max-width: 480px;
  margin: 62px 0 16px;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.04em;
}

.plane-card > p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.plane-card ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  color: #4d5750;
  font-size: 11px;
  list-style: none;
}

.plane-card li::before {
  content: "—";
  margin-right: 9px;
  color: var(--green);
}

.plane-card > small {
  margin-top: auto;
  padding-top: 34px;
  color: #7b857e;
  font: 650 8px/1.4 ui-monospace, SFMono-Regular, Consolas, monospace;
  text-transform: uppercase;
}

.loop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 68px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.loop-grid article {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f5f4ee;
}

.loop-grid article.critical {
  background: var(--green-soft);
}

.loop-grid article > span {
  color: var(--green);
  font: 700 9px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.loop-grid h3 {
  margin: 49px 0 13px;
  font-size: 20px;
  letter-spacing: -.025em;
}

.loop-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.loop-grid small {
  margin-top: auto;
  padding-top: 28px;
  color: #808981;
  font: 700 8px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  text-transform: uppercase;
}

.authority {
  background: var(--ink);
  color: #edf1ee;
}

.authority-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 94px;
}

.authority .kicker {
  color: var(--green-bright);
}

.authority-copy h2 {
  font-size: clamp(54px, 6vw, 78px);
  line-height: .96;
}

.authority-copy > p:not(.kicker) {
  max-width: 560px;
  margin: 25px 0 0;
  color: #aab5ad;
  font-size: 14px;
  line-height: 1.72;
}

.authority-rules {
  margin-top: 42px;
  border-top: 1px solid #344038;
}

.authority-rules > div {
  min-height: 76px;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #344038;
}

.authority-rules > div > span {
  color: var(--green-bright);
  font: 700 8px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.authority-rules p {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
}

.authority-rules strong {
  font-size: 11px;
}

.authority-rules small {
  color: #828f86;
  font-size: 9px;
  line-height: 1.5;
}

.permit-card {
  overflow: hidden;
  border: 1px solid #3a473e;
  border-radius: 11px;
  background: #1d2620;
  box-shadow: 0 25px 80px #0003;
}

.permit-card > header {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid #354138;
  color: #8e9a91;
  font: 650 8px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.permit-card header em {
  font-style: normal;
}

.route-line {
  min-height: 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  border-bottom: 1px solid #354138;
  color: #7d8980;
  font: 650 7px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  text-align: center;
}

.route-line strong {
  color: var(--green-bright);
}

.route-line b {
  color: #d7ded9;
}

.route-line i {
  color: #526057;
  font-style: normal;
}

.permit-card pre {
  min-height: 360px;
  margin: 0;
  padding: 30px;
  color: #cbd4cd;
  font: 500 11px/1.8 ui-monospace, SFMono-Regular, Consolas, monospace;
  white-space: pre-wrap;
}

.permit-card footer {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 18px;
  border-top: 1px solid #513630;
  background: #352522;
}

.denied-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #da7969;
  box-shadow: 0 0 0 5px #da79691c;
}

.permit-card footer p {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}

.permit-card footer strong {
  color: #e2b0a6;
  font-size: 9px;
}

.permit-card footer small {
  color: #9d7c75;
  font-size: 8px;
}

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

.asset-grid article {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #f6f6f1;
}

.asset-visual {
  height: 154px;
  overflow: hidden;
  margin: 0;
  border: 1px solid #dadcd5;
  border-radius: 8px;
  background: #ece9df;
}

.asset-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.asset-grid h3 {
  margin: 28px 0 13px;
  font-size: 18px;
  letter-spacing: -.025em;
}

.asset-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.asset-grid article > span {
  align-self: flex-start;
  margin-top: auto;
  padding: 7px 9px;
  border-radius: 5px;
  background: #e7eae4;
  color: #657069;
  font: 700 8px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  text-transform: uppercase;
}

.network-note {
  max-width: 820px;
  margin: 18px 0 0;
  color: #8b938d;
  font-size: 9px;
  line-height: 1.6;
}

.roadmap {
  margin: 64px 0 0;
  padding: 0;
  border-top: 1px solid #cbd0c9;
  list-style: none;
}

.roadmap li {
  min-height: 112px;
  display: grid;
  grid-template-columns: 90px 1fr 96px;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid #cbd0c9;
}

.roadmap li > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.roadmap li > div {
  padding-block: 20px;
}

.roadmap strong {
  font-size: 14px;
}

.roadmap p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.roadmap b {
  justify-self: end;
  padding: 7px 9px;
  border-radius: 5px;
  background: #e4e7e1;
  color: #747d76;
  font: 700 8px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  text-transform: uppercase;
}

.roadmap .current b {
  background: var(--green-soft);
  color: var(--green);
}

.closing {
  padding-block: 114px;
  background: #dfe8df;
  text-align: center;
}

.closing h2 {
  font-size: clamp(50px, 6vw, 76px);
  line-height: .98;
}

.closing > div > p:not(.kicker) {
  margin: 24px 0 34px;
  color: var(--muted);
  font-size: 14px;
}

footer.shell {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--muted);
}

footer p {
  margin: 0;
  font-size: 9px;
}

footer > span {
  justify-self: end;
  font-size: 9px;
}

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

@media (width <= 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 64px;
  }

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

  .desk-panel {
    max-width: 680px;
  }

  .authority-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .permit-card {
    max-width: 680px;
  }
}

@media (width <= 760px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 68px 84px;
  }

  .hero h1 {
    font-size: clamp(48px, 12vw, 66px);
  }

  .plane-grid,
  .asset-grid {
    grid-template-columns: 1fr;
  }

  .plane-card {
    min-height: 400px;
  }

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

@media (width <= 540px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

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

  .text-link {
    text-align: center;
  }

  .plain-facts {
    flex-direction: column;
    gap: 9px;
    margin-top: 38px;
  }

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

  .desk-metrics div:first-child {
    grid-column: 1 / -1;
  }

  .cycle-list {
    padding-inline: 14px;
  }

  .desk-denial {
    margin-inline: 14px;
  }

  .specimen-note {
    margin-inline: 14px;
  }

  .section {
    padding-block: 88px;
  }

  .section-heading h2,
  .section-heading.compact h2 {
    font-size: 39px;
  }

  .plane-card {
    min-height: 420px;
    padding: 23px;
  }

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

  .loop-grid article {
    min-height: 245px;
  }

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

  .route-line i:nth-of-type(2),
  .route-line i:nth-of-type(3),
  .route-line b,
  .route-line span:last-child {
    display: none;
  }

  .permit-card pre {
    min-height: 330px;
    padding: 24px 20px;
    font-size: 10px;
  }

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

  .roadmap b {
    grid-column: 2;
    justify-self: start;
    margin: -16px 0 18px;
  }

  footer.shell {
    grid-template-columns: 1fr;
    gap: 9px;
    padding-block: 24px;
    text-align: center;
  }

  footer > span {
    justify-self: center;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}

@supports (content-visibility: auto) {
  .thesis,
  .system,
  .authority,
  .assets,
  .status {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }
}

@media print {
  .nav-links,
  .hero-actions,
  .closing .button {
    display: none;
  }

  body,
  .closing {
    background: #fff;
    color: #000;
  }
}
