:root {
  --ink: #050505;
  --ink-2: #191b1f;
  --muted: #5a626e;
  --muted-2: #7b8491;
  --line: #d7dde5;
  --line-dark: #2a3038;
  --paper: #ffffff;
  --soft: #f4f6f8;
  --soft-2: #e9edf2;
  --dark: #070809;
  --dark-2: #101317;
  --blue: #176bff;
  --blue-2: #0e54ce;
  --cyan: #19b6d7;
  --green: #1a9f5a;
  --amber: #cf8500;
  --red: #d83b31;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(0, 0, 0, .14);
  --shadow-soft: 0 12px 34px rgba(13, 27, 48, .08);
  color-scheme: light;
  font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

img,
canvas {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(920px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(5, 5, 5, .08);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  flex: 0 0 auto;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 21px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -.9px;
  line-height: 1;
  white-space: nowrap;
}

.brand .chip {
  color: #000;
}

.brand .harbor {
  color: var(--blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  color: #202329;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  border-color: var(--blue);
  outline: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.user-link {
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
}

.mobile-menu {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #c8d0da;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  position: relative;
}

.mobile-menu span,
.mobile-menu::before,
.mobile-menu::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--ink);
  transition: transform .18s ease, opacity .18s ease;
}

.mobile-menu::before {
  top: 14px;
}

.mobile-menu span {
  top: 21px;
}

.mobile-menu::after {
  top: 28px;
}

body.menu-open .mobile-menu::before {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .mobile-menu span {
  opacity: 0;
}

body.menu-open .mobile-menu::after {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  background: #262626;
  border-color: #262626;
  outline: none;
}

.btn.secondary {
  background: #fff;
  color: var(--ink);
  border-color: #bac3ce;
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  background: #f6f7f9;
  border-color: #8994a1;
}

.btn.blue {
  background: var(--blue);
  border-color: var(--blue);
}

.btn.blue:hover,
.btn.blue:focus-visible {
  background: var(--blue-2);
  border-color: var(--blue-2);
}

.btn.ghost {
  background: transparent;
  border-color: #d5dce5;
  color: var(--ink);
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  background: #f2f5f8;
  border-color: #aeb8c5;
}

.btn.small {
  min-height: 36px;
  padding: 0 13px;
  font-size: 13px;
}

.icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.page-hero {
  min-height: 58svh;
  display: grid;
  align-items: center;
  padding: 74px 0 58px;
  background: #f7f9fb;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-hero.dark {
  background: var(--dark);
  color: #fff;
  border-bottom-color: #161a20;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .68fr);
  gap: 52px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(23, 107, 255, .15);
}

.page-hero.dark .kicker {
  color: #80aefe;
}

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

h1 {
  margin-bottom: 20px;
  font-size: 88px;
  line-height: .96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 58px;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0;
}

.lead {
  color: var(--muted);
  font-size: 23px;
  line-height: 1.42;
}

.dark .lead {
  color: #c6cfdb;
}

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

.fine {
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.45;
}

.hero {
  position: relative;
  min-height: 91svh;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: #050607;
  border-bottom: 1px solid #15191f;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  opacity: .96;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .93) 0%, rgba(0, 0, 0, .72) 39%, rgba(0, 0, 0, .28) 72%, rgba(0, 0, 0, .16) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .06) 0%, rgba(0, 0, 0, .15) 62%, rgba(0, 0, 0, .68) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(180deg, rgba(5, 6, 7, 0), #050607);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .58fr);
  gap: 50px;
  align-items: center;
  min-height: calc(91svh - 72px);
  padding: 66px 0 52px;
}

.notice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #f4f8ff;
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(16px);
}

.notice::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(23, 107, 255, .2);
}

.hero h1 {
  max-width: 820px;
  margin: 22px 0 20px;
  font-size: 104px;
  line-height: .92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  color: #d6dfeb;
  font-size: 23px;
  line-height: 1.44;
}

.hero-actions,
.section-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.metrics-card {
  align-self: stretch;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(7, 8, 9, .72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.metric-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 64px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  background: rgba(255, 255, 255, .07);
}

.metric-label {
  color: #bcc7d4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.metric-value {
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  white-space: nowrap;
}

.section {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}

.section.tall {
  min-height: 94svh;
  display: grid;
  align-items: center;
}

.section.dark {
  background: var(--dark);
  color: #fff;
  border-bottom-color: #1a2028;
}

.section.soft {
  background: var(--soft);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .52fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head p {
  margin-bottom: 0;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.card.pad {
  padding: 22px;
}

.dark .card,
.card.dark-card {
  border-color: rgba(255, 255, 255, .13);
  background: #101317;
  color: #fff;
  box-shadow: none;
}

.dark .muted,
.dark .fine {
  color: #aeb8c6;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.workflow-step {
  min-height: 235px;
  padding: 22px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.workflow-step:last-child {
  border-right: 0;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.status-pill,
.tag,
.chip-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: fit-content;
  max-width: 100%;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: #2a3038;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue);
}

.status-pill.green::before {
  background: var(--green);
}

.status-pill.amber::before {
  background: var(--amber);
}

.status-pill.red::before {
  background: var(--red);
}

.status-pill.dark {
  background: #0f1216;
  border-color: #303741;
  color: #fff;
}

.tag.blue {
  color: var(--blue);
  border-color: rgba(23, 107, 255, .25);
  background: rgba(23, 107, 255, .08);
}

.tag.dark {
  color: #fff;
  background: #11151a;
  border-color: #303842;
}

.departure-board {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid #29313b;
  background: #070809;
  box-shadow: 0 20px 80px rgba(0, 0, 0, .25);
}

.board-top {
  display: grid;
  grid-template-columns: 1.2fr .6fr .7fr .7fr;
  gap: 1px;
  background: #1f2630;
  color: #99a6b7;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.board-top span {
  padding: 12px 14px;
  background: #11151a;
}

.board-row {
  display: grid;
  grid-template-columns: 1.2fr .6fr .7fr .7fr;
  gap: 1px;
  background: #171d24;
  color: #fff;
}

.board-row > div {
  min-height: 58px;
  padding: 13px 14px;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 15px),
    #090b0e;
  display: flex;
  align-items: center;
  font-weight: 850;
}

.board-row .route {
  color: #c7d2df;
  font-weight: 700;
}

.board-row .go {
  color: #80aefe;
}

.board-row .soon {
  color: #ffcc76;
}

.template-card {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 315px;
  padding: 22px;
  overflow: hidden;
}

.template-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -55px auto;
  width: 155px;
  height: 155px;
  border: 1px solid rgba(23, 107, 255, .18);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49%, rgba(23, 107, 255, .22) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(23, 107, 255, .22) 50%, transparent 51%);
}

.template-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.spec-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 9px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

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

.ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ecosystem-item {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: #101317;
}

.incentive-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .58fr);
  gap: 26px;
  align-items: stretch;
}

.coupon-stack {
  display: grid;
  gap: 12px;
}

.coupon {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px dashed #9db8ef;
  background: #f7faff;
}

.dashboard-preview {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 16px;
}

.sidebar-preview {
  padding: 18px;
  border-radius: var(--radius);
  background: #0d1117;
  color: #fff;
}

.sidebar-preview a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: #c7d2df;
  font-size: 14px;
  font-weight: 750;
}

.dashboard-list {
  display: grid;
  gap: 10px;
}

.list-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.final-cta {
  min-height: 70svh;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .62)),
    radial-gradient(circle at 75% 20%, rgba(23, 107, 255, .32), transparent 34%),
    #050607;
}

.footer {
  padding: 38px 0;
  color: #d5dde8;
  background: #050607;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  font-weight: 750;
}

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

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

.value-card {
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

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

.chip-thumb {
  position: relative;
  aspect-ratio: 1.25;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid #28313c;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
    #0a0d11;
  background-size: 18px 18px;
}

.chip-thumb::before {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(128, 174, 254, .72);
  background:
    linear-gradient(90deg, transparent 0 20%, rgba(23, 107, 255, .45) 20% 24%, transparent 24% 100%),
    linear-gradient(0deg, transparent 0 40%, rgba(25, 182, 215, .36) 40% 43%, transparent 43% 100%),
    rgba(23, 107, 255, .08);
  box-shadow: 0 0 38px rgba(23, 107, 255, .18);
}

.chip-thumb::after {
  content: "";
  position: absolute;
  inset: 24% 18% 18% 48%;
  border: 1px solid rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .08);
}

.wip-tracker {
  display: grid;
  gap: 12px;
}

.wip-step {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.dot {
  width: 16px;
  height: 16px;
  margin: 3px auto 0;
  border-radius: 999px;
  border: 2px solid #b8c2cf;
}

.wip-step.completed .dot {
  border-color: var(--green);
  background: var(--green);
}

.wip-step.in-progress .dot {
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 0 0 7px rgba(23, 107, 255, .12);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.data-table th,
.data-table td {
  padding: 15px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.data-table th {
  color: #525b66;
  background: #f4f6f8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.mode-explainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.schematic-wrap {
  position: relative;
  min-height: 470px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(23, 107, 255, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 107, 255, .08) 1px, transparent 1px),
    #fbfcfe;
  background-size: 26px 26px;
  overflow: hidden;
}

.schematic-toolbar {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.segmented {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.segmented button {
  min-height: 32px;
  padding: 0 13px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.segmented button.active {
  background: var(--ink);
  color: #fff;
}

.schematic {
  position: absolute;
  inset: 76px 36px 36px;
}

.reticle,
.mpc-chip {
  position: absolute;
  inset: 8% 8%;
  border: 2px solid #11161d;
  background:
    linear-gradient(90deg, rgba(23, 107, 255, .12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 107, 255, .12) 1px, transparent 1px),
    rgba(255, 255, 255, .88);
  background-size: 36px 36px;
  box-shadow: 0 30px 60px rgba(13, 27, 48, .12);
}

.reticle::before,
.reticle::after {
  content: "";
  position: absolute;
  background: rgba(17, 22, 29, .88);
}

.reticle::before {
  left: 50%;
  top: -10px;
  bottom: -10px;
  width: 1px;
}

.reticle::after {
  top: 50%;
  left: -10px;
  right: -10px;
  height: 1px;
}

.die-highlight {
  position: absolute;
  left: 18%;
  top: 20%;
  width: 26%;
  height: 30%;
  border: 2px solid var(--blue);
  background: rgba(23, 107, 255, .15);
  box-shadow: 0 0 0 7px rgba(23, 107, 255, .09);
  animation: mpwBox 7s ease-in-out infinite;
}

.die-highlight::after,
.region::after {
  content: attr(data-label);
  position: absolute;
  left: 8px;
  top: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

@keyframes mpwBox {
  0%, 100% { left: 14%; top: 18%; width: 22%; height: 26%; }
  28% { left: 48%; top: 15%; width: 34%; height: 38%; }
  55% { left: 32%; top: 55%; width: 26%; height: 28%; }
  78% { left: 60%; top: 49%; width: 18%; height: 21%; }
}

.mpc-chip {
  inset: 4% 11%;
  border-width: 2px;
}

.pad-ring {
  position: absolute;
  inset: 7%;
  border: 14px solid #1d2530;
  background: rgba(255, 255, 255, .72);
}

.pad-ring::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px dashed rgba(255, 255, 255, .45);
}

.core-area {
  position: absolute;
  inset: 22%;
  border: 1px solid #445263;
  background:
    linear-gradient(90deg, rgba(23, 107, 255, .16) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 107, 255, .16) 1px, transparent 1px),
    rgba(245, 248, 252, .94);
  background-size: 24px 24px;
}

.region {
  position: absolute;
  border: 2px solid var(--blue);
  background: rgba(23, 107, 255, .14);
  box-shadow: 0 0 0 6px rgba(23, 107, 255, .08);
}

.region.r1 {
  left: 28%;
  top: 28%;
  width: 18%;
  height: 20%;
  animation: mpcOne 8s ease-in-out infinite;
}

.region.r2 {
  left: 54%;
  top: 31%;
  width: 19%;
  height: 18%;
  border-color: var(--cyan);
  background: rgba(25, 182, 215, .13);
  animation: mpcTwo 9s ease-in-out infinite;
}

.region.r3 {
  left: 37%;
  top: 59%;
  width: 27%;
  height: 13%;
  border-color: var(--green);
  background: rgba(26, 159, 90, .13);
  animation: mpcThree 10s ease-in-out infinite;
}

@keyframes mpcOne {
  0%, 100% { left: 28%; top: 28%; width: 18%; height: 20%; }
  45% { left: 34%; top: 36%; width: 24%; height: 16%; }
  75% { left: 25%; top: 52%; width: 15%; height: 15%; }
}

@keyframes mpcTwo {
  0%, 100% { left: 54%; top: 31%; width: 19%; height: 18%; }
  36% { left: 59%; top: 48%; width: 16%; height: 24%; }
  70% { left: 45%; top: 25%; width: 28%; height: 13%; }
}

@keyframes mpcThree {
  0%, 100% { left: 37%; top: 59%; width: 27%; height: 13%; }
  42% { left: 24%; top: 42%; width: 18%; height: 27%; }
  76% { left: 50%; top: 59%; width: 25%; height: 16%; }
}

.hidden {
  display: none !important;
}

.calculator {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(320px, .52fr);
  gap: 22px;
  align-items: start;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label,
.field .label {
  color: #313842;
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #bac3ce;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
}

.check-grid {
  display: grid;
  gap: 10px;
}

.check-item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.check-item input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}

.price-preview {
  position: sticky;
  top: 92px;
  padding: 22px;
  border: 1px solid #222832;
  border-radius: var(--radius);
  background: #090b0e;
  color: #fff;
  box-shadow: var(--shadow);
}

.price-total {
  margin: 16px 0 8px;
  font-size: 68px;
  line-height: .95;
  font-weight: 900;
}

.price-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: #c5cfdb;
}

.price-line strong {
  color: #fff;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.dashboard-nav {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius);
  background: #0a0d11;
  color: #fff;
}

.dashboard-nav a,
.dashboard-nav button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #c9d3df;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.dashboard-nav a.active,
.dashboard-nav button:hover,
.dashboard-nav a:hover {
  background: #171d24;
  color: #fff;
}

.dash-section {
  display: grid;
  gap: 16px;
  margin-bottom: 26px;
}

.dash-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.order-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.voyage-mini {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.voyage-node {
  min-height: 76px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f6f8fa;
  font-size: 12px;
  font-weight: 850;
}

.voyage-node.completed {
  background: rgba(26, 159, 90, .1);
  border-color: rgba(26, 159, 90, .24);
}

.voyage-node.progress {
  background: rgba(23, 107, 255, .1);
  border-color: rgba(23, 107, 255, .25);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, .62);
}

.modal-backdrop.active {
  display: flex;
}

.modal {
  width: min(820px, 100%);
  max-height: min(760px, calc(100svh - 40px));
  overflow: auto;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .34);
}

.modal-head,
.modal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.modal-foot {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.modal-body {
  padding: 20px;
}

.close-modal {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

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

.wizard-step {
  padding: 10px;
  border-radius: 6px;
  background: #eef2f7;
  color: #596372;
  font-size: 12px;
  font-weight: 900;
}

.wizard-step.active {
  background: var(--ink);
  color: #fff;
}

.file-rules {
  display: grid;
  gap: 10px;
}

.file-rule {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

@media (max-width: 980px) {
  h1 {
    font-size: 70px;
  }

  h2 {
    font-size: 48px;
  }

  .hero h1 {
    font-size: 78px;
  }

  .lead,
  .hero-copy {
    font-size: 21px;
  }

  .nav-links,
  .nav-actions {
    position: fixed;
    left: 20px;
    right: 20px;
    display: none;
    background: #fff;
  }

  .nav-links {
    top: 82px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius) var(--radius) 0 0;
    box-shadow: var(--shadow-soft);
  }

  .nav-links a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-actions {
    top: 322px;
    flex-wrap: wrap;
    padding: 12px;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  body.menu-open .nav-links,
  body.menu-open .nav-actions {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid,
  .page-hero-grid,
  .section-head,
  .incentive-band,
  .dashboard-preview,
  .calculator,
  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .metrics-card {
    align-content: stretch;
  }

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

  .workflow-step {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-step:last-child {
    border-bottom: 0;
  }

  .grid-4,
  .grid-3,
  .mission-grid,
  .value-grid,
  .shuttle-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-preview,
  .dashboard-nav {
    position: static;
  }

  .voyage-mini {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: 0;
    padding: 52px 0 36px;
  }

  .section {
    padding: 62px 0;
  }

  .section.tall {
    min-height: auto;
  }

  .page-hero {
    min-height: auto;
    padding: 56px 0 46px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .lead,
  .hero-copy {
    font-size: 18px;
  }

  .metric-value {
    font-size: 25px;
  }

  .price-total {
    font-size: 48px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .mission-grid,
  .value-grid,
  .shuttle-gallery,
  .ecosystem-grid,
  .mode-explainer {
    grid-template-columns: 1fr;
  }

  .metric-row,
  .list-row,
  .wip-step {
    grid-template-columns: 1fr;
  }

  .metric-value {
    white-space: normal;
  }

  .board-top,
  .board-row {
    grid-template-columns: 1fr;
  }

  .board-top span:not(:first-child) {
    display: none;
  }

  .board-row > div {
    min-height: 40px;
  }

  .schematic-wrap {
    min-height: 380px;
  }

  .schematic-toolbar {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .schematic {
    inset: 110px 14px 18px;
  }

  .data-table {
    display: block;
    overflow-x: auto;
  }

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