.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100% - 36px));
  min-height: 58px;
  padding: 8px 10px 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(2, 7, 12, 0.58);
  box-shadow: 0 18px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px) saturate(160%);
  transform: translateX(-50%);
}

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

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--ink-dim);
  font-size: 0.83rem;
  transition: color 180ms ease, background 180ms ease;
}

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

.nav-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: #031018;
  background: var(--ink);
  font-size: 0.84rem;
  font-weight: 760;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: end;
  gap: 48px;
  width: min(var(--max), 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding-top: 160px;
}

.hero::before {
  opacity: 0.25;
}

.hero__meta {
  position: absolute;
  top: 118px;
  left: 32px;
  right: 32px;
  display: flex;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding-bottom: 34px;
}

.hero__title {
  max-width: 920px;
  margin-top: 18px;
  font-size: 7.1rem;
  line-height: 0.88;
}

.hero__lede {
  max-width: 680px;
  margin-top: 28px;
  font-size: 1.24rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-instrument {
  position: relative;
  z-index: 2;
  min-height: 430px;
  padding: 22px;
  transform-style: preserve-3d;
}

.instrument__header,
.risk-theater__top,
.risk-theater__bottom,
.dashboard__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.instrument__header span,
.risk-theater__top span,
.dashboard__bar span {
  color: var(--muted);
  font-size: 0.77rem;
  text-transform: uppercase;
}

.instrument__header strong {
  color: var(--cyan);
  font-size: 1.75rem;
}

.instrument__dial {
  position: relative;
  height: 210px;
  margin: 34px 0 24px;
  border: 1px solid rgba(125, 231, 255, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent 49%, rgba(125, 231, 255, 0.28) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(125, 231, 255, 0.18) 50%, transparent 51%),
    rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.instrument__dial span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(125, 231, 255, 0.34);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.instrument__dial span:nth-child(2) {
  width: 124px;
  height: 124px;
  border-color: rgba(135, 255, 208, 0.3);
}

.instrument__dial span:nth-child(3) {
  width: 58px;
  height: 58px;
  background: rgba(125, 231, 255, 0.08);
}

.instrument__rows {
  display: grid;
  gap: 12px;
}

.instrument__rows p {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.instrument__rows strong {
  color: var(--ink);
}

.statement {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 64px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.statement__copy {
  max-width: 940px;
}

.statement__copy p {
  max-width: 760px;
  margin-top: 30px;
  font-size: 1.45rem;
}

.philosophy-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.philosophy-tile,
.tech-module {
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  transform-style: preserve-3d;
}

.philosophy-tile span,
.module-index {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 800;
}

.philosophy-tile h3,
.tech-module h3 {
  margin-top: 58px;
  font-size: 1.7rem;
}

.philosophy-tile p,
.tech-module p {
  margin-top: 16px;
  font-size: 0.98rem;
}

.technology,
.dashboard-section,
.satellite,
.enterprise,
.timeline {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.tech-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.module-visual {
  position: relative;
  height: 150px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
}

.module-visual--satellite span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 160px;
  height: 46px;
  border: 1px solid rgba(125, 231, 255, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(var(--r, 0deg));
}

.module-visual--satellite span:nth-child(2) {
  --r: 60deg;
}

.module-visual--satellite span:nth-child(3) {
  --r: -60deg;
}

.module-visual--model {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 12px;
}

.module-visual--model span {
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(125, 231, 255, 0.34), rgba(135, 255, 208, 0.08));
  transform-origin: bottom;
}

.module-visual--command span {
  position: absolute;
  left: 14px;
  right: 14px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.module-visual--command span:nth-child(1) { top: 36px; }
.module-visual--command span:nth-child(2) { top: 76px; }
.module-visual--command span:nth-child(3) { top: 116px; }

.climate-intel,
.prediction,
.future,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  align-items: center;
  gap: 56px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.risk-theater {
  padding: 22px;
  min-height: 560px;
}

.risk-theater__top strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.risk-theater__top strong::before,
.dashboard__status i {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  grid-auto-rows: 24px;
  gap: 5px;
  margin: 26px 0;
}

.risk-grid span {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 3px;
  background: rgba(125, 231, 255, 0.08);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.risk-grid span:hover {
  transform: scale(1.14);
  border-color: rgba(255, 255, 255, 0.3);
}

.risk-grid span[data-risk="2"] { background: rgba(135, 255, 208, 0.18); }
.risk-grid span[data-risk="3"] { background: rgba(255, 198, 110, 0.24); }
.risk-grid span[data-risk="4"] { background: rgba(255, 109, 122, 0.32); }

.risk-theater__bottom {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.dashboard {
  position: relative;
  z-index: 2;
  padding: 18px;
}

.dashboard__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard__layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.dashboard__metric,
.dashboard__chart,
.dashboard__events {
  min-height: 190px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.dashboard__metric span,
.dashboard__metric small {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.dashboard__metric strong {
  display: block;
  margin: 26px 0 18px;
  font-size: 3.2rem;
  line-height: 1;
}

.dashboard__metric small {
  display: block;
  max-width: 250px;
  text-transform: none;
}

.dashboard__chart {
  position: relative;
  grid-column: span 2;
  min-height: 260px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
}

.chart-line {
  position: absolute;
  left: -5%;
  right: -5%;
  height: 90px;
  border: solid var(--cyan);
  border-width: 2px 0 0 0;
  border-radius: 50%;
  opacity: 0.72;
}

.chart-line--one { top: 50px; transform: rotate(-2deg); }
.chart-line--two { top: 92px; border-color: var(--green); transform: rotate(3deg); }
.chart-line--three { top: 132px; border-color: var(--amber); transform: rotate(-5deg); }

.chart-scan {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 26px var(--cyan);
}

.dashboard__events {
  grid-column: span 1;
  min-height: 260px;
}

.dashboard__events p {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.dashboard__events span {
  color: var(--cyan);
  font-variant-numeric: tabular-nums;
}

.infrastructure {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.82fr);
  align-items: center;
  gap: 62px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.infrastructure__visual {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.corridor {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 2px;
  background: rgba(125, 231, 255, 0.22);
}

.corridor--one { top: 34%; transform: rotate(-12deg); }
.corridor--two { top: 52%; transform: rotate(7deg); }
.corridor--three { top: 68%; transform: rotate(-3deg); }

.corridor span {
  position: absolute;
  top: -10px;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(125, 231, 255, 0.58);
  border-radius: 50%;
  background: rgba(2, 5, 10, 0.8);
  box-shadow: 0 0 24px rgba(125, 231, 255, 0.22);
}

.corridor span:nth-child(1) { left: 12%; }
.corridor span:nth-child(2) { left: 48%; }
.corridor span:nth-child(3) { left: 82%; }

.orbit-system {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  height: 620px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(125, 231, 255, 0.38);
  border-radius: 50%;
  background:
    linear-gradient(120deg, rgba(125, 231, 255, 0.34), rgba(135, 255, 208, 0.06)),
    rgba(255, 255, 255, 0.05);
  transform: translate(-50%, -50%);
}

.orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(64deg);
}

.orbit-ring--one { width: 330px; height: 330px; }
.orbit-ring--two { width: 470px; height: 470px; transform: translate(-50%, -50%) rotateX(64deg) rotate(34deg); }
.orbit-ring--three { width: 620px; height: 620px; transform: translate(-50%, -50%) rotateX(64deg) rotate(-22deg); }

.orbit-ring span {
  position: absolute;
  left: 50%;
  top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 24px var(--cyan);
}

.orbit-readout {
  position: absolute;
  left: 28px;
  bottom: 26px;
  width: min(320px, calc(100% - 56px));
}

.orbit-readout strong {
  display: block;
  font-size: 4.4rem;
  line-height: 1;
}

.orbit-readout span {
  color: var(--ink-dim);
}

.prediction-stack {
  display: grid;
  gap: 12px;
  perspective: 1200px;
}

.prediction-layer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  transform: rotateY(-12deg) translateX(var(--offset, 0));
}

.prediction-layer:nth-child(2) { --offset: 22px; }
.prediction-layer:nth-child(3) { --offset: 44px; }
.prediction-layer:nth-child(4) { --offset: 66px; }
.prediction-layer:nth-child(5) { --offset: 88px; }

.prediction-layer span {
  color: var(--ink-dim);
}

.prediction-layer strong {
  color: var(--cyan);
  font-size: 1.7rem;
}

.solution-tabs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
}

.solution-tabs__nav {
  display: grid;
  gap: 10px;
}

.solution-tabs__nav button {
  min-height: 64px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-dim);
  background: rgba(255, 255, 255, 0.045);
  text-align: left;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.solution-tabs__nav button:hover,
.solution-tabs__nav button.is-active {
  color: var(--ink);
  border-color: rgba(125, 231, 255, 0.42);
  background: rgba(125, 231, 255, 0.095);
  transform: translateX(4px);
}

.solution-tabs__panel {
  min-height: 286px;
  padding: 32px;
}

.solution-tabs__panel span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.solution-tabs__panel h3 {
  margin-top: 44px;
  font-size: 2.8rem;
}

.solution-tabs__panel p {
  max-width: 640px;
  margin-top: 18px;
  font-size: 1.1rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 18px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.stat {
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.stat strong {
  display: block;
  font-size: 5.4rem;
  line-height: 0.95;
}

.stat p {
  max-width: 310px;
  margin-top: 120px;
}

.timeline-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.timeline-rail article {
  min-height: 320px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.timeline-rail span {
  color: var(--cyan);
  font-weight: 800;
}

.timeline-rail h3 {
  margin-top: 118px;
  font-size: 1.7rem;
}

.timeline-rail p {
  margin-top: 14px;
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.series-grid span {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink-dim);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
  outline: 0;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form input {
  height: 54px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 116px;
  padding: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(125, 231, 255, 0.56);
  background: rgba(0, 0, 0, 0.32);
}

.signature-badge,
.fraser-credit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  border: 1px solid rgba(135, 255, 208, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(135, 255, 208, 0.1), transparent 42%),
    rgba(2, 7, 12, 0.62);
  color: var(--ink);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(150%);
}

.signature-badge {
  margin-top: 30px;
  padding: 8px 14px 8px 8px;
  color: var(--ink-dim);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.fraser-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(135, 255, 208, 0.38);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(135, 255, 208, 0.18), transparent 58%),
    #02070d;
  box-shadow:
    inset 0 0 18px rgba(135, 255, 208, 0.1),
    0 0 26px rgba(135, 255, 208, 0.12);
  overflow: hidden;
}

.fraser-mark img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(53, 194, 135, 0.28));
}

.fraser-credit {
  padding: 8px 16px 8px 8px;
}

.fraser-credit__copy {
  display: grid;
  gap: 2px;
}

.fraser-credit strong {
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.1;
}

.fraser-credit small {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.2;
}

.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
