:root {
  --ground: #040507;
  --ground-deep: #000;
  --panel: #0e161f;
  --panel-soft: rgba(14, 22, 31, 0.72);
  --divider: #16414a;
  --text: #ecf2fb;
  --text-secondary: #93abc6;
  --text-muted: #697a8f;
  --cyan: #22d3ee;
  --cyan-bright: #67e8f9;
  --green: #66d1a8;
  --orange: #fb923c;
  --red: #e65e5e;
  --mono: Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --site-pad: clamp(1.2rem, 4vw, 4.5rem);
  --max: 1500px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--text);
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 0;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(34, 211, 238, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.052) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

body::after {
  position: fixed;
  z-index: 0;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 12%, rgba(34, 211, 238, 0.17), transparent 40rem),
    radial-gradient(circle at 100% 70%, rgba(34, 211, 238, 0.09), transparent 34rem),
    linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.38));
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--cyan-bright);
  outline-offset: 4px;
}

::selection {
  color: var(--ground-deep);
  background: var(--cyan-bright);
}

.screen-reader-text {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  clip: auto !important;
  width: auto;
  height: auto;
  padding: 0.8rem 1rem;
  color: var(--ground);
  background: var(--cyan-bright);
  font-size: 0.75rem;
  font-weight: 700;
}

.site-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  overflow: clip;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(34, 211, 238, 0.15);
  background: rgba(4, 5, 7, 0.78);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(34, 211, 238, 0.27);
  background: rgba(4, 5, 7, 0.93);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  width: min(100%, var(--max));
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--site-pad);
}

.site-brand {
  justify-self: start;
}

.custom-logo-link {
  display: block;
}

.custom-logo {
  width: auto;
  max-width: 220px;
  height: 42px;
  object-fit: contain;
}

.brand-lockup {
  display: inline-flex;
  gap: 0.72rem;
  align-items: center;
  line-height: 1;
}

.trajectory-logo {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-lockup__type {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-transform: uppercase;
}

.brand-lockup__type strong {
  color: var(--cyan-bright);
  font-size: 0.79rem;
  letter-spacing: 0.25em;
}

.brand-lockup__type small {
  color: var(--cyan);
  font-size: 0.52rem;
  letter-spacing: 0.51em;
}

.site-nav__list,
.footer-nav {
  display: flex;
  gap: clamp(1.4rem, 3vw, 3.2rem);
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a,
.footer-nav a {
  position: relative;
  display: block;
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 150ms ease;
}

.site-nav a::after,
.footer-nav a::after {
  position: absolute;
  right: 100%;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--cyan-bright);
  transition: right 180ms ease;
}

.site-nav a:hover,
.footer-nav a:hover {
  color: var(--text);
}

.site-nav a:hover::after,
.footer-nav a:hover::after {
  right: 0;
}

.system-status {
  display: inline-flex;
  gap: 0.58rem;
  align-items: center;
  justify-self: end;
  color: var(--text-muted);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.system-status i,
.application-card__status i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(102, 209, 168, 0.85);
}

.nav-toggle {
  display: none;
  border: 0;
  color: var(--text);
  background: transparent;
}

.layout-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-right: var(--site-pad);
  padding-left: var(--site-pad);
}

.hero {
  position: relative;
  min-height: max(780px, 100svh);
  padding-top: var(--header-height);
  border-bottom: 1px solid rgba(34, 211, 238, 0.15);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(4, 5, 7, 0.75));
}

.hero__grid {
  position: absolute;
  inset: var(--header-height) 0 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__grid::before {
  position: absolute;
  top: -20%;
  left: 55%;
  width: min(66vw, 980px);
  aspect-ratio: 1;
  content: "";
  border: 1px dashed rgba(34, 211, 238, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 12vw rgba(34, 211, 238, 0.012),
    0 0 0 22vw rgba(34, 211, 238, 0.009);
}

.hero__inner {
  align-items: center;
  min-height: calc(max(780px, 100svh) - var(--header-height) - 105px);
  padding-top: clamp(5rem, 10vh, 9rem);
  padding-bottom: clamp(4rem, 8vh, 7rem);
}

.hero__copy {
  z-index: 2;
  grid-column: 1 / span 7;
  max-width: 800px;
}

.eyebrow,
.section-index {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin: 0 0 1.5rem;
  color: var(--cyan-bright);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.hero h1,
.content-hero h1,
.application-single h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--text);
  font-size: clamp(3rem, 7vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.92;
  text-wrap: balance;
}

.hero__intro {
  max-width: 660px;
  margin: 2.2rem 0 0;
  color: var(--text-secondary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 2.6rem;
}

.hud-button {
  position: relative;
  display: inline-flex;
  gap: 1.6rem;
  align-items: center;
  min-height: 50px;
  padding: 0.75rem 0.9rem 0.75rem 1.2rem;
  border: 1px solid rgba(34, 211, 238, 0.4);
  color: var(--cyan-bright);
  background: rgba(34, 211, 238, 0.045);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hud-button::before,
.hud-button::after {
  position: absolute;
  width: 10px;
  height: 10px;
  content: "";
  border-color: var(--cyan-bright);
  border-style: solid;
  transition: width 180ms ease, height 180ms ease;
}

.hud-button::before {
  top: -2px;
  left: -2px;
  border-width: 2px 0 0 2px;
}

.hud-button::after {
  right: -2px;
  bottom: -2px;
  border-width: 0 2px 2px 0;
}

.hud-button i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--ground);
  background: var(--cyan-bright);
  font-size: 1rem;
  font-style: normal;
}

.hud-button:hover {
  border-color: rgba(103, 232, 249, 0.78);
  color: #fff;
  background: rgba(34, 211, 238, 0.11);
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.09);
  transform: translateY(-2px);
}

.hud-button:hover::before,
.hud-button:hover::after {
  width: 18px;
  height: 18px;
}

.text-link {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.text-link i {
  color: var(--cyan);
  font-style: normal;
  transition: transform 180ms ease;
}

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

.text-link:hover i {
  transform: translateX(4px);
}

.hero-instrument {
  position: relative;
  z-index: 1;
  grid-column: 8 / span 5;
  justify-self: end;
  width: min(38vw, 520px);
  min-width: 390px;
  aspect-ratio: 1;
  border: 1px solid rgba(34, 211, 238, 0.24);
  background: radial-gradient(circle, rgba(34, 211, 238, 0.16), rgba(34, 211, 238, 0.035) 38%, transparent 64%);
  box-shadow: 0 0 70px rgba(34, 211, 238, 0.08), inset 0 0 55px rgba(34, 211, 238, 0.035);
}

.hero-instrument::before,
.hero-instrument::after {
  position: absolute;
  width: 20%;
  height: 20%;
  content: "";
  border-color: rgba(103, 232, 249, 0.72);
  border-style: solid;
}

.hero-instrument::before {
  top: -2px;
  left: -2px;
  border-width: 2px 0 0 2px;
}

.hero-instrument::after {
  right: -2px;
  bottom: -2px;
  border-width: 0 2px 2px 0;
}

.hero-instrument__orbit {
  position: absolute;
  border: 1px dashed rgba(34, 211, 238, 0.22);
  border-radius: 50%;
}

.hero-instrument__orbit--outer {
  inset: 11%;
  animation: orbit-spin 32s linear infinite;
}

.hero-instrument__orbit--inner {
  inset: 25%;
  border-style: solid;
  border-color: rgba(34, 211, 238, 0.16);
  animation: orbit-spin 21s linear infinite reverse;
}

.hero-instrument__orbit i {
  position: absolute;
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-bright);
  box-shadow: 0 0 12px var(--cyan-bright);
}

.hero-instrument__orbit--outer i:first-child {
  top: 12%;
  right: 14%;
}

.hero-instrument__orbit--outer i:last-child {
  bottom: 8%;
  left: 19%;
  width: 4px;
  height: 4px;
}

.hero-instrument__orbit--inner i {
  top: 50%;
  right: -3px;
  width: 5px;
  height: 5px;
}

.hero-instrument__axis {
  position: absolute;
  background: rgba(34, 211, 238, 0.11);
}

.hero-instrument__axis--x {
  top: 50%;
  right: 6%;
  left: 6%;
  height: 1px;
}

.hero-instrument__axis--y {
  top: 6%;
  bottom: 6%;
  left: 50%;
  width: 1px;
}

.hero-instrument__core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  transform: translate(-50%, -50%);
}

.trajectory-logo--hero {
  width: 144px;
  height: 144px;
}

.hero-instrument__readout {
  position: absolute;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  width: 48%;
  color: var(--text-muted);
  font-size: 0.54rem;
  letter-spacing: 0.12em;
}

.hero-instrument__readout strong {
  color: var(--cyan-bright);
  font-size: inherit;
  font-weight: 400;
}

.hero-instrument__readout--top {
  top: 5%;
  left: 5%;
}

.hero-instrument__readout--bottom {
  right: 5%;
  bottom: 5%;
}

.hero__telemetry {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 105px;
  border-top: 1px solid rgba(34, 211, 238, 0.13);
}

.hero__telemetry div {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  justify-content: center;
  padding: 1rem var(--site-pad);
  border-right: 1px solid rgba(34, 211, 238, 0.12);
}

.hero__telemetry div:last-child {
  border-right: 0;
}

.hero__telemetry span {
  color: var(--text-muted);
  font-size: 0.57rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__telemetry strong {
  color: var(--text-secondary);
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: clamp(6rem, 11vw, 11rem) 0;
}

.section__heading {
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.section__heading > div {
  grid-column: 1 / span 7;
}

.section__heading > p {
  grid-column: 9 / span 4;
  margin: 0 0 0.45rem;
  color: var(--text-secondary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
}

.section-index {
  margin-bottom: 1.2rem;
  color: var(--text-muted);
  font-size: 0.61rem;
}

.section-index::before {
  width: 7px;
  height: 7px;
  content: "";
  border: 1px solid var(--cyan);
  transform: rotate(45deg);
}

.section h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5.4vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.applications {
  background: rgba(0, 0, 0, 0.1);
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, var(--max));
  margin: 0 auto;
  border-top: 1px solid rgba(34, 211, 238, 0.16);
  border-left: 1px solid rgba(34, 211, 238, 0.16);
}

.application-card {
  position: relative;
  min-height: 640px;
  padding: clamp(1.4rem, 3vw, 3rem);
  border-right: 1px solid rgba(34, 211, 238, 0.16);
  border-bottom: 1px solid rgba(34, 211, 238, 0.16);
  background:
    radial-gradient(circle at 15% 42%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 21rem),
    rgba(4, 5, 7, 0.66);
  transition: background 250ms ease;
}

@supports not (background: color-mix(in srgb, red 10%, transparent)) {
  .application-card {
    background: rgba(4, 5, 7, 0.76);
  }
}

.application-card:hover {
  background-color: rgba(14, 22, 31, 0.72);
}

.application-card__hit-area {
  position: absolute;
  z-index: 3;
  inset: 0;
}

.application-card:has(.application-card__hit-area:focus-visible) {
  outline: 2px solid var(--accent);
  outline-offset: -4px;
}

.application-card__corners i {
  position: absolute;
  z-index: 2;
  width: 17px;
  height: 17px;
  border-color: var(--accent);
  border-style: solid;
  opacity: 0.65;
  transition: width 180ms ease, height 180ms ease, opacity 180ms ease;
}

.application-card__corners i:nth-child(1) {
  top: -2px;
  left: -2px;
  border-width: 2px 0 0 2px;
}

.application-card__corners i:nth-child(2) {
  top: -2px;
  right: -2px;
  border-width: 2px 2px 0 0;
}

.application-card__corners i:nth-child(3) {
  right: -2px;
  bottom: -2px;
  border-width: 0 2px 2px 0;
}

.application-card__corners i:nth-child(4) {
  bottom: -2px;
  left: -2px;
  border-width: 0 0 2px 2px;
}

.application-card:hover .application-card__corners i {
  width: 30px;
  height: 30px;
  opacity: 1;
}

.application-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(147, 171, 198, 0.12);
}

.application-card__number {
  color: var(--accent);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
}

.application-card__status {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.57rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.application-card__status i {
  width: 5px;
  height: 5px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.application-card__body {
  display: grid;
  grid-template-columns: minmax(190px, 0.82fr) minmax(230px, 1.18fr);
  gap: clamp(1.6rem, 3vw, 3rem);
  padding: clamp(3rem, 6vw, 5rem) 0 4rem;
}

.application-card__identity {
  min-width: 0;
}

.application-card__icon-wrap {
  position: relative;
  isolation: isolate;
  width: min(100%, 230px);
  aspect-ratio: 1;
  margin-bottom: 1.8rem;
}

.application-card__icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 250ms ease;
}

.application-card:hover .application-card__icon-wrap img {
  transform: translateY(-4px);
}

.application-card__identity > p {
  margin: 0 0 0.55rem;
  color: var(--accent);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.application-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.application-card__content {
  align-self: center;
}

.application-card__summary {
  margin: 0;
  color: var(--text);
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  line-height: 1.5;
}

.application-card__description {
  margin: 1.5rem 0 0;
  color: var(--text-secondary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 0.4rem 0.58rem;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, transparent);
  color: var(--text-secondary);
  background: color-mix(in srgb, var(--accent) 4%, transparent);
  font-size: 0.57rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.application-card__link {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  margin-top: 2rem;
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.application-card__link span {
  transition: transform 180ms ease;
}

.application-card__link:hover span {
  transform: translate(3px, -3px);
}

.application-card__signal {
  position: absolute;
  right: clamp(1.4rem, 3vw, 3rem);
  bottom: clamp(1.4rem, 2.5vw, 2.4rem);
  left: clamp(1.4rem, 3vw, 3rem);
  display: flex;
  gap: 7px;
  align-items: center;
  height: 28px;
  opacity: 0.5;
}

.application-card__signal span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.application-card__signal i {
  width: 3px;
  height: 6px;
  background: var(--accent);
  opacity: 0.5;
}

.application-card__signal i:nth-child(2),
.application-card__signal i:nth-child(6) { height: 13px; }
.application-card__signal i:nth-child(3),
.application-card__signal i:nth-child(5) { height: 20px; }
.application-card__signal i:nth-child(4) { height: 28px; box-shadow: 0 0 8px var(--accent); opacity: 1; }

.approach {
  border-top: 1px solid rgba(34, 211, 238, 0.1);
  border-bottom: 1px solid rgba(34, 211, 238, 0.1);
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.025), transparent 46%);
}

.approach__statement {
  grid-column: 1 / span 6;
  padding-right: clamp(1rem, 6vw, 6rem);
}

.approach__statement h2 {
  max-width: 8ch;
}

.approach__statement > p:last-child {
  max-width: 650px;
  margin: 2.4rem 0 0;
  color: var(--text-secondary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.8;
}

.principles {
  grid-column: 8 / span 5;
  border-top: 1px solid rgba(34, 211, 238, 0.16);
}

.principle {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.2rem;
  padding: 2.1rem 0;
  border-bottom: 1px solid rgba(34, 211, 238, 0.16);
}

.principle > span {
  color: var(--cyan);
  font-size: 0.58rem;
}

.principle h3 {
  margin: 0 0 0.65rem;
  font-size: 0.93rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.principle p {
  margin: 0;
  color: var(--text-secondary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.92rem;
  line-height: 1.75;
}

.contact-cta {
  display: grid;
  min-height: 470px;
  overflow: hidden;
  place-items: center;
  border-top: 1px solid rgba(34, 211, 238, 0.14);
  background: linear-gradient(90deg, rgba(5, 18, 22, 0.72), rgba(3, 7, 9, 0.46));
}

.contact-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem 4rem;
  align-items: end;
  width: min(100% - (var(--site-pad) * 2), 1180px);
}

.contact-cta .section-index { grid-column: 1 / -1; }
.contact-cta h2 { max-width: 12ch; margin: 0; }
.contact-cta__content > p { max-width: 610px; margin: 1.5rem 0 0; color: var(--text-secondary); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.7; }

.contact-cta__field,
.contact-cta__field i {
  position: absolute;
  top: 50%;
  right: 8%;
  border: 1px dashed rgba(34, 211, 238, 0.11);
  border-radius: 50%;
  transform: translateY(-50%);
}

.contact-cta__field { width: min(52vw, 520px); aspect-ratio: 1; }
.contact-cta__field i:nth-child(1) { top: 50%; right: 15%; width: 70%; aspect-ratio: 1; transform: translateY(-50%); }
.contact-cta__field i:nth-child(2) { top: 50%; right: 30%; width: 38%; aspect-ratio: 1; transform: translateY(-50%); }
.contact-cta__field i:nth-child(3) { top: 15%; right: 49%; width: 7px; height: 7px; border: 0; background: var(--cyan-bright); box-shadow: 0 0 18px var(--cyan); transform: none; }

.site-footer {
  border-top: 1px solid rgba(34, 211, 238, 0.16);
  background: rgba(0, 0, 0, 0.45);
}

.site-footer__inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: min(100%, var(--max));
  min-height: 250px;
  margin: 0 auto;
  padding: 4rem var(--site-pad);
}

.site-footer__brand p,
.site-footer__meta p {
  margin: 1.4rem 0 0;
  color: var(--text-muted);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__meta {
  text-align: right;
}

.footer-nav {
  justify-content: flex-end;
}

.brand-lockup--footer .trajectory-logo {
  width: 34px;
  height: 34px;
}

/* Inner content templates. */
.content-main {
  min-height: 70vh;
  padding-top: var(--header-height);
}

.content-hero {
  padding: clamp(7rem, 13vw, 12rem) var(--site-pad) clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid rgba(34, 211, 238, 0.15);
  background: radial-gradient(circle at 70% 40%, rgba(34, 211, 238, 0.07), transparent 30rem);
}

.content-hero__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.content-hero h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 7vw, 7rem);
}

.content-width {
  width: min(100% - (2 * var(--site-pad)), 820px);
  margin: 0 auto;
}

.prose {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(5rem, 10vw, 10rem);
  color: var(--text-secondary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.08rem;
  line-height: 1.85;
}

.prose > *:first-child { margin-top: 0; }
.prose > *:last-child { margin-bottom: 0; }
.prose h2,
.prose h3,
.prose h4 {
  margin-top: 2.5em;
  color: var(--text);
  font-family: var(--mono);
  font-weight: 400;
  line-height: 1.2;
}
.prose h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
.prose h3 { font-size: 1.45rem; }
.prose a { color: var(--cyan-bright); text-decoration: underline; text-underline-offset: 0.2em; }
.prose blockquote { margin: 2rem 0; padding: 0.5rem 0 0.5rem 1.5rem; border-left: 2px solid var(--cyan); color: var(--text); }
.prose code { padding: 0.15rem 0.35rem; color: var(--cyan-bright); background: var(--panel); font-family: var(--mono); font-size: 0.88em; }
.prose pre { overflow-x: auto; padding: 1.4rem; border: 1px solid var(--divider); background: #000; }
.prose pre code { padding: 0; background: transparent; }
.prose img { border: 1px solid rgba(34, 211, 238, 0.18); }
.entry-image { margin: 0 0 3rem; }

.post-grid {
  display: grid;
  gap: 0;
  padding-top: 5rem;
  padding-bottom: 8rem;
}

.post-card {
  position: relative;
  padding: 2.4rem 0;
  border-bottom: 1px solid rgba(34, 211, 238, 0.15);
}

.post-card:first-child { border-top: 1px solid rgba(34, 211, 238, 0.15); }
.post-card__meta { margin: 0 0 0.8rem; color: var(--cyan); font-size: 0.61rem; letter-spacing: 0.1em; text-transform: uppercase; }
.post-card h2 { margin: 0 0 1rem; font-size: clamp(1.6rem, 4vw, 2.8rem); font-weight: 400; line-height: 1.15; }
.post-card h2 a:hover { color: var(--cyan-bright); }
.post-card > p:not(.post-card__meta) { color: var(--text-secondary); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
.pagination { padding-top: 2rem; }
.pagination .nav-links { display: flex; gap: 0.5rem; }
.pagination .page-numbers { display: grid; min-width: 38px; min-height: 38px; padding: 0.4rem; border: 1px solid var(--divider); place-items: center; color: var(--text-secondary); font-size: 0.7rem; }
.pagination .current { color: var(--ground); background: var(--cyan-bright); }

.search-form { display: flex; gap: 0.8rem; align-items: stretch; margin-top: 2rem; }
.search-form label { display: flex; flex: 1; }
.search-field { width: 100%; min-height: 50px; padding: 0.7rem 1rem; border: 1px solid var(--divider); border-radius: 0; outline: 0; color: var(--text); background: rgba(0, 0, 0, 0.45); }
.search-field:focus { border-color: var(--cyan); box-shadow: 0 0 0 1px var(--cyan); }

.contact-page__hero {
  display: grid;
  min-height: 560px;
  padding: clamp(5rem, 10vw, 9rem) var(--site-pad);
  place-items: end start;
  border-bottom: 1px solid rgba(34, 211, 238, 0.16);
  background:
    radial-gradient(circle at 78% 42%, rgba(34, 211, 238, 0.13), transparent 24rem),
    linear-gradient(180deg, rgba(5, 17, 21, 0.7), transparent);
}

.contact-page__hero-inner { width: min(100%, 1180px); margin: 0 auto; }
.contact-page__hero h1 { max-width: 10ch; margin: 1.4rem 0 0; font-size: clamp(4rem, 9vw, 8.5rem); }
.contact-page__hero p:not(.section-index) { max-width: 720px; margin: 2rem 0 0; color: var(--text-secondary); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: clamp(1.05rem, 1.7vw, 1.32rem); line-height: 1.7; }

.contact-page__body { padding: clamp(5rem, 11vw, 10rem) var(--site-pad); }
.contact-layout { display: grid; grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; width: min(100%, 1180px); margin: 0 auto; }

.contact-topics { margin: 2.4rem 0 0; padding: 0; list-style: none; }
.contact-topics li { display: grid; grid-template-columns: 38px 1fr; gap: 1rem; padding: 1.5rem 0; border-top: 1px solid var(--divider); }
.contact-topics li > span { color: var(--cyan); font-size: 0.57rem; }
.contact-topics strong { display: block; color: var(--text); font-size: 0.72rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-topics p { margin: 0.65rem 0 0; color: var(--text-secondary); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 0.88rem; line-height: 1.65; }
.contact-page__editor { width: auto; margin: 2rem 0 0; padding: 0; }

.contact-privacy { display: grid; grid-template-columns: 30px 1fr; gap: 0.9rem; margin-top: 2.5rem; padding: 1.2rem; border: 1px solid rgba(34, 211, 238, 0.16); background: rgba(4, 15, 18, 0.55); }
.contact-privacy > i { display: block; width: 16px; height: 16px; margin-top: 0.2rem; border: 1px solid var(--cyan); transform: rotate(45deg); }
.contact-privacy p { margin: 0; }
.contact-privacy strong,
.contact-privacy span { display: block; }
.contact-privacy strong { color: var(--cyan); font-size: 0.61rem; font-weight: 400; letter-spacing: 0.09em; text-transform: uppercase; }
.contact-privacy span { margin-top: 0.45rem; color: var(--text-muted); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 0.78rem; line-height: 1.55; }

.contact-form-panel { border: 1px solid rgba(34, 211, 238, 0.22); background: rgba(3, 10, 13, 0.86); box-shadow: 0 0 60px rgba(34, 211, 238, 0.06); }
.contact-form-panel__header { display: flex; justify-content: space-between; align-items: center; min-height: 54px; padding: 0 1.4rem; border-bottom: 1px solid rgba(34, 211, 238, 0.18); color: var(--text-muted); font-size: 0.57rem; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-form-panel__header i { width: 6px; height: 6px; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.contact-form-live,
.contact-form-preview,
.contact-form-setup { padding: clamp(1.5rem, 4vw, 3rem); }

.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.contact-field { display: flex; flex-direction: column; gap: 0.65rem; }
.contact-field--wide { grid-column: 1 / -1; }
.contact-field label,
.contact-form-live label { color: var(--text-secondary); font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-field input,
.contact-field select,
.contact-field textarea,
.contact-form-live input:not([type="submit"]):not([type="hidden"]),
.contact-form-live select,
.contact-form-live textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--divider);
  border-radius: 0;
  outline: 0;
  color: var(--text);
  background: rgba(0, 0, 0, 0.42);
  font: inherit;
}

.contact-field textarea,
.contact-form-live textarea { min-height: 180px; resize: vertical; }
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus,
.contact-form-live input:not([type="submit"]):not([type="hidden"]):focus,
.contact-form-live select:focus,
.contact-form-live textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 1px var(--cyan); }
.contact-form-live p { margin: 0 0 1.3rem; }

.turnstile-placeholder { display: flex; gap: 1rem; align-items: center; grid-column: 1 / -1; min-height: 78px; padding: 1rem; border: 1px dashed rgba(34, 211, 238, 0.34); background: rgba(34, 211, 238, 0.04); }
.turnstile-placeholder > span { display: grid; width: 38px; height: 38px; flex: 0 0 auto; border: 1px solid var(--cyan); place-items: center; color: var(--cyan); }
.turnstile-placeholder strong,
.turnstile-placeholder small { display: block; }
.turnstile-placeholder strong { color: var(--text-secondary); font-size: 0.62rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; }
.turnstile-placeholder small { margin-top: 0.35rem; color: var(--text-muted); font-size: 0.72rem; }

.contact-form-actions { display: flex; justify-content: space-between; gap: 1rem; align-items: center; grid-column: 1 / -1; padding-top: 0.5rem; }
.contact-form-actions > small { max-width: 34ch; color: var(--text-muted); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 0.7rem; line-height: 1.5; }
.contact-submit,
.contact-form-live input[type="submit"] { min-height: 52px; padding: 0.8rem 1.25rem; border: 1px solid var(--cyan); border-radius: 0; color: var(--ground); background: var(--cyan); font: inherit; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; }
.contact-submit:disabled { color: var(--text-muted); border-color: var(--divider); background: rgba(16, 26, 31, 0.8); cursor: not-allowed; }

.contact-form-setup { min-height: 430px; display: flex; flex-direction: column; justify-content: center; }
.contact-form-setup h2 { margin: 1rem 0 0; font-size: clamp(2.2rem, 5vw, 4rem); }
.contact-form-setup > p:not(.section-index) { margin: 1.5rem 0 0; color: var(--text-secondary); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.7; }
.contact-form-setup .text-link { margin-top: 2rem; align-self: flex-start; }
.contact-form-panel__security { display: grid; grid-template-columns: 34px 1fr; gap: 0.9rem; padding: 1.1rem 1.4rem; border-top: 1px solid rgba(34, 211, 238, 0.16); background: rgba(34, 211, 238, 0.025); }
.contact-form-panel__security > span { display: grid; width: 28px; height: 28px; place-items: center; color: var(--cyan); }
.contact-form-panel__security p { margin: 0; }
.contact-form-panel__security strong,
.contact-form-panel__security small { display: block; }
.contact-form-panel__security strong { color: var(--cyan); font-size: 0.58rem; font-weight: 400; letter-spacing: 0.09em; text-transform: uppercase; }
.contact-form-panel__security small { margin-top: 0.35rem; color: var(--text-muted); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 0.69rem; line-height: 1.5; }
.wpcf7-not-valid-tip { color: var(--red); font-size: 0.72rem; }
.wpcf7 form .wpcf7-response-output { margin: 1.5rem 0 0; padding: 0.9rem 1rem; border-color: var(--cyan); color: var(--text-secondary); }

.utility-screen__stage {
  position: relative;
  display: grid;
  min-height: 760px;
  padding: clamp(5rem, 10vw, 9rem) var(--site-pad);
  place-items: center;
  overflow: hidden;
  text-align: center;
  background: radial-gradient(circle at 50% 45%, rgba(34, 211, 238, 0.13), transparent 27rem);
}

.utility-screen__grid { position: absolute; inset: 0; opacity: 0.36; background-image: linear-gradient(rgba(34, 211, 238, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(34, 211, 238, 0.045) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(circle at center, #000, transparent 72%); }
.utility-screen__inner { position: relative; z-index: 2; width: min(100%, 900px); }
.utility-screen__logo { width: 94px; height: 94px; margin: 0 auto 3rem; }
.utility-screen .section-index { justify-content: center; }
.utility-screen h1 { max-width: 11ch; margin: 1.4rem auto 0; font-size: clamp(4rem, 9vw, 8rem); }
.utility-screen__copy { max-width: 680px; margin: 2rem auto 0; color: var(--text-secondary); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: clamp(1rem, 1.7vw, 1.25rem); line-height: 1.7; }
.utility-screen__editor { width: min(100%, 680px); margin: 2rem auto 0; padding: 0; }
.utility-screen__status { display: grid; grid-template-columns: 10px 1fr auto; gap: 0.8rem; align-items: center; max-width: 620px; margin: 3rem auto 0; padding: 1rem 1.2rem; border: 1px solid rgba(34, 211, 238, 0.2); background: rgba(2, 9, 12, 0.72); text-align: left; }
.utility-screen__status i { width: 6px; height: 6px; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.utility-screen__status span,
.utility-screen__status strong { font-size: 0.57rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; }
.utility-screen__status span { color: var(--cyan); }
.utility-screen__status strong { color: var(--text-muted); }
.utility-screen .hud-button { margin-top: 2.2rem; }
.utility-screen__orbit { position: absolute; top: 50%; left: 50%; width: min(74vw, 730px); aspect-ratio: 1; border: 1px dashed rgba(34, 211, 238, 0.12); border-radius: 50%; transform: translate(-50%, -50%); }
.utility-screen__orbit i { position: absolute; top: 50%; left: 50%; border: 1px dashed rgba(34, 211, 238, 0.09); border-radius: 50%; transform: translate(-50%, -50%); }
.utility-screen__orbit i:first-child { width: 72%; aspect-ratio: 1; }
.utility-screen__orbit i:nth-child(2) { width: 38%; aspect-ratio: 1; }
.utility-screen__orbit span { position: absolute; top: 12%; left: 18%; width: 7px; height: 7px; background: var(--cyan-bright); box-shadow: 0 0 18px var(--cyan); }

.policy-hero { padding: clamp(6rem, 12vw, 10rem) var(--site-pad) clamp(4rem, 8vw, 7rem); border-bottom: 1px solid rgba(34, 211, 238, 0.16); background: radial-gradient(circle at 76% 42%, rgba(34, 211, 238, 0.1), transparent 26rem); }
.policy-hero__inner { width: min(100%, 1180px); margin: 0 auto; }
.policy-hero h1 { max-width: 11ch; margin: 1.3rem 0 0; font-size: clamp(4rem, 9vw, 8rem); }
.policy-hero p:not(.section-index) { max-width: 720px; margin: 2rem 0 0; color: var(--text-secondary); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: clamp(1rem, 1.65vw, 1.28rem); line-height: 1.7; }
.policy-meta { display: inline-flex; gap: 0.9rem; margin-top: 2.5rem; padding-top: 1rem; border-top: 1px solid var(--divider); font-size: 0.56rem; letter-spacing: 0.09em; text-transform: uppercase; }
.policy-meta span { color: var(--text-muted); }
.policy-meta strong { color: var(--cyan); font-weight: 400; }
.policy-body { padding: clamp(5rem, 10vw, 9rem) var(--site-pad); }
.policy-layout { display: grid; grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr); gap: clamp(3rem, 9vw, 9rem); align-items: start; width: min(100%, 1180px); margin: 0 auto; }
.policy-index { position: sticky; top: calc(var(--header-height) + 2rem); }
.policy-index ol { margin: 2rem 0 0; padding: 0; border-top: 1px solid var(--divider); list-style: none; }
.policy-index li { display: grid; grid-template-columns: 34px 1fr; gap: 0.7rem; padding: 1rem 0; border-bottom: 1px solid var(--divider); color: var(--text-secondary); font-size: 0.61rem; letter-spacing: 0.05em; text-transform: uppercase; }
.policy-index li span { color: var(--cyan); }
.policy-content { width: auto; margin: 0; padding: 0; }
.policy-content > h2:first-child { margin-top: 0; }
.policy-content details { border-top: 1px solid var(--divider); }
.policy-content details:last-of-type { border-bottom: 1px solid var(--divider); }
.policy-content summary { position: relative; padding: 1.4rem 2.5rem 1.4rem 0; color: var(--text); font-size: 0.82rem; letter-spacing: 0.03em; text-transform: uppercase; cursor: pointer; list-style: none; }
.policy-content summary::-webkit-details-marker { display: none; }
.policy-content summary::after { position: absolute; top: 1.25rem; right: 0; content: "+"; color: var(--cyan); font-size: 1.2rem; font-weight: 300; }
.policy-content details[open] summary::after { content: "−"; }
.policy-content details p { margin-top: 0; padding: 0 2rem 1.5rem 0; }
.policy-content .hud-button { margin-top: 2.5rem; }
.policy-editor-note { padding: 1.5rem; border: 1px solid rgba(34, 211, 238, 0.2); background: rgba(34, 211, 238, 0.04); }
.policy-editor-note strong { color: var(--cyan); font-size: 0.65rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; }

.contact-state { --state: var(--cyan); }
.contact-state--error { --state: var(--red); }
.contact-state__stage { display: grid; min-height: 720px; padding: clamp(5rem, 10vw, 9rem) var(--site-pad); place-items: center; text-align: center; background: radial-gradient(circle at 50% 42%, color-mix(in srgb, var(--state) 12%, transparent), transparent 25rem); }
.contact-state__inner { width: min(100%, 850px); }
.contact-state__mark { position: relative; display: grid; width: 126px; height: 126px; margin: 0 auto 3rem; border: 1px solid color-mix(in srgb, var(--state) 42%, transparent); place-items: center; color: var(--state); box-shadow: 0 0 38px color-mix(in srgb, var(--state) 12%, transparent); }
.contact-state__mark::before,
.contact-state__mark::after,
.contact-state__mark i::before,
.contact-state__mark i::after { position: absolute; width: 22px; height: 22px; content: ""; border-color: var(--state); border-style: solid; }
.contact-state__mark::before { top: -2px; left: -2px; border-width: 2px 0 0 2px; }
.contact-state__mark::after { top: -2px; right: -2px; border-width: 2px 2px 0 0; }
.contact-state__mark i::before { bottom: -2px; left: -2px; border-width: 0 0 2px 2px; }
.contact-state__mark i::after { right: -2px; bottom: -2px; border-width: 0 2px 2px 0; }
.contact-state__mark span { color: var(--state); font-size: 2.5rem; }
.contact-state .section-index { justify-content: center; color: var(--state); }
.contact-state h1 { max-width: 12ch; margin: 1.3rem auto 0; font-size: clamp(3.8rem, 8vw, 7rem); }
.contact-state__inner > p:not(.section-index) { max-width: 650px; margin: 2rem auto 0; color: var(--text-secondary); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 1.05rem; line-height: 1.7; }
.contact-state__actions { display: flex; justify-content: center; gap: 1.8rem; align-items: center; flex-wrap: wrap; margin-top: 2.8rem; }

.preview-switcher {
  position: fixed;
  z-index: 40;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  gap: 0.3rem;
  max-width: calc(100vw - 2rem);
  padding: 0.45rem;
  border: 1px solid rgba(34, 211, 238, 0.22);
  background: rgba(2, 9, 12, 0.94);
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(14px);
  overflow-x: auto;
}

.preview-switcher a {
  flex: 0 0 auto;
  padding: 0.62rem 0.72rem;
  color: var(--text-muted);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-switcher a:hover,
.preview-switcher a[aria-current="page"] { color: var(--ground); background: var(--cyan); }

.product-page { --accent: var(--cyan); }

.product-hero {
  padding: clamp(3rem, 8vw, 7rem) var(--site-pad) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 42%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 27rem),
    linear-gradient(180deg, rgba(7, 18, 23, 0.58), transparent 72%);
}

.product-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  width: min(100%, 1180px);
  min-height: 610px;
  margin: 0 auto;
}

.product-breadcrumb {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: clamp(3rem, 7vw, 5rem);
  color: var(--text-muted);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-breadcrumb:hover { color: var(--accent); }
.product-hero .eyebrow { color: var(--accent); }
.product-hero .eyebrow b { font-weight: inherit; }
.product-hero h1 { margin: 1.25rem 0 0; font-size: clamp(4.5rem, 10vw, 9rem); }

.product-hero__intro {
  max-width: 650px;
  margin: 2rem 0 0;
  color: var(--text-secondary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.08rem, 1.8vw, 1.4rem);
  line-height: 1.65;
}

.product-hero__actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2.4rem;
}

.app-store-button {
  position: relative;
  display: grid;
  min-width: 218px;
  min-height: 66px;
  padding: 0.85rem 3.4rem 0.8rem 1.2rem;
  border: 1px solid var(--accent);
  color: var(--ground);
  background: var(--accent);
  box-shadow: 0 0 26px color-mix(in srgb, var(--accent) 18%, transparent);
}

.app-store-button small { font-size: 0.52rem; letter-spacing: 0.08em; text-transform: uppercase; }
.app-store-button strong { margin-top: 0.18rem; font-size: 1rem; letter-spacing: -0.02em; }
.app-store-button i { position: absolute; top: 50%; right: 1.15rem; font-style: normal; transform: translateY(-50%); }
.app-store-button:not(.is-disabled):hover { color: var(--ground); background: var(--cyan-bright); }
.app-store-button.is-disabled { color: var(--text-secondary); border-color: var(--divider); background: rgba(8, 20, 25, 0.8); box-shadow: none; }

.product-hero__art { position: relative; }
.product-hero__art img { display: block; width: 100%; height: auto; }

.product-hero__telemetry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 1180px);
  margin: 0 auto;
  border-top: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
}

.product-hero__telemetry > div { display: flex; flex-direction: column; gap: 0.45rem; min-height: 84px; padding: 1.25rem 1.4rem; border-right: 1px solid color-mix(in srgb, var(--accent) 18%, transparent); }
.product-hero__telemetry > div:last-child { border-right: 0; }
.product-hero__telemetry span { color: var(--text-muted); font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; }
.product-hero__telemetry strong { color: var(--accent); font-size: 0.68rem; font-weight: 400; letter-spacing: 0.07em; text-transform: uppercase; }

.product-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 3rem;
  align-items: end;
  width: min(100% - (var(--site-pad) * 2), 1180px);
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.product-section-heading h2 { margin: 0.8rem 0 0; }
.product-section-heading > p { margin: 0; color: var(--text-secondary); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.7; }

.product-demo { background: rgba(5, 12, 15, 0.58); }
.product-video { width: min(100% - (var(--site-pad) * 2), 1180px); aspect-ratio: 16 / 9; margin: 0 auto; border: 1px solid color-mix(in srgb, var(--accent) 24%, transparent); background: #030608; }
.product-video iframe,
.product-video video,
.product-video .wp-video { width: 100% !important; height: 100% !important; }

.product-video__placeholder {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(34, 211, 238, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--accent) 15%, transparent), transparent 35%);
  background-size: 48px 48px, 48px 48px, auto;
}

.product-video__placeholder > span { display: grid; width: 86px; height: 86px; padding-left: 5px; border: 1px solid var(--accent); place-items: center; color: var(--accent); box-shadow: 0 0 35px color-mix(in srgb, var(--accent) 18%, transparent); }
.product-video__placeholder > div { position: absolute; right: 2rem; bottom: 1.7rem; left: 2rem; display: flex; justify-content: space-between; padding-top: 1rem; border-top: 1px solid color-mix(in srgb, var(--accent) 24%, transparent); }
.product-video__placeholder small { color: var(--text-muted); font-size: 0.56rem; letter-spacing: 0.12em; text-transform: uppercase; }
.product-video__placeholder strong { color: var(--accent); font-size: 0.64rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; }

.product-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(3rem, 8vw, 8rem);
  width: min(100% - (var(--site-pad) * 2), 1180px);
  margin: 0 auto;
}

.product-story { width: auto; margin: 0; padding: 0; }
.product-story h2:first-child { margin-top: 0; }
.product-capabilities { padding-left: clamp(0rem, 4vw, 3rem); border-left: 1px solid color-mix(in srgb, var(--accent) 22%, transparent); }
.product-capabilities ol { margin: 2rem 0 0; padding: 0; list-style: none; }
.product-capabilities li { display: grid; grid-template-columns: 42px 1fr; gap: 1rem; padding: 1.3rem 0; border-top: 1px solid var(--divider); }
.product-capabilities li span { color: var(--accent); font-size: 0.58rem; }
.product-capabilities li strong { font-size: 0.78rem; font-weight: 400; letter-spacing: 0.04em; text-transform: uppercase; }

.product-specs { background: rgba(5, 12, 15, 0.52); }
.product-specs__grid { display: grid; grid-template-columns: repeat(3, 1fr); width: min(100% - (var(--site-pad) * 2), 1180px); margin: 0 auto; border-top: 1px solid color-mix(in srgb, var(--accent) 24%, transparent); border-left: 1px solid color-mix(in srgb, var(--accent) 24%, transparent); }
.product-specs__grid > div { min-height: 290px; padding: clamp(1.5rem, 3vw, 2.5rem); border-right: 1px solid color-mix(in srgb, var(--accent) 20%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--accent) 20%, transparent); }
.product-specs__grid ul { margin: 2rem 0 0; padding: 0; list-style: none; }
.product-specs__grid li { position: relative; padding: 0.9rem 0 0.9rem 1.2rem; border-top: 1px solid var(--divider); color: var(--text-secondary); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 0.88rem; }
.product-specs__grid li::before { position: absolute; top: 1.35rem; left: 0; width: 4px; height: 4px; content: ""; background: var(--accent); box-shadow: 0 0 8px var(--accent); }

.product-purchase { padding-top: clamp(7rem, 14vw, 12rem); padding-bottom: clamp(7rem, 14vw, 12rem); }
.product-purchase__inner { width: min(100% - (var(--site-pad) * 2), 940px); margin: 0 auto; text-align: center; }
.product-purchase h2 { margin: 1.2rem auto 0; }
.product-purchase p:not(.section-index) { max-width: 650px; margin: 2rem auto 0; color: var(--text-secondary); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.7; }
.product-purchase .product-hero__actions { justify-content: center; }
.product-switcher { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.6rem; margin-top: 4rem; }
.product-switcher a { padding: 0.65rem 0.8rem; border: 1px solid var(--divider); color: var(--text-muted); font-size: 0.57rem; letter-spacing: 0.1em; }
.product-switcher a:hover { color: var(--accent); border-color: var(--accent); }

.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: calc(var(--header-height) + 4rem) var(--site-pad) 6rem;
  text-align: center;
}

.not-found__instrument { position: relative; display: grid; width: 170px; height: 170px; margin-bottom: 3rem; border: 1px dashed rgba(230, 94, 94, 0.45); border-radius: 50%; place-items: center; color: var(--red); }
.not-found__instrument::before,
.not-found__instrument::after { position: absolute; content: ""; background: rgba(230, 94, 94, 0.25); }
.not-found__instrument::before { top: 50%; right: -30px; left: -30px; height: 1px; }
.not-found__instrument::after { top: -30px; bottom: -30px; left: 50%; width: 1px; }
.not-found__instrument i { position: absolute; top: 10%; width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 12px var(--red); }
.not-found h1 { margin: 0; font-size: clamp(2.3rem, 6vw, 5.5rem); font-weight: 400; letter-spacing: -0.05em; line-height: 1; }
.not-found > p:not(.section-index) { margin: 1.5rem 0 2.3rem; color: var(--text-secondary); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal[data-delay="1"] { transition-delay: 90ms; }
.reveal[data-delay="2"] { transition-delay: 180ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1180px) {
  .site-header__inner { grid-template-columns: 1fr auto; }
  .system-status { display: none; }
  .hero__copy { grid-column: 1 / span 7; }
  .hero-instrument { grid-column: 8 / span 5; min-width: 330px; }
  .application-card { min-height: 670px; }
  .application-card__body { grid-template-columns: 1fr; padding-top: 2.5rem; }
  .application-card__icon-wrap { width: 160px; margin-bottom: 1.2rem; }
  .section__heading > div { grid-column: 1 / span 7; }
  .section__heading > p { grid-column: 8 / span 5; }
}

@media (max-width: 900px) {
  :root { --header-height: 70px; }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .nav-toggle { display: inline-flex; gap: 0.75rem; align-items: center; padding: 0.6rem 0; cursor: pointer; }
  .nav-toggle__label { color: var(--text-secondary); font-size: 0.61rem; letter-spacing: 0.14em; text-transform: uppercase; }
  .nav-toggle__icon { position: relative; width: 22px; height: 12px; }
  .nav-toggle__icon i { position: absolute; right: 0; left: 0; height: 1px; background: var(--cyan-bright); transition: top 180ms ease, transform 180ms ease; }
  .nav-toggle__icon i:first-child { top: 2px; }
  .nav-toggle__icon i:last-child { top: 9px; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__icon i:first-child { top: 5px; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__icon i:last-child { top: 5px; transform: rotate(-45deg); }
  .site-nav { position: fixed; top: var(--header-height); right: 0; left: 0; max-height: 0; overflow: hidden; border-bottom: 1px solid rgba(34, 211, 238, 0); background: rgba(4, 5, 7, 0.97); transition: max-height 220ms ease, border-color 220ms ease; }
  .site-nav.is-open { max-height: 320px; border-color: rgba(34, 211, 238, 0.2); }
  .site-nav__list { display: block; padding: 1rem var(--site-pad) 1.5rem; }
  .site-nav a { padding: 0.85rem 0; }
  .hero__inner { display: block; padding-top: 6rem; padding-bottom: 10rem; }
  .hero__copy { max-width: 680px; }
  .hero-instrument { position: absolute; z-index: 0; right: -190px; bottom: 85px; width: 460px; min-width: 0; opacity: 0.28; }
  .hero h1 { max-width: 10ch; font-size: clamp(3.3rem, 12vw, 6.4rem); }
  .hero__telemetry { grid-template-columns: repeat(2, 1fr); }
  .hero__telemetry div { min-height: 70px; padding-top: 0.8rem; padding-bottom: 0.8rem; }
  .hero__telemetry div:nth-child(2) { border-right: 0; }
  .hero__telemetry div:nth-child(-n+2) { border-bottom: 1px solid rgba(34, 211, 238, 0.12); }
  .section__heading { display: block; }
  .section__heading > p { max-width: 620px; margin-top: 1.8rem; }
  .application-card { min-height: auto; }
  .approach__inner { display: block; }
  .approach__statement { padding-right: 0; }
  .principles { margin-top: 4rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-aside { max-width: 680px; }
  .product-hero__inner { grid-template-columns: minmax(0, 1fr) minmax(240px, 320px); gap: 3rem; }
  .product-section-heading { display: block; }
  .product-section-heading > p { max-width: 620px; margin-top: 1.5rem; }
  .product-detail__grid { grid-template-columns: 1fr; }
  .product-capabilities { padding: 0; border-top: 1px solid color-mix(in srgb, var(--accent) 22%, transparent); border-left: 0; }
  .product-specs__grid { grid-template-columns: 1fr; }
  .product-specs__grid > div { min-height: 0; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-index { position: static; }
  .site-footer__inner { min-height: 220px; }
}

@media (max-width: 680px) {
  :root { --site-pad: 1.2rem; }
  .trajectory-logo { width: 34px; height: 34px; }
  .brand-lockup__type strong { font-size: 0.7rem; }
  .brand-lockup__type small { font-size: 0.47rem; }
  .hero { min-height: 820px; }
  .hero__inner { min-height: 670px; padding-top: 5rem; padding-bottom: 9rem; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.6rem); }
  .hero__intro { font-size: 1rem; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 1.3rem; }
  .hero-instrument { right: -150px; bottom: 112px; width: 350px; }
  .hero__telemetry { min-height: 142px; }
  .hero__telemetry strong { font-size: 0.64rem; }
  .section { padding: 5.5rem 0; }
  .section h2 { font-size: clamp(2.6rem, 13vw, 4.2rem); }
  .application-grid { grid-template-columns: 1fr; border-left: 0; }
  .application-card { padding: 1.4rem var(--site-pad) 4.3rem; border-right: 0; }
  .application-card__body { gap: 2rem; }
  .application-card__icon-wrap { width: 150px; }
  .application-card h3 { font-size: 2.8rem; }
  .application-card__signal { bottom: 1.2rem; }
  .principle { grid-template-columns: 36px 1fr; }
  .contact-cta { min-height: 520px; }
  .contact-cta__inner { display: block; }
  .contact-cta .section-index { margin-bottom: 1.3rem; }
  .contact-cta .hud-button { margin-top: 2rem; }
  .contact-cta__field { right: -35%; width: 130vw; opacity: 0.5; }
  .contact-page__hero { min-height: 500px; }
  .contact-page__hero h1 { font-size: clamp(3.6rem, 17vw, 5.8rem); }
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-field--wide { grid-column: auto; }
  .turnstile-placeholder,
  .contact-form-actions { grid-column: auto; }
  .contact-form-actions { align-items: flex-start; flex-direction: column; }
  .utility-screen__stage { min-height: 680px; }
  .utility-screen__logo { width: 72px; height: 72px; margin-bottom: 2.2rem; }
  .utility-screen h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .utility-screen__status { grid-template-columns: 10px 1fr; }
  .utility-screen__status strong { grid-column: 2; }
  .policy-hero h1 { font-size: clamp(3.3rem, 15vw, 5.4rem); }
  .policy-meta { align-items: flex-start; flex-direction: column; }
  .contact-state__stage { min-height: 650px; }
  .contact-state__mark { width: 104px; height: 104px; }
  .contact-state h1 { font-size: clamp(3.2rem, 14vw, 5rem); }
  .contact-state__actions { align-items: center; flex-direction: column; }
  .site-footer__inner { display: block; padding-top: 3rem; padding-bottom: 3rem; }
  .site-footer__meta { margin-top: 3rem; text-align: left; }
  .footer-nav { justify-content: flex-start; }
  .product-hero { padding-top: 3rem; }
  .product-hero__inner { display: flex; min-height: 0; padding-bottom: 3rem; flex-direction: column-reverse; align-items: flex-start; }
  .product-hero__art { width: 190px; align-self: center; }
  .product-breadcrumb { margin-bottom: 2.5rem; }
  .product-hero h1 { font-size: clamp(3.8rem, 19vw, 6rem); }
  .product-hero__actions { align-items: flex-start; flex-direction: column; }
  .product-hero__telemetry { grid-template-columns: 1fr; }
  .product-hero__telemetry > div { min-height: 68px; border-right: 0; border-bottom: 1px solid color-mix(in srgb, var(--accent) 18%, transparent); }
  .product-video__placeholder > div { right: 1rem; bottom: 1rem; left: 1rem; display: block; }
  .product-video__placeholder strong { display: block; margin-top: 0.4rem; }
  .product-video__placeholder > span { width: 62px; height: 62px; }
  .preview-switcher { right: var(--site-pad); bottom: var(--site-pad); left: var(--site-pad); max-width: none; }
}

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