:root {
  color-scheme: dark;
  --bg: #020202;
  --bg-soft: #080808;
  --panel: rgba(18, 18, 18, .74);
  --panel-strong: rgba(22, 22, 22, .92);
  --line: rgba(255, 255, 255, .11);
  --line-strong: rgba(255, 255, 255, .18);
  --text: #f5f5f5;
  --muted: #b9b9b9;
  --dim: #767676;
  --red: #ff1212;
  --red-soft: rgba(255, 18, 18, .14);
  --green: #22d985;
  --amber: #ffb454;
  --shell: min(1120px, calc(100% - 48px));
  --radius: 8px;
  --shadow: 0 28px 90px rgba(0, 0, 0, .52);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 80% 4%, rgba(40, 133, 197, .22), transparent 28rem),
    radial-gradient(circle at 55% 32%, rgba(255, 18, 18, .12), transparent 20rem),
    var(--bg);
  color: var(--text);
}

body::after {
  content: "";
  position: fixed;
  inset: auto 0 0;
  z-index: -1;
  height: 42vh;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 18, 18, .34) 0 1px, transparent 1.4px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, .75), transparent);
}

img,
svg {
  display: block;
}

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

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

.section-pad {
  padding: 88px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--shell);
  margin: 0 auto;
  padding: 24px 0;
  transition: padding .2s ease, background .2s ease, border-color .2s ease;
}

.site-header.is-scrolled {
  width: min(1120px, calc(100% - 24px));
  margin-top: 10px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, .78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 118px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #ededed;
  font-size: .96rem;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  padding-top: 150px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(72vw, 900px);
  height: 620px;
  background:
    linear-gradient(90deg, #020202 0%, rgba(2, 2, 2, .72) 22%, rgba(2, 2, 2, .16) 58%, rgba(2, 2, 2, .02) 100%),
    linear-gradient(0deg, #020202 0%, rgba(2, 2, 2, 0) 36%),
    url("assets/hero-earth.jpg") center / cover no-repeat;
  filter: saturate(1.04) contrast(1.04);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: 36px;
  align-items: end;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 4.85rem, 4.85rem);
  line-height: .98;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 span {
  display: block;
  color: var(--red);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 3.05rem, 3.05rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 18px;
  font-size: 1.28rem;
}

.lede,
.copy-block p,
.mission-copy p,
.section-intro p,
.future p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-weight: 760;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

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

.button.primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 12px 36px rgba(255, 18, 18, .22);
}

.button.ghost {
  background: rgba(255, 255, 255, .04);
}

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #dfdfdf;
}

.value-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.value-list svg,
.benefit-panel svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-card,
.telemetry-card,
.benefit-panel,
.solution-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(26, 26, 26, .88), rgba(7, 7, 7, .78));
  box-shadow: var(--shadow);
}

.metric-card {
  align-self: end;
  padding: 22px;
  backdrop-filter: blur(12px);
}

.telemetry-card {
  align-self: end;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 18, 18, .22), transparent 12rem),
    linear-gradient(145deg, rgba(24, 8, 8, .95), rgba(4, 4, 4, .9));
  backdrop-filter: blur(12px);
}

.telemetry-window {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .045));
  color: rgba(255, 255, 255, .7);
  font-weight: 850;
}

.telemetry-window span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .18);
}

.telemetry-window span:nth-child(1) {
  background: #ff5f57;
}

.telemetry-window span:nth-child(2) {
  background: #ffbd2e;
}

.telemetry-window span:nth-child(3) {
  background: #28c840;
}

.telemetry-window strong {
  margin-left: 8px;
  font-size: .86rem;
}

.telemetry-body {
  margin: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(255, 18, 18, .1), transparent 35%),
    rgba(3, 3, 3, .72);
}

.telemetry-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 6px;
  background: rgba(255, 255, 255, .045);
}

.telemetry-toolbar span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border-radius: 5px;
  padding: 0 10px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
}

.telemetry-toolbar span:first-child {
  background: var(--red);
  color: #fff;
}

.telemetry-toolbar span:last-child {
  margin-left: auto;
  border: 1px solid rgba(34, 217, 133, .42);
  color: var(--green);
}

.telemetry-card h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 2.5rem, 2.5rem);
}

.telemetry-lede {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.6;
}

.telemetry-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 26px 0 18px;
}

.telemetry-stats div,
.telemetry-panel {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035));
}

.telemetry-stats div {
  min-width: 0;
  padding: 18px;
}

.telemetry-stats span,
.telemetry-panel span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.telemetry-stats strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(1.35rem, 2rem, 2rem);
  line-height: 1.05;
}

.telemetry-stats em {
  color: var(--dim);
  font-size: .86rem;
  font-style: normal;
  font-weight: 750;
}

.telemetry-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.telemetry-panel div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.telemetry-panel strong {
  color: var(--text);
}

.card-heading,
.metric-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.card-heading h2 {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.card-heading span,
.metric-row p,
.metric-grid span,
.metric-grid em {
  color: var(--muted);
  font-size: .77rem;
  font-style: normal;
}

.metric-row strong {
  font-size: 2rem;
  line-height: 1;
}

.delta,
.metric-grid em {
  color: var(--red);
  font-weight: 800;
}

.chart {
  height: 180px;
  margin: 18px 0;
  padding: 10px 0 0;
  border-bottom: 1px solid var(--line);
  background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 100% 40px;
}

.chart svg {
  width: 100%;
  height: 100%;
}

.chart .area {
  fill: url("#chart-fill");
}

.chart .line {
  fill: none;
  stroke: var(--red);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.metric-grid div {
  min-width: 0;
  padding: 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .04);
}

.metric-grid strong {
  display: block;
  margin: 7px 0 3px;
  font-size: 1.22rem;
}

.metric-grid div:first-child em {
  color: var(--green);
}

.problem {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .74fr);
  gap: 80px;
  align-items: start;
}

.copy-block {
  padding-top: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-weight: 800;
  transition: transform .18s ease;
}

.text-link::after {
  content: "->";
  font-weight: 900;
}

.mission,
.solutions,
.future {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(250px, .8fr) minmax(280px, 1fr) minmax(260px, .74fr);
  gap: 34px;
  align-items: center;
}

.chip-visual {
  position: relative;
  min-height: 310px;
  display: grid;
  place-items: center;
}

.chip-visual::before {
  content: "";
  position: absolute;
  inset: 9% 0;
  background: radial-gradient(circle, rgba(255, 18, 18, .34), transparent 62%);
  filter: blur(14px);
}

.chip-visual img {
  position: relative;
  width: 100%;
  max-width: 450px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 18, 18, .16);
}

.benefit-panel {
  padding: 24px;
}

.benefit-panel p {
  margin-bottom: 22px;
  font-weight: 800;
  line-height: 1.5;
}

.benefit-panel ul,
.solution-card ul {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.benefit-panel li {
  display: flex;
  gap: 14px;
}

.benefit-panel strong,
.benefit-panel span span {
  display: block;
}

.benefit-panel span {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}

.benefit-panel strong {
  margin-bottom: 3px;
  color: var(--text);
  font-size: .98rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: minmax(250px, .9fr) repeat(2, minmax(260px, .7fr));
  gap: 18px;
  align-items: stretch;
}

.section-intro {
  padding-right: 26px;
}

.solution-card {
  padding: 26px;
}

.solution-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-card ul {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.48;
}

.solution-card li {
  position: relative;
  padding-left: 20px;
}

.solution-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--red);
  border-bottom: 1.5px solid var(--red);
  transform: rotate(45deg);
}

.coming-soon {
  margin: 0;
  color: var(--red);
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.55;
}

.future {
  position: relative;
  overflow: hidden;
  padding-bottom: 68px;
}

.future-grid {
  display: grid;
  grid-template-columns: minmax(280px, 760px);
  gap: 24px;
  align-items: end;
}

.future-stat {
  min-height: 112px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  padding: 18px 10px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.future-stat strong {
  color: var(--text);
  font-size: 1.05rem;
}

.future-stat span {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-inner img {
  width: 86px;
}

.footer-copy {
  display: grid;
  gap: 4px;
}

.footer-copy p {
  margin: 0;
}

.footer-inner a {
  margin-left: auto;
  color: var(--text);
}

.mission-article {
  position: relative;
  min-height: 100vh;
  padding-top: 160px;
  overflow: hidden;
}

.mission-hero-media {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(58vw, 760px);
  height: 520px;
  background:
    linear-gradient(90deg, #020202 0%, rgba(2, 2, 2, .58) 44%, rgba(2, 2, 2, .06) 100%),
    linear-gradient(0deg, #020202 0%, rgba(2, 2, 2, 0) 42%),
    url("assets/hero-earth.jpg") center / cover no-repeat;
  opacity: .6;
}

.article-shell {
  position: relative;
  max-width: 880px;
}

.article-shell h1 {
  max-width: 760px;
  margin-bottom: 20px;
}

.article-lede {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1.58;
}

.article-body {
  margin: 46px 0 30px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(18, 18, 18, .84), rgba(6, 6, 6, .72));
  box-shadow: var(--shadow);
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding-left: 1.2rem;
}

.article-close {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 28px;
  color: var(--red);
  font-size: 1.18rem;
}

@media (max-width: 920px) {
  :root {
    --shell: min(100% - 32px, 760px);
  }

  .section-pad {
    padding: 68px 0;
  }

  .site-header {
    padding: 18px 0;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .04);
    color: #fff;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: opacity .18s ease, transform .18s ease;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: none;
    width: min(280px, calc(100vw - 32px));
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .site-nav a {
    padding: 10px 6px;
  }

  .hero {
    min-height: 0;
    padding-top: 128px;
  }

  .hero-media {
    width: 100%;
    height: 520px;
    opacity: .78;
    background:
      linear-gradient(90deg, #020202 0%, rgba(2, 2, 2, .66) 45%, rgba(2, 2, 2, .12) 100%),
      linear-gradient(0deg, #020202 0%, rgba(2, 2, 2, 0) 42%),
      url("assets/hero-earth.jpg") center top / cover no-repeat;
  }

  .hero-grid,
  .split,
  .mission-grid,
  .solutions-grid,
  .future-grid {
    grid-template-columns: 1fr;
  }

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

  h1 {
    font-size: 3.4rem;
  }

  .metric-card,
  .telemetry-card {
    margin-top: 32px;
  }

  .telemetry-stats {
    grid-template-columns: 1fr;
  }

  .copy-block {
    padding-top: 0;
  }

  .mission-grid,
  .solutions-grid {
    gap: 22px;
  }

  .section-intro {
    padding-right: 0;
  }

  .future-stat {
    min-height: 92px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .mission-article {
    padding-top: 128px;
  }

  .mission-hero-media {
    width: 100%;
    height: 420px;
    opacity: .48;
  }

  .footer-inner {
    flex-wrap: wrap;
  }

  .footer-inner a {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: min(100% - 24px, 520px);
  }

  .brand img {
    width: 92px;
  }

  h1 {
    font-size: 2.78rem;
  }

  h2 {
    font-size: 2rem;
  }

  .lede,
  .copy-block p,
  .mission-copy p,
  .section-intro p,
  .future p {
    font-size: 1rem;
  }

  .hero-actions,
  .value-list {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .metric-card,
  .telemetry-card,
  .benefit-panel,
  .solution-card {
    padding: 18px;
  }

  .telemetry-card h2 {
    font-size: 2rem;
  }

  .telemetry-panel div {
    display: grid;
    gap: 4px;
  }

  .metric-row {
    display: grid;
    gap: 8px;
  }

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

  .chart {
    height: 150px;
  }

  .chip-visual {
    min-height: 230px;
  }

  .article-body {
    padding: 22px;
  }

  .article-lede {
    font-size: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
