:root {
  --ink: #102f4a;
  --ink-2: #193f5e;
  --paper: #f3f7f6;
  --white: #ffffff;
  --steel: #b8ccd0;
  --steel-dark: #5c737b;
  --line: #cbd9d9;
  --orange: #00a79d;
  --orange-dark: #007b74;
  --green: #58c59b;
  --font-display: "Trebuchet MS", Avenir, "Segoe UI", Arial, sans-serif;
  --font-body: Aptos, "Segoe UI", Arial, sans-serif;
  --font-mono: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  --shell: min(1420px, calc(100% - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 100;
  height: 72px;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid #343c40;
}
.header-inner {
  width: var(--shell);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: block; flex: 0 0 auto; }
.brand img { width: 238px; height: auto; }
.site-nav { display: flex; align-items: stretch; height: 100%; }
.site-nav a {
  display: grid;
  place-items: center;
  padding: 0 22px;
  color: #c8ced0;
  text-decoration: none;
  font-size: .9rem;
  letter-spacing: .03em;
  border-left: 1px solid #343c40;
  transition: background .2s ease, color .2s ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--white); background: #193f5e; }
.site-nav .nav-cta { color: var(--ink); background: var(--orange); min-width: 255px; justify-items: start; grid-auto-flow: column; justify-content: space-between; }
.site-nav .nav-cta:hover, .site-nav .nav-cta:focus-visible { color: var(--ink); background: #35c1b6; }
.menu-toggle { display: none; }

.hero { background: var(--paper); color: var(--ink); }
.hero-grid {
  width: var(--shell);
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, .82fr);
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 104px 92px 72px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.kicker, .section-index {
  margin: 0 0 30px;
  font: 600 .9rem/1.35 var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.kicker { display: flex; align-items: center; gap: 12px; color: var(--steel-dark); }
.kicker span { display: block; width: 34px; height: 3px; background: var(--orange); }
h1, h2, h3 { margin-top: 0; font-family: var(--font-display); }
h1 {
  max-width: 820px;
  margin-bottom: 30px;
  font-size: clamp(3.5rem, 5.1vw, 6.9rem);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero-lead { max-width: 650px; margin: 0; color: #405c66; font-size: 1.17rem; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 44px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 13px 18px;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 650;
}
.button-primary { min-width: 250px; background: var(--orange); color: var(--ink); }
.button-primary:hover, .button-primary:focus-visible { background: #35c1b6; }
.text-link { color: var(--ink); text-underline-offset: 6px; font-size: .95rem; }
.text-link:hover, .text-link:focus-visible { color: var(--orange); }
.hero-scope {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: auto 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.hero-scope div { padding-top: 18px; }
.hero-scope dt { color: var(--orange); font: .86rem var(--font-mono); }
.hero-scope dd { margin: 4px 0 0; color: var(--steel-dark); font-size: .88rem; }
.hero-visual { position: relative; margin: 72px 0 72px; min-width: 0; overflow: hidden; border: 1px solid #91aeb5; clip-path: polygon(40px 0,100% 0,100% 100%,0 100%,0 40px); }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(16,47,74,.7), transparent 48%); pointer-events: none; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.08); }
.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(21,26,29,.88);
  font: .86rem var(--font-mono);
  letter-spacing: .04em;
}
.live-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 0 5px rgba(0,167,157,.22); }
.signal-line { height: 8px; background: #d8e5e4; }
.signal-line span { display: block; width: 38%; height: 100%; background: var(--orange); }

.section-shell { width: var(--shell); margin-inline: auto; }
.flow-section { padding-block: 110px 120px; }
.section-heading { display: grid; grid-template-columns: 1fr 1.4fr 1fr; align-items: start; gap: 56px; margin-bottom: 70px; }
.section-index { color: var(--orange-dark); }
.section-heading h2, .governance h2, .deployment h2, .contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 4.1vw, 5.3rem);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 650;
  text-wrap: balance;
}
.section-heading > p:last-child { margin: 0; max-width: 430px; color: #4f5a5f; }
.process-line { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 0 0 80px; padding: 0; list-style: none; }
.process-line::before { content: ""; position: absolute; top: 17px; left: 17px; right: 17px; height: 2px; background: var(--steel); }
.process-line li { position: relative; padding-right: 34px; }
.process-node {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 30px;
  color: var(--white);
  background: var(--ink);
  border: 4px solid var(--paper);
  font: .82rem var(--font-mono);
}
.process-line li:nth-child(2) .process-node, .process-line li:nth-child(3) .process-node { background: var(--orange); color: var(--ink); }
.process-line h3 { margin-bottom: 10px; font-size: 1.4rem; }
.process-line p { margin: 0; color: #566166; font-size: .93rem; }

.product-stage { color: #e8f1f2; background: #102f4a; border: 1px solid #2c5871; box-shadow: 0 30px 70px rgba(16,47,74,.18); }
.product-topbar { min-height: 62px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 20px; border-bottom: 1px solid #36536a; font: .86rem var(--font-mono); letter-spacing: .03em; }
.product-brand { display: flex; align-items: center; gap: 12px; }
.product-brand span { display: grid; place-items: center; width: 30px; height: 30px; color: var(--ink); background: var(--orange); font-weight: 700; }
.demo-label { color: #8f9a9e; }
.system-state { justify-self: end; display: flex; align-items: center; gap: 9px; }
.system-state i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.product-body { display: grid; grid-template-columns: 220px 1fr; min-height: 520px; }
.product-sidebar { padding: 24px 0; border-right: 1px solid #36536a; }
.product-sidebar strong { display: block; padding: 0 20px 12px; color: #64d0c7; font: .82rem var(--font-mono); text-transform: uppercase; letter-spacing: .04em; }
.product-sidebar span { display: block; padding: 9px 20px; color: #b7c9cd; font-size: .86rem; border-left: 3px solid transparent; }
.product-main { min-width: 0; padding: 32px; }
.product-title-row { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding-bottom: 30px; border-bottom: 1px solid #30393d; }
.product-title-row small { display: block; margin-bottom: 7px; color: #55d3c9; font: .86rem var(--font-mono); letter-spacing: .04em; }
.product-title-row strong { display: block; font: 500 1.6rem var(--font-display); }
.scenario-label { color: #c0d2d6; font: .86rem var(--font-mono); }
.operational-map { padding-block: 15px; }
.map-line { display: grid; grid-template-columns: 95px 112px 1fr 180px; gap: 18px; align-items: center; min-height: 78px; border-bottom: 1px solid #36536a; font-size: .88rem; }
.line-name { font-weight: 650; }
.state { font: .82rem var(--font-mono); text-transform: uppercase; }
.state-stable { color: var(--green); }
.state-watch { color: #ffb36c; }
.state-stop { color: #ff765e; }
.rail { position: relative; height: 5px; background: #31393d; }
.rail i { position: absolute; inset: 0 auto 0 0; width: var(--progress); background: #778388; }
.rail b { position: absolute; top: 50%; left: var(--point); width: 11px; height: 11px; background: var(--orange); transform: translate(-50%,-50%); }
.line-note { color: #aeb7ba; }
.action-table { margin-top: 12px; background: #173f5e; }
.action-row { display: grid; grid-template-columns: 1.2fr 1.1fr .8fr .6fr; gap: 16px; padding: 15px 16px; border-bottom: 1px solid #36536a; color: #d5e2e5; font-size: .88rem; }
.action-head { color: #b7c9cd; font: .82rem var(--font-mono); letter-spacing: .03em; }
.product-disclaimer { margin: 16px 0 0; color: #405c66; font-size: .88rem; }

.capabilities { padding-block: 110px; color: var(--ink); background: #e5eef0; }
.section-heading-light { grid-template-columns: 1fr 2.4fr; }
.section-heading-light .section-index { color: var(--orange-dark); }
.section-heading-light h2 { max-width: 1000px; }
.capability-list { border-top: 1px solid #abc1c6; }
.capability-list article { display: grid; grid-template-columns: 100px minmax(240px,.8fr) 1.2fr 120px; gap: 38px; align-items: start; padding: 42px 0; border-bottom: 1px solid #abc1c6; }
.cap-number { color: var(--orange); font: 500 2rem var(--font-mono); }
.capability-list h3 { margin-bottom: 0; font-size: 1.65rem; }
.capability-list p { max-width: 620px; margin: 0; color: #405c66; }
.cap-tag { justify-self: end; padding-top: 8px; color: #526e77; font: .82rem var(--font-mono); letter-spacing: .05em; }

.governance { padding-block: 120px; }
.governance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 120px; }
.governance .section-index { margin-bottom: 32px; }
.governance-copy { padding-top: 75px; }
.governance-copy p { margin: 0 0 26px; color: #3f494e; font-size: 1.08rem; }
.context-link, .context-link:visited, .context-link:hover, .context-link:active { color: inherit; font-weight: inherit; text-decoration: none; background: none; }
.watch-note { margin-top: 34px !important; padding-top: 24px; border-top: 1px solid var(--line); font-size: .94rem !important; }
.governance-copy ul { margin: 42px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.governance-copy li { padding: 15px 0 15px 28px; border-bottom: 1px solid var(--line); background: linear-gradient(var(--orange),var(--orange)) 0 50%/10px 2px no-repeat; font-size: .9rem; }

.deployment { padding-block: 110px; background: #dbe9e8; }
.deployment-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 120px; }
.deployment-intro { position: sticky; top: 42px; align-self: start; }
.deployment-intro > p:last-child { max-width: 500px; margin-top: 28px; color: #536064; }
.deployment-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid #b2b9b9; }
.deployment-steps li { position: relative; display: grid; grid-template-columns: 70px 1fr; gap: 20px; min-height: 200px; padding: 36px 0; border-bottom: 1px solid #b2b9b9; }
.deployment-steps li::before { content: ""; position: absolute; left: 23px; top: 76px; bottom: -1px; width: 2px; background: var(--orange); }
.deployment-steps li:last-child::before { display: none; }
.deployment-steps > li > span { display: grid; place-items: center; align-self: start; width: 48px; height: 48px; color: var(--white); background: var(--ink); font: .84rem var(--font-mono); }
.deployment-steps h3 { margin-bottom: 12px; font-size: 1.7rem; }
.deployment-steps p { max-width: 520px; margin: 0; color: #536064; }

.questions { padding-block: 110px; }
.compact-heading { grid-template-columns: 1fr 2.4fr; margin-bottom: 60px; }
.questions-context { max-width: 760px; margin: -22px 0 46px calc(29.4% + 28px); color: #536064; }
.faq-list { margin-left: calc(29.4% + 28px); border-top: 1px solid #aeb5b6; }
details { border-bottom: 1px solid #aeb5b6; }
summary { display: flex; justify-content: space-between; gap: 24px; padding: 24px 0; cursor: pointer; list-style: none; font: 600 1.1rem var(--font-display); }
summary::-webkit-details-marker { display: none; }
summary span { color: var(--orange-dark); font: 400 1.5rem var(--font-mono); transition: transform .2s ease; }
details[open] summary span { transform: rotate(45deg); }
details p { max-width: 780px; margin: 0; padding: 0 50px 28px 0; color: #536064; }

.contact { padding-block: 110px; color: var(--paper); background: var(--ink); border-top: 5px solid var(--orange); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 120px; }
.contact .section-index { color: var(--orange); }
.contact-copy > p:not(.section-index) { max-width: 540px; color: #aeb7ba; }
.contact-marker { display: flex; align-items: center; margin-top: 90px; }
.contact-marker span { display: grid; place-items: center; width: 70px; height: 70px; color: var(--ink); background: var(--orange); font: 700 1.4rem var(--font-display); }
.contact-marker i { flex: 1; height: 2px; background: linear-gradient(90deg,var(--orange),#2a536d); }
.demo-form { padding-top: 20px; }
.form-row { position: relative; margin-bottom: 28px; }
.form-row label { display: block; margin-bottom: 8px; color: #b8c7ca; font: .86rem var(--font-mono); letter-spacing: .015em; }
.form-row input, .form-row textarea { width: 100%; padding: 9px 0 12px; color: var(--white); background: transparent; border: 0; border-bottom: 1px solid #596367; border-radius: 0; outline: 0; resize: vertical; }
.form-row input:focus, .form-row textarea:focus { border-color: var(--orange); box-shadow: 0 2px 0 var(--orange); }
.form-row input:user-invalid, .form-row textarea:user-invalid { border-color: #ff765e; }
.consent-row { display: flex; align-items: flex-start; gap: 12px; margin: 4px 0 28px; color: #aeb7ba; font-size: .82rem; }
.consent-row input { width: 19px; height: 19px; margin: 2px 0 0; accent-color: var(--orange); }
.button-submit { width: 100%; min-height: 62px; color: var(--ink); background: var(--orange); }
.button-submit:hover, .button-submit:focus-visible { background: #35c1b6; }
.form-note { margin: 14px 0 0; color: #aebdc1; font-size: .86rem; }
.form-status { display: none; margin-top: 20px; padding: 16px; color: #d8eee4; border: 1px solid #3f735a; background: #1c3328; font-size: .86rem; }
.form-status.visible { display: block; }

.site-footer { color: #9aa4a8; background: #0e1214; border-top: 1px solid #30383c; }
.footer-inner { width: var(--shell); min-height: 120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr auto; gap: 40px; align-items: center; }
.footer-inner img { width: 210px; }
.footer-inner p { margin: 0; font-size: .88rem; }
.footer-inner p:last-child { font-family: var(--font-mono); }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 40px, 1000px); }
  .site-nav a:not(.nav-cta) { display: none; }
  .menu-toggle { display: flex; align-items: center; gap: 12px; min-height: 44px; padding: 0 6px; color: var(--paper); background: transparent; border: 0; font: .8rem var(--font-mono); text-transform: uppercase; letter-spacing: .06em; }
  .menu-toggle i, .menu-toggle i::before { display: block; width: 22px; height: 2px; background: var(--orange); transition: transform .2s ease; content: ""; }
  .menu-toggle i::before { transform: translateY(-7px); }
  .menu-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i::before { transform: rotate(90deg); }
  .site-nav { position: absolute; top: 72px; left: 0; right: 0; height: auto; display: none; padding: 12px max(20px, calc((100% - 1000px) / 2)) 18px; background: var(--ink); border-top: 1px solid #343c40; }
  .site-nav.open { display: block; }
  .site-nav a, .site-nav a:not(.nav-cta) { display: flex; justify-content: space-between; min-height: 50px; padding: 0 12px; border: 0; border-bottom: 1px solid #343c40; }
  .site-nav .nav-cta { min-width: 0; margin-top: 10px; border: 0; }
  .hero-grid { grid-template-columns: 1fr 1fr; min-height: 650px; }
  .hero-copy { padding-right: 38px; }
  h1 { font-size: clamp(3.4rem, 6vw, 5.4rem); }
  .section-heading { grid-template-columns: .7fr 1.5fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .product-body { grid-template-columns: 170px 1fr; }
  .map-line { grid-template-columns: 80px 90px 1fr; }
  .line-note { display: none; }
  .governance-grid, .deployment-grid, .contact-grid { gap: 70px; }
}

@media (max-width: 800px) {
  :root { --shell: calc(100% - 32px); }
  html { scroll-padding-top: 68px; }
  body { font-size: 17px; }
  .site-header { height: 64px; }
  .brand img { width: 196px; }
  .menu-toggle { display: flex; align-items: center; gap: 12px; min-height: 44px; padding: 0 6px; color: var(--paper); background: transparent; border: 0; font: .8rem var(--font-mono); text-transform: uppercase; letter-spacing: .06em; }
  .menu-toggle i, .menu-toggle i::before { display: block; width: 22px; height: 2px; background: var(--orange); transition: transform .2s ease; content: ""; }
  .menu-toggle i::before { transform: translateY(-7px); }
  .menu-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i::before { transform: rotate(90deg); }
  .site-nav { position: absolute; top: 64px; left: 0; right: 0; height: auto; display: none; padding: 12px 16px 18px; background: var(--ink); border-top: 1px solid #343c40; }
  .site-nav.open { display: block; }
  .site-nav a, .site-nav a:not(.nav-cta) { display: flex; justify-content: space-between; min-height: 50px; padding: 0 12px; border: 0; border-bottom: 1px solid #343c40; }
  .site-nav .nav-cta { min-width: 0; margin-top: 10px; border: 0; }
  .hero-grid { display: flex; flex-direction: column; min-height: 0; }
  .hero-copy { padding: 64px 0 52px; }
  h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .hero-lead { font-size: 1.03rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .button-primary { width: 100%; }
  .hero-scope { margin-top: 58px; }
  .hero-visual { height: 460px; margin: 0 0 32px; }
  .hero-visual::after { background: linear-gradient(180deg,var(--ink),transparent 22%),linear-gradient(0deg,rgba(16,47,74,.62),transparent 45%); }
  .hero-visual figcaption { left: 16px; right: 16px; bottom: 16px; }
  .flow-section, .governance, .questions { padding-block: 80px; }
  .section-heading, .section-heading-light, .compact-heading { display: block; margin-bottom: 48px; }
  .section-heading h2, .governance h2, .deployment h2, .contact h2 { font-size: clamp(2.7rem, 12vw, 4.2rem); }
  .section-heading > p:last-child { margin-top: 24px; }
  .process-line { grid-template-columns: 1fr; margin-bottom: 60px; }
  .process-line::before { top: 18px; bottom: 18px; left: 17px; right: auto; width: 2px; height: auto; }
  .process-line li { display: grid; grid-template-columns: 54px 1fr; padding: 0 0 34px; }
  .process-node { margin: 0; }
  .product-stage { margin-inline: 0; overflow: hidden; }
  .product-topbar { grid-template-columns: 1fr; gap: 9px; padding-block: 12px; }
  .demo-label { display: block; color: #b7d7d6; }
  .system-state { display: none; }
  .product-body { grid-template-columns: 1fr; min-height: 0; }
  .product-sidebar { display: flex; overflow-x: auto; padding: 0; border-right: 0; border-bottom: 1px solid #30393d; }
  .product-sidebar span { white-space: nowrap; border-left: 0; border-bottom: 3px solid transparent; }
  .product-sidebar .active { border-bottom-color: var(--orange); }
  .product-main { padding: 24px 16px; }
  .product-title-row { align-items: start; flex-direction: column; }
  .map-line { grid-template-columns: 72px 92px 1fr; gap: 10px; }
  .action-table { overflow: visible; }
  .action-head { display: none; }
  .action-row { min-width: 0; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; }
  .action-row:not(.action-head) span { padding: 12px; border-bottom: 1px solid #36536a; }
  .action-row:not(.action-head) span::before { content: attr(data-label); display: block; margin-bottom: 5px; color: #9db5ba; font: .82rem var(--font-mono); text-transform: uppercase; letter-spacing: .03em; }
  .capabilities { padding-block: 80px; }
  .capability-list article { grid-template-columns: 60px 1fr; gap: 14px 20px; padding: 32px 0; }
  .capability-list p { grid-column: 2; }
  .cap-tag { grid-column: 2; justify-self: start; }
  .governance-grid, .deployment-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .governance-copy { padding-top: 0; }
  .deployment { padding-block: 80px; }
  .deployment-intro { position: static; }
  .faq-list { margin-left: 0; }
  .questions-context { margin: -18px 0 40px; }
  .contact { padding-block: 80px; }
  .contact-marker { margin-top: 50px; }
  .footer-inner { grid-template-columns: 1fr; gap: 16px; padding-block: 30px; }
}

@media (max-width: 480px) {
  .brand img { width: 172px; }
  .menu-toggle span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .hero-copy { padding-top: 48px; }
  h1 { font-size: 3.45rem; }
  .hero-scope { gap: 12px; }
  .hero-scope dd { font-size: .82rem; }
  .hero-visual { height: 330px; }
  .product-topbar { padding-inline: 12px; }
  .system-state { font-size: 0; }
  .map-line { grid-template-columns: 1fr auto; padding: 12px 0; }
  .rail { grid-column: 1 / -1; }
  .capability-list article { grid-template-columns: 44px 1fr; }
  .deployment-steps li { grid-template-columns: 58px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
