:root {
  color-scheme: dark light;
  --ink: #090a08;
  --ink-soft: #11120f;
  --paper: #f2f1e9;
  --paper-bright: #f8f7f1;
  --lime: #dfff42;
  --text-dark: #12130f;
  --text-light: #f4f4ed;
  --muted-dark: #5e6057;
  --muted-light: #a6a89e;
  --line-dark: rgba(15, 16, 13, 0.17);
  --line-light: rgba(244, 244, 237, 0.17);
  --font-sans: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --container: 1360px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --section-space: clamp(6.5rem, 12vw, 11rem);
  --panel-radius: 28px;
  --control-radius: 14px;
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--text-dark);
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

p,
h1,
h2,
h3,
ol,
ul,
dl,
dd {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.page-top {
  position: absolute;
  top: 0;
}

.container {
  width: min(100%, calc(var(--container) + (2 * var(--gutter))));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.surface-dark {
  background: var(--ink);
  color: var(--text-light);
}

.surface-paper {
  background: var(--paper);
  color: var(--text-dark);
}

.section {
  padding-block: var(--section-space);
}

.eyebrow {
  color: currentColor;
  font-size: 0.75rem;
  font-weight: 720;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.surface-dark .eyebrow {
  color: var(--lime);
}

.section-heading {
  max-width: 970px;
}

.section-heading h2 {
  margin-top: 1.25rem;
  font-size: clamp(3rem, 6.5vw, 6.7rem);
  font-weight: 540;
  letter-spacing: -0.064em;
  line-height: 0.96;
}

.section-heading > p:last-child:not(.eyebrow) {
  max-width: 690px;
  margin-top: 2rem;
  color: var(--muted-dark);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.55;
}

.surface-dark .section-heading > p:last-child:not(.eyebrow) {
  color: var(--muted-light);
}

/* Buttons are pill-shaped. Surfaces use a 28px radius; compact controls use 14px. */
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 720;
  line-height: 1;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-primary {
  background: var(--lime);
  color: var(--ink);
}

.button-primary:hover {
  background: #ebff89;
}

.button-ghost {
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-light);
}

.button-ghost:hover {
  border-color: rgba(244, 244, 237, 0.5);
  background: rgba(255, 255, 255, 0.07);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  color: var(--text-light);
  transition: background-color 200ms ease, border-color 200ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom-color: var(--line-light);
  background: rgba(9, 10, 8, 0.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  width: min(100%, calc(var(--container) + (2 * var(--gutter))));
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 720;
  letter-spacing: -0.025em;
}

.brand-mark {
  display: inline-flex;
  width: 24px;
  height: 20px;
  align-items: flex-end;
  gap: 3px;
}

.brand-mark span {
  display: block;
  width: 6px;
  border-radius: 2px 2px 0 0;
  background: var(--lime);
}

.brand-mark span:nth-child(1) {
  height: 10px;
}

.brand-mark span:nth-child(2) {
  height: 20px;
}

.brand-mark span:nth-child(3) {
  height: 15px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.8vw, 1.8rem);
}

.site-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #c7c9be;
  font-size: 0.82rem;
  font-weight: 620;
  transition: color 150ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="location"] {
  color: var(--text-light);
}

.site-nav .nav-cta {
  min-height: 42px;
  padding-inline: 1rem;
  border-radius: 999px;
  background: var(--text-light);
  color: var(--ink);
}

.site-nav .nav-cta:hover {
  background: var(--lime);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, top 180ms ease;
}

.nav-toggle span:first-child {
  top: 18px;
}

.nav-toggle span:last-child {
  top: 26px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -15%;
  bottom: -28%;
  width: 64vw;
  height: 64vw;
  border: 1px solid rgba(223, 255, 66, 0.16);
  border-radius: 50%;
  content: "";
}

.hero-inner {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  justify-content: space-between;
  padding-top: clamp(8.75rem, 16vh, 11rem);
  padding-bottom: clamp(3rem, 7vh, 5.5rem);
}

.hero h1 {
  position: relative;
  z-index: 2;
  max-width: 1110px;
  margin-top: clamp(2rem, 5vh, 4rem);
  font-size: clamp(4.15rem, 10.8vw, 10.5rem);
  font-weight: 510;
  letter-spacing: -0.076em;
  line-height: 0.84;
}

.hero-bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 660px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 2.5rem;
}

.hero-intro {
  color: #bfc1b7;
  font-size: clamp(1.06rem, 1.45vw, 1.3rem);
  line-height: 1.52;
}

.hero-grid {
  position: absolute;
  z-index: -1;
  top: 10%;
  right: -4%;
  width: min(52vw, 770px);
  height: min(76vh, 710px);
  opacity: 0.52;
}

.hero-grid::before {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(244, 244, 237, 0.09);
  border-radius: var(--panel-radius);
  background-image: linear-gradient(rgba(244, 244, 237, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(244, 244, 237, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}

.hero-node,
.hero-core {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 244, 237, 0.2);
  background: var(--ink);
  color: #aeb0a6;
  font-size: 0.68rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-node {
  width: 94px;
  height: 45px;
  border-radius: 12px;
}

.hero-node-a {
  top: 16%;
  left: 14%;
}

.hero-node-b {
  top: 12%;
  right: 12%;
}

.hero-node-c {
  bottom: 17%;
  left: 11%;
}

.hero-node-d {
  right: 10%;
  bottom: 13%;
}

.hero-core {
  top: 46%;
  left: 51%;
  width: 146px;
  height: 78px;
  border-color: rgba(223, 255, 66, 0.48);
  border-radius: 17px;
  color: var(--text-light);
  transform: translate(-50%, -50%);
}

.hero-line {
  position: absolute;
  height: 1px;
  background: rgba(223, 255, 66, 0.38);
  transform-origin: left center;
}

.hero-line-a {
  top: 28%;
  left: 26%;
  width: 34%;
  transform: rotate(28deg);
}

.hero-line-b {
  top: 52%;
  left: 18%;
  width: 34%;
  transform: rotate(-26deg);
}

.hero-line-c {
  top: 46%;
  left: 53%;
  width: 30%;
  transform: rotate(38deg);
}

/* Operating principles */
.truth-strip {
  border-bottom: 1px solid var(--line-dark);
  background: var(--paper-bright);
}

.truth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.25fr;
  padding-block: 1.8rem;
}

.truth-grid p {
  display: grid;
  gap: 0.45rem;
  min-height: 82px;
  align-content: center;
  padding: 0 1.8rem;
  border-left: 1px solid var(--line-dark);
}

.truth-grid p:first-child {
  padding-left: 0;
  border-left: 0;
}

.truth-grid strong {
  font-size: 0.85rem;
  font-weight: 760;
}

.truth-grid span {
  color: var(--muted-dark);
  font-size: 0.86rem;
  line-height: 1.45;
}

.truth-grid .truth-time strong {
  color: #3e4708;
}

/* Operating layer map */
.layer-heading {
  max-width: 1020px;
}

.layer-map {
  display: grid;
  grid-template-columns: minmax(120px, 0.65fr) minmax(70px, 0.34fr) minmax(390px, 2.3fr) minmax(70px, 0.34fr) minmax(155px, 0.8fr);
  align-items: stretch;
  min-height: 370px;
  margin-top: clamp(5rem, 10vw, 9rem);
  padding-block: 2rem;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.map-sources,
.map-outcomes {
  display: grid;
  align-content: space-around;
  gap: 0.7rem;
}

.map-sources span,
.map-outcomes span {
  display: flex;
  min-height: 52px;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 680;
}

.map-sources span {
  border-bottom: 1px solid var(--line-dark);
}

.map-outcomes span {
  padding-left: 1.2rem;
  border-left: 1px solid var(--line-dark);
}

.map-route {
  position: relative;
}

.map-route i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--line-dark);
}

.map-route i::after {
  position: absolute;
  top: -3px;
  right: -1px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.map-route i:nth-child(1) {
  top: 14%;
  transform: rotate(16deg);
}

.map-route i:nth-child(2) {
  top: 38%;
  transform: rotate(6deg);
}

.map-route i:nth-child(3) {
  top: 62%;
  transform: rotate(-6deg);
}

.map-route i:nth-child(4) {
  top: 86%;
  transform: rotate(-16deg);
}

.map-route-out i:nth-child(1) {
  top: 23%;
  transform: rotate(-10deg);
}

.map-route-out i:nth-child(2) {
  top: 50%;
  transform: rotate(0deg);
}

.map-route-out i:nth-child(3) {
  top: 77%;
  transform: rotate(10deg);
}

.map-layer {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--text-dark);
  border-radius: var(--panel-radius);
  background: var(--ink);
  color: var(--text-light);
  text-align: center;
}

.map-layer small {
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 730;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-layer strong {
  font-size: clamp(1.55rem, 2.6vw, 2.5rem);
  font-weight: 540;
  letter-spacing: -0.04em;
}

.map-layer strong span {
  margin-inline: 0.4rem;
  color: var(--lime);
}

.map-layer p {
  max-width: 440px;
  color: var(--muted-light);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* Five-act journey */
.journey {
  position: relative;
  overflow: clip;
}

.journey-intro {
  padding-top: var(--section-space);
  padding-bottom: clamp(4rem, 7vw, 7rem);
}

.journey-intro h2 {
  max-width: 1080px;
  margin-top: 1.25rem;
  font-size: clamp(3.2rem, 7vw, 7.3rem);
  font-weight: 520;
  letter-spacing: -0.068em;
  line-height: 0.93;
}

.journey-intro > p:last-child {
  max-width: 650px;
  margin-top: 2rem;
  color: var(--muted-light);
  font-size: 1.1rem;
  line-height: 1.55;
}

.journey-story {
  position: relative;
  padding-bottom: var(--section-space);
}

.journey-stage {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4.5rem);
  width: min(100%, calc(var(--container) + (2 * var(--gutter))));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.journey-rail {
  align-self: start;
}

.journey-rail ol {
  display: grid;
  gap: 0.18rem;
  list-style: none;
}

.journey-rail a {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 0.7rem;
  color: #777a70;
  font-size: 0.78rem;
  font-weight: 680;
  transition: color 180ms ease;
}

.journey-rail a span {
  font-variant-numeric: tabular-nums;
}

.journey-rail a:hover,
.journey-rail a[aria-current="step"] {
  color: var(--text-light);
}

.journey-rail a[aria-current="step"] span {
  color: var(--lime);
}

.rail-track {
  display: none;
}

.journey-visual {
  min-width: 0;
}

.system-visual {
  width: 100%;
  height: auto;
  color: rgba(244, 244, 237, 0.15);
}

.visual-grid {
  opacity: 0.32;
}

.visual-boundary,
.guard rect,
.system-node rect,
.core-frame,
.core-inner,
.governance-markers rect {
  fill: none;
  stroke: rgba(244, 244, 237, 0.22);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.visual-boundary {
  fill: rgba(255, 255, 255, 0.012);
}

.routes path {
  fill: none;
  stroke: rgba(244, 244, 237, 0.48);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 0.55;
  vector-effect: non-scaling-stroke;
}

.routes path:nth-child(1),
.routes path:nth-child(6) {
  stroke: var(--lime);
}

.signals circle {
  fill: var(--lime);
  stroke: var(--ink);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.system-node rect {
  fill: var(--ink-soft);
  stroke: rgba(244, 244, 237, 0.3);
}

.system-node text {
  fill: var(--text-light);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 720;
  letter-spacing: 1.4px;
  text-anchor: middle;
}

.system-node .node-sub {
  fill: var(--muted-light);
  font-size: 11px;
  font-weight: 650;
}

[data-module-label],
[data-core-exec],
.guard,
.governance-markers,
.executive-view {
  opacity: 0;
}

.system-core {
  opacity: 0.08;
}

.core-frame {
  fill: rgba(223, 255, 66, 0.025);
  stroke: rgba(223, 255, 66, 0.65);
  stroke-width: 2;
}

.core-inner {
  fill: var(--ink-soft);
  stroke: rgba(244, 244, 237, 0.23);
}

.system-core text {
  fill: var(--text-light);
  font-family: var(--font-sans);
  text-anchor: middle;
}

.system-core .core-kicker {
  fill: var(--lime);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 2px;
}

.system-core .core-title {
  font-size: 23px;
  font-weight: 650;
  letter-spacing: -0.5px;
}

.system-core .core-caption {
  fill: var(--muted-light);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 1.4px;
}

.guard rect {
  stroke: rgba(223, 255, 66, 0.65);
  stroke-dasharray: 7 8;
}

.guard text,
.governance-markers text,
.executive-view text {
  fill: var(--muted-light);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 1.2px;
}

.guard .guard-side {
  text-anchor: end;
}

.governance-markers rect {
  fill: var(--ink);
  stroke: var(--lime);
  stroke-width: 2;
}

.governance-markers g:nth-child(2) text,
.governance-markers g:nth-child(4) text {
  text-anchor: end;
  transform: translateX(-60px);
}

.executive-view g {
  opacity: 0.9;
}

.executive-view path {
  fill: none;
  stroke: rgba(244, 244, 237, 0.56);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.executive-view g:first-child path {
  stroke: var(--lime);
}

.journey-copy {
  display: grid;
  grid-column: 2;
  gap: 1.4rem;
  margin-top: 2.5rem;
}

.act-copy {
  max-width: 600px;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
}

.act-name {
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.act-copy h3 {
  margin-top: 1.1rem;
  font-size: clamp(2.05rem, 4vw, 4rem);
  font-weight: 540;
  letter-spacing: -0.05em;
  line-height: 1;
}

.act-copy > p:not(.act-name) {
  margin-top: 1.4rem;
  color: var(--muted-light);
  font-size: 1rem;
  line-height: 1.58;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 720;
}

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

.has-js .journey-story {
  height: 560vh;
  height: 560svh;
  padding-bottom: 0;
}

.has-js .journey-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  grid-template-columns: minmax(130px, 170px) minmax(0, 1fr) minmax(280px, 370px);
  align-items: center;
  padding-top: calc(var(--header-height) + 1rem);
  padding-bottom: 1.25rem;
}

.has-js .journey-rail {
  align-self: center;
}

.has-js .rail-track {
  position: absolute;
  display: block;
  top: 16px;
  bottom: 16px;
  left: 0;
  width: 1px;
  overflow: hidden;
  background: var(--line-light);
}

.has-js .rail-track span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lime);
  transform: scaleY(0);
  transform-origin: top;
}

.has-js .journey-rail {
  position: relative;
  padding-left: 1.15rem;
}

.has-js .journey-visual {
  grid-column: 2;
}

.has-js .journey-copy {
  position: relative;
  display: block;
  grid-column: 3;
  min-height: min(60vh, 520px);
  margin-top: 0;
}

.has-js .act-copy {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(calc(-50% + 20px));
  transition: none;
}

.has-js .act-copy.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
}

/* System types */
.systems-heading {
  max-width: 840px;
}

.system-list {
  margin-top: clamp(4.5rem, 8vw, 7rem);
  border-top: 1px solid var(--line-dark);
}

.system-list article {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(220px, 0.9fr) minmax(260px, 1fr) minmax(160px, 0.65fr);
  align-items: center;
  gap: clamp(1.3rem, 4vw, 4rem);
  min-height: 170px;
  border-bottom: 1px solid var(--line-dark);
}

.system-index {
  color: var(--muted-dark);
  font-size: 0.78rem;
  font-weight: 730;
}

.system-list h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.45rem);
  font-weight: 570;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.system-list p {
  max-width: 520px;
  color: var(--muted-dark);
  font-size: 0.98rem;
  line-height: 1.55;
}

.system-route {
  position: relative;
  height: 76px;
}

.system-route i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--line-dark);
}

.system-route i::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.system-route i:nth-child(1) {
  top: 18px;
  transform: rotate(8deg);
}

.system-route i:nth-child(2) {
  top: 38px;
}

.system-route i:nth-child(3) {
  top: 58px;
  transform: rotate(-8deg);
}

/* Process */
.process-heading {
  max-width: 850px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(4rem, 8vw, 7.5rem);
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.process-list li {
  min-height: 330px;
  padding: 1.5rem clamp(1rem, 2.5vw, 2.2rem) 2rem;
  border-left: 1px solid var(--line-light);
}

.process-list li:first-child {
  padding-left: 0;
  border-left: 0;
}

.process-list li > span {
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 730;
  font-variant-numeric: tabular-nums;
}

.process-list h3 {
  margin-top: 7rem;
  font-size: clamp(1.65rem, 2.4vw, 2.4rem);
  font-weight: 550;
  letter-spacing: -0.045em;
}

.process-list p {
  margin-top: 1.1rem;
  color: var(--muted-light);
  font-size: 0.94rem;
  line-height: 1.55;
}

.process-note {
  max-width: 690px;
  margin-top: 2rem;
  color: var(--muted-light);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Mission Control */
.control-heading {
  max-width: 940px;
}

.control-surface {
  margin-top: clamp(4rem, 8vw, 7.5rem);
  overflow: hidden;
  border: 1px solid #2a2c25;
  border-radius: var(--panel-radius);
  background: var(--ink);
  color: var(--text-light);
  box-shadow: 0 36px 90px rgba(67, 68, 57, 0.2);
}

.control-topbar {
  display: flex;
  min-height: 106px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--line-light);
}

.control-topbar > div > span,
.control-panel > p,
.proposed-action > p {
  color: var(--muted-light);
  font-size: 0.7rem;
  font-weight: 710;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.control-topbar h3 {
  margin-top: 0.45rem;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 580;
  letter-spacing: -0.035em;
}

.runtime-state {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 710;
}

.runtime-state i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(223, 255, 66, 0.11);
}

.control-surface[data-runtime="stopped"] .runtime-state i,
.control-surface[data-runtime="paused"] .runtime-state i {
  background: var(--muted-light);
  box-shadow: none;
}

.control-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, 0.7fr);
}

.control-flow {
  min-width: 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-right: 1px solid var(--line-light);
}

.proposed-action {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(223, 255, 66, 0.35);
  border-radius: var(--control-radius);
  background: rgba(223, 255, 66, 0.035);
}

.proposed-action strong {
  display: block;
  margin-top: 1.6rem;
  font-size: clamp(1.7rem, 3.5vw, 3.5rem);
  font-weight: 540;
  letter-spacing: -0.05em;
}

.proposed-action > span {
  display: block;
  margin-top: 0.7rem;
  color: var(--muted-light);
  font-size: 0.88rem;
}

.control-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1rem;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.control-facts div {
  min-height: 96px;
  padding: 1.2rem;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.control-facts dt {
  color: var(--muted-light);
  font-size: 0.72rem;
}

.control-facts dd {
  margin-top: 0.55rem;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.35;
}

.event-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 2rem;
}

.event-step {
  position: relative;
  padding-top: 1rem;
  border-top: 2px solid rgba(244, 244, 237, 0.16);
  color: #71746a;
  font-size: 0.7rem;
  font-weight: 680;
}

.event-step.is-complete,
.event-step.is-current {
  border-color: var(--lime);
  color: var(--text-light);
}

.control-surface[data-runtime="stopped"] .event-step,
.control-surface[data-runtime="paused"] .event-step {
  border-color: rgba(244, 244, 237, 0.16);
  color: #71746a;
}

.control-panel {
  padding: clamp(1.5rem, 3vw, 2.2rem);
}

.control-panel > p {
  margin-bottom: 1.1rem;
}

.control-panel button {
  display: grid;
  width: 100%;
  min-height: 74px;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid var(--line-light);
  border-radius: var(--control-radius);
  background: transparent;
  color: var(--text-light);
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.control-panel button + button {
  margin-top: 0.7rem;
}

.control-panel button:hover {
  border-color: rgba(244, 244, 237, 0.44);
  background: rgba(255, 255, 255, 0.035);
}

.control-panel button:active {
  transform: scale(0.985);
}

.control-panel button[aria-pressed="true"] {
  border-color: rgba(223, 255, 66, 0.48);
  background: rgba(223, 255, 66, 0.045);
}

.control-panel button span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-light);
  font-size: 0.66rem;
  font-weight: 680;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.control-panel button span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.control-panel button[aria-pressed="true"] span i {
  background: var(--lime);
}

.control-panel button strong {
  font-size: 0.88rem;
  font-weight: 650;
}

.control-status {
  min-height: 62px;
  padding: 1.3rem 1.75rem;
  border-top: 1px solid var(--line-light);
  color: var(--muted-light);
  font-size: 0.82rem;
  line-height: 1.45;
}

/* Fit */
.fit-heading {
  max-width: 1000px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: clamp(4.5rem, 9vw, 8rem);
  border-top: 1px solid var(--line-light);
}

.fit-grid article {
  padding: 2rem clamp(1.5rem, 4vw, 4rem) 0 0;
}

.fit-grid article + article {
  padding-right: 0;
  padding-left: clamp(1.5rem, 4vw, 4rem);
  border-left: 1px solid var(--line-light);
}

.fit-grid h3 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 550;
  letter-spacing: -0.045em;
}

.fit-grid ul {
  margin-top: 2.5rem;
  list-style: none;
}

.fit-grid li {
  position: relative;
  padding: 1.2rem 0 1.2rem 1.6rem;
  border-top: 1px solid var(--line-light);
  color: var(--muted-light);
  font-size: 0.98rem;
  line-height: 1.5;
}

.fit-grid li::before {
  position: absolute;
  top: 1.65rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.fit-grid article + article li::before {
  border: 1px solid var(--muted-light);
  background: transparent;
}

/* Engagements */
.engagements-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.engagements-heading h2 {
  font-size: clamp(2.7rem, 5vw, 5.5rem);
}

.engagement-list {
  border-top: 1px solid var(--line-dark);
}

.engagement-list article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 1.7rem 0 2.2rem;
  border-bottom: 1px solid var(--line-dark);
}

.engagement-list article > span {
  color: var(--muted-dark);
  font-size: 0.72rem;
  font-weight: 720;
  text-transform: uppercase;
}

.engagement-list h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
  font-weight: 560;
  letter-spacing: -0.04em;
}

.engagement-list p {
  margin-top: 0.8rem;
  color: var(--muted-dark);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* FAQ */
.faq {
  padding-top: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.58fr) minmax(400px, 1.35fr);
  gap: clamp(3rem, 10vw, 10rem);
  padding-top: var(--section-space);
  border-top: 1px solid var(--line-dark);
}

.faq-heading h2 {
  font-size: clamp(2.7rem, 4.8vw, 5.2rem);
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  position: relative;
  min-height: 78px;
  padding: 1.65rem 3.5rem 1.65rem 0;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 640;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0.2rem;
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 690px;
  padding: 0 3.5rem 1.8rem 0;
  color: var(--muted-dark);
  font-size: 0.98rem;
  line-height: 1.58;
}

/* Final CTA and footer */
.final-cta {
  padding-block: clamp(7rem, 15vw, 13rem);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr);
  align-items: end;
  gap: 3rem;
}

.final-cta h2 {
  max-width: 1020px;
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 510;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.final-cta p {
  grid-column: 2;
  color: var(--muted-light);
  font-size: 1rem;
  line-height: 1.55;
}

.final-cta .button-row {
  grid-column: 2;
}

.site-footer {
  border-top: 1px solid var(--line-light);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  min-height: 160px;
  align-items: center;
  gap: 2rem;
}

.footer-inner > p {
  color: var(--muted-light);
  font-size: 0.82rem;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.3rem;
}

.footer-inner nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--muted-light);
  font-size: 0.78rem;
  font-weight: 650;
}

.footer-inner nav a:hover {
  color: var(--text-light);
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 0.9rem;
  }

  .site-nav > a:not(.nav-cta):nth-child(3) {
    display: none;
  }

  .hero-grid {
    right: -16%;
    width: 64vw;
  }

  .truth-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .truth-grid p:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .truth-grid p:nth-child(4) {
    border-top: 1px solid var(--line-dark);
  }

  .layer-map {
    grid-template-columns: minmax(120px, 0.65fr) 60px minmax(350px, 2fr) 60px minmax(140px, 0.7fr);
  }

  .has-js .journey-stage {
    grid-template-columns: 100px minmax(0, 1fr) minmax(260px, 320px);
    gap: 1.5rem;
  }

  .has-js .journey-rail a {
    font-size: 0;
  }

  .has-js .journey-rail a span {
    font-size: 0.76rem;
  }

  .system-list article {
    grid-template-columns: 45px minmax(210px, 0.85fr) minmax(240px, 1fr);
  }

  .system-route {
    display: none;
  }

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

  .process-list li:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line-light);
  }

  .process-list li:nth-child(4) {
    border-top: 1px solid var(--line-light);
  }

  .process-list h3 {
    margin-top: 4rem;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 64px;
    --section-space: clamp(5.5rem, 18vw, 8rem);
  }

  .has-js .nav-toggle {
    position: relative;
    display: block;
  }

  html:not(.has-js) .site-header {
    position: relative;
    height: auto;
    border-bottom-color: var(--line-light);
    background: var(--ink);
  }

  html:not(.has-js) .header-inner {
    height: auto;
    flex-wrap: wrap;
    padding-top: 0.55rem;
  }

  html:not(.has-js) .site-nav {
    flex-basis: 100%;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    padding: 1rem var(--gutter) 1.5rem;
    border-top: 1px solid var(--line-light);
    background: var(--ink);
  }

  .site-nav > a:not(.nav-cta):nth-child(3) {
    display: inline-flex;
  }

  .site-nav a {
    min-height: 52px;
    border-bottom: 1px solid var(--line-light);
  }

  .site-nav .nav-cta {
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 1rem;
    border-bottom: 0;
  }

  .has-js .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .has-js .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero h1 {
    font-size: clamp(4rem, 15vw, 7.5rem);
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .hero-grid {
    top: 12%;
    right: -32%;
    width: 82vw;
    opacity: 0.33;
  }

  .layer-map {
    grid-template-columns: minmax(100px, 0.6fr) 50px minmax(300px, 1.7fr);
  }

  .map-route-out,
  .map-outcomes {
    display: none;
  }

  .journey-stage {
    grid-template-columns: minmax(0, 1fr);
  }

  .journey-visual,
  .journey-copy {
    grid-column: 1;
  }

  html:not(.has-js) .journey-rail {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  html:not(.has-js) .journey-rail ol {
    display: flex;
    min-width: 570px;
  }

  html:not(.has-js) .journey-rail li {
    flex: 1;
  }

  .has-js .journey-story {
    height: 570vh;
    height: 570svh;
  }

  .has-js .journey-stage {
    grid-template-rows: 56px minmax(250px, 46svh) minmax(230px, 1fr);
    grid-template-columns: minmax(0, 1fr);
    gap: 0.45rem;
    align-items: stretch;
    padding-top: calc(var(--header-height) + 0.6rem);
    padding-bottom: max(0.65rem, env(safe-area-inset-bottom));
  }

  .has-js .journey-rail {
    grid-row: 1;
    grid-column: 1;
    align-self: stretch;
    padding: 0;
  }

  .has-js .journey-rail ol {
    position: relative;
    z-index: 1;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    height: 100%;
  }

  .has-js .journey-rail a {
    justify-content: center;
    font-size: 0;
  }

  .has-js .journey-rail a span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--line-light);
    border-radius: 50%;
    background: var(--ink);
    font-size: 0.66rem;
  }

  .has-js .journey-rail a[aria-current="step"] span {
    border-color: var(--lime);
  }

  .has-js .rail-track {
    top: 50%;
    right: 10%;
    bottom: auto;
    left: 10%;
    width: 80%;
    height: 1px;
  }

  .has-js .rail-track span {
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left;
  }

  .has-js .journey-visual {
    grid-row: 2;
    grid-column: 1;
    min-height: 0;
  }

  .has-js .system-visual {
    width: 100%;
    height: 100%;
  }

  .has-js .diagram-main {
    filter: none !important;
  }

  .has-js .journey-copy {
    grid-row: 3;
    grid-column: 1;
    min-height: 0;
  }

  .has-js .act-copy {
    top: 0;
    padding-top: 1.05rem;
    transform: translateY(14px);
  }

  .has-js .act-copy.is-active {
    transform: translateY(0);
  }

  .act-copy h3 {
    margin-top: 0.72rem;
    font-size: clamp(1.65rem, 7.5vw, 2.4rem);
  }

  .act-copy > p:not(.act-name) {
    margin-top: 0.8rem;
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .text-link {
    margin-top: 0.7rem;
  }

  .system-list article {
    grid-template-columns: 38px 1fr;
    gap: 0.8rem 1.2rem;
    padding-block: 1.6rem;
  }

  .system-list p {
    grid-column: 2;
  }

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

  .control-flow {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

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

  .fit-grid article + article {
    margin-top: 3.5rem;
    padding-left: 0;
    border-left: 0;
  }

  .engagements-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .final-cta p,
  .final-cta .button-row {
    grid-column: 1;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    padding-block: 2.2rem;
  }

  .footer-inner nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .section-heading h2 {
    font-size: clamp(2.7rem, 13vw, 4.5rem);
  }

  .hero-inner {
    justify-content: flex-start;
    padding-top: 7.5rem;
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
  }

  .hero h1 {
    max-width: 100%;
    margin-top: 2rem;
    font-size: clamp(3.4rem, 15vw, 5.2rem);
    letter-spacing: -0.068em;
    line-height: 0.88;
  }

  .hero-bottom {
    width: 100%;
    margin-top: auto;
  }

  .hero-intro {
    max-width: 34ch;
    font-size: 1rem;
  }

  .hero .button-row {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero .button {
    width: 100%;
    min-width: 0;
    padding-inline: 0.75rem;
    font-size: 0.82rem;
  }

  .hero-grid {
    top: 13%;
    right: -57%;
    width: 110vw;
  }

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

  .truth-grid p,
  .truth-grid p:first-child,
  .truth-grid p:nth-child(3) {
    min-height: 72px;
    padding: 1rem 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .truth-grid p:first-child {
    border-top: 0;
  }

  .layer-map {
    grid-template-columns: 1fr;
    gap: 1.3rem;
    padding-block: 1.5rem;
  }

  .map-sources {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-sources span {
    min-height: 44px;
  }

  .map-route {
    display: none;
  }

  .map-layer {
    min-height: 270px;
    padding: 1.8rem;
  }

  .journey-intro h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .has-js .journey-stage {
    grid-template-rows: 50px minmax(225px, 41svh) minmax(245px, 1fr);
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:first-child,
  .process-list li:nth-child(3) {
    min-height: 0;
    padding: 1.4rem 0 2.2rem;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .process-list li:first-child {
    border-top: 0;
  }

  .process-list h3 {
    margin-top: 2.7rem;
  }

  .control-topbar {
    align-items: flex-start;
  }

  .runtime-state {
    min-height: 36px;
    padding: 0.5rem 0.7rem;
  }

  .control-facts {
    grid-template-columns: 1fr;
  }

  .control-facts div {
    min-height: 80px;
  }

  .event-line {
    margin-top: 1.5rem;
  }

  .engagement-list article {
    grid-template-columns: 54px 1fr;
  }

  .faq-list summary {
    padding-right: 2.5rem;
  }

  .faq-list details p {
    padding-right: 1rem;
  }

  .final-cta h2 {
    font-size: clamp(3.9rem, 17vw, 6rem);
  }

  .final-cta .button-row {
    display: grid;
  }

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

  .footer-inner nav {
    grid-column: 1;
    gap: 1rem;
  }
}

@media (max-height: 700px) and (min-width: 821px) {
  .has-js .journey-stage {
    grid-template-columns: 90px minmax(0, 1fr) minmax(250px, 310px);
    gap: 1.25rem;
    padding-top: calc(var(--header-height) + 0.4rem);
    padding-bottom: 0.4rem;
  }

  .has-js .act-copy h3 {
    font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  }

  .has-js .act-copy > p:not(.act-name) {
    font-size: 0.9rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-grid {
    opacity: 0.22;
  }

  .has-js .journey-story {
    height: auto;
    padding-bottom: var(--section-space);
  }

  .has-js .journey-stage {
    position: relative;
    height: auto;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: start;
    padding-top: 0;
  }

  .has-js .journey-rail {
    grid-row: auto;
    grid-column: 1;
    align-self: start;
  }

  .has-js .rail-track {
    display: none;
  }

  .has-js .journey-visual {
    grid-row: auto;
    grid-column: 2;
  }

  .has-js .journey-copy {
    display: grid;
    grid-row: auto;
    grid-column: 2;
    gap: 2rem;
    min-height: 0;
    margin-top: 2rem;
  }

  .has-js .act-copy,
  .has-js .act-copy.is-active {
    position: relative;
    top: auto;
    width: auto;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .has-js .diagram-main {
    filter: none !important;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 820px) {
  .has-js .journey-stage {
    grid-template-columns: 1fr;
  }

  .has-js .journey-rail,
  .has-js .journey-visual,
  .has-js .journey-copy {
    grid-row: auto;
    grid-column: 1;
  }

  .has-js .journey-rail ol {
    grid-template-columns: repeat(5, 1fr);
  }

  .has-js .journey-copy {
    margin-top: 0;
  }
}

@media print {
  .site-header,
  .journey-rail,
  .hero-grid,
  .button-row {
    display: none !important;
  }

  .hero,
  .hero-inner {
    min-height: 0;
  }

  .hero,
  .journey,
  .process,
  .fit,
  .final-cta,
  .site-footer {
    background: #fff;
    color: #000;
  }

  .has-js .journey-story,
  .has-js .journey-stage {
    height: auto;
  }

  .has-js .journey-stage {
    position: relative;
    display: block;
  }

  .has-js .journey-copy {
    display: grid;
    min-height: 0;
  }

  .has-js .act-copy {
    position: relative;
    top: auto;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
}
