:root {
  color-scheme: dark;
  --bg: #01070b;
  --bg-2: #050b10;
  --panel: #071017;
  --ink: #f2f0e7;
  --muted: #b8b9b3;
  --faint: #6f7478;
  --line: rgba(242, 240, 231, 0.24);
  --line-strong: rgba(242, 240, 231, 0.48);
  --blue: #1266ff;
  --yellow: #ffe600;
  --red: #ff332c;
  --black: #01070b;
  --max: 1200px;
  --mono: "Courier New", Courier, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 75% 15%, rgba(18, 102, 255, 0.09), transparent 32rem),
    var(--bg);
  background-size: 56px 56px, 56px 56px, auto, auto;
  color: var(--ink);
  font-family: var(--mono);
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 4px
    );
  mix-blend-mode: soft-light;
  opacity: 0.24;
}

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

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

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

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 92px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-width: 0;
  gap: 12px;
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.brand-mark-tile {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  place-items: center;
  background: var(--yellow);
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-wordmark {
  display: grid;
  gap: 2px;
  color: var(--ink);
  font-size: 19px;
}

.brand-wordmark span:last-child {
  color: var(--blue);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 58px);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a,
.footer-nav a,
.footer-bottom a {
  position: relative;
}

.main-nav a::after,
.footer-nav a::after,
.footer-bottom a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after,
.footer-bottom a:hover::after,
.footer-bottom a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.button {
  --button-bg: transparent;
  --button-fg: var(--ink);
  --button-border: var(--line-strong);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 194px;
  min-height: 50px;
  gap: 18px;
  padding: 13px 18px;
  overflow: hidden;
  border: 1px solid var(--button-border);
  background: var(--button-bg);
  color: var(--button-fg);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    background-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--ink);
}

.button-primary {
  --button-bg: var(--yellow);
  --button-fg: var(--black);
  --button-border: var(--yellow);
}

.button-secondary {
  --button-border: rgba(18, 102, 255, 0.72);
}

.button-dark {
  --button-bg: var(--black);
  --button-fg: var(--ink);
  --button-border: var(--black);
}

.button-mark,
.button-arrow {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.button-mark::before,
.button-mark::after {
  position: absolute;
  inset: 50% auto auto 0;
  width: 18px;
  height: 1px;
  content: "";
  background: currentColor;
}

.button-mark::after {
  transform: rotate(90deg);
}

.button-arrow::before {
  position: absolute;
  top: 50%;
  right: 2px;
  width: 9px;
  height: 9px;
  content: "";
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.dot-menu {
  display: grid;
  grid-template-columns: repeat(3, 4px);
  gap: 8px;
  width: 42px;
  height: 42px;
  padding: 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.dot-menu span {
  width: 4px;
  height: 4px;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(1, 7, 11, 0.96) 0%, rgba(1, 7, 11, 0.72) 43%, rgba(1, 7, 11, 0.14) 100%),
    linear-gradient(180deg, transparent 78%, var(--bg) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  align-items: center;
  min-height: min(760px, calc(100vh - 92px));
  padding-block: clamp(54px, 8vw, 112px) clamp(44px, 7vw, 86px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::after {
  display: inline-block;
  width: 86px;
  height: 3px;
  margin-left: 8px;
  vertical-align: middle;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--yellow));
}

.hero h1 {
  margin: 0;
  font-size: clamp(52px, 6.7vw, 84px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.hero h1 span,
.about-copy h2 span,
.page-hero h1 span,
.statement-panel h2 span {
  color: var(--yellow);
}

.hero-lede {
  max-width: 500px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 38px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  align-self: stretch;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.hero-visual::before {
  inset: 0;
  border: 1px solid rgba(242, 240, 231, 0.18);
}

.hero-visual::after {
  right: -12px;
  bottom: 22px;
  width: 150px;
  height: 3px;
  background: var(--blue);
  box-shadow:
    -42px 0 0 var(--blue),
    -84px 0 0 var(--blue),
    -126px 0 0 var(--blue);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: screen;
}

.scan-box {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 2px;
  min-width: 128px;
  padding: 16px 18px;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  background: rgba(1, 7, 11, 0.58);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.scan-box span {
  color: var(--yellow);
}

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

.scan-top {
  top: 48px;
  right: 64px;
}

.scan-bottom {
  right: 50px;
  bottom: 80px;
}

.hud-cross {
  position: absolute;
  z-index: 2;
  width: 28px;
  height: 28px;
  pointer-events: none;
}

.hud-cross::before,
.hud-cross::after {
  position: absolute;
  content: "";
  background: var(--line-strong);
}

.hud-cross::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.hud-cross::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}

.cross-a {
  top: 46px;
  left: max(24px, calc((100vw - var(--max)) / 2));
}

.cross-b {
  top: 42px;
  left: 47%;
}

.cross-c {
  bottom: 44px;
  left: max(24px, calc((100vw - var(--max)) / 2));
}

.services-section,
.about-section {
  padding-block: clamp(34px, 6vw, 72px);
}

.section-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.section-rule .section-kicker {
  margin: 0;
  white-space: nowrap;
}

.section-rule span {
  display: block;
  width: 100%;
  height: 1px;
  background:
    linear-gradient(90deg, var(--line), var(--line) 66%, transparent 66%, transparent),
    linear-gradient(90deg, var(--blue), var(--blue));
  background-size: 100% 1px, 16px 1px;
  background-position: 0 0, 0 0;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 392px;
  flex-direction: column;
  padding: 28px 28px 30px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 32%),
    rgba(1, 7, 11, 0.62);
}

.service-card::before,
.service-card::after {
  position: absolute;
  width: 20px;
  height: 20px;
  content: "";
  pointer-events: none;
}

.service-card::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.service-card::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.card-number {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

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

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

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

.service-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  margin: 12px auto 26px;
}

.service-icon::before,
.service-icon::after {
  position: absolute;
  inset: 18px;
  content: "";
  pointer-events: none;
}

.service-icon::before {
  border: 4px solid var(--ink);
  clip-path: polygon(
    0 0,
    26px 0,
    26px 4px,
    4px 4px,
    4px 26px,
    0 26px,
    0 0,
    100% 0,
    100% 26px,
    calc(100% - 4px) 26px,
    calc(100% - 4px) 4px,
    calc(100% - 26px) 4px,
    calc(100% - 26px) 0,
    100% 0,
    100% 100%,
    calc(100% - 26px) 100%,
    calc(100% - 26px) calc(100% - 4px),
    calc(100% - 4px) calc(100% - 4px),
    calc(100% - 4px) calc(100% - 26px),
    100% calc(100% - 26px),
    100% 100%,
    0 100%,
    0 calc(100% - 26px),
    4px calc(100% - 26px),
    4px calc(100% - 4px),
    26px calc(100% - 4px),
    26px 100%,
    0 100%
  );
}

.icon-train span {
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--blue);
}

.icon-train span:nth-child(1) {
  transform: translate(-10px, 12px);
}

.icon-train span:nth-child(2) {
  transform: translate(12px, -10px);
}

.icon-train span:nth-child(3) {
  transform: translate(34px, -32px);
}

.icon-build span {
  position: absolute;
  border: 4px solid var(--ink);
}

.icon-build span:first-child {
  width: 58px;
  height: 70px;
  transform: translate(-18px, -4px);
}

.icon-build span:last-child {
  width: 66px;
  height: 66px;
  border-color: var(--blue);
  background: var(--blue);
  transform: translate(18px, 18px);
}

.icon-integrate span {
  position: absolute;
  width: 58px;
  height: 52px;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.icon-integrate span:nth-child(1),
.icon-integrate span:nth-child(2) {
  background: var(--ink);
}

.icon-integrate span:nth-child(1)::after,
.icon-integrate span:nth-child(2)::after {
  position: absolute;
  inset: 4px;
  content: "";
  background: var(--bg);
  clip-path: inherit;
}

.icon-integrate span:nth-child(1) {
  transform: translate(-28px, -8px);
}

.icon-integrate span:nth-child(2) {
  transform: translate(30px, -34px);
}

.icon-integrate span:nth-child(3) {
  background: var(--red);
  transform: translate(12px, 22px);
}

.icon-solutions span {
  width: 58px;
  height: 58px;
  background: var(--yellow);
}

.service-card h2 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.service-card p:not(.card-number) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.card-signal {
  position: absolute;
  bottom: 28px;
  left: 28px;
  width: 72px;
  height: 4px;
}

.card-signal::before,
.card-signal::after {
  position: absolute;
  inset: 0;
  content: "";
}

.card-signal::before {
  width: 34px;
  background: currentColor;
}

.card-signal::after {
  left: 42px;
  background:
    repeating-linear-gradient(90deg, currentColor 0 2px, transparent 2px 5px);
  opacity: 0.64;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  border: 1px solid var(--line-strong);
}

.about-copy,
.cta-panel {
  min-height: 330px;
  padding: clamp(28px, 4vw, 42px);
}

.about-copy {
  border-right: 1px solid var(--line);
  background: rgba(1, 7, 11, 0.52);
}

.about-copy h2 {
  max-width: 520px;
  margin: 0 0 34px;
  font-size: clamp(27px, 3vw, 39px);
  line-height: 1.35;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  background: var(--red);
  color: var(--black);
}

.cta-panel::before,
.cta-panel::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.cta-panel::before {
  top: 28px;
  right: 28px;
  width: 22px;
  height: 22px;
  border: 1px solid var(--black);
  background:
    linear-gradient(45deg, transparent calc(50% - 1px), var(--black) calc(50% - 1px), var(--black) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(-45deg, transparent calc(50% - 1px), var(--black) calc(50% - 1px), var(--black) calc(50% + 1px), transparent calc(50% + 1px));
}

.cta-panel::after {
  right: -40px;
  bottom: 48px;
  width: 170px;
  height: 2px;
  background: var(--black);
  box-shadow: 0 42px 0 rgba(1, 7, 11, 0.24), -70px -74px 0 rgba(1, 7, 11, 0.18);
}

.cta-panel .section-kicker {
  color: var(--black);
}

.cta-panel h2 {
  max-width: 380px;
  margin: 0 0 34px;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.2;
}

.site-footer {
  padding-block: 44px 20px;
  border-top: 1px solid var(--line-strong);
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(1, 7, 11, 0.98), rgba(1, 7, 11, 0.8) 48%, rgba(1, 7, 11, 0.34)),
    url("assets/hero-ai-construct.png") right center / min(56vw, 760px) auto no-repeat;
  opacity: 0.86;
}

.page-hero .shell {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 500px;
  align-content: center;
  padding-block: clamp(72px, 10vw, 132px);
}

.page-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

.content-section {
  padding-block: clamp(44px, 7vw, 88px);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.statement-panel {
  position: sticky;
  top: 116px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line-strong);
  background: rgba(1, 7, 11, 0.58);
}

.statement-panel h2 {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.18;
}

.statement-panel p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.detail-card {
  position: relative;
  min-height: 178px;
  padding: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 34%),
    rgba(1, 7, 11, 0.5);
}

.detail-card::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 18px;
  height: 18px;
  content: "";
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.detail-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
}

.detail-card p {
  margin: 0;
  color: var(--muted);
}

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

.program-card {
  min-height: 236px;
  padding: 28px;
  border: 1px solid var(--line-strong);
  background: rgba(1, 7, 11, 0.62);
}

.program-card h3 {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
}

.program-card p {
  margin: 0;
  color: var(--muted);
}

.process-list {
  display: grid;
  gap: 1px;
  counter-reset: process;
  border: 1px solid var(--line-strong);
}

.process-list li {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 24px;
  padding: 26px;
  background: rgba(1, 7, 11, 0.58);
  counter-increment: process;
}

.process-list li::before {
  content: counter(process, decimal-leading-zero);
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.process-list h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

.page-cta {
  padding-block: clamp(34px, 6vw, 72px);
}

.page-cta .cta-panel {
  min-height: 0;
  padding: clamp(32px, 5vw, 58px);
}

.page-cta .cta-panel h2 {
  max-width: 760px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) minmax(160px, 0.52fr) minmax(260px, 1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.footer-nav {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.newsletter {
  min-height: 92px;
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.newsletter label {
  display: block;
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.newsletter div {
  display: flex;
  width: min(100%, 260px);
  border: 1px solid var(--line-strong);
}

.newsletter input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 13px 12px;
  font-size: 13px;
  outline: 0;
}

.newsletter input::placeholder {
  color: var(--faint);
}

.newsletter button {
  position: relative;
  width: 48px;
  flex: 0 0 48px;
  border: 0;
  border-left: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.newsletter button::before,
.newsletter button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
}

.newsletter button::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  color: var(--faint);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 44px;
}

@media (max-width: 1040px) {
  .header-grid {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: min(720px, calc(100svh - 92px));
    overflow: hidden;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(1, 7, 11, 0.88), rgba(1, 7, 11, 0.5) 58%, var(--bg) 100%),
      linear-gradient(90deg, rgba(1, 7, 11, 0.96), rgba(1, 7, 11, 0.18));
  }

  .hero-grid::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(1, 7, 11, 0.72) 0%, rgba(1, 7, 11, 0.88) 58%, rgba(1, 7, 11, 0.98) 100%),
      linear-gradient(90deg, rgba(1, 7, 11, 0.98) 0%, rgba(1, 7, 11, 0.72) 56%, rgba(1, 7, 11, 0.3) 100%);
  }

  .hero-copy {
    z-index: 2;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 0;
    margin-top: 0;
    opacity: 0.82;
  }

  .hero-visual img {
    height: 100%;
    min-height: 0;
    object-position: 68% center;
  }

  .scan-box {
    display: none;
  }

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

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

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

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    position: relative;
  }

  .header-grid {
    min-height: 78px;
    gap: 14px;
  }

  .brand,
  .footer-brand {
    width: auto;
    min-width: 0;
    gap: 10px;
  }

  .brand-mark-tile {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-wordmark {
    font-size: 16px;
  }

  .header-actions .button {
    display: none;
  }

  .hero-grid {
    min-height: clamp(610px, calc(100svh - 78px), 720px);
    padding-block: 42px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 60px);
  }

  .hero-actions {
    display: grid;
    gap: 14px;
  }

  .button {
    width: 100%;
  }

  .services-grid,
  .about-grid,
  .footer-grid,
  .split-grid,
  .program-grid {
    grid-template-columns: 1fr;
  }

  .page-hero .shell {
    min-height: 430px;
    padding-block: 58px;
  }

  .page-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .statement-panel {
    position: static;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .services-grid {
    gap: 18px;
  }

  .service-card {
    min-height: 340px;
  }

  .about-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .newsletter {
    padding-left: 0;
    border-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
