:root {
  --ink: #08090a;
  --panel: #111315;
  --white: #f4f5f2;
  --muted: #a6aaa7;
  --rule: #303432;
  --accent: #e4f222;
  --gutter: clamp(22px, 5vw, 88px);
  --max: 1600px;
  color-scheme: dark;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--white);
  background: var(--ink);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
a:hover {
  color: var(--accent);
}
p {
  margin: 0 0 1.25em;
  color: var(--muted);
  max-width: 68ch;
}
h1,
h2,
h3 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: -0.055em;
  margin: 0;
}
h1 {
  font-size: clamp(54px, 7.6vw, 118px);
}
h2 {
  font-size: clamp(34px, 4vw, 62px);
  margin-bottom: 30px;
}
h3 {
  font-size: clamp(23px, 2.1vw, 31px);
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
img {
  max-width: 100%;
  display: block;
}
main,
footer,
.header {
  max-width: var(--max);
  margin-inline: auto;
}
.header {
  padding: 28px var(--gutter);
  display: flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  z-index: 10;
}
.brand {
  flex: none;
}
.brand img {
  width: 120px;
  height: auto;
}
.header-label {
  font-size: 11px;
  line-height: 1.3;
  color: var(--muted);
  max-width: 100px;
}
.header nav {
  margin-left: auto;
  display: flex;
  gap: 26px;
  font-size: 13px;
  align-items: center;
}
.back {
  border-left: 1px solid var(--rule);
  padding-left: 24px;
}
.menu-toggle {
  display: none;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--rule);
  padding: 8px 14px;
  cursor: pointer;
}
.skip {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--accent);
  color: var(--ink);
  padding: 12px;
}
.skip:focus {
  top: 12px;
}
.hero {
  padding: 68px var(--gutter) 44px;
  position: relative;
  isolation: isolate;
  min-height: 700px;
  overflow: hidden;
}
.eyebrow,
.section-label,
.caption,
.status {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow {
  color: var(--muted);
  margin-bottom: 44px;
}
.hero h1 {
  position: relative;
  z-index: 1;
  animation: enter 0.65s ease-out both;
}
.hero-corporate h1 {
  font-size: clamp(64px, 9.5vw, 148px);
  max-width: 1100px;
}
.amp {
  color: var(--muted);
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}
.hero-bottom > p {
  font-size: 18px;
  max-width: 610px;
  margin: 0;
}
.actions {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-shrink: 0;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 16px 23px;
  border: 1px solid var(--rule);
  font-size: 14px;
  white-space: nowrap;
  border-radius: 4px;
}
.primary {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}
.primary:hover {
  color: var(--ink);
  background: #f0ff32;
  transform: translateY(-2px);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--rule);
  padding: 9px 0;
  font-size: 14px;
}
.button,
.text-link,
.direction {
  transition:
    background 0.2s,
    transform 0.2s,
    color 0.2s;
}
.hero-coordinate {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--rule);
  padding-top: 15px;
  color: var(--muted);
  font:
    11px ui-monospace,
    monospace;
}
.hero-coordinate span:last-child {
  font-size: 22px;
}
.section {
  margin: 0 var(--gutter);
  padding: 90px 0;
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 36px;
  border-top: 1px solid var(--rule);
}
.section-label {
  color: var(--muted);
  padding-top: 8px;
}
.section-body {
  min-width: 0;
}
.lead {
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.55;
  max-width: 850px;
}
.directions {
  border-top: 1px solid var(--rule);
}
.direction {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 24px;
  padding: 38px 0;
  border-bottom: 1px solid var(--rule);
}
.direction h2 {
  margin: 20px 0 24px;
}
.direction p {
  font-size: 16px;
  max-width: 550px;
  margin: 0;
}
.direction .caption {
  color: var(--muted);
}
.direction-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  flex: none;
}
.direction-end > span:last-child {
  font-size: 48px;
  line-height: 1;
}
.mono {
  font:
    12px/1.7 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  letter-spacing: 0;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 52px;
}
.principles article {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}
.principles p {
  font-size: 15px;
}
.company-row {
  padding: 30px 0;
  border-bottom: 1px solid var(--rule);
}
.company-row h3 {
  margin-bottom: 12px;
}
.company-row p {
  margin-bottom: 10px;
}
.contact-section {
  padding-block: 90px 110px;
}
.contact-link {
  font-size: clamp(27px, 4vw, 64px);
  letter-spacing: -0.045em;
  display: inline-flex;
  gap: 30px;
  border-bottom: 1px solid var(--rule);
  line-height: 1.4;
  margin: 10px 0 26px;
  overflow-wrap: anywhere;
}
.small {
  font-size: 13px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 55px;
}
.footer-thesis {
  font:
    500 clamp(36px, 5vw, 68px)/1.08 "Helvetica Neue",
    Arial,
    sans-serif;
  letter-spacing: -0.045em;
  color: var(--white);
  margin: 0;
}
.to-top {
  font-size: 26px;
  border: 1px solid var(--rule);
  width: 52px;
  height: 52px;
  text-align: center;
  line-height: 50px;
}
footer {
  padding: 65px var(--gutter) 28px;
  background: var(--panel);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 55px;
}
.footer-grid a {
  display: block;
  font-size: 14px;
  margin-top: 10px;
}
.footer-grid .caption {
  margin: 0 0 20px;
}
.footer-bottom {
  border-top: 1px solid var(--rule);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 11px;
}
.muted {
  color: var(--muted);
}
.hero-ned {
  min-height: 670px;
}
.hero-ned h1 {
  margin-top: 80px;
}
.land-grid {
  position: absolute;
  right: 0;
  top: 0;
  width: 56%;
  height: 100%;
  z-index: -1;
  opacity: 0.45;
  background:
    repeating-linear-gradient(0deg, transparent 0 89px, #353c37 90px),
    repeating-linear-gradient(90deg, transparent 0 89px, #353c37 90px);
  transform: skewY(-18deg) translate(18%, -3%);
  mask-image: linear-gradient(90deg, transparent, #000);
}
.land-grid i {
  position: absolute;
  border: 1px solid #7e887d;
  inset: 15% 12% 30% 28%;
}
.land-grid i:nth-child(2) {
  inset: 40% 45% 10% 0;
}
.land-grid i:nth-child(3) {
  inset: 20% -10% 50% 65%;
}
.editorial-list {
  margin-top: 40px;
}
.editorial-list article {
  border-top: 1px solid var(--rule);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.editorial-list h3 {
  margin: 0;
}
.editorial-list p {
  margin: 0;
}
.process {
  padding: 0;
  list-style: none;
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}
.process li {
  counter-increment: process;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
}
.process li:before {
  content: "0" counter(process);
  display: block;
  color: var(--muted);
  font:
    12px ui-monospace,
    monospace;
  margin-bottom: 24px;
}
.details {
  margin: 35px 0;
}
.details > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  gap: 20px;
}
.details dt {
  color: var(--muted);
  font-size: 13px;
}
.details dd {
  margin: 0;
  font-size: 15px;
  overflow-wrap: anywhere;
}
.hero-tech {
  min-height: 700px;
}
.hero-tech h1 {
  font-size: clamp(48px, 6.3vw, 94px);
  max-width: 950px;
  margin-top: 60px;
}
.orbital {
  position: absolute;
  right: -8%;
  top: 0;
  width: 70%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.42;
  mask-image: linear-gradient(90deg, transparent, #000 35%);
}
.hero-tech:after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  z-index: -1;
  background: linear-gradient(transparent, var(--ink));
}
.hero-tech .hero-bottom p {
  max-width: 580px;
}
.product {
  padding: 30px 0;
}
.status {
  display: inline-block;
  border: 1px solid var(--rule);
  padding: 6px 12px;
  color: var(--muted);
  margin-bottom: 30px;
}
.document {
  max-width: 1100px;
  padding: 70px var(--gutter) 100px;
  margin: 0 auto;
}
.document h1 {
  font-size: clamp(39px, 5.5vw, 76px);
  margin-bottom: 30px;
  overflow-wrap: anywhere;
}
.document .lead {
  margin-bottom: 50px;
}
.document-body h2 {
  font-size: clamp(27px, 3vw, 40px);
  margin-top: 54px;
  margin-bottom: 22px;
  letter-spacing: -0.035em;
}
.document-body h3 {
  font-size: 24px;
  margin-top: 32px;
}
.document-body a:not(.text-link) {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.document-body li {
  color: var(--muted);
  margin-bottom: 12px;
}
.document-body .details dd {
  color: var(--white);
}
.document-body .company-row {
  margin-block: 20px;
}
.document-body .company-row h3 {
  color: var(--white);
}
@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 1700px) {
  body {
    border-inline: 1px solid var(--rule);
  }
  .hero {
    min-height: 800px;
  }
}
@media (max-width: 1100px) {
  .header-label {
    display: none;
  }
  .header nav {
    gap: 20px;
  }
  .section {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 25px;
  }
  .hero-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }
  .hero {
    min-height: 650px;
  }
  .direction-end .mono {
    font-size: 10px;
  }
  .principles {
    gap: 24px;
  }
  .hero-ned h1 {
    margin-top: 50px;
  }
  .hero-tech h1 {
    margin-top: 40px;
  }
}
@media (max-width: 760px) {
  .header {
    padding-block: 21px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .brand img {
    width: 105px;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .header nav {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 14px 0 0;
    gap: 15px 22px;
  }
  .header nav {
    display: none;
  }
  .header nav.open {
    display: flex;
  }
  .header nav a {
    padding: 8px 0;
  }
  .back {
    border: 0;
    padding-left: 0;
  }
  .hero {
    padding-top: 44px;
    min-height: auto;
    padding-bottom: 46px;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 33px;
    max-width: 95%;
  }
  .hero-corporate h1 {
    font-size: clamp(51px, 11.8vw, 88px);
    letter-spacing: -0.065em;
  }
  .hero-bottom {
    margin-top: 36px;
  }
  .hero-bottom > p {
    font-size: 16px;
  }
  .actions {
    gap: 18px;
    flex-wrap: wrap;
  }
  .button {
    padding: 13px 17px;
    font-size: 13px;
    gap: 24px;
  }
  .section {
    padding: 56px 0;
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .section-label {
    font-size: 10px;
  }
  .section h2 {
    margin-bottom: 25px;
  }
  .lead {
    font-size: 19px;
  }
  .direction {
    flex-direction: column;
    padding: 28px 0;
  }
  .direction-end {
    flex-direction: row;
    align-items: center;
  }
  .direction-end > span:last-child {
    font-size: 30px;
  }
  .direction-end .mono {
    font-size: 12px;
  }
  .direction h2 {
    font-size: 39px;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
  }
  .principles article {
    padding-top: 23px;
  }
  .principles h3 {
    margin-bottom: 12px;
  }
  .company-row {
    padding: 23px 0;
  }
  .contact-link {
    font-size: clamp(23px, 6vw, 38px);
    gap: 15px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
  .footer-thesis {
    font-size: 38px;
  }
  .footer-top {
    padding-bottom: 40px;
  }
  .hero-ned h1 {
    font-size: clamp(40px, 8vw, 60px);
    margin-top: 60px;
  }
  .land-grid {
    opacity: 0.3;
    width: 85%;
  }
  .editorial-list article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 0;
  }
  .process {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .details > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .hero-tech h1 {
    font-size: clamp(38px, 7.9vw, 60px);
    margin-top: 90px;
  }
  .orbital {
    right: -30%;
    width: 125%;
    height: 470px;
    opacity: 0.38;
  }
  .hero-tech .hero-bottom {
    margin-top: 45px;
  }
  .document {
    padding-top: 48px;
    padding-bottom: 60px;
  }
  .document .lead {
    margin-bottom: 32px;
  }
  .document-body h2 {
    margin-top: 38px;
  }
  .to-top {
    width: 42px;
    height: 42px;
    line-height: 40px;
  }
  .footer-grid a {
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
@media print {
  .header,
  footer,
  .menu-toggle {
    display: none;
  }
  body {
    color: #000;
    background: white;
  }
  .document {
    padding: 0;
  }
  p,
  .muted,
  .lead {
    color: #222;
  }
  a {
    color: #000;
  }
}
