:root {
  color-scheme: dark;
  --ink: #f6f8f2;
  --muted: #c5cec3;
  --soft: #89958c;
  --bg: #07100f;
  --bg-2: #0e1512;
  --panel: rgba(7, 18, 16, 0.74);
  --panel-solid: #111a16;
  --line: rgba(222, 236, 216, 0.2);
  --green: #91f2a7;
  --green-dark: #1d8f5a;
  --yellow: #f2cc72;
  --sky: #8ec8ff;
  --shadow: rgba(0, 0, 0, 0.46);
  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;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

body,
button,
a {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 14px auto 0;
  padding: 10px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 13, 12, 0.78);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: block;
  border-radius: 12px;
  filter: drop-shadow(0 0 22px rgba(145, 242, 167, 0.2));
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand strong {
  font-size: 1.04rem;
  font-weight: 860;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.site-nav a,
.nav-action,
.secondary-action,
.secondary-button {
  min-height: 42px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a {
  padding: 0 14px;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.nav-action,
.secondary-button {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.nav-action {
  padding: 0 14px;
  gap: 8px;
}

.nav-action svg,
.primary-action svg {
  width: 20px;
  height: 20px;
}

.nav-action path,
.primary-action path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: end;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 8, 9, 0.95) 0%, rgba(5, 17, 16, 0.78) 46%, rgba(3, 10, 11, 0.22) 100%),
    linear-gradient(180deg, rgba(2, 8, 9, 0.44) 0%, rgba(2, 8, 9, 0.22) 52%, rgba(7, 16, 15, 0.95) 100%);
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 132px 0 9vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(318px, 420px);
  align-items: end;
  gap: 54px;
}

.hero-copy {
  min-width: 0;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(4rem, 9vw, 8.6rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 18px 50px var(--shadow);
}

.lede {
  max-width: 620px;
  margin-bottom: 28px;
  color: #e1e9df;
  font-size: clamp(1.12rem, 1.8vw, 1.36rem);
  line-height: 1.55;
  text-shadow: 0 10px 28px var(--shadow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-action {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  color: #04120a;
  background: linear-gradient(135deg, var(--green), var(--yellow));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 850;
  box-shadow: 0 18px 38px rgba(65, 220, 125, 0.22);
}

.primary-action:hover {
  filter: saturate(1.05);
  transform: translateY(-1px);
}

.primary-action.compact {
  min-width: 170px;
}

.secondary-action,
.secondary-button {
  min-width: 138px;
  padding: 0 18px;
}

.secondary-action {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(6, 16, 16, 0.55);
  backdrop-filter: blur(14px);
}

.secondary-button {
  color: var(--ink);
}

.status-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(22px);
}

.panel-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: start;
  margin-bottom: 22px;
}

.status-light {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(145, 242, 167, 0.12), 0 0 22px rgba(145, 242, 167, 0.68);
}

.panel-header h2,
.section-heading h2,
.ops-layout h2 {
  letter-spacing: 0;
}

.panel-header h2 {
  margin-bottom: 5px;
  font-size: 1.25rem;
}

.panel-header p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.signal-grid div,
.systems-grid article {
  border: 1px solid rgba(222, 236, 216, 0.14);
  border-radius: 8px;
  background: rgba(3, 12, 12, 0.58);
}

.signal-grid div {
  min-width: 0;
  min-height: 138px;
  padding: 12px;
  container-type: inline-size;
}

.signal-grid span,
.signal-grid strong,
.signal-grid em {
  display: block;
}

.signal-grid span,
.card-kicker {
  color: var(--soft);
  font-size: 0.76rem;
}

.signal-grid strong {
  margin-top: 7px;
  color: #f7fbf7;
  font-size: 0.92rem;
}

.signal-grid em {
  margin-top: 10px;
  color: var(--green);
  font-size: clamp(1.35rem, 22cqw, 2rem);
  font-style: normal;
  font-weight: 880;
  line-height: 1;
  max-width: 100%;
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
}

@supports not (font-size: 1cqw) {
  .signal-grid em {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
  }
}

.section-band,
.ops-section {
  background: var(--bg);
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading h2,
.ops-layout h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

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

.systems-grid article {
  min-height: 242px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    var(--panel-solid);
}

.card-kicker {
  display: block;
  margin-bottom: 38px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.systems-grid h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.systems-grid p,
.ops-layout p {
  color: var(--muted);
  line-height: 1.6;
}

.ops-section {
  background:
    linear-gradient(180deg, rgba(145, 242, 167, 0.06), transparent 46%),
    var(--bg-2);
}

.ops-layout {
  display: block;
}

.ops-layout p {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--soft);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav {
    display: none;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(2, 8, 9, 0.92) 0%, rgba(4, 15, 14, 0.74) 56%, rgba(7, 16, 15, 0.96) 100%);
  }

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

  .hero-content {
    gap: 30px;
    padding-bottom: 38px;
  }

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

@media (max-width: 560px) {
  .site-header {
    width: min(100% - 20px, 640px);
    min-height: 64px;
    margin-top: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .nav-action {
    width: 44px;
    padding: 0;
    overflow: hidden;
    color: transparent;
  }

  .nav-action svg {
    color: var(--ink);
  }

  .hero-content,
  .section-inner,
  .site-footer {
    width: min(100% - 24px, 640px);
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 4.8rem);
  }

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

  .signal-grid div {
    min-height: 58px;
  }

  .hero-actions,
  .primary-action,
  .secondary-action,
  .secondary-button {
    width: 100%;
  }

  .site-footer {
    padding: 24px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
