@font-face {
  font-family: "Inter Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("assets/fonts/inter-variable-latin-wght-5.2.8.woff2")
    format("woff2-variations");
}
:root {
  --bg: #03050a;
  --bg-2: #070b14;
  --surface: #0c111d;
  --surface-2: #111827;
  --ink: #f5f7fb;
  --muted: #a7b0c2;
  --quiet: #6f7a91;
  --line: rgba(166, 181, 211, 0.2);
  --line-strong: rgba(141, 112, 255, 0.48);
  --pink: #ff5fa5;
  --orchid: #c06cff;
  --violet: #775cff;
  --blue: #397cf6;
  --cyan: #17d9d0;
  --green: #66d49b;
  --amber: #f2bd62;
  --gradient: linear-gradient(
    100deg,
    var(--pink),
    var(--orchid) 38%,
    var(--violet) 65%,
    var(--cyan)
  );
  --container: 1240px;
  --radius: 6px;
  --header: 76px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.4);
  --control-height: 50px;
  --control-radius: 6px;
  --icon-well: rgba(255, 255, 255, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family:
    "Inter Variable",
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}
body:before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background-image:
    radial-gradient(
      circle at 12% 18%,
      rgba(255, 255, 255, 0.3) 0 1px,
      transparent 1.4px
    ),
    radial-gradient(
      circle at 74% 14%,
      rgba(23, 217, 208, 0.22) 0 1px,
      transparent 1.5px
    ),
    radial-gradient(
      circle at 48% 69%,
      rgba(255, 95, 165, 0.2) 0 1px,
      transparent 1.4px
    );
  background-size:
    430px 370px,
    510px 420px,
    370px 470px;
  opacity: 0.34;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  color: inherit;
}
.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 4px;
}
.skip-link:focus {
  top: 12px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: 0;
}
h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: 5rem;
  font-weight: 660;
}
h2 {
  margin-bottom: 22px;
  font-size: 3.5rem;
  font-weight: 650;
}
h3 {
  font-size: 1.35rem;
}
em {
  font-style: normal;
  color: transparent;
  background: var(--gradient);
  background-clip: text;
}
.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #d7b1ff;
  font-size: 0.75rem;
  font-weight: 760;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow > span {
  width: 24px;
  height: 1px;
  background: var(--gradient);
}
.hero-lede,
.lead {
  max-width: 700px;
  color: #c4cada;
  font-size: 1.2rem;
  line-height: 1.7;
}
.section {
  padding: 112px 0;
  border-top: 1px solid rgba(166, 181, 211, 0.09);
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}
.section-heading > p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: var(--control-height);
  padding: 0 9px 0 20px;
  border: 1px solid transparent;
  border-radius: var(--control-radius);
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.button svg {
  width: 32px;
  height: 32px;
  padding: 7px;
  border-radius: 50%;
  background: var(--icon-well);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    background 0.2s,
    transform 0.2s;
}
.text-link svg,
.answer-card a svg,
.direct-contact svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.button:hover {
  transform: translateY(-1px);
}
.button:hover svg {
  transform: translateX(2px);
}
.button-primary {
  border-color: rgba(255, 255, 255, 0.16);
  background: var(--gradient);
  box-shadow:
    0 10px 30px rgba(119, 92, 255, 0.24),
    inset 0 1px rgba(255, 255, 255, 0.2);
}
.button-primary:hover {
  box-shadow:
    0 14px 38px rgba(255, 95, 165, 0.25),
    inset 0 1px rgba(255, 255, 255, 0.24);
}
.button-secondary {
  border-color: rgba(173, 155, 255, 0.34);
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.78), #080c15);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}
.button-secondary:hover {
  border-color: var(--cyan);
  background: linear-gradient(
    180deg,
    rgba(23, 217, 208, 0.1),
    rgba(8, 12, 21, 0.94)
  );
}
.button-secondary svg {
  color: #c7b7ff;
  background: rgba(119, 92, 255, 0.13);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 4px;
  color: #ddd3ff;
  border-bottom: 1px solid rgba(192, 108, 255, 0.38);
  font-weight: 700;
}
.text-link:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}
.icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  background: rgba(3, 5, 10, 0.78);
  border-bottom: 1px solid rgba(166, 181, 211, 0.12);
  backdrop-filter: blur(20px);
}
.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  width: min(calc(100% - 48px), var(--container));
  min-height: var(--header);
  margin: auto;
}
.brand-link img {
  width: 212px;
  height: auto;
}
.site-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.site-nav a {
  position: relative;
  padding: 9px 13px;
  color: #bbc2d1;
  font-size: 0.85rem;
  font-weight: 650;
}
.site-nav a:after {
  position: absolute;
  right: 13px;
  bottom: 3px;
  left: 13px;
  height: 1px;
  content: "";
  background: var(--gradient);
  opacity: 0;
  transform: scaleX(0.5);
  transition: 0.2s;
}
.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
}
.site-nav a:hover:after,
.site-nav a.is-active:after {
  opacity: 1;
  transform: scaleX(1);
}
.nav-toggle {
  display: none;
}
.nav-cta {
  min-height: 42px;
  padding-inline: 16px;
}
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--header);
  overflow: hidden;
}
.home-hero {
  display: grid;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(255, 95, 165, 0.045),
    transparent 42%,
    rgba(23, 217, 208, 0.04)
  );
}
.home-hero:before {
  position: absolute;
  inset: var(--header) 0 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(166, 181, 211, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(166, 181, 211, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: 44px;
  padding-block: 90px 74px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-copy h1 {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
  font-size: 4.85rem;
}
.hero-brand,
.hero-promise {
  display: block;
}
.hero-brand {
  width: max-content;
  max-width: 100%;
  color: transparent;
  background: linear-gradient(
    96deg,
    var(--pink),
    var(--orchid) 36%,
    var(--violet) 70%,
    var(--cyan)
  );
  background-clip: text;
}
.hero-promise em {
  display: block;
}
.helmet-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 650px;
  isolation: isolate;
}
.helmet-stage:before {
  position: absolute;
  width: 66%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(112, 97, 255, 0.18);
  transform: rotate(45deg);
}
.helmet-stage img {
  position: relative;
  z-index: 2;
  width: min(660px, 110%);
  filter: drop-shadow(0 24px 60px rgba(54, 40, 160, 0.24));
  animation: helmet-float 7s ease-in-out infinite;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(23, 217, 208, 0.16);
  border-radius: 50%;
}
.orbit-one {
  width: 82%;
  aspect-ratio: 1;
}
.orbit-two {
  width: 58%;
  aspect-ratio: 1;
  border-color: rgba(255, 95, 165, 0.18);
}
.hero-proof {
  display: flex;
  gap: 28px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.hero-proof div {
  display: grid;
  gap: 2px;
}
.hero-proof strong {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-proof span {
  color: var(--quiet);
  font-size: 0.73rem;
}
.scroll-cue {
  position: absolute;
  bottom: 18px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 28px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.scroll-cue span {
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: var(--gradient);
  animation: scroll 1.8s infinite;
}
.proof-rail {
  border-block: 1px solid var(--line);
  background: #060912;
}
.proof-rail-inner {
  display: grid;
  grid-template-columns: 0.75fr repeat(3, 1fr);
  align-items: center;
  min-height: 116px;
}
.proof-rail-inner > p {
  margin: 0;
  color: var(--quiet);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.proof-rail-inner > div {
  display: grid;
  gap: 3px;
  padding: 18px 28px;
  border-left: 1px solid var(--line);
}
.proof-rail strong {
  font-size: 0.9rem;
}
.proof-rail span {
  color: var(--quiet);
  font-size: 0.78rem;
}
.system-intro {
  background: linear-gradient(180deg, #03050a, #060912);
}
.split-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}
.split-intro p:not(.eyebrow) {
  color: var(--muted);
}
.visual-artwork-viewport {
  margin-top: 72px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-color: rgba(119, 92, 255, 0.5) transparent;
  scrollbar-width: thin;
}
.visual-artwork-viewport:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}
.visual-artwork-viewport::-webkit-scrollbar {
  height: 5px;
}
.visual-artwork-viewport::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orchid), var(--cyan));
}
.visual-artwork-canvas {
  position: relative;
}
.visual-artwork {
  width: 100%;
  height: auto;
}
.optim-section {
  background: #060912;
}
.optim-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-block: 1px solid var(--line);
}
.optim-track article {
  position: relative;
  min-height: 340px;
  padding: 28px 20px;
  border-right: 1px solid var(--line);
  transition:
    background 0.2s,
    transform 0.2s;
}
.optim-track article:first-child {
  border-left: 1px solid var(--line);
}
.optim-track article:hover {
  z-index: 1;
  background: #0b101d;
  transform: translateY(-5px);
}
.optim-track svg,
.capability-grid svg,
.pattern-grid svg,
.engagement-id svg,
.ops-node svg {
  width: 46px;
  height: 46px;
  padding: 10px;
  margin: 38px 0 26px;
  border: 1px solid rgba(192, 108, 255, 0.28);
  border-radius: 50%;
  background: rgba(119, 92, 255, 0.08);
  fill: none;
  stroke: var(--orchid);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.step-no {
  color: var(--quiet);
  font-size: 0.72rem;
  font-weight: 700;
}
.optim-track h3 {
  margin-bottom: 14px;
}
.optim-track p {
  color: var(--muted);
  font-size: 0.86rem;
}
.optim-track small {
  position: absolute;
  right: 20px;
  bottom: 24px;
  left: 20px;
  color: #78ddd4;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ask-section {
  background: linear-gradient(
    100deg,
    rgba(255, 95, 165, 0.05),
    #050811 45%,
    rgba(23, 217, 208, 0.045)
  );
}
.ask-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.ask-copy h2 {
  font-size: 3.1rem;
}
.ask-copy > p:not(.eyebrow) {
  color: var(--muted);
}
.prompt-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.prompt-list button,
.tag-row span {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--control-radius);
  background: rgba(255, 255, 255, 0.025);
  color: #c0c8d8;
  font-size: 0.72rem;
  cursor: pointer;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.prompt-list button:hover {
  border-color: var(--orchid);
  background: rgba(119, 92, 255, 0.1);
  color: #fff;
}
.ask-console {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.ask-console form {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.ask-console label {
  display: block;
  margin-bottom: 9px;
  color: #d4d9e4;
  font-size: 0.78rem;
  font-weight: 700;
}
.ask-input {
  display: grid;
  grid-template-columns: 1fr 50px;
  gap: 8px;
}
.ask-input input {
  min-width: 0;
  height: 52px;
  padding: 0 16px;
  color: #fff;
  border: 1px solid #29344a;
  border-radius: var(--control-radius);
  background: rgba(5, 9, 20, 0.82);
  outline: none;
}
.ask-input input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(23, 217, 208, 0.11);
}
.ask-submit {
  width: 50px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--gradient);
  box-shadow: 0 10px 28px rgba(119, 92, 255, 0.22);
}
.ask-submit svg {
  width: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
}
.answer-card {
  position: relative;
  margin-top: 18px;
  padding: 24px 0 0 28px;
  border: 0;
  background: transparent;
}
.answer-card:before {
  position: absolute;
  top: 24px;
  bottom: 0;
  left: 0;
  width: 2px;
  content: "";
  background: var(--gradient);
}
.answer-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #caa8ff;
  font-size: 0.69rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.answer-label img {
  width: 26px;
}
.answer-card > p {
  min-height: 82px;
  margin: 18px 0;
  color: #c5cbda;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
}
.tag-row span {
  min-height: 0;
  padding: 0 0 0 10px;
  border: 0;
  border-left: 1px solid rgba(192, 108, 255, 0.5);
  border-radius: 0;
  background: transparent;
  cursor: default;
}
.answer-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #82e4dd;
  font-size: 0.8rem;
  font-weight: 700;
}
.delivery-section {
  background: #03050a;
}
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-block: 1px solid var(--line);
}
.delivery-grid article {
  position: relative;
  min-height: 410px;
  padding: 38px 34px;
  border-right: 1px solid var(--line);
  background: transparent;
}
.delivery-grid article:first-child {
  border-left: 1px solid var(--line);
}
.delivery-grid article:before {
  position: absolute;
  top: -1px;
  right: 34px;
  left: 34px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--orchid), transparent 72%);
  opacity: 0.72;
}
.delivery-grid article.featured {
  background: linear-gradient(
    180deg,
    rgba(119, 92, 255, 0.09),
    transparent 58%
  );
}
.delivery-mark {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.delivery-mark span {
  color: #c9a2ff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.delivery-mark svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--orchid);
  border: 1px solid rgba(192, 108, 255, 0.28);
  border-radius: 50%;
  background: rgba(119, 92, 255, 0.08);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.delivery-grid h3 {
  margin: 46px 0 18px;
  font-size: 1.7rem;
}
.delivery-grid p {
  color: var(--muted);
}
.delivery-grid ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.delivery-grid li {
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: #c6ccda;
  font-size: 0.8rem;
}
.center-action {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.outcome-section {
  background: #03050a;
}
.outcome-artwork-section {
  padding: 0;
}
.outcome-artwork-viewport {
  margin-top: 0;
}
.visual-artwork-hotspot {
  position: absolute;
  top: 71.5%;
  left: 5.8%;
  width: 20%;
  height: 8.5%;
  border-radius: 4px;
}
.visual-artwork-hotspot:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  box-shadow: 0 0 24px rgba(23, 217, 208, 0.35);
}
.page-hero {
  min-height: 780px;
  padding-top: var(--header);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    105deg,
    rgba(255, 95, 165, 0.05),
    transparent 44%,
    rgba(23, 217, 208, 0.04)
  );
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding-block: 100px 70px;
}
.page-hero h1 {
  font-size: 4.8rem;
}
.stack-visual {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: center;
  min-height: 540px;
  padding: 50px;
}
.stack-visual:before {
  position: absolute;
  inset: 8%;
  content: "";
  border: 1px solid var(--line);
  transform: rotate(8deg);
}
.stack-visual > div {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(7, 11, 20, 0.92);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  transform: translateX(calc((3 - var(--n, 1)) * 0px));
}
.stack-visual > div:nth-child(1) {
  margin-left: 70px;
  border-color: rgba(23, 217, 208, 0.35);
}
.stack-visual > div:nth-child(2) {
  margin-left: 35px;
  border-color: rgba(119, 92, 255, 0.38);
}
.stack-visual > div:nth-child(3) {
  border-color: rgba(255, 95, 165, 0.38);
}
.stack-visual small {
  grid-row: 1/3;
  align-self: center;
  color: #c7a0ff;
}
.stack-visual strong {
  font-size: 1rem;
}
.stack-visual span {
  color: var(--quiet);
  font-size: 0.75rem;
}
.stack-visual i {
  position: absolute;
  right: 18%;
  bottom: 8%;
  left: 7%;
  height: 1px;
  background: var(--gradient);
}
.engagement-list {
  border-top: 1px solid var(--line);
}
.engagement-list article {
  display: grid;
  grid-template-columns: 120px 1fr 0.9fr;
  gap: 42px;
  padding: 44px 10px;
  border-bottom: 1px solid var(--line);
}
.engagement-id {
  display: grid;
  align-content: start;
  justify-items: start;
}
.engagement-id span {
  color: var(--quiet);
  font-size: 0.75rem;
}
.engagement-id svg {
  margin: 22px 0 0;
}
.engagement-list h3 {
  font-size: 2.1rem;
}
.engagement-list p {
  max-width: 560px;
  color: var(--muted);
}
.deliverables {
  display: grid;
  align-content: start;
  gap: 8px;
}
.deliverables strong {
  margin-bottom: 6px;
  color: #d4b4ff;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.deliverables span {
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  color: #bdc5d5;
  font-size: 0.82rem;
}
.operated-band {
  background: #070b14;
}
.operated-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 90px;
}
.operated-layout > div:first-child p:not(.eyebrow) {
  color: var(--muted);
}
.ops-diagram {
  position: relative;
  min-height: 560px;
}
.ops-diagram:before,
.ops-diagram:after {
  position: absolute;
  inset: 16%;
  content: "";
  border: 1px solid var(--line);
  transform: rotate(45deg);
}
.ops-diagram:after {
  inset: 28%;
  border-color: var(--line-strong);
}
.ops-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 180px;
  aspect-ratio: 1;
  background: #080d18;
  border: 1px solid var(--line-strong);
  transform: translate(-50%, -50%);
}
.ops-center img {
  width: 90px;
}
.ops-center strong {
  font-size: 0.82rem;
}
.ops-node {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  background: #0b101b;
  color: #c3cada;
  font-size: 0.76rem;
}
.ops-node svg {
  width: 22px;
  height: 22px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.ops-node.n1 {
  top: 10%;
  left: 8%;
}
.ops-node.n2 {
  top: 14%;
  right: 3%;
}
.ops-node.n3 {
  bottom: 12%;
  left: 4%;
}
.ops-node.n4 {
  right: 9%;
  bottom: 8%;
}
.capability-grid,
.pattern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.capability-grid article,
.pattern-grid article {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #070b13;
}
.capability-grid svg,
.pattern-grid svg {
  margin: 0 0 38px;
}
.capability-grid p,
.pattern-grid p {
  color: var(--muted);
  font-size: 0.86rem;
}
.measurement-section {
  background: linear-gradient(
    110deg,
    rgba(255, 95, 165, 0.045),
    #050811 47%,
    rgba(23, 217, 208, 0.04)
  );
}
.measurement-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.measurement-layout > div:first-child p:not(.eyebrow) {
  color: var(--muted);
}
.measurement-board {
  padding: 30px;
  border: 1px solid var(--line);
  background: #080d17;
}
.measure-head {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 25px 100px;
  color: var(--quiet);
  font-size: 0.64rem;
  text-transform: uppercase;
}
.measure-row {
  display: grid;
  grid-template-columns: 90px 1fr 170px;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.measure-row strong {
  font-size: 0.76rem;
}
.measure-row i {
  height: 7px;
  background: linear-gradient(
    90deg,
    var(--pink) 0 var(--v),
    rgba(255, 255, 255, 0.08) var(--v)
  );
}
.measure-row span {
  color: var(--quiet);
  font-size: 0.72rem;
}
.measurement-board > small {
  display: block;
  margin-top: 20px;
  color: var(--quiet);
}
.sector-radar {
  position: relative;
  min-height: 570px;
}
.radar-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 170px;
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #080c16;
  transform: translate(-50%, -50%);
}
.radar-core img {
  width: 90px;
}
.radar-core strong {
  font-size: 0.75rem;
}
.sector-radar > i {
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.sector-radar > i:nth-last-child(1) {
  width: 300px;
}
.sector-radar > i:nth-last-child(2) {
  width: 430px;
  border-style: dashed;
}
.sector-radar > i:nth-last-child(3) {
  width: 540px;
}
.sector-radar > span {
  position: absolute;
  z-index: 4;
  padding: 8px 11px;
  border: 1px solid var(--line);
  background: #080c16;
  color: #bcc4d4;
  font-size: 0.73rem;
}
.sector-radar .r1 {
  top: 14%;
  left: 8%;
}
.sector-radar .r2 {
  top: 18%;
  right: 4%;
}
.sector-radar .r3 {
  right: 9%;
  bottom: 16%;
}
.sector-radar .r4 {
  bottom: 11%;
  left: 0;
}
.sector-workbench {
  display: grid;
  grid-template-columns: 280px 1fr;
  border: 1px solid var(--line);
  background: #070b14;
}
.sector-tabs {
  display: grid;
  align-content: start;
  border-right: 1px solid var(--line);
}
.sector-tabs button {
  min-height: 66px;
  padding: 0 20px;
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: #9fa9bc;
  font-size: 0.8rem;
  font-weight: 650;
  cursor: pointer;
}
.sector-tabs button:hover,
.sector-tabs button.is-active {
  color: #fff;
  background: rgba(119, 92, 255, 0.12);
  box-shadow: inset 2px 0 var(--orchid);
}
.sector-detail {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 45px;
  align-items: center;
  min-height: 420px;
  padding: 42px;
}
.sector-detail h3 {
  font-size: 2.25rem;
}
.sector-detail p:not(.kicker) {
  color: var(--muted);
}
.workflow-mini {
  display: grid;
  grid-template-columns: 1fr 22px 1fr;
  align-items: center;
  gap: 7px;
}
.workflow-mini span {
  padding: 12px 8px;
  border: 1px solid var(--line);
  font-size: 0.72rem;
  text-align: center;
}
.workflow-mini i {
  height: 1px;
  background: var(--gradient);
}
.workflow-mini b {
  grid-column: 1/-1;
  margin-top: 10px;
  color: #7bded7;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}
.environment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.environment-grid article {
  position: relative;
  min-height: 420px;
  padding: 40px;
  border: 1px solid var(--line);
  background: #080c15;
}
.environment-grid article > span {
  position: absolute;
  right: 32px;
  color: #28324a;
  font-size: 5rem;
  font-weight: 800;
}
.environment-grid h3 {
  margin-top: 70px;
  font-size: 2rem;
}
.environment-grid article > p:not(.kicker) {
  max-width: 580px;
  color: var(--muted);
}
.environment-grid article > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 35px;
}
.environment-grid small {
  width: 100%;
  color: var(--quiet);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.environment-grid article > div strong {
  padding: 6px 9px;
  border: 1px solid var(--line);
  font-size: 0.68rem;
}
.control-section {
  background: #070b14;
}
.control-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
  align-items: center;
}
.control-layout > div:first-child p:not(.eyebrow) {
  color: var(--muted);
}
.control-ladder {
  display: grid;
  gap: 7px;
}
.control-ladder div {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  min-height: 62px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: #0a0f19;
}
.control-ladder div:nth-child(1) {
  margin-left: 90px;
  border-color: rgba(102, 212, 155, 0.4);
}
.control-ladder div:nth-child(2) {
  margin-left: 60px;
  border-color: rgba(23, 217, 208, 0.35);
}
.control-ladder div:nth-child(3) {
  margin-left: 30px;
  border-color: rgba(242, 189, 98, 0.38);
}
.control-ladder div:nth-child(4) {
  border-color: rgba(255, 95, 165, 0.4);
}
.control-ladder span {
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
}
.control-ladder strong {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
  padding-block: 100px 70px;
}
.contact-hero h1 {
  font-size: 4.8rem;
}
.conversation-visual {
  position: relative;
  min-height: 500px;
  padding-top: 60px;
}
.conversation-visual:before {
  position: absolute;
  inset: 5% 0 5% 10%;
  content: "";
  border: 1px solid var(--line);
  transform: rotate(-4deg);
}
.conversation-visual img {
  position: absolute;
  right: 6%;
  bottom: 4%;
  width: 150px;
  opacity: 0.8;
}
.message {
  position: relative;
  z-index: 2;
  max-width: 78%;
  margin-bottom: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #090e18;
  color: #c4cada;
  font-size: 0.84rem;
}
.message.m2 {
  margin-left: auto;
  border-color: var(--line-strong);
  background: linear-gradient(120deg, rgba(119, 92, 255, 0.17), #090e18);
}
.message.m3 {
  width: max-content;
  margin-left: 18%;
}
.contact-section {
  background: #060912;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: start;
}
.contact-context > p:not(.eyebrow) {
  color: var(--muted);
}
.context-list {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.context-list > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.context-list > div > span {
  color: #b58cff;
  font-size: 0.72rem;
}
.context-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}
.context-list strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 0.9rem;
}
.direct-contact {
  display: grid;
  gap: 4px;
  margin-top: 30px;
}
.direct-contact span {
  color: var(--quiet);
  font-size: 0.72rem;
}
.direct-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #83e7df;
  font-weight: 700;
}
.contact-form {
  padding: 36px;
  border: 1px solid var(--line);
  background: #090e18;
  box-shadow: var(--shadow);
}
.form-heading {
  margin-bottom: 30px;
}
.form-heading h2 {
  margin-bottom: 8px;
  font-size: 2.3rem;
}
.form-heading > p:last-child {
  color: var(--quiet);
  font-size: 0.76rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
  color: #cbd1dd;
  font-size: 0.76rem;
  font-weight: 650;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 13px;
  color: #fff;
  border: 1px solid #29344a;
  border-radius: 4px;
  background: #050914;
  outline: none;
}
.contact-form input {
  height: 48px;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(23, 217, 208, 0.1);
}
.checkbox-line {
  display: flex !important;
  grid-template-columns: 18px 1fr;
  align-items: start;
}
.checkbox-line input {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  accent-color: var(--violet);
}
.form-submit {
  width: 100%;
}
.form-status {
  min-height: 25px;
  margin: 14px 0 0;
  color: #83e7df;
  font-size: 0.78rem;
}
.form-status.is-success {
  color: #83e7df;
}
.form-status.is-error {
  color: #ff9fb3;
}
.contact-form [aria-invalid="true"] {
  border-color: #ff6f91;
  box-shadow: 0 0 0 3px rgba(255, 111, 145, 0.12);
}
.form-trap {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}
.contact-form > small {
  display: block;
  margin-top: 12px;
  color: var(--quiet);
  font-size: 0.66rem;
}
.next-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}
.next-track article {
  min-height: 240px;
  padding: 28px;
  border-right: 1px solid var(--line);
}
.next-track article:first-child {
  border-left: 1px solid var(--line);
}
.next-track span {
  color: #b78cff;
  font-size: 0.72rem;
}
.next-track h3 {
  margin-top: 40px;
}
.next-track p {
  color: var(--muted);
  font-size: 0.84rem;
}
.faq-section {
  background: #070b14;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 90px;
}
.faq-layout details {
  border-top: 1px solid var(--line);
}
.faq-layout details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-layout summary {
  position: relative;
  padding: 22px 38px 22px 0;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}
.faq-layout summary:after {
  position: absolute;
  right: 4px;
  content: "+";
  color: var(--cyan);
  font-size: 1.2rem;
}
.faq-layout details[open] summary:after {
  content: "−";
}
.faq-layout details p {
  max-width: 700px;
  padding-bottom: 22px;
  color: var(--muted);
  font-size: 0.88rem;
}
.cta-band {
  padding: 110px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  background: linear-gradient(
    100deg,
    rgba(255, 95, 165, 0.13),
    rgba(119, 92, 255, 0.12) 50%,
    rgba(23, 217, 208, 0.1)
  );
}
.cta-band .container {
  display: grid;
  justify-items: center;
}
.cta-band h2 {
  max-width: 900px;
}
.cta-band p:not(.eyebrow) {
  max-width: 650px;
  color: #c0c7d6;
}
.site-footer {
  padding: 68px 0 24px;
  border-top: 1px solid var(--line);
  background: #020409;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.5fr 0.7fr;
  gap: 70px;
}
.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 8px;
}
.footer-grid img {
  width: 270px;
}
.footer-grid p {
  color: var(--quiet);
  font-size: 0.82rem;
}
.footer-grid strong {
  margin-bottom: 8px;
  color: #c4cada;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-grid a {
  color: var(--muted);
  font-size: 0.8rem;
}
.footer-grid a:hover {
  color: var(--cyan);
}
.footer-base {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #59647a;
  font-size: 0.68rem;
}
@keyframes helmet-float {
  50% {
    transform: translateY(-12px);
  }
}
@keyframes scroll {
  0% {
    transform: translateY(-6px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(7px);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
@media (max-width: 1050px) {
  h1,
  .hero-copy h1 {
    font-size: 4.25rem;
  }
  h2 {
    font-size: 3rem;
  }
  .hero-grid,
  .page-hero-grid,
  .contact-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .helmet-stage {
    min-height: 540px;
  }
  .optim-track {
    grid-template-columns: repeat(3, 1fr);
  }
  .optim-track article {
    border-bottom: 1px solid var(--line);
  }
  .proof-rail-inner {
    grid-template-columns: 1fr 1fr;
  }
  .proof-rail-inner > p {
    padding: 18px;
  }
  .ask-layout,
  .operated-layout,
  .measurement-layout,
  .control-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .ops-diagram {
    max-width: 720px;
    width: 100%;
    margin: auto;
  }
  .capability-grid,
  .pattern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .engagement-list article {
    grid-template-columns: 80px 1fr 1fr;
  }
  .sector-detail {
    grid-template-columns: 1fr;
  }
  .workflow-mini {
    max-width: 560px;
  }
  .nav-cta {
    display: none;
  }
  .nav-shell {
    grid-template-columns: auto 1fr;
  }
  .site-nav {
    justify-content: end;
  }
}
@media (max-width: 760px) {
  .container,
  .nav-shell {
    width: min(calc(100% - 32px), var(--container));
  }
  .section {
    padding: 78px 0;
  }
  h1,
  .hero-copy h1,
  .page-hero h1,
  .contact-hero h1 {
    font-size: 3.15rem;
  }
  h2 {
    font-size: 2.45rem;
  }
  .section-heading,
  .split-intro,
  .hero-grid,
  .page-hero-grid,
  .contact-hero-grid,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .site-header {
    background: rgba(3, 5, 10, 0.93);
  }
  .nav-shell {
    grid-template-columns: 1fr auto;
    min-height: 68px;
  }
  .brand-link img {
    width: 180px;
  }
  .nav-toggle {
    display: block;
  }
  .nav-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 5px auto;
    background: #fff;
    transition: 0.2s;
  }
  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }
  .site-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--line);
    background: #050811;
  }
  .site-nav.is-open {
    display: grid;
  }
  .site-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }
  .home-hero {
    min-height: auto;
  }
  .hero-grid {
    padding-top: 110px;
  }
  .helmet-stage {
    order: -1;
    min-height: 390px;
    margin-top: 18px;
  }
  .helmet-stage img {
    width: 440px;
  }
  .helmet-stage:before {
    width: 60%;
  }
  .hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .hero-proof div:last-child {
    grid-column: 1/-1;
  }
  .scroll-cue {
    display: none;
  }
  .proof-rail-inner {
    grid-template-columns: 1fr;
  }
  .proof-rail-inner > div {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }
  .visual-artwork-canvas {
    width: 940px;
  }
  .visual-artwork-viewport {
    scroll-snap-type: x proximity;
  }
  .visual-artwork-canvas {
    scroll-snap-align: start;
  }
  .optim-track {
    grid-template-columns: 1fr 1fr;
  }
  .optim-track article {
    min-height: 300px;
  }
  .ask-console {
    padding: 0;
  }
  .delivery-grid,
  .environment-grid,
  .next-track {
    grid-template-columns: 1fr;
  }
  .delivery-grid article {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .delivery-grid article:last-child {
    border-bottom: 0;
  }
  .page-hero {
    min-height: auto;
  }
  .page-hero-grid,
  .contact-hero-grid {
    padding-top: 120px;
  }
  .stack-visual,
  .sector-radar,
  .conversation-visual {
    min-height: 410px;
    padding: 18px;
  }
  .stack-visual:before {
    inset: 2%;
  }
  .engagement-list article {
    grid-template-columns: 62px 1fr;
    gap: 20px;
  }
  .deliverables {
    grid-column: 2;
  }
  .capability-grid,
  .pattern-grid {
    grid-template-columns: 1fr;
  }
  .ops-diagram {
    min-height: 430px;
  }
  .ops-node.n1 {
    left: 0;
  }
  .ops-node.n2 {
    right: 0;
  }
  .ops-node.n3 {
    left: 0;
  }
  .ops-node.n4 {
    right: 0;
  }
  .measure-row {
    grid-template-columns: 70px 1fr;
  }
  .measure-row span {
    grid-column: 2;
  }
  .measure-head {
    margin-left: 84px;
  }
  .sector-radar > i:nth-last-child(3) {
    width: 390px;
  }
  .sector-radar > i:nth-last-child(2) {
    width: 310px;
  }
  .sector-radar > i:nth-last-child(1) {
    width: 230px;
  }
  .sector-radar .r1 {
    top: 10%;
    left: 0;
  }
  .sector-radar .r2 {
    top: 14%;
    right: 0;
  }
  .sector-radar .r3 {
    right: 2%;
    bottom: 13%;
  }
  .sector-radar .r4 {
    bottom: 8%;
    left: 0;
  }
  .sector-workbench {
    grid-template-columns: 1fr;
  }
  .sector-tabs {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .sector-detail {
    padding: 26px;
  }
  .workflow-mini {
    grid-template-columns: 1fr;
  }
  .workflow-mini i {
    width: 1px;
    height: 14px;
    margin: auto;
  }
  .environment-grid article > span {
    font-size: 3.8rem;
  }
  .control-ladder div:nth-child(n) {
    margin-left: 0;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-base {
    display: grid;
    gap: 6px;
  }
  .cta-band {
    padding: 80px 0;
  }
}
@media (max-width: 440px) {
  h1,
  .hero-copy h1,
  .page-hero h1,
  .contact-hero h1 {
    font-size: 2.65rem;
  }
  h2 {
    font-size: 2.1rem;
  }
  .hero-lede,
  .lead {
    font-size: 1.05rem;
  }
  .button-row {
    display: grid;
  }
  .button-row .button {
    width: 100%;
  }
  .helmet-stage {
    min-height: 330px;
  }
  .optim-track {
    grid-template-columns: 1fr;
  }
  .optim-track article {
    min-height: 270px;
  }
  .prompt-list button {
    flex: 1 1 44%;
  }
  .stack-visual > div:nth-child(n) {
    margin-left: 0;
  }
  .stack-visual {
    padding: 4px;
  }
  .stack-visual > div {
    grid-template-columns: 34px 1fr;
  }
  .sector-radar {
    margin-inline: -16px;
  }
  .sector-radar > span {
    font-size: 0.62rem;
  }
  .ops-center {
    width: 140px;
  }
  .ops-node {
    font-size: 0.66rem;
    padding: 7px;
  }
  .ops-node svg {
    display: none;
  }
  .measure-head {
    display: none;
  }
  .measurement-board {
    padding: 18px;
  }
  .measure-row {
    grid-template-columns: 64px 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
}
img {
  height: auto;
}
.outcome-section {
  overflow: hidden;
}
:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}
