:root {
  --navy: #0f315c;
  --navy-dark: #092746;
  --teal: #08a0af;
  --teal-dark: #07899a;
  --blue: #0f7eb5;
  --bg: #edf3f7;
  --panel: #ffffff;
  --text: #12345a;
  --muted: #5f7892;
  --line: #cfdee8;
  --soft: #f6f9fb;
  --shadow: 0 16px 36px rgba(28, 62, 90, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

h1,
h2,
h3 {
  line-height: 1.15;
}

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

/* Header */

.header {
  height: 82px;
  background: var(--navy);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.nav {
  height: 100%;
  display: flex;
  align-items: stretch;
}

.brand {
  width: 300px;
  margin-left: -24px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--teal);
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
}

.brand strong {
  font-size: 20px;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d9ffff;
}

.mark {
  width: 40px;
  height: 26px;
  position: relative;
  flex: none;
}

.mark i {
  position: absolute;
  top: 3px;
  width: 24px;
  height: 20px;
  border: 5px solid #fff;
  border-radius: 10px;
  transform: rotate(45deg);
}

.mark i:first-child {
  left: 1px;
}

.mark i:last-child {
  right: 1px;
}

.nav nav {
  margin-left: auto;
  display: flex;
  align-items: stretch;
  gap: 4px;
}

.nav nav a {
  display: flex;
  align-items: center;
  padding: 0 15px;
  border-bottom: 4px solid transparent;
  font-size: 13px;
  color: #cedbe6;
}

.nav nav a:hover,
.nav nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-bottom-color: #2bd4d0;
}

.nav-cta {
  align-self: center;
  margin-left: 18px;
  padding: 12px 15px;
  border: 1px solid #7890a8;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-cta span {
  margin-left: 8px;
  color: #49ddd7;
}

/* Shared controls */

.eyebrow,
.section-number {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 48px;
  padding: 0 19px;
  border: 0;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

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

.button.primary:hover {
  background: var(--navy-dark);
}

.button.primary b {
  color: #4de0d9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid #8ea6b7;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  color: var(--teal);
}

/* Homepage hero */

.hero {
  min-height: 790px;
  padding-block: 70px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 65px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 660px;
  margin: 22px 0;
  color: var(--navy);
  font-size: clamp(47px, 5vw, 68px);
  letter-spacing: -0.035em;
}

.lead {
  max-width: 650px;
  margin-bottom: 14px;
  color: #4f6a83;
  font-size: 18px;
  line-height: 1.65;
}

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

.hero-detail {
  max-width: 640px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.trust-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #547088;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-row i {
  margin-right: 5px;
  color: var(--teal);
  font-style: normal;
}

.product-visual {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.visual-head {
  padding-bottom: 16px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.visual-head span,
.visual-head b {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-head span {
  color: var(--teal-dark);
  font-weight: 800;
}

.visual-head b {
  color: var(--muted);
}

.radar-wrap {
  height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar {
  width: 320px;
  height: 320px;
  overflow: hidden;
  position: relative;
  border: 1px solid #b9cbd5;
  border-radius: 50%;
  background:
    radial-gradient(circle, #eff7f8 0 4%, transparent 4.5%),
    repeating-radial-gradient(circle, transparent 0 52px, #c4d2d8 53px 54px);
}

.radar-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.8%, #c3d2d8 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, #c3d2d8 50%, transparent 50.2%);
}

.sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(8, 160, 175, 0.42),
    rgba(8, 160, 175, 0.06) 20%,
    transparent 30%
  );
  animation: spin 5s linear infinite;
}

.sweep::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 1px;
  background: var(--teal);
  transform-origin: left;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.blip {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #12c9c2;
  box-shadow: 0 0 0 6px rgba(18, 201, 194, 0.2);
}

.b1 {
  top: 30%;
  left: 27%;
}

.b2 {
  top: 52%;
  right: 21%;
}

.b3 {
  bottom: 18%;
  left: 40%;
}

.radar-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  transform: translate(-50%, -50%);
}

.radar-center .mark {
  transform: scale(0.65);
}

.radar-label {
  position: absolute;
  z-index: 2;
  color: #658095;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.radar-label i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 5px;
  border-radius: 50%;
  background: var(--teal);
}

.radar-label.top {
  top: 18px;
}

.radar-label.left {
  top: 40%;
  left: 2px;
}

.radar-label.right {
  top: 31%;
  right: 2px;
}

.radar-status {
  position: absolute;
  right: 0;
  bottom: 13px;
  width: 190px;
  padding: 10px 13px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: 0 8px 22px rgba(28, 62, 90, 0.12);
}

.radar-status span {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.radar-status span i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 4px;
  border-radius: 50%;
  background: #11c8b8;
}

.radar-status b {
  font-size: 7px;
}

.radar-status strong {
  color: var(--teal-dark);
  font-size: 26px;
  line-height: 1;
}

.visual-modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.visual-modules > span {
  min-height: 90px;
  padding: 12px;
  display: grid;
  grid-template-columns: 32px 1fr;
  align-content: center;
  gap: 2px 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.visual-modules i {
  grid-row: 1 / 3;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, #06a8b0, #137bbb);
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.visual-modules b {
  font-size: 11px;
}

.visual-modules small {
  color: var(--muted);
  font-size: 8px;
  line-height: 1.35;
}

/* Homepage sections */

.statement,
.pilot,
.about,
.boundary,
.clarify,
.streamlogic {
  margin-bottom: 48px;
  padding: 58px;
  display: grid;
  grid-template-columns: 0.75fr 2fr;
  gap: 55px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(28, 62, 90, 0.05);
}

.statement > div {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 55px;
}

.statement h2,
.section-head h2,
.pilot h2,
.about h2,
.boundary h2,
.clarify h2,
.streamlogic h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(32px, 3vw, 45px);
  letter-spacing: -0.025em;
}

.statement p:last-child,
.section-head > p,
.pilot-copy p,
.about p,
.boundary p,
.clarify p,
.streamlogic p {
  color: var(--muted);
  line-height: 1.75;
}

.process-section,
.features {
  padding-block: 48px;
}

.process-section > .wrap,
.features {
  padding: 58px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.section-head {
  margin: 18px 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.section-head > p {
  max-width: 390px;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.process-strip article {
  min-height: 220px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.process-strip span,
.cap-num,
.steps article > b,
.security-items article > b,
.value-grid article > b {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.process-strip i {
  display: block;
  width: 34px;
  height: 4px;
  margin: 30px 0;
  border-radius: 2px;
  background: var(--teal);
}

.process-strip h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 17px;
}

.process-strip p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

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

.feature-card {
  min-height: 280px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.feature-card > div {
  display: flex;
  justify-content: space-between;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
}

.feature-card > div i {
  font-size: 19px;
  font-style: normal;
}

.feature-card h3 {
  margin: auto 0 14px;
  color: var(--navy);
  font-size: 22px;
}

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

.wide-link {
  margin-top: 20px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.wide-link b {
  color: var(--teal);
}

.sovereign,
.principles,
.pilot-scope {
  margin-block: 48px;
  padding-block: 75px;
  color: #fff;
  background: var(--navy);
}

.sovereign-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.seal {
  height: 420px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, #234b73 0 1px, transparent 1px);
  background-size: 18px 18px;
}

.seal-ring {
  width: 310px;
  height: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid #527291;
  border-radius: 50%;
}

.seal-ring::before,
.seal-ring::after {
  content: "";
  position: absolute;
  border: 1px solid #2c5278;
  border-radius: 50%;
}

.seal-ring::before {
  inset: 28px;
}

.seal-ring::after {
  inset: -28px;
}

.seal-ring span {
  color: #5ee4dd;
  font-size: 11px;
  letter-spacing: 0.3em;
}

.seal-ring strong {
  color: #b6f4e7;
  font-size: 48px;
}

.seal-ring small {
  font-size: 8px;
  letter-spacing: 0.16em;
}

.section-number.light {
  color: #66ded9;
}

.sovereign h2,
.principles h2,
.pilot-scope h2 {
  margin: 20px 0;
  color: #fff;
  font-size: 42px;
}

.sovereign p:not(.section-number) {
  color: #c4d2df;
}

.rule-list {
  margin: 30px 0;
}

.rule-list span {
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #426383;
  font-size: 13px;
}

.rule-list b {
  color: #56ddd8;
}

.button.pale,
.button.white {
  background: #fff;
  color: var(--navy);
}

.pilot {
  margin-top: 48px;
  grid-template-columns: 1fr 1fr;
}

.pilot-copy {
  padding-top: 25px;
}

.cta-band {
  margin-top: 48px;
  padding-block: 72px;
  color: #fff;
  background: var(--teal);
}

.cta-band h2 {
  margin: 20px 0;
  font-size: 43px;
}

.cta-band p:not(.eyebrow) {
  color: #e5ffff;
}

.cta-band .eyebrow {
  color: #fff;
}

.cta-band .eyebrow span {
  background: #fff;
}

/* Subpage hero and content */

.page-hero {
  min-height: 400px;
  padding-block: 78px;
  display: grid;
  grid-template-columns: 0.75fr 3fr auto;
  gap: 45px;
  align-items: start;
}

.page-hero > div h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(42px, 5vw, 60px);
  letter-spacing: -0.035em;
}

.page-hero > div p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.page-hero > b {
  color: #c6d7e1;
  font-size: 64px;
  line-height: 1;
}

.content-wrap {
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: 2fr 0.9fr;
  gap: 40px;
}

.steps,
.human-note,
.capabilities,
.security-grid,
.pilot-phases,
.expect {
  padding: 38px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.steps article {
  padding: 25px 0;
  display: grid;
  grid-template-columns: 65px 1fr;
  border-top: 1px solid var(--line);
}

.steps article:first-child {
  border-top: 0;
}

.steps h2 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 25px;
}

.steps p,
.security-items p,
.pilot-phases p,
.expect p {
  color: var(--muted);
  font-size: 14px;
}

.human-note {
  position: sticky;
  top: 25px;
  align-self: start;
  color: #fff;
  background: var(--navy);
}

.human-note span {
  color: #55ddd7;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.human-note h3 {
  margin: 45px 0 18px;
  font-size: 27px;
}

.human-note p {
  color: #c9d6df;
  font-size: 13px;
}

.deadline {
  margin-bottom: 70px;
  padding: 46px;
  display: grid;
  grid-template-columns: 0.7fr 2fr;
  gap: 25px 50px;
  background: #dcebef;
  border: 1px solid #bfd5dd;
  border-radius: 12px;
}

.deadline span {
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.deadline h2 {
  color: var(--navy);
  font-size: 36px;
}

.deadline p {
  color: var(--muted);
}

.deadline a {
  grid-column: 2;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
}

.capabilities {
  margin-bottom: 70px;
}

.capabilities article {
  padding: 32px 0;
  display: grid;
  grid-template-columns: 65px 1.35fr 0.9fr;
  gap: 35px;
  border-top: 1px solid var(--line);
}

.capabilities article:first-child {
  border-top: 0;
}

.capabilities h2 {
  color: var(--navy);
  font-size: 28px;
}

.capabilities p {
  color: var(--muted);
}

.capabilities ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.capabilities li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.capabilities li::before,
.checks span::before {
  content: "✓";
  margin-right: 10px;
  color: var(--teal);
}

.security-grid {
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 45px;
}

.security-lead {
  padding: 35px;
  border-radius: 9px;
  background: #dcebef;
}

.security-lead h2 {
  color: var(--navy);
  font-size: 31px;
}

.security-lead p {
  color: var(--muted);
}

.local-orbit {
  height: 260px;
  margin-bottom: 35px;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid #afc7d2;
  border-radius: 50%;
}

.local-orbit::before,
.local-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid #bfd1d9;
  border-radius: 50%;
}

.local-orbit::before {
  inset: 40px;
}

.local-orbit::after {
  inset: 82px;
}

.local-orbit span {
  z-index: 2;
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #8ff0e5;
  font-size: 10px;
  font-weight: 800;
}

.local-orbit i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.local-orbit i:nth-of-type(1) {
  top: 12%;
  left: 45%;
}

.local-orbit i:nth-of-type(2) {
  right: 9%;
  bottom: 31%;
}

.local-orbit i:nth-of-type(3) {
  bottom: 13%;
  left: 18%;
}

.security-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.security-items article {
  padding: 25px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.security-items h3 {
  margin-top: 34px;
  color: var(--navy);
  font-size: 20px;
}

.principles h2 {
  margin-bottom: 40px;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #456786;
}

.principle-grid span {
  padding: 20px;
  border-bottom: 1px solid #456786;
  font-size: 13px;
}

.principle-grid b {
  margin-right: 14px;
  color: #5ae1db;
}

.pilot-phases {
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.pilot-phases article {
  min-height: 245px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.pilot-phases b {
  color: var(--teal-dark);
  font-size: 13px;
}

.pilot-phases h2 {
  margin: 55px 0 13px;
  color: var(--navy);
  font-size: 22px;
}

.pilot-scope > .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
}

.checks span {
  display: block;
  padding: 13px 0;
  border-top: 1px solid #456786;
  font-size: 13px;
}

.expect {
  margin-bottom: 70px;
}

.expect h2 {
  color: var(--navy);
  font-size: 35px;
}

.expect > div {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.expect article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.expect article > b {
  color: var(--teal-dark);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.values {
  margin-block: 48px;
  padding-block: 55px;
  background: #dcebef;
}

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

.value-grid article {
  padding: 28px;
  border: 1px solid #bdd2dc;
  border-radius: 8px;
  background: #fff;
}

.value-grid h3 {
  margin: 35px 0 10px;
  color: var(--navy);
  font-size: 27px;
}

.value-grid p {
  color: var(--muted);
}

.streamlogic {
  grid-template-columns: 0.9fr 1.1fr;
}

.streamlogic-word {
  color: var(--navy);
  font-size: 66px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

/* Contact */

.contact-hero {
  padding-block: 75px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 65px;
}

.contact-hero h1 {
  margin: 24px 0;
  color: var(--navy);
  font-size: 57px;
  letter-spacing: -0.035em;
}

.contact-hero > div > p:not(.eyebrow) {
  max-width: 500px;
  color: var(--muted);
  font-size: 17px;
}

.contact-direct {
  margin-top: 55px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-direct span {
  color: var(--teal-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.contact-direct a {
  color: var(--navy);
  font-size: 22px;
  font-weight: 700;
}

.contact-form {
  padding: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.form-head {
  margin-bottom: 22px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.form-head span {
  color: var(--teal-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.form-head b {
  color: var(--navy);
  font-size: 20px;
}

.contact-form label {
  margin: 15px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  padding: 13px;
  border: 1px solid #b9ccd8;
  border-radius: 5px;
  outline: 0;
  background: #f8fafb;
  font:
    14px Arial,
    sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
}

.contact-form .two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form button {
  width: 100%;
  margin-top: 8px;
}

.contact-form small {
  margin-top: 13px;
  display: block;
  color: var(--muted);
  line-height: 1.45;
}

/* Footer */

footer {
  padding: 60px 0 22px;
  color: #bed0dc;
  background: var(--navy-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 50px;
}

.footer-brand {
  width: auto;
  margin: 0 0 12px;
  padding: 0;
  background: transparent;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-grid h4 {
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
  font-size: 13px;
}

.footer-grid > div:first-child p {
  max-width: 290px;
}

.footer-bottom {
  margin-top: 45px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #345472;
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Responsive */

@media (max-width: 1000px) {
  .nav nav {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
  }

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

  .product-visual {
    max-width: 620px;
  }

  .statement,
  .statement > div,
  .sovereign-grid,
  .pilot,
  .content-wrap,
  .deadline,
  .capabilities article,
  .security-grid,
  .clarify,
  .pilot-scope > .wrap,
  .about,
  .streamlogic,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .process-strip,
  .pilot-phases {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .page-hero > b {
    display: none;
  }

  .deadline a {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .header {
    height: 72px;
  }

  .brand {
    width: 230px;
    margin-left: -14px;
    padding-inline: 14px;
  }

  .brand strong {
    font-size: 16px;
  }

  .nav-cta {
    padding: 9px;
    font-size: 8px;
  }

  .hero {
    min-height: auto;
    padding-block: 55px;
    gap: 38px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 16px;
  }

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

  .trust-row {
    flex-direction: column;
    gap: 8px;
  }

  .product-visual {
    padding: 15px;
  }

  .radar-wrap {
    height: 340px;
  }

  .radar {
    width: 280px;
    height: 280px;
  }

  .radar-label.left,
  .radar-label.right {
    display: none;
  }

  .visual-modules,
  .process-strip,
  .feature-grid,
  .pilot-phases,
  .security-items,
  .principle-grid,
  .value-grid,
  .expect > div,
  .contact-form .two {
    grid-template-columns: 1fr;
  }

  .statement,
  .pilot,
  .about,
  .boundary,
  .clarify,
  .streamlogic,
  .process-section > .wrap,
  .features,
  .steps,
  .human-note,
  .capabilities,
  .security-grid,
  .pilot-phases,
  .expect {
    padding: 28px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .sovereign {
    padding-block: 55px;
  }

  .seal {
    height: 340px;
  }

  .seal-ring {
    width: 250px;
    height: 250px;
  }

  .seal-ring strong {
    font-size: 39px;
  }

  .page-hero {
    min-height: auto;
    padding-block: 55px;
  }

  .page-hero > div h1 {
    font-size: 41px;
  }

  .steps article {
    grid-template-columns: 42px 1fr;
  }

  .local-orbit {
    height: 230px;
  }

  .streamlogic-word {
    font-size: 48px;
  }

  .contact-hero h1 {
    font-size: 44px;
  }

  .contact-form {
    padding: 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

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

  .sweep {
    animation: none;
  }
}
