@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter+Tight:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Sans+Condensed:wght@500;600;700&display=swap");

:root {
  --bg: #101112;
  --bg-soft: #17191a;
  --panel: #1d2021;
  --panel-2: #242220;
  --ink: #f6f0e8;
  --muted: #b9b0a5;
  --dim: #7e776e;
  --line: #383634;
  --line-soft: #2b2a28;
  --accent: #e25448;
  --brass: #c7a35c;
  --moss: #7f9a73;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Inter Tight", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --max: 1240px;
  --gutter: 32px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(180deg, #111213 0, #151313 44%, #101112 100%);
  background-size: 80px 80px, auto;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(226,84,72,.14), transparent 32%, rgba(199,163,92,.08) 74%, transparent);
  opacity: .55;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p, h1, h2, h3, dl { margin: 0; }
.page { width: min(100% - calc(var(--gutter) * 2), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(16,17,18,.86);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--ink);
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.brand strong span { color: var(--accent); font-style: italic; }
.brand small {
  display: block;
  margin-top: 3px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--muted);
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

nav a {
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--muted);
}

nav a:hover, nav a:focus-visible {
  color: var(--ink);
  border-color: var(--line);
  outline: 0;
}

.hero { border-bottom: 1px solid var(--line); }
.hero-grid {
  min-height: 720px;
  padding: 74px 0 66px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr);
  gap: 64px;
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

h1, h2, h3 { font-weight: 400; }
h1 {
  max-width: 900px;
  font-family: var(--serif);
  font-size: 88px;
  line-height: .94;
}

.lede {
  max-width: 720px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 20px;
}

.hero-tags {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255,255,255,.035);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.control-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(29,32,33,.88);
  display: grid;
  grid-template-rows: auto 1fr;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.panel-top span:first-child { color: var(--ink); }
.panel-stack { padding: 12px 20px 20px; }
.panel-stack a {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}

.panel-stack a:last-child { border-bottom: 0; }
.panel-stack b {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.05;
}

.panel-stack span { color: var(--muted); font-size: 14px; }

.section {
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .8fr);
  gap: 72px;
  align-items: start;
}

h2 {
  font-family: var(--serif);
  font-size: 58px;
  line-height: 1;
}

.split > p, .direction .split p, .architecture .split p {
  color: var(--muted);
  font-size: 19px;
}

.thesis { background: rgba(255,255,255,.02); }

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

.product-card {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: rgba(29,32,33,.86);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 16px;
}

.kicker {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-card h3 {
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1;
}

.product-card p { color: var(--muted); font-size: 17px; }
dl {
  align-self: end;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}

dt {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
}

dd { margin: 0; color: var(--ink); font-size: 14px; }

.architecture { background: #141414; }
.system-map {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.system-map div {
  min-height: 210px;
  padding: 22px;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}

.system-map div:last-child { border-right: 0; }
.system-map span {
  display: block;
  margin-bottom: 42px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
}

.system-map b {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.system-map p { color: var(--muted); font-size: 14px; }

.governance-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 72px;
}

.principles {
  display: grid;
  gap: 12px;
}

.principles article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255,255,255,.03);
}

.principles h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 34px;
}

.principles p, .roadmap p { color: var(--muted); }

.roadmap {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.roadmap div {
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}

.roadmap div:last-child { border-right: 0; }
.roadmap span {
  display: block;
  margin-bottom: 28px;
  color: var(--moss);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer {
  padding: 44px 0;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.footer p { max-width: 680px; }
.footer a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ink);
}

@media (max-width: 1040px) {
  .hero-grid, .split, .governance-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: 0; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .system-map { grid-template-columns: 1fr 1fr; }
  .system-map div { border-bottom: 1px solid var(--line); }
  .system-map div:nth-child(2n) { border-right: 0; }
  .system-map div:last-child { grid-column: span 2; border-bottom: 0; }
}

@media (max-width: 760px) {
  :root { --gutter: 20px; }
  .header-grid { grid-template-columns: 1fr; gap: 16px; padding: 18px 0; }
  nav { justify-content: flex-start; }
  .hero-grid { padding: 52px 0; gap: 36px; }
  h1 { font-size: 56px; }
  h2 { font-size: 42px; }
  .lede, .split > p { font-size: 17px; }
  .control-panel { border-radius: 6px; }
  .panel-stack a { grid-template-columns: 1fr; gap: 6px; }
  .product-grid, .roadmap, .system-map { grid-template-columns: 1fr; }
  .product-card { min-height: 0; padding: 22px; }
  .system-map div, .roadmap div { border-right: 0; border-bottom: 1px solid var(--line); }
  .system-map div:last-child, .roadmap div:last-child { grid-column: auto; border-bottom: 0; }
  dl div { grid-template-columns: 1fr; gap: 4px; }
  .footer-grid { display: grid; }
}

@media (max-width: 420px) {
  h1 { font-size: 48px; }
  .brand strong { font-size: 34px; }
  .product-card h3 { font-size: 38px; }
}

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

body.pasko-home {
  min-width: 0;
  min-height: 100svh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 14%, rgba(55, 215, 232, 0.09), transparent 28rem),
    radial-gradient(circle at 14% 72%, rgba(244, 237, 221, 0.055), transparent 30rem),
    linear-gradient(90deg, rgba(244, 237, 221, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(244, 237, 221, 0.022) 1px, transparent 1px),
    linear-gradient(180deg, #06080b 0, #090c10 46%, #05070a 100%);
  background-size: auto, auto, 58px 58px, 58px 58px, auto;
  color: #f4eddd;
  font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.pasko-home::before {
  background:
    radial-gradient(circle at center, transparent 0, rgba(0, 0, 0, 0.28) 78%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%);
}

.pl-header {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 34px;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 54px, 1360px);
  margin: 0 auto;
  padding: 18px 0 14px;
}

.pl-brand {
  display: inline-flex;
  align-items: center;
  width: min(310px, 76vw);
  aspect-ratio: 17 / 7;
}

.pl-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pl-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 4vw, 54px);
  justify-content: flex-end;
}

.pl-nav a {
  position: relative;
  padding: 16px 0 18px;
  color: #b2b6b8;
  border: 0;
  border-radius: 0;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pl-nav a:first-child {
  color: #f4eddd;
}

.pl-nav a:first-child::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: #37d7e8;
  box-shadow: 0 0 12px rgba(55, 215, 232, 0.5);
}

.pl-nav a:hover,
.pl-nav a:focus-visible,
.pl-project-action:hover,
.pl-project-action:focus-visible {
  color: #f4eddd;
  outline: 0;
}

.pl-stage {
  display: grid;
  place-items: center;
  padding: 10px 24px 24px;
}

.pl-console {
  position: relative;
  width: min(100%, 1360px);
  overflow: hidden;
  border: 1px solid rgba(244, 237, 221, 0.18);
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(244, 237, 221, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(244, 237, 221, 0.026) 1px, transparent 1px),
    linear-gradient(135deg, rgba(24, 31, 35, 0.74), rgba(6, 9, 13, 0.92) 62%);
  background-size: 42px 42px, 42px 42px, auto;
  box-shadow:
    0 32px 110px rgba(0, 0, 0, 0.58),
    inset 0 1px 0 rgba(244, 237, 221, 0.08);
}

.pl-console::before,
.pl-console::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.pl-console::before {
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 49.8%, rgba(244, 237, 221, 0.035) 50%, transparent 50.2%),
    radial-gradient(circle at 76% 25%, rgba(55, 215, 232, 0.08), transparent 18rem);
}

.pl-console::after {
  inset: 0;
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.52);
}

.pl-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 44px;
  padding: 46px clamp(28px, 5.6vw, 76px) 40px;
}

.pl-hero-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  min-width: 0;
}

.pl-system-label,
.pl-status,
.pl-card-header span {
  color: #aeb4b6;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pl-system-label {
  display: grid;
  gap: 16px;
  width: fit-content;
}

.pl-system-label::after {
  content: "";
  width: 48px;
  height: 2px;
  background: #37d7e8;
  box-shadow: 0 0 14px rgba(55, 215, 232, 0.54);
}

.pl-hero-grid h1 {
  max-width: 100%;
  margin: 28px 0 0;
  color: #f4eddd;
  font-family: "IBM Plex Sans Condensed", "Arial Narrow", "Helvetica Neue Condensed", "Roboto Condensed", system-ui, sans-serif;
  font-size: clamp(4.2rem, 9.2vw, 8.15rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.9;
  text-wrap: balance;
  overflow-wrap: anywhere;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
}

.pl-tagline {
  margin: 0;
  color: #37d7e8;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(1.22rem, 2vw, 1.72rem);
  font-weight: 600;
  line-height: 1.2;
}

.pl-description {
  max-width: 560px;
  margin: 0;
  color: #c8c8c2;
  font-size: clamp(1rem, 1.28vw, 1.1rem);
  line-height: 1.55;
}

.pl-status {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  width: fit-content;
  margin-top: 16px;
  padding: 18px 24px;
  border: 1px solid rgba(244, 237, 221, 0.24);
  background: rgba(7, 10, 14, 0.52);
  color: #d0d0ca;
  box-shadow: inset 0 1px 0 rgba(244, 237, 221, 0.06);
}

.pl-status strong {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  color: #37d7e8;
  font-weight: 500;
}

.pl-status strong span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #37d7e8;
  box-shadow: 0 0 15px rgba(55, 215, 232, 0.65);
}

.pl-patch-instrument {
  position: relative;
  display: grid;
  place-items: center;
  align-self: center;
  justify-self: center;
  width: min(100%, 570px);
  min-height: 420px;
}

.pl-patch-instrument::before {
  content: "";
  position: absolute;
  width: min(93vw, 468px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, rgba(244, 237, 221, 0.11) 0deg 0.5deg, transparent 0.5deg 5deg),
    radial-gradient(circle, transparent 0 62%, rgba(244, 237, 221, 0.13) 62.2% 62.6%, transparent 62.8% 100%);
  opacity: 0.25;
}

.pl-patch-instrument::after {
  content: "";
  position: absolute;
  width: min(88vw, 508px);
  height: min(68vw, 350px);
  border: 1px solid rgba(244, 237, 221, 0.08);
  background:
    linear-gradient(90deg, rgba(244, 237, 221, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(244, 237, 221, 0.022) 1px, transparent 1px);
  background-size: 34px 34px;
}

.pl-patch-frame {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(100%, 432px);
  aspect-ratio: 1;
}

.pl-patch-frame::before,
.pl-patch-frame::after {
  content: "";
  position: absolute;
  inset: -18px;
  background:
    linear-gradient(#f4eddd, #f4eddd) left top / 14px 1px no-repeat,
    linear-gradient(#f4eddd, #f4eddd) left top / 1px 14px no-repeat,
    linear-gradient(#f4eddd, #f4eddd) right top / 14px 1px no-repeat,
    linear-gradient(#f4eddd, #f4eddd) right top / 1px 14px no-repeat,
    linear-gradient(#f4eddd, #f4eddd) left bottom / 14px 1px no-repeat,
    linear-gradient(#f4eddd, #f4eddd) left bottom / 1px 14px no-repeat,
    linear-gradient(#f4eddd, #f4eddd) right bottom / 14px 1px no-repeat,
    linear-gradient(#f4eddd, #f4eddd) right bottom / 1px 14px no-repeat;
  opacity: 0.58;
}

.pl-patch-frame::after {
  inset: 50% -58px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 237, 221, 0.18), transparent);
  opacity: 1;
}

.pl-mission-patch {
  position: relative;
  z-index: 1;
  width: min(100%, 350px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 30px 46px rgba(0, 0, 0, 0.58));
}

.pl-projects {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  padding: 26px clamp(28px, 5.6vw, 76px) 26px;
  border-top: 1px solid rgba(244, 237, 221, 0.17);
}

.pl-projects h2 {
  display: grid;
  grid-template-columns: 36px max-content minmax(80px, 1fr);
  gap: 18px;
  align-items: center;
  margin: 0;
  color: #bfc4c4;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.pl-projects h2::before,
.pl-projects h2::after {
  content: "";
  height: 1px;
  background: rgba(244, 237, 221, 0.18);
}

.pl-projects h2::before {
  background: #37d7e8;
  box-shadow: 0 0 12px rgba(55, 215, 232, 0.5);
}

.pl-project-grid {
  display: grid;
  gap: 16px;
}

.pl-project-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
  min-width: 0;
  min-height: 278px;
  padding: 20px;
  color: #f4eddd;
  border: 1px solid rgba(244, 237, 221, 0.2);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(35, 47, 56, 0.58), rgba(10, 15, 21, 0.82)),
    rgba(9, 12, 16, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(244, 237, 221, 0.05),
    0 18px 34px rgba(0, 0, 0, 0.2);
}

.pl-card-header {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.pl-card-icon {
  width: 52px;
  height: 52px;
  padding: 9px;
  border: 1px solid rgba(55, 215, 232, 0.66);
  color: #37d7e8;
  background: rgba(55, 215, 232, 0.04);
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.pl-card-header span {
  min-width: 0;
  color: #aeb4b6;
  font-size: 0.68rem;
}

.pl-project-card strong {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(1.3rem, 1.6vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
}

.pl-project-card p {
  margin: 0;
  color: #c0c2be;
  font-size: 0.94rem;
  line-height: 1.5;
}

.pl-project-action,
.pl-project-status {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  align-self: end;
  width: 100%;
  margin-top: 8px;
  padding: 0;
  border: 0;
  color: #37d7e8;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.84rem;
  letter-spacing: 0;
  line-height: 1.25;
}

.pl-project-status {
  color: #c7a35c;
}

.pl-project-action::after {
  content: "->";
  font-size: 1.1rem;
  line-height: 1;
}

.pl-footer {
  width: min(100% - 54px, 1360px);
  margin: 0 auto;
  padding: 0 0 28px;
  color: #aeb4b6;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.78rem;
}

@media (min-width: 760px) {
  .pl-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    min-height: 472px;
    align-items: center;
  }

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

@media (min-width: 1180px) {
  .pl-hero-grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(470px, 0.86fr);
    gap: 60px;
    min-height: 500px;
  }

  .pl-hero-grid h1 {
    font-size: clamp(5.4rem, 7.5vw, 7.65rem);
    white-space: nowrap;
  }

  .pl-project-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .pl-header {
    width: min(100% - 28px, 1360px);
    align-items: flex-start;
    padding-top: 14px;
  }

  .pl-brand {
    width: min(286px, 82vw);
  }

  .pl-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 16px 24px;
  }

  .pl-nav a {
    padding: 8px 0 11px;
    font-size: 0.68rem;
  }

  .pl-stage {
    padding: 12px 12px 22px;
  }

  .pl-hero-grid,
  .pl-projects {
    padding-inline: 18px;
  }

  .pl-hero-grid {
    gap: 30px;
    padding-top: 34px;
    padding-bottom: 30px;
  }

  .pl-hero-grid h1 {
    margin-top: 18px;
    font-size: clamp(3.2rem, 17vw, 4.6rem);
  }

  .pl-status {
    gap: 12px;
    padding: 14px 16px;
    font-size: 0.72rem;
  }

  .pl-patch-instrument {
    width: min(100%, 330px);
    min-height: 292px;
  }

  .pl-patch-instrument::before {
    width: min(78vw, 300px);
  }

  .pl-patch-instrument::after {
    width: min(88vw, 318px);
    height: min(70vw, 232px);
  }

  .pl-patch-frame {
    width: min(100%, 282px);
  }

  .pl-patch-frame::before {
    inset: -9px;
  }

  .pl-patch-frame::after {
    inset-inline: -26px;
  }

  .pl-mission-patch {
    width: min(100%, 254px);
  }

  .pl-projects h2 {
    grid-template-columns: 32px minmax(0, max-content);
  }

  .pl-projects h2::after {
    display: none;
  }

  .pl-project-card {
    min-height: 0;
  }
}

@media (max-width: 430px) {
  .pl-header,
  .pl-footer {
    width: min(100% - 24px, 1360px);
  }

  .pl-brand {
    width: min(270px, 84vw);
  }

  .pl-nav {
    gap: 12px 18px;
  }

  .pl-console {
    border-inline-color: rgba(244, 237, 221, 0.14);
  }

  .pl-card-header {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 13px;
  }

  .pl-card-icon {
    width: 46px;
    height: 46px;
  }
}
