:root {
  --paper: #f4f7fb;
  --paper-soft: #e7edf7;
  --ink: #08162b;
  --forest: #0217d4;
  --forest-deep: #020d38;
  --sprout: #0217d4;
  --mark-core: #b8d0f8;
  --clay: #ff6b45;
  --mist: #d9e5f5;
  --rule: rgba(8, 22, 43, 0.18);
  --rule-light: rgba(244, 247, 251, 0.22);
  --display: "DIN Condensed", "Avenir Next Condensed", "Helvetica Neue", sans-serif;
  --body: "Avenir Next", "Helvetica Neue", sans-serif;
  --mono: "SFMono-Regular", Menlo, Consolas, monospace;
  --page: min(1240px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(8, 22, 43, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 22, 43, 0.028) 1px, transparent 1px),
    radial-gradient(circle at 78% 12%, rgba(2, 23, 212, 0.12), transparent 23rem),
    var(--paper);
  background-size: 48px 48px, 48px 48px, auto, auto;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.055;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

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

img,
svg {
  display: block;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  width: var(--page);
  height: 92px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--rule);
  transform: translateX(-50%);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.wordmark-mark {
  width: 26px;
  height: 26px;
  overflow: visible;
}

.wordmark-mark path {
  stroke: currentColor;
  stroke-width: 1.3;
}

.wordmark-mark circle {
  fill: var(--mark-core);
  stroke: var(--ink);
  stroke-width: 1.3;
}

.header-action,
.text-link {
  position: relative;
}

.header-action::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms ease;
}

.header-action:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  font-size: 13px;
  font-weight: 600;
}

.header-utilities {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--mono);
  font-size: 9px;
}

.language-switch > span {
  display: none;
}

.language-switch button {
  width: 28px;
  height: 28px;
  padding: 0;
  display: grid;
  place-items: center;
  color: rgba(8, 22, 43, 0.48);
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 0;
  font: inherit;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.language-switch button[aria-pressed="true"] {
  color: var(--paper);
  background: var(--forest);
  border-color: var(--forest);
}

.hero {
  width: var(--page);
  min-height: 100svh;
  margin: 0 auto;
  padding: 154px 0 40px;
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  gap: 58px;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.eyebrow,
.visual-meta,
.section-label,
.project-name,
.kicker,
.capability-number {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(8, 22, 43, 0.62);
  font-size: 10px;
}

.hero-title {
  max-width: 730px;
  margin: clamp(68px, 8.5vh, 96px) 0 0;
  font-family: var(--display);
  font-size: clamp(76px, 7.3vw, 122px);
  font-weight: 650;
  line-height: 0.84;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.hero-title em,
.statement em {
  color: var(--forest);
  font-family: var(--mono);
  font-style: normal;
  font-weight: 600;
}

.hero-title em {
  display: block;
  width: fit-content;
  margin-top: 0.22em;
  padding: 0.12em 0.18em;
  color: var(--paper);
  background: var(--forest);
  font-size: 0.46em;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.hero-bottom {
  margin-top: auto;
  padding-top: 24px;
  display: grid;
  grid-template-columns: minmax(250px, 430px) 1fr;
  gap: 32px;
  border-top: 1px solid var(--rule);
}

.hero-bottom p {
  max-width: 370px;
  margin: 0;
  color: rgba(8, 22, 43, 0.76);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.hero-model-link {
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
}

.hero-model-link::after {
  display: none;
}

.button {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 650;
  transition: color 250ms ease, background 250ms ease, transform 250ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  width: 176px;
  color: var(--paper);
  background: var(--ink);
}

.button-primary:hover {
  color: var(--paper);
  background: var(--forest);
}

.text-link {
  display: inline-flex;
  gap: 22px;
  font-size: 13px;
  font-weight: 600;
}

.system-visual {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    var(--forest-deep);
  background-size: 52px 52px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  isolation: isolate;
}

.system-visual::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 60% 30%, rgba(2, 23, 212, 0.5), transparent 42%);
  content: "";
}

.visual-meta {
  position: absolute;
  right: 22px;
  left: 22px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(244, 247, 251, 0.72);
  font-size: 9px;
}

.visual-meta-top {
  top: 20px;
}

.visual-meta-bottom {
  bottom: 20px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status i {
  width: 7px;
  height: 7px;
  background: var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(2, 23, 212, 0.18);
  animation: statusPulse 2.4s infinite;
}

.contour-map {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 116%;
  max-width: none;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease-out;
}

.contours path {
  stroke: rgba(244, 247, 251, 0.42);
  stroke-width: 1.3;
  stroke-dasharray: 2 5;
  vector-effect: non-scaling-stroke;
}

.system-links path {
  stroke: var(--paper);
  stroke-width: 1.2;
  stroke-dasharray: 7 7;
  opacity: 0.78;
  animation: signalFlow 14s linear infinite;
}

.node circle:first-child {
  fill: var(--paper);
  stroke: var(--forest-deep);
  stroke-width: 5;
  transition: transform 220ms ease;
}

.node text {
  fill: var(--paper);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.09em;
}

.system-visual:hover .node circle:first-child {
  transform: scale(1.25);
}

.signal-strip {
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.signal-track {
  width: max-content;
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  animation: marquee 32s linear infinite;
}

.signal-track i {
  font-style: normal;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 148px 0;
}

.section-label {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding-bottom: 16px;
  color: rgba(8, 22, 43, 0.62);
  border-bottom: 1px solid var(--rule);
  font-size: 10px;
}

.statement-grid {
  padding-top: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.55fr);
  gap: 9vw;
  align-items: end;
}

.statement {
  max-width: 850px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(60px, 6vw, 96px);
  font-weight: 650;
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.statement em {
  display: inline-block;
  margin-top: 0.28em;
  padding: 0.15em 0.22em;
  color: var(--paper);
  background: var(--forest);
  font-size: 0.46em;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.statement-notes {
  padding-bottom: 8px;
  color: rgba(8, 22, 43, 0.72);
  font-size: 16px;
}

.statement-notes p {
  margin: 0;
}

.statement-notes p + p {
  margin-top: 28px;
  color: var(--ink);
  font-weight: 600;
}

.model {
  padding-top: 148px;
  padding-bottom: 168px;
}

.model-header {
  padding: 72px 0 84px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(290px, 0.6fr);
  gap: 9vw;
  align-items: end;
}

.model-header h2,
.products-overview h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(60px, 6.4vw, 102px);
  font-weight: 650;
  line-height: 0.88;
  letter-spacing: -0.052em;
  text-transform: uppercase;
}

.model-header p,
.products-overview p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
}

.model-header p {
  color: rgba(8, 22, 43, 0.7);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.audience {
  min-height: 410px;
  padding: 28px 34px 32px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--rule);
}

.audience:first-child {
  padding-left: 0;
  border-left: 0;
}

.audience-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(8, 22, 43, 0.55);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.09em;
}

.audience-code i {
  width: 7px;
  height: 7px;
  background: var(--forest);
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.audience h3 {
  margin: auto 0 18px;
  font-family: var(--display);
  font-size: clamp(44px, 4vw, 66px);
  font-weight: 650;
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.audience p {
  min-height: 96px;
  margin: 0 0 28px;
  color: rgba(8, 22, 43, 0.68);
  font-size: 14px;
  line-height: 1.62;
}

.audience ul {
  margin: 0;
  padding: 16px 0 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}

.audience li {
  padding: 5px 0;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.audience li::before {
  margin-right: 9px;
  color: var(--forest);
  content: "+";
}

.project {
  width: 100%;
  padding: 0;
  color: var(--paper);
  background: var(--forest);
}

.project-header,
.project-details {
  width: var(--page);
  margin: 0 auto;
}

.project-header {
  padding-top: 126px;
}

.products-overview {
  padding: 70px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  gap: 9vw;
  align-items: end;
}

.products-overview p {
  color: rgba(244, 247, 251, 0.72);
}

.product-divider {
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(244, 247, 251, 0.62);
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.09em;
}

.section-label.light {
  color: rgba(244, 247, 251, 0.62);
  border-color: var(--rule-light);
}

.project-intro {
  padding: 72px 0 104px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 9vw;
  align-items: end;
}

.project-name {
  display: block;
  margin-bottom: 18px;
  color: var(--sprout);
  font-size: 11px;
}

.project-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(72px, 8.2vw, 130px);
  font-weight: 650;
  line-height: 0.82;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.project-copy {
  padding-bottom: 6px;
}

.project-copy p {
  margin: 0 0 36px;
  color: rgba(244, 247, 251, 0.72);
  font-size: 17px;
  line-height: 1.62;
}

.light-link {
  color: var(--sprout);
}

.product-stage {
  position: relative;
  padding: 72px max(32px, calc((100vw - 1240px) / 2));
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(rgba(8, 22, 43, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 22, 43, 0.1) 1px, transparent 1px),
    var(--sprout);
  background-size: 48px 48px;
}

.product-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #f8faff;
  border: 2px solid var(--ink);
  box-shadow: 14px 14px 0 rgba(5, 26, 61, 0.24);
  transform: none;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-window:hover {
  transform: translate(-4px, -4px);
}

.window-bar {
  height: 42px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--rule);
}

.window-title::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  background: var(--clay);
  border-radius: 50%;
  content: "";
}

.product-window img {
  width: 100%;
  max-height: 690px;
  object-fit: cover;
  object-position: center;
}

.map-callout {
  position: absolute;
  z-index: 3;
  min-width: 150px;
  padding: 12px 14px;
  color: var(--paper);
  background: rgba(5, 26, 61, 0.92);
  border: 1px solid rgba(2, 23, 212, 0.52);
  backdrop-filter: blur(8px);
}

.map-callout span,
.map-callout strong {
  display: block;
  font-family: var(--mono);
}

.map-callout span {
  margin-bottom: 6px;
  color: var(--sprout);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.map-callout strong {
  font-size: 11px;
  font-weight: 500;
}

.callout-a {
  bottom: 7%;
  left: 3%;
}

.callout-b {
  top: 11%;
  right: 4%;
}

.stage-index {
  position: absolute;
  right: -0.03em;
  bottom: -0.34em;
  z-index: 1;
  color: rgba(11, 69, 199, 0.13);
  font-family: var(--display);
  font-size: clamp(180px, 28vw, 470px);
  line-height: 1;
  letter-spacing: -0.09em;
}

.project-details {
  padding: 104px 0 130px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.capability {
  min-height: 300px;
  padding: 0 42px 12px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--rule-light);
}

.capability:first-child {
  padding-left: 0;
  border-left: 0;
}

.capability-number {
  color: var(--sprout);
  font-size: 9px;
}

.capability h3 {
  margin: auto 0 18px;
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.capability p {
  max-width: 320px;
  margin: 0;
  color: rgba(244, 247, 251, 0.63);
  font-size: 14px;
  line-height: 1.62;
}

.omnipass-product {
  color: var(--paper);
  background: var(--forest-deep);
}

.omnipass-inner,
.omnipass-details {
  width: var(--page);
  margin: 0 auto;
}

.light-divider {
  padding-top: 28px;
  border-top: 0;
}

.omnipass-intro {
  padding-top: 82px;
}

.omnipass-stage {
  padding: 78px max(32px, calc((100vw - 1240px) / 2));
  background:
    linear-gradient(rgba(8, 22, 43, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 22, 43, 0.08) 1px, transparent 1px),
    var(--mist);
  background-size: 48px 48px;
}

.civic-console {
  min-height: 590px;
  display: grid;
  grid-template-columns: 58px 1fr;
  grid-template-rows: 44px 1fr;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 14px 14px 0 rgba(11, 69, 199, 0.2);
}

.console-topbar {
  grid-column: 1 / -1;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.09em;
}

.console-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.console-live i {
  width: 7px;
  height: 7px;
  background: var(--forest);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(2, 23, 212, 0.14);
}

.console-sidebar {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  color: rgba(8, 22, 43, 0.36);
  background: var(--paper-soft);
  border-right: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 8px;
}

.console-sidebar .active {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--forest);
}

.console-main {
  padding: clamp(28px, 4vw, 56px);
}

.console-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: start;
}

.console-heading > div > span,
.console-id,
.console-panel > span {
  display: block;
  color: rgba(8, 22, 43, 0.52);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.console-heading strong {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.console-id {
  padding: 8px 10px;
  color: var(--forest);
  border: 1px solid rgba(11, 69, 199, 0.35);
}

.service-flow {
  margin: clamp(60px, 8vw, 105px) 0 70px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
}

.service-flow > i {
  height: 1px;
  background: rgba(8, 22, 43, 0.22);
}

.flow-node {
  position: relative;
  min-width: 108px;
  padding-top: 30px;
  font-family: var(--mono);
}

.flow-node > span {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: rgba(8, 22, 43, 0.56);
  border: 1px solid rgba(8, 22, 43, 0.35);
  border-radius: 50%;
  font-size: 7px;
}

.flow-node.complete > span,
.flow-node.current > span {
  color: var(--paper);
  background: var(--forest);
  border-color: var(--forest);
}

.flow-node.current > span {
  box-shadow: 0 0 0 7px rgba(2, 23, 212, 0.25);
}

.flow-node strong,
.flow-node small {
  display: block;
}

.flow-node strong {
  font-size: 11px;
  text-transform: uppercase;
}

.flow-node small {
  margin-top: 4px;
  color: rgba(8, 22, 43, 0.52);
  font-size: 8px;
}

.console-panels {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr 0.8fr;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.console-panel {
  min-height: 130px;
  padding: 18px 20px;
  border-left: 1px solid var(--rule);
}

.console-panel:first-child {
  border-left: 0;
}

.metric {
  margin-top: 18px;
  font-family: var(--display);
  font-size: 52px;
  font-weight: 650;
  line-height: 0.8;
}

.mini-bars {
  margin-top: 12px;
  display: flex;
  gap: 3px;
  align-items: end;
  height: 22px;
}

.mini-bars i {
  width: 8px;
  background: var(--forest);
}

.mini-bars i:nth-child(1) { height: 30%; }
.mini-bars i:nth-child(2) { height: 70%; }
.mini-bars i:nth-child(3) { height: 46%; }
.mini-bars i:nth-child(4) { height: 92%; }
.mini-bars i:nth-child(5) { height: 62%; }
.mini-bars i:nth-child(6) { height: 80%; }

.audit-lines {
  margin-top: 20px;
}

.audit-lines i {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 15px;
  background: rgba(8, 22, 43, 0.16);
}

.audit-lines i::before {
  display: block;
  width: 28%;
  height: 1px;
  background: var(--forest);
  content: "";
}

.panel-status {
  display: flex;
  flex-direction: column;
}

.panel-status strong {
  margin-top: auto;
  color: var(--forest);
  font-family: var(--mono);
  font-size: 12px;
}

.panel-status small {
  margin-top: 4px;
  color: rgba(8, 22, 43, 0.52);
  font-family: var(--mono);
  font-size: 9px;
}

.omnipass-details {
  padding-bottom: 144px;
}

.product-index {
  padding: 126px 0 144px;
  color: var(--paper);
  background: var(--forest);
}

.product-index-inner {
  width: var(--page);
  margin: 0 auto;
}

.product-index-header {
  padding: 70px 0 84px;
  display: block;
}

.product-index-header h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(64px, 7vw, 112px);
  font-weight: 650;
  line-height: 0.84;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.product-index-header p {
  max-width: 510px;
  margin: 30px 0 0;
  color: rgba(244, 247, 251, 0.76);
  font-size: 17px;
  line-height: 1.62;
}

.product-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.product-link-card {
  position: relative;
  min-height: 610px;
  padding: 26px;
  display: grid;
  grid-template-rows: auto 1fr 245px auto;
  gap: 24px;
  overflow: hidden;
  border: 1px solid rgba(244, 247, 251, 0.55);
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 0 rgba(2, 13, 56, 0.34);
}

.growup-link {
  color: var(--ink);
  background: var(--paper);
}

.omnipass-link {
  color: var(--paper);
  background: var(--forest-deep);
}

.product-link-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.09em;
}

.growup-link .product-link-meta {
  color: rgba(8, 22, 43, 0.56);
}

.omnipass-link .product-link-meta {
  color: rgba(244, 247, 251, 0.62);
}

.product-link-copy {
  align-self: end;
}

.product-link-copy h3 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(66px, 7vw, 108px);
  font-weight: 650;
  line-height: 0.82;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.product-link-copy p {
  max-width: 440px;
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.growup-link .product-link-copy p {
  color: rgba(8, 22, 43, 0.68);
}

.omnipass-link .product-link-copy p {
  color: rgba(244, 247, 251, 0.7);
}

.product-link-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid currentColor;
}

.growup-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85) contrast(1.04);
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-link-card:hover .growup-preview img {
  transform: scale(1.035);
}

.civic-preview {
  display: grid;
  grid-template-columns: 46px 1fr;
  grid-template-rows: 1fr auto;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    #03134f;
  background-size: 32px 32px;
}

.preview-rail {
  grid-row: 1 / -1;
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.preview-rail i {
  width: 8px;
  height: 8px;
  border: 1px solid var(--paper);
}

.preview-rail i:first-child {
  background: var(--paper);
}

.preview-flow {
  padding: 52px 26px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
}

.preview-flow span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--paper);
  border: 1px solid var(--paper);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 8px;
}

.preview-flow span:nth-of-type(-n + 3) {
  color: var(--forest-deep);
  background: var(--paper);
}

.preview-flow i {
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
}

.preview-status {
  grid-column: 2;
  padding: 16px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.09em;
}

.preview-status strong {
  color: var(--paper);
  font-weight: 500;
}

.product-link-actions {
  min-height: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.product-link-actions a {
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-link-actions a:hover {
  opacity: 0.66;
}

.open-source {
  position: relative;
  padding: 148px 0 132px;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(rgba(244, 247, 251, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 247, 251, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 74% 38%, rgba(2, 23, 212, 0.56), transparent 27rem),
    var(--forest-deep);
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.open-source::before {
  position: absolute;
  top: 22%;
  right: -14vw;
  width: 52vw;
  aspect-ratio: 1;
  border: 1px solid rgba(184, 208, 248, 0.14);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 92px rgba(184, 208, 248, 0.035), 0 0 0 184px rgba(184, 208, 248, 0.025);
}

.open-source-inner {
  position: relative;
  z-index: 1;
  width: var(--page);
  margin: 0 auto;
}

.open-source-intro {
  padding: 76px 0 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 9vw;
  align-items: end;
}

.open-source-heading .kicker {
  margin: 0 0 24px;
  color: var(--mark-core);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.open-source-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(64px, 7vw, 112px);
  font-weight: 650;
  line-height: 0.84;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.open-source-heading h2 em {
  color: var(--mark-core);
  font-style: normal;
}

.open-source-lead {
  margin: 0;
  color: rgba(244, 247, 251, 0.74);
  font-size: 17px;
  line-height: 1.7;
}

.open-source-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(410px, 1.1fr);
  gap: 6vw;
  align-items: stretch;
}

.open-source-commitments {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule-light);
}

.open-source-commitments li {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--rule-light);
}

.open-source-commitments li > span {
  padding-top: 4px;
  color: var(--mark-core);
  font-family: var(--mono);
  font-size: 9px;
}

.open-source-commitments h3 {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.open-source-commitments p {
  max-width: 520px;
  margin: 0;
  color: rgba(244, 247, 251, 0.66);
  font-size: 14px;
  line-height: 1.62;
}

.open-source-repository {
  position: relative;
  min-height: 520px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(rgba(8, 22, 43, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 22, 43, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 36px 36px;
  border: 2px solid var(--forest);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.repository-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.09em;
}

.repository-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.repository-status i {
  width: 7px;
  height: 7px;
  background: var(--forest);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(2, 23, 212, 0.13);
}

.repository-mark {
  position: absolute;
  top: 78px;
  right: 30px;
  width: 64px;
  height: 64px;
  color: var(--ink);
}

.repository-mark svg {
  width: 100%;
  height: 100%;
}

.repository-mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
}

.repository-mark circle {
  fill: var(--mark-core);
  stroke: currentColor;
  stroke-width: 1.25;
}

.repository-copy {
  margin-top: auto;
}

.repository-copy > span {
  color: rgba(8, 22, 43, 0.56);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.repository-copy h3 {
  margin: 14px 0 24px;
  font-family: var(--display);
  font-size: clamp(76px, 8vw, 118px);
  font-weight: 650;
  line-height: 0.8;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.repository-copy p {
  max-width: 480px;
  margin: 0 0 32px;
  color: rgba(8, 22, 43, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

.open-source-repository > a {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.github-profile-link {
  margin-top: 64px;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
}

.github-profile-link span {
  display: flex;
  align-items: baseline;
  gap: 30px;
}

.github-profile-link small {
  color: rgba(244, 247, 251, 0.56);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.github-profile-link strong {
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 550;
  letter-spacing: -0.03em;
}

.github-profile-link i {
  color: var(--mark-core);
  font-size: 24px;
  font-style: normal;
}

.product-page-body {
  background: var(--paper);
}

.product-site-header {
  color: var(--paper);
  border-bottom-color: rgba(244, 247, 251, 0.3);
}

.product-site-header .language-switch button {
  color: rgba(244, 247, 251, 0.7);
}

.product-site-header .language-switch button[aria-pressed="true"] {
  color: var(--forest);
  background: var(--paper);
  border-color: var(--paper);
}

.product-page-hero {
  min-height: 100svh;
  padding: 148px max(32px, calc((100vw - 1240px) / 2)) 78px;
  display: grid;
  grid-template-columns: minmax(340px, 0.64fr) minmax(0, 1.36fr);
  gap: 7vw;
  align-items: end;
  color: var(--paper);
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    var(--forest);
  background-size: 48px 48px;
}

.back-link,
.product-page-code,
.product-page-name {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.back-link {
  display: inline-flex;
  gap: 12px;
  margin-bottom: 58px;
  color: rgba(244, 247, 251, 0.72);
  font-size: 9px;
}

.product-page-code {
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(244, 247, 251, 0.64);
  border-top: 1px solid rgba(244, 247, 251, 0.3);
  border-bottom: 1px solid rgba(244, 247, 251, 0.3);
  font-size: 8px;
}

.product-page-name {
  display: block;
  margin-top: 52px;
  color: var(--paper);
  font-size: 11px;
}

.product-page-copy h1 {
  margin: 20px 0 42px;
  font-family: var(--display);
  font-size: clamp(70px, 7.6vw, 120px);
  font-weight: 650;
  line-height: 0.82;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.product-page-copy > p {
  max-width: 520px;
  margin: 0;
  color: rgba(244, 247, 251, 0.78);
  font-size: 17px;
  line-height: 1.65;
}

.product-page-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}

.product-page-actions a {
  padding-bottom: 5px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(244, 247, 251, 0.72);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-page-actions a:hover {
  color: var(--mark-core);
}

.product-page-figure {
  position: relative;
  align-self: end;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 16px 16px 0 rgba(2, 13, 56, 0.42);
}

.growup-page-figure img {
  width: 100%;
  min-height: 590px;
  object-fit: cover;
  object-position: center;
}

.omnipass-page-figure {
  background: var(--mist);
}

.product-page-figure .civic-console {
  min-height: 630px;
  border: 0;
  box-shadow: none;
}

.product-page-capabilities {
  padding-top: 128px;
  padding-bottom: 148px;
}

.product-capability-grid {
  padding-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--rule);
}

.product-capability {
  min-height: 330px;
  padding: 28px 38px 36px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.product-capability:first-child {
  padding-left: 0;
  border-left: 0;
}

.product-capability > span {
  color: var(--forest);
  font-family: var(--mono);
  font-size: 9px;
}

.product-capability h2 {
  margin: auto 0 18px;
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.product-capability p {
  max-width: 330px;
  margin: 0;
  color: rgba(8, 22, 43, 0.66);
  font-size: 14px;
  line-height: 1.65;
}

.next-product {
  min-height: 340px;
  padding: 68px max(32px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  color: var(--paper);
  background: var(--forest-deep);
}

.next-product > span {
  grid-column: 1 / -1;
  margin-bottom: 24px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.next-product strong {
  font-family: var(--display);
  font-size: clamp(76px, 10vw, 156px);
  font-weight: 650;
  line-height: 0.75;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.next-product i {
  align-self: center;
  font-size: 42px;
  font-style: normal;
  transition: transform 250ms ease;
}

.next-product:hover i {
  transform: translate(8px, -8px);
}

.product-footer {
  background: var(--paper);
}

.principles {
  padding-top: 24px;
  padding-bottom: 176px;
}

.principles-layout {
  padding-top: 76px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10vw;
}

.kicker {
  display: block;
  margin: 0 0 16px;
  color: rgba(8, 22, 43, 0.6);
  font-size: 9px;
}

.principles-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(72px, 7.7vw, 122px);
  font-weight: 650;
  line-height: 0.82;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

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

.principle-list li {
  padding: 34px 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  border-top: 1px solid var(--rule);
}

.principle-list li:last-child {
  border-bottom: 1px solid var(--rule);
}

.principle-list > li > span {
  font-family: var(--mono);
  font-size: 9px;
}

.principle-list h3 {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.principle-list p {
  max-width: 530px;
  margin: 0;
  color: rgba(8, 22, 43, 0.67);
  font-size: 14px;
  line-height: 1.65;
}

.contact {
  position: relative;
  width: 100%;
  min-height: 720px;
  padding: 140px max(32px, calc((100vw - 1240px) / 2));
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--forest);
}

.contact-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact .kicker {
  margin: 0 0 34px;
  color: var(--paper);
}

.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(76px, 9vw, 144px);
  font-weight: 650;
  line-height: 0.82;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.contact p {
  max-width: 560px;
  margin: 40px auto;
  color: rgba(244, 247, 251, 0.68);
  font-size: 17px;
  line-height: 1.6;
}

.button-accent {
  min-width: 236px;
  color: var(--forest);
  background: var(--paper);
}

.button-accent:hover {
  color: var(--paper);
  background: transparent;
}

.contact-orbit {
  position: absolute;
  width: min(84vw, 1050px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: orbit 38s linear infinite;
}

.contact-orbit::before,
.contact-orbit::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.contact-orbit::before {
  width: 68%;
  height: 68%;
}

.contact-orbit::after {
  width: 37%;
  height: 37%;
}

.contact-orbit span {
  position: absolute;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.contact-orbit span:first-child {
  top: 49%;
  left: -35px;
}

.contact-orbit span:last-child {
  top: 49%;
  right: -58px;
}

.contact-orbit i {
  position: absolute;
  top: 8%;
  left: 28%;
  width: 13px;
  height: 13px;
  background: var(--clay);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(255, 107, 69, 0.1);
}

.site-footer {
  width: var(--page);
  min-height: 190px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

.site-footer > p {
  justify-self: center;
  color: rgba(8, 22, 43, 0.63);
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.footer-meta {
  justify-self: end;
  display: flex;
  gap: 30px;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="1"] {
  transition-delay: 120ms;
}

.reveal[data-delay="2"] {
  transition-delay: 220ms;
}

.reveal[data-delay="3"] {
  transition-delay: 320ms;
}

@keyframes signalFlow {
  to { stroke-dashoffset: -140; }
}

@keyframes statusPulse {
  50% { box-shadow: 0 0 0 9px rgba(2, 23, 212, 0); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

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

@media (max-width: 1000px) {
  :root {
    --page: min(100% - 40px, 1240px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero {
    min-height: auto;
    padding-top: 136px;
    grid-template-columns: 1fr;
  }

  .hero-title {
    margin: 74px 0 56px;
  }

  .system-visual {
    min-height: 620px;
  }

  .statement-grid,
  .model-header,
  .products-overview,
  .project-intro,
  .principles-layout,
  .open-source-intro,
  .open-source-grid {
    grid-template-columns: 1fr;
  }

  .statement-notes,
  .model-header p,
  .products-overview p,
  .product-index-header p,
  .project-copy {
    max-width: 600px;
  }

  .model-header,
  .products-overview {
    gap: 50px;
  }

  .product-link-card {
    min-height: 590px;
  }

  .open-source-grid {
    gap: 72px;
  }

  .open-source-repository {
    min-height: 480px;
  }

  .product-page-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .product-page-copy {
    max-width: 720px;
  }

  .product-capability-grid {
    grid-template-columns: 1fr;
  }

  .product-capability,
  .product-capability:first-child {
    min-height: 250px;
    padding: 28px 0 34px;
    border-left: 0;
  }

  .product-capability h2 {
    margin-top: 70px;
  }

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

  .audience,
  .audience:first-child {
    min-height: 310px;
    padding: 28px 0 32px;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .audience:first-child {
    border-top: 0;
  }

  .audience p {
    min-height: 0;
    max-width: 620px;
  }

  .project-intro {
    gap: 54px;
  }

  .project-details {
    grid-template-columns: 1fr;
  }

  .capability,
  .capability:first-child {
    min-height: 240px;
    padding: 34px 0;
    border-top: 1px solid var(--rule-light);
    border-left: 0;
  }

  .capability h3 {
    margin-top: 52px;
  }

  .service-flow {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .service-flow > i {
    display: none;
  }
}

@media (min-width: 621px) and (max-width: 1000px) {
  .hero {
    min-height: 780px;
    padding-top: 126px;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: stretch;
  }

  .eyebrow {
    min-height: 40px;
    flex-direction: column;
    justify-content: flex-start;
    gap: 7px;
    font-size: 8px;
  }

  .hero-title {
    margin: 48px 0 38px;
    font-size: clamp(50px, 6.2vw, 62px);
  }

  .hero-title em {
    font-size: 0.43em;
  }

  .hero-bottom {
    margin-top: auto;
    padding-top: 18px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-bottom p {
    max-width: 350px;
    font-size: 13px;
    line-height: 1.55;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .system-visual {
    min-height: 650px;
  }

  .visual-meta {
    right: 16px;
    left: 16px;
    gap: 12px;
    font-size: 7px;
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100% - 28px);
  }

  .site-header {
    height: 74px;
  }

  .header-action {
    font-size: 0;
  }

  .header-action > span:first-child {
    display: none;
  }

  .header-action > span:last-child {
    display: block;
    font-size: 18px;
  }

  .header-utilities {
    gap: 13px;
  }

  .hero {
    padding-top: 112px;
    gap: 44px;
  }

  .eyebrow span:last-child {
    display: none;
  }

  .hero-title {
    margin: 58px 0 46px;
    font-size: clamp(58px, 17vw, 82px);
  }

  .hero-title em {
    margin-top: 0.35em;
  }

  .hero-bottom {
    margin-top: 0;
    grid-template-columns: 1fr;
  }

  .system-visual {
    min-height: 460px;
  }

  .contour-map {
    width: 150%;
  }

  .section {
    padding: 92px 0;
  }

  .product-index {
    padding: 92px 0;
  }

  .model {
    padding-top: 92px;
  }

  .principles {
    padding-top: 12px;
  }

  .open-source {
    padding: 92px 0;
  }

  .statement-grid,
  .model-header,
  .principles-layout {
    padding-top: 52px;
    gap: 56px;
  }

  .model-header h2,
  .products-overview h2,
  .product-index-header h2,
  .open-source-heading h2 {
    font-size: clamp(52px, 15vw, 76px);
  }

  .audience {
    min-height: 340px;
  }

  .statement {
    font-size: clamp(52px, 15.4vw, 78px);
  }

  .project-header {
    padding-top: 88px;
  }

  .project-intro {
    padding: 52px 0 76px;
  }

  .products-overview {
    padding: 52px 0 68px;
  }

  .product-index-header {
    padding: 52px 0 68px;
  }

  .product-link-card {
    min-height: 550px;
    padding: 20px;
    grid-template-rows: auto 1fr 200px auto;
  }

  .product-link-actions {
    gap: 9px 16px;
  }

  .product-link-actions a {
    gap: 10px;
    font-size: 8px;
  }

  .product-link-grid {
    grid-template-columns: 1fr;
  }

  .product-link-copy h3 {
    font-size: clamp(64px, 22vw, 96px);
  }

  .product-link-meta span:last-child {
    text-align: right;
  }

  .preview-flow {
    padding-right: 14px;
    padding-left: 14px;
  }

  .preview-flow span {
    width: 25px;
    height: 25px;
  }

  .product-page-hero {
    padding: 108px 14px 48px;
    gap: 54px;
  }

  .back-link {
    margin-bottom: 42px;
  }

  .product-page-name {
    margin-top: 42px;
  }

  .product-page-copy h1 {
    font-size: clamp(68px, 20vw, 102px);
  }

  .product-page-copy > p {
    font-size: 16px;
  }

  .product-page-actions {
    margin-top: 28px;
    gap: 12px 22px;
  }

  .product-page-figure {
    box-shadow: 8px 8px 0 rgba(2, 13, 56, 0.42);
  }

  .growup-page-figure img {
    min-height: 470px;
    object-position: 35% center;
  }

  .product-page-figure .civic-console {
    min-height: 650px;
  }

  .product-page-capabilities {
    padding-top: 88px;
    padding-bottom: 96px;
  }

  .product-capability-grid {
    padding-top: 52px;
  }

  .next-product {
    min-height: 280px;
    padding: 54px 18px;
  }

  .next-product strong {
    font-size: clamp(70px, 24vw, 108px);
  }

  .project-intro h2 {
    font-size: clamp(66px, 20vw, 102px);
  }

  .product-stage {
    padding: 28px 14px 36px;
  }

  .window-bar {
    font-size: 7px;
  }

  .window-bar span:last-child,
  .map-callout,
  .stage-index {
    display: none;
  }

  .product-window img {
    min-height: 430px;
    object-position: 34% center;
  }

  .project-details {
    padding: 72px 0 94px;
  }

  .omnipass-intro {
    padding-top: 58px;
  }

  .omnipass-stage {
    padding: 28px 14px 38px;
  }

  .civic-console {
    min-height: 650px;
    grid-template-columns: 1fr;
    grid-template-rows: 42px 1fr;
    box-shadow: 8px 8px 0 rgba(11, 69, 199, 0.2);
  }

  .console-sidebar {
    display: none;
  }

  .console-main {
    padding: 28px 18px;
  }

  .console-id {
    display: none;
  }

  .service-flow {
    margin: 56px 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 18px;
  }

  .flow-node {
    min-width: 0;
  }

  .console-panels {
    grid-template-columns: 1fr;
  }

  .console-panel,
  .console-panel:first-child {
    min-height: 105px;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .console-panel:first-child {
    border-top: 0;
  }

  .omnipass-details {
    padding-bottom: 104px;
  }

  .principles-heading h2 {
    font-size: clamp(65px, 20vw, 96px);
  }

  .open-source-intro {
    padding: 52px 0 64px;
    gap: 42px;
  }

  .open-source-lead {
    font-size: 15px;
  }

  .open-source-grid {
    gap: 56px;
  }

  .open-source-repository {
    min-height: 450px;
    padding: 22px;
  }

  .repository-mark {
    top: 68px;
    right: 22px;
    width: 54px;
    height: 54px;
  }

  .repository-copy h3 {
    font-size: clamp(70px, 22vw, 98px);
  }

  .github-profile-link {
    margin-top: 52px;
  }

  .github-profile-link span {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .github-profile-link strong {
    font-size: 18px;
  }

  .principle-list li {
    grid-template-columns: 38px 1fr;
  }

  .contact {
    min-height: 680px;
    padding: 104px 18px;
  }

  .contact h2 {
    font-size: clamp(64px, 19vw, 96px);
  }

  .contact-orbit {
    width: 138vw;
  }

  .contact-orbit span {
    display: none;
  }

  .site-footer {
    padding: 48px 0;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .site-footer > p {
    display: none;
  }

  .footer-meta {
    gap: 10px;
    flex-direction: column;
    text-align: right;
  }
}

@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;
  }
}
