:root {
  color-scheme: dark;
  --bg: #07090d;
  --bg-2: #0d1118;
  --surface: rgba(15, 20, 28, 0.86);
  --surface-strong: rgba(15, 20, 28, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f8f3e9;
  --muted: #b7bfca;
  --muted-strong: #dfe5ec;
  --cyan: #50ded1;
  --amber: #f4c45f;
  --coral: #ff7676;
  --violet: #a9b7ff;
  --green: #91d97d;
  --shadow: 0 24px 68px rgba(0, 0, 0, 0.32);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  background:
    linear-gradient(180deg, rgba(80, 222, 209, 0.055), transparent 360px),
    linear-gradient(90deg, rgba(244, 196, 95, 0.045), transparent 42%),
    var(--bg);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 70%);
}

a {
  color: inherit;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 13, 0.88);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  align-items: center;
  min-height: 72px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 250px;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  padding: 3px;
  border: 1px solid rgba(244, 196, 95, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  font-size: 0.95rem;
  line-height: 1.1;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.74rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 3px;
}

.nav-links a {
  min-height: 40px;
  padding: 9px 11px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.89rem;
  font-weight: 780;
  line-height: 1.1;
  text-decoration: none;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.075);
}

.nav-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.065);
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle span:nth-child(2) {
  transform: translateY(-7px);
}

.nav-toggle span:nth-child(4) {
  transform: translateY(7px);
}

.site-nav.is-open .nav-toggle span:nth-child(2) {
  transform: rotate(45deg);
}

.site-nav.is-open .nav-toggle span:nth-child(3) {
  opacity: 0;
}

.site-nav.is-open .nav-toggle span:nth-child(4) {
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--primary {
  color: #10130d;
  background: linear-gradient(135deg, var(--amber), #fff0b4 48%, var(--cyan));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(244, 196, 95, 0.36);
}

.btn--secondary,
.btn--ghost,
.btn--nav {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.072);
}

.btn--secondary:hover,
.btn--secondary:focus-visible,
.btn--ghost:hover,
.btn--ghost:focus-visible,
.btn--nav:hover,
.btn--nav:focus-visible {
  border-color: rgba(80, 222, 209, 0.52);
  background: rgba(255, 255, 255, 0.105);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.btn--ghost {
  color: var(--muted-strong);
}

.btn--nav {
  min-width: 132px;
  min-height: 42px;
  padding: 10px 15px;
}

.btn--large {
  min-height: 56px;
  padding-inline: 27px;
}

.hero {
  position: relative;
  display: grid;
  align-content: center;
  align-items: center;
  min-height: clamp(620px, 72svh, 780px);
  overflow: hidden;
  padding-block: 64px 58px;
  isolation: isolate;
  background: #07090d;
}

.hero::before,
.hero::after,
.hero-media {
  position: absolute;
  inset: 0;
}

.hero::before {
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.95), rgba(7, 9, 13, 0.62) 45%, rgba(7, 9, 13, 0.86)),
    linear-gradient(180deg, rgba(7, 9, 13, 0.22), rgba(7, 9, 13, 0.48) 56%, rgba(7, 9, 13, 0.94));
}

.hero::after {
  z-index: 2;
  top: auto;
  height: 96px;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, var(--bg) 88%);
}

.hero-media {
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) contrast(0.96) brightness(0.66);
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.42fr);
  align-items: center;
  gap: 42px;
}

.hero-copy {
  max-width: 820px;
}

.section-eyebrow {
  margin: 0 0 10px;
  color: var(--amber);
  font-size: 0.9rem;
  font-weight: 850;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: 5rem;
  line-height: 0.96;
  font-weight: 920;
  text-wrap: balance;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.48);
}

.hero-subtitle {
  max-width: 730px;
  margin: 18px 0 0;
  color: rgba(248, 243, 233, 0.88);
  font-size: 1.2rem;
}

.hero-actions,
.split-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.split-actions--center {
  justify-content: center;
}

.hero-status {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(12, 16, 23, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-status::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--amber), var(--coral), var(--violet));
}

.hero-status p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-status dl {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.hero-status dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  min-height: 56px;
  padding: 14px;
  background: rgba(15, 20, 28, 0.86);
}

.hero-status dt {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 780;
}

.hero-status dd {
  margin: 0;
  color: var(--amber);
  font-weight: 880;
  text-align: right;
}

.hero-strip {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}

.hero-strip span {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 820;
  background: rgba(15, 20, 28, 0.68);
  backdrop-filter: blur(12px);
}

.section {
  position: relative;
  overflow: hidden;
  padding-block: 94px;
}

.section::before {
  position: absolute;
  inset: -1px 0 auto;
  height: 1px;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}

.section--band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.014)),
    rgba(255, 255, 255, 0.012);
}

.page-hero {
  min-height: 430px;
  display: grid;
  align-items: end;
  padding-block: 126px 76px;
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.98), rgba(7, 9, 13, 0.76)),
    linear-gradient(180deg, rgba(7, 9, 13, 0.18), rgba(7, 9, 13, 0.9)),
    url("/images/hero-skyline.jpg") center / cover;
}

.page-hero__content {
  max-width: 830px;
  margin-inline: auto;
  text-align: center;
}

.page-hero h1 {
  margin: 0;
  font-size: 4rem;
  line-height: 0.98;
  font-weight: 920;
  text-wrap: balance;
}

.page-hero p:not(.section-eyebrow) {
  max-width: 740px;
  margin: 20px auto 0;
  color: rgba(248, 243, 233, 0.84);
  font-size: 1.15rem;
}

.section-title {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-title--center {
  margin-inline: auto;
  text-align: center;
}

.section-title h2,
.final-cta-panel h2 {
  margin: 0;
  font-size: 2.64rem;
  line-height: 1.06;
  font-weight: 900;
  text-wrap: balance;
}

.section-title p:not(.section-eyebrow),
.final-cta-panel p:not(.section-eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-copy p {
  margin: 0;
}

.brief-grid,
.split-layout,
.system-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  align-items: center;
  gap: 46px;
}

.brief-metrics {
  display: grid;
  gap: 12px;
}

.brief-metrics div,
.focus-panel,
.focus-list,
.principle-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.brief-metrics div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  min-height: 82px;
  gap: 16px;
  padding: 18px;
}

.brief-metrics span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(80, 222, 209, 0.34);
  border-radius: 8px;
  color: var(--cyan);
  font-weight: 900;
  background: rgba(80, 222, 209, 0.1);
}

.brief-metrics strong {
  line-height: 1.25;
}

.section--image-system {
  background:
    linear-gradient(135deg, rgba(80, 222, 209, 0.05), transparent 42%),
    linear-gradient(270deg, rgba(244, 196, 95, 0.05), transparent 44%);
}

.system-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.68fr);
}

.system-visual {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 20, 28, 0.74);
  box-shadow: var(--shadow);
}

.system-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.64) contrast(0.96) brightness(0.66);
}

.system-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent 32%, rgba(7, 9, 13, 0.82)),
    linear-gradient(90deg, rgba(7, 9, 13, 0.24), transparent 52%, rgba(7, 9, 13, 0.44));
}

.system-visual figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 20, 28, 0.74);
  backdrop-filter: blur(14px);
}

.system-visual figcaption span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 820;
}

.system-visual figcaption strong {
  color: var(--amber);
  font-size: 0.91rem;
}

.system-copy {
  align-self: stretch;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.system-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.system-list a {
  min-height: 54px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted-strong);
  font-weight: 850;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.055);
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.system-list a:hover,
.system-list a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(244, 196, 95, 0.44);
  background: rgba(255, 255, 255, 0.085);
}

.home-gateway {
  padding-block: 64px;
}

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

.gateway-card {
  position: relative;
  display: grid;
  min-height: 178px;
  align-content: space-between;
  gap: 24px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.gateway-card::before {
  display: block;
  width: 54px;
  height: 4px;
  border-radius: 999px;
  content: "";
  background: var(--cyan);
}

.gateway-card span {
  color: var(--amber);
  font-size: 0.84rem;
  font-weight: 860;
}

.gateway-card strong {
  color: var(--muted-strong);
  font-size: 1.02rem;
  line-height: 1.25;
}

.gateway-card:hover,
.gateway-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: rgba(20, 26, 36, 0.92);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.36);
}

.gateway-card--pink {
  border-color: rgba(255, 118, 118, 0.24);
}

.gateway-card--pink::before {
  background: var(--coral);
}

.gateway-card--purple {
  border-color: rgba(169, 183, 255, 0.26);
}

.gateway-card--purple::before {
  background: var(--violet);
}

.gateway-card--orange {
  border-color: rgba(244, 196, 95, 0.3);
}

.gateway-card--orange::before {
  background: var(--amber);
}

.card-grid,
.department-grid,
.pillar-grid,
.steps-grid {
  display: grid;
  gap: 18px;
}

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

.card-grid--four,
.pillar-grid,
.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.feature-card,
.department-card,
.pillar-card,
.step-card {
  position: relative;
  min-height: 214px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.feature-card:hover,
.department-card:hover,
.pillar-card:hover,
.step-card:hover,
.feature-card:focus-within,
.department-card:focus-within,
.pillar-card:focus-within,
.step-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: rgba(20, 26, 36, 0.92);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.36);
}

.feature-card__signal,
.pillar-card > span {
  display: block;
  width: 58px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--cyan);
}

.feature-card h3,
.department-card h3,
.pillar-card h3,
.step-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 880;
}

.feature-card p,
.department-card p,
.pillar-card p,
.step-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.feature-card--pink,
.department-card--pink,
.pillar-card--pink {
  border-color: rgba(255, 118, 118, 0.24);
}

.feature-card--pink .feature-card__signal,
.pillar-card--pink > span {
  background: var(--coral);
}

.feature-card--purple,
.department-card--purple,
.pillar-card--purple {
  border-color: rgba(169, 183, 255, 0.26);
}

.feature-card--purple .feature-card__signal,
.pillar-card--purple > span {
  background: var(--violet);
}

.feature-card--orange,
.department-card--orange,
.pillar-card--orange {
  border-color: rgba(244, 196, 95, 0.3);
}

.feature-card--orange .feature-card__signal,
.pillar-card--orange > span {
  background: var(--amber);
}

.department-card {
  min-height: 282px;
}

.department-card__topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.department-card__full-name {
  margin-top: 6px;
  color: var(--amber);
  font-weight: 780;
}

.department-card__topline span {
  flex: 0 0 auto;
  max-width: 190px;
  padding: 7px 10px;
  border: 1px solid rgba(244, 196, 95, 0.34);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  background: rgba(244, 196, 95, 0.1);
}

.step-card {
  min-height: 220px;
}

.step-card > span {
  display: inline-flex;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(80, 222, 209, 0.34);
  border-radius: 8px;
  color: var(--cyan);
  font-size: 0.84rem;
  font-weight: 880;
  background: rgba(80, 222, 209, 0.1);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.focus-panel {
  padding: 30px;
}

.focus-panel p {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 1.46rem;
  line-height: 1.2;
  font-weight: 900;
}

.focus-panel ul,
.focus-list,
.principle-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.focus-panel li,
.focus-list li,
.principle-list li {
  min-height: 44px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted-strong);
  font-weight: 780;
  background: rgba(255, 255, 255, 0.055);
}

.focus-list,
.principle-list {
  padding: 24px;
}

.focus-list li,
.principle-list li {
  position: relative;
  padding-left: 42px;
}

.focus-list li::before,
.principle-list li::before {
  position: absolute;
  top: 15px;
  left: 14px;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(80, 222, 209, 0.72);
  border-radius: 4px;
  content: "";
  background: rgba(80, 222, 209, 0.18);
}

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

.principle-list li:last-child {
  grid-column: 1 / -1;
  border-color: rgba(244, 196, 95, 0.28);
}

.leadership-section {
  background:
    linear-gradient(180deg, rgba(244, 196, 95, 0.04), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.01);
}

.final-cta {
  padding-top: 24px;
}

.final-cta-panel {
  position: relative;
  overflow: hidden;
  padding: 46px;
  border: 1px solid rgba(244, 196, 95, 0.3);
  border-radius: 8px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(244, 196, 95, 0.14), rgba(80, 222, 209, 0.08)),
    var(--surface-strong);
  box-shadow: var(--shadow);
}

.final-cta-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--amber), var(--cyan), var(--violet));
}

.final-cta-panel > * {
  position: relative;
}

.final-actions {
  justify-content: center;
  margin-top: 28px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(5, 7, 10, 0.96);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 30px;
}

.footer-brand {
  color: var(--text);
  font-weight: 880;
  text-decoration: none;
}

.site-footer p {
  max-width: 520px;
  margin: 5px 0 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
}

.site-footer a {
  color: var(--muted);
  font-weight: 780;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--amber);
}

@media (max-width: 1120px) {
  .card-grid--four,
  .gateway-grid,
  .pillar-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .nav-inner {
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 73px;
    right: 16px;
    left: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: rgba(7, 9, 13, 0.97);
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.42);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    backdrop-filter: blur(18px);
    transition:
      opacity 170ms ease,
      transform 170ms ease;
  }

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

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 46px;
  }

  .btn--nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout,
  .brief-grid,
  .split-layout,
  .system-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 3.65rem;
  }

  .hero-status {
    max-width: 620px;
  }

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

  .card-grid--three,
  .department-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .brand {
    min-width: 0;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    padding-block: 84px 24px;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-subtitle,
  .page-hero p:not(.section-eyebrow) {
    font-size: 1.04rem;
  }

  .hero-actions,
  .split-actions,
  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .split-actions .btn,
  .final-actions .btn {
    width: 100%;
  }

  .hero-status dl div {
    flex-direction: column;
    gap: 4px;
  }

  .hero-status dd {
    text-align: left;
  }

  .hero-strip span {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }

  .section {
    padding-block: 72px;
  }

  .section-title h2,
  .final-cta-panel h2 {
    font-size: 2.1rem;
  }

  .page-hero {
    min-height: auto;
    padding-block: 96px 58px;
  }

  .page-hero h1 {
    font-size: 2.5rem;
  }

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

  .system-visual figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .system-list,
  .card-grid--three,
  .card-grid--four,
  .department-grid,
  .gateway-grid,
  .pillar-grid,
  .steps-grid,
  .principle-list {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .department-card,
  .pillar-card,
  .step-card {
    min-height: auto;
    padding: 22px;
  }

  .department-card__topline {
    flex-direction: column;
  }

  .department-card__topline span {
    max-width: none;
    text-align: left;
  }

  .focus-panel,
  .focus-list,
  .principle-list,
  .final-cta-panel {
    padding: 24px;
  }

  .principle-list li:last-child {
    grid-column: auto;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .brand-text strong {
    max-width: 150px;
    font-size: 0.86rem;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .section-title h2,
  .final-cta-panel h2 {
    font-size: 1.9rem;
  }

  .hero-strip span {
    flex-basis: 100%;
  }
}

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