:root {
  --bg: #030405;
  --surface: #0f1218;
  --surface-2: #131821;
  --surface-3: #080b10;
  --ink: #edf3ff;
  --muted: #8f99aa;
  --quiet: #5f6b7f;
  --blue: #2f7dff;
  --blue-light: #80b8ff;
  --line: rgba(137, 157, 194, .2);
  --line-bright: rgba(102, 157, 255, .42);
  --max: 1180px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }

html { min-width: 320px; scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

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

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

/* The entrance keeps the same blue-dot handoff as the first concept. */
.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
  animation: intro-clear 1.2s cubic-bezier(.22, 1, .36, 1) 2.65s forwards;
}

.intro-seed {
  position: relative;
  width: 7rem;
  aspect-ratio: 1;
  border-radius: 50%;
  transform-origin: center;
  animation: seed-handoff 1.55s cubic-bezier(.22, 1, .36, 1) 2.35s forwards;
}

.intro-seed::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(from 0deg, transparent 0 27%, var(--blue) 47%, #9bc5ff 61%, var(--blue) 82%, transparent 100%);
  content: '';
  filter: drop-shadow(0 0 .7rem rgba(43, 118, 255, .78));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
  animation: ring-spin .55s cubic-bezier(.16, .72, .3, 1) forwards, ring-solid .18s linear .46s forwards, ring-away 1.2s ease 2.65s forwards;
}

.intro-seed span {
  position: absolute;
  inset: 19%;
  border-radius: inherit;
  background: radial-gradient(circle at 35% 30%, #b2d2ff 0 4%, #4b91ff 17%, var(--blue) 52%, #104bb9 100%);
  box-shadow: 0 0 1.2rem rgba(43, 118, 255, .88), 0 0 4rem rgba(24, 92, 255, .56);
  opacity: 0;
  filter: blur(2px);
  animation: core-wake 1.85s cubic-bezier(.22, 1, .36, 1) .42s forwards, core-thrum .42s ease-in-out .6s 4 alternate, core-away 1.2s ease 2.65s forwards;
}

.skip-intro {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: .55rem .75rem;
  border: 1px solid rgba(139, 178, 255, .35);
  background: transparent;
  color: #b4caff;
  cursor: pointer;
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.intro.is-skipped { animation: skip-clear .45s ease forwards; }

.site {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 8%, rgba(18, 68, 153, .16), transparent 26rem),
    var(--bg);
  opacity: 0;
  isolation: isolate;
  animation: site-in 1.1s ease 2.75s forwards;
}

.site::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(81, 126, 209, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(81, 126, 209, .025) 1px, transparent 1px);
  background-size: 3.4rem 3.4rem;
  content: '';
  mask-image: linear-gradient(to bottom, #000 0 38%, transparent 72%);
}

.site.is-ready { opacity: 1; animation: none; }

.site-header,
.band-inner,
.section-inner,
.site-footer,
.page-wrap {
  width: min(calc(100% - 5rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  min-height: 5.3rem;
  border-bottom: 1px solid rgba(137, 157, 194, .16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--ink);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .38em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-dot,
.footer-dot {
  width: .62rem;
  height: .62rem;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 .75rem rgba(48, 125, 255, .86), 0 0 1.5rem rgba(48, 125, 255, .35);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.7vw, 2.6rem);
  margin-left: auto;
}

.primary-nav a,
.header-cta,
.footer-nav a,
.footer-caption,
.section-kicker,
.eyebrow,
.metric-label,
.work-type,
.process-number,
.form-label {
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a { color: #aab5c9; }
.primary-nav a:hover, .footer-nav a:hover, .text-link:hover { color: var(--blue-light); }

.header-cta {
  margin-left: clamp(1.25rem, 3vw, 3rem);
  padding: .77rem 1.08rem;
  border: 1px solid rgba(87, 151, 255, .55);
  border-radius: 999px;
  background: rgba(34, 103, 229, .92);
  color: #fff;
  font-weight: 700;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 43rem;
  padding: 4.4rem 1rem 5.5rem;
  text-align: center;
}

.hero-ring,
.mini-ring {
  position: relative;
  display: grid;
  place-items: center;
  border: 2px solid var(--blue-light);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, rgba(30, 108, 255, .78) 0 8%, rgba(17, 71, 174, .58) 24%, rgba(6, 20, 50, .76) 54%, rgba(2, 6, 13, .96) 76%),
    #071024;
  box-shadow:
    0 0 0 1px rgba(93, 161, 255, .22),
    0 0 1.8rem rgba(42, 124, 255, .75),
    0 0 6rem rgba(21, 87, 222, .38),
    inset 0 0 2.5rem rgba(54, 135, 255, .36);
}

.hero-ring {
  width: clamp(15rem, 27vw, 23rem);
  aspect-ratio: 1;
  opacity: 0;
  transform: scale(.72);
  animation: hero-ring-in 1.25s cubic-bezier(.22, 1, .36, 1) 3.22s forwards;
}

.hero-ring::before,
.hero-ring::after,
.mini-ring::before {
  position: absolute;
  border: 1px solid rgba(66, 133, 255, .18);
  border-radius: inherit;
  content: '';
}

.hero-ring::before { inset: -2.2rem; }
.hero-ring::after { inset: -5.5rem; opacity: .45; }

.ring-copy { position: relative; z-index: 1; }

.ring-name {
  margin: 0;
  color: #eff5ff;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 650;
  letter-spacing: .43em;
  line-height: 1;
  text-indent: .43em;
  text-transform: uppercase;
}

.ring-subtitle {
  margin: 1rem 0 0;
  color: #87a5d4;
  font-family: var(--mono);
  font-size: .53rem;
  letter-spacing: .28em;
  text-indent: .28em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 48rem;
  margin: 2.8rem 0 0;
  color: #f0f4fb;
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  font-weight: 350;
  letter-spacing: -.045em;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(.75rem);
  animation: content-in .7s cubic-bezier(.22, 1, .36, 1) 3.95s forwards;
}

.hero-rule,
.section-rule {
  width: 2rem;
  height: 1px;
  margin: 1rem auto 0;
  background: var(--blue);
  box-shadow: 0 0 .65rem rgba(46, 125, 255, .75);
}

.hero-lede {
  max-width: 34rem;
  margin: 1.1rem 0 0;
  color: #9ca8b9;
  font-size: .88rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(.75rem);
  animation: content-in .7s cubic-bezier(.22, 1, .36, 1) 4.2s forwards;
}

.hero-actions {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(.75rem);
  animation: content-in .7s cubic-bezier(.22, 1, .36, 1) 4.45s forwards;
}

.button {
  display: inline-grid;
  place-items: center;
  min-height: 2.6rem;
  padding: 0 1.1rem;
  border: 1px solid rgba(123, 151, 204, .38);
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.button:hover { border-color: var(--blue-light); color: #fff; }
.button.primary { border-color: rgba(104, 171, 255, .7); background: var(--blue); }

.service-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(100%, 960px);
  margin-top: 2.75rem;
  opacity: 0;
  transform: translateY(.75rem);
  animation: content-in .8s cubic-bezier(.22, 1, .36, 1) 4.75s forwards;
}

.service-rail li {
  display: grid;
  justify-items: center;
  gap: .65rem;
  min-height: 4.6rem;
  padding: 0 1.15rem;
  border-left: 1px solid var(--line);
  color: #8c9ab0;
  list-style: none;
  text-align: center;
}

.service-rail li:first-child { border-left: 0; }
.service-rail svg { width: 1.7rem; height: 1.7rem; fill: none; stroke: var(--blue-light); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25; filter: drop-shadow(0 0 .38rem rgba(44, 125, 255, .6)); }
.service-rail span { font-family: var(--mono); font-size: .54rem; letter-spacing: .13em; line-height: 1.45; text-transform: uppercase; }

.angled-band {
  position: relative;
  margin-top: -2rem;
  padding: 5.9rem 0 6rem;
  background: linear-gradient(112deg, rgba(20, 23, 29, .95), rgba(13, 16, 22, .98));
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.angled-band::before,
.angled-band::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(137, 157, 194, .25);
  content: '';
}

.angled-band::before { top: 5%; }
.angled-band::after { bottom: 5%; }

.band-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.section-kicker,
.eyebrow { margin: 0 0 .95rem; color: var(--blue-light); font-size: .56rem; }

.band-grid h2,
.section-heading h2,
.page-hero h1,
.process-heading h2 {
  margin: 0;
  color: #eef3fb;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 350;
  letter-spacing: -.035em;
  line-height: 1.2;
}

.band-grid h2 { max-width: 14rem; }
.band-copy { border-left: 1px solid var(--line); padding-left: 1.35rem; color: #9ba5b5; font-size: .78rem; line-height: 1.7; }
.band-copy p { margin: 0; }

.band-copy:last-child { color: #c6d0df; }

.section-block {
  padding: 6.4rem 0 7rem;
  background: rgba(3, 5, 8, .45);
}

.section-heading { display: grid; justify-items: center; margin-bottom: 2.5rem; text-align: center; }
.section-heading h2 { font-size: clamp(1.5rem, 2.5vw, 2.15rem); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid transparent;
}

.work-item {
  position: relative;
  min-height: 8.4rem;
  padding: 1.4rem 1.35rem 1.3rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.work-item:nth-child(3n + 1) { border-left: 1px solid var(--line); }
.work-item:hover { background: rgba(35, 94, 190, .1); }
.work-number { display: block; margin-bottom: .6rem; color: var(--blue-light); font-family: var(--mono); font-size: .55rem; letter-spacing: .1em; }
.work-item h3 { margin: 0; color: #e8effc; font-size: .96rem; font-weight: 420; }
.work-type { display: block; margin-top: .45rem; color: #727f94; font-size: .5rem; letter-spacing: .11em; }
.work-arrow { position: absolute; right: 1.2rem; bottom: 1.15rem; color: var(--blue-light); font-size: 1rem; }
.section-link { display: inline-block; margin-top: 2.1rem; color: var(--blue-light); font-family: var(--mono); font-size: .58rem; letter-spacing: .15em; text-decoration: none; text-transform: uppercase; }
.section-link:hover { color: #fff; }

.process-section {
  position: relative;
  padding: 5.6rem 0 7.2rem;
  background:
    radial-gradient(ellipse at 50% 46%, rgba(19, 70, 158, .18), transparent 45%),
    var(--surface-3);
}

.process-section::before,
.process-section::after {
  position: absolute;
  left: 50%;
  border: 1px solid rgba(52, 113, 221, .12);
  border-radius: 50%;
  content: '';
  transform: translateX(-50%);
}

.process-section::before { top: 10rem; width: min(88vw, 1060px); height: 23rem; }
.process-section::after { top: 13rem; width: min(70vw, 840px); height: 17rem; }

.process-heading { position: relative; z-index: 1; display: grid; justify-items: center; text-align: center; }
.process-heading h2 { font-size: clamp(1.5rem, 2.5vw, 2.15rem); }

.process-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 4.8rem;
}

.process-track::before {
  position: absolute;
  top: 2.45rem;
  right: 5%;
  left: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(104, 167, 255, .82) 10%, rgba(104, 167, 255, .82) 90%, transparent);
  box-shadow: 0 0 .6rem rgba(53, 127, 255, .42);
  content: '';
}

.process-step { display: grid; justify-items: center; text-align: center; }
.process-number { margin-bottom: .65rem; color: var(--blue-light); font-size: .52rem; }
.process-node {
  position: relative;
  display: grid;
  place-items: center;
  width: 5rem;
  aspect-ratio: 1;
  border: 1px solid #6ea9ff;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 80, 183, .3), rgba(3, 7, 15, .95) 65%);
  box-shadow: 0 0 1.2rem rgba(41, 124, 255, .58), inset 0 0 1.3rem rgba(51, 128, 255, .18);
}

.process-node svg { width: 1.45rem; height: 1.45rem; fill: none; stroke: #eff5ff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25; }
.process-step h3 { margin: 1.15rem 0 0; color: #e7eefb; font-family: var(--mono); font-size: .58rem; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; }
.process-step p { max-width: 9.7rem; margin: .65rem 0 0; color: #8b96a7; font-size: .7rem; line-height: 1.55; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  min-height: 6rem;
  border-top: 1px solid var(--line);
}

.footer-brand { display: inline-flex; align-items: center; gap: .55rem; color: #aab5c9; font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-decoration: none; text-transform: uppercase; }
.footer-nav { display: flex; gap: 1.25rem; }
.footer-nav a, .footer-caption { color: #68758a; font-size: .53rem; }
.footer-caption { justify-self: end; letter-spacing: .09em; }

/* Static document pages */
.inner-site { opacity: 1; animation: none; }
.page-wrap { position: relative; z-index: 1; }
.page-hero { display: grid; justify-items: center; min-height: 28rem; padding: 4.8rem 1rem 5.2rem; text-align: center; }
.mini-ring { width: 6rem; aspect-ratio: 1; margin-bottom: 2rem; }
.mini-ring::before { inset: -.7rem; }
.page-hero h1 { max-width: 40rem; font-size: clamp(1.9rem, 3.3vw, 3rem); }
.page-deck { max-width: 37rem; margin: 1.2rem 0 0; color: #9aa6b8; font-size: .9rem; line-height: 1.65; }
.document-section { padding: 5rem 0 6.5rem; border-top: 1px solid var(--line); }
.document-section.alt { background: rgba(16, 20, 27, .72); }
.document-grid { display: grid; grid-template-columns: minmax(12rem, .75fr) minmax(0, 1.25fr); gap: clamp(3rem, 8vw, 8rem); }
.document-grid h2 { margin: 0; color: #eff4fc; font-size: clamp(1.45rem, 2.6vw, 2.1rem); font-weight: 350; letter-spacing: -.03em; line-height: 1.2; }
.document-copy { max-width: 39rem; color: #9ba6b6; font-size: .88rem; line-height: 1.7; }
.document-copy p:first-child { margin-top: 0; }
.document-copy p { margin: 0 0 1.2rem; }
.detail-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; margin: 2rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.detail-list li { padding: .8rem 0; border-bottom: 1px solid var(--line); color: #d0d9e7; font-family: var(--mono); font-size: .56rem; letter-spacing: .08em; line-height: 1.45; text-transform: uppercase; }
.detail-list li::before { display: inline-block; width: .3rem; height: .3rem; margin: 0 .6rem .08rem 0; border-radius: 50%; background: var(--blue); box-shadow: 0 0 .45rem rgba(47, 125, 255, .7); content: ''; }
.case-list { display: grid; gap: 1.3rem; }
.case-row { display: grid; grid-template-columns: 4rem 1fr auto; gap: 1.4rem; align-items: start; padding: 1.4rem 0; border-top: 1px solid var(--line); text-decoration: none; }
.case-row:last-child { border-bottom: 1px solid var(--line); }
.case-index { color: var(--blue-light); font-family: var(--mono); font-size: .56rem; letter-spacing: .1em; }
.case-row h3 { margin: 0; color: #eaf1fd; font-size: 1rem; font-weight: 420; }
.case-row p { max-width: 33rem; margin: .45rem 0 0; color: #8c98a9; font-size: .78rem; line-height: 1.55; }
.case-arrow { color: var(--blue-light); }
.contact-grid { align-items: start; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.25rem; }
.form-field { display: grid; gap: .45rem; }
.form-field.full { grid-column: 1 / -1; }
.form-label { color: #8c9ab0; font-size: .54rem; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-height: 2.6rem; border: 0; border-bottom: 1px solid var(--line); outline: 0; background: transparent; color: var(--ink); font-size: .86rem; }
.contact-form textarea { min-height: 6rem; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue-light); box-shadow: 0 1px 0 var(--blue-light); }
.contact-form button { justify-self: start; margin-top: .5rem; padding: .85rem 1.15rem; border: 1px solid rgba(107, 170, 255, .7); border-radius: 999px; background: var(--blue); color: #fff; cursor: pointer; font-family: var(--mono); font-size: .56rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-note { color: #8490a3; font-size: .78rem; line-height: 1.65; }

@keyframes ring-spin { from { transform: rotate(0deg); } to { transform: rotate(810deg); } }
@keyframes ring-solid { to { background: var(--blue); } }
@keyframes core-wake { 0% { opacity: 0; transform: scale(.1); } 62% { opacity: .96; transform: scale(1.03); } 100% { opacity: .9; transform: scale(1); } }
@keyframes core-thrum { from { scale: .86; filter: blur(3px) brightness(.8); } to { scale: 1.12; filter: blur(2px) brightness(1.2); } }
@keyframes seed-handoff { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(4.8); opacity: .08; } }
@keyframes ring-away { to { opacity: 0; } }
@keyframes core-away { to { opacity: .18; filter: blur(8px); } }
@keyframes intro-clear { 0%, 64% { background: #000; } 100% { background: transparent; visibility: hidden; } }
@keyframes skip-clear { to { opacity: 0; visibility: hidden; } }
@keyframes site-in { to { opacity: 1; } }
@keyframes hero-ring-in { from { opacity: 0; transform: scale(.72); } to { opacity: 1; transform: scale(1); } }
@keyframes content-in { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .site-header, .band-inner, .section-inner, .site-footer, .page-wrap { width: min(calc(100% - 2.5rem), var(--max)); }
  .primary-nav { gap: 1rem; }
  .primary-nav a:nth-child(4) { display: none; }
  .band-grid { grid-template-columns: 1.1fr 1fr 1fr; }
  .band-copy:last-child { grid-column: 2 / -1; }
  .process-track { gap: .5rem; }
  .process-step p { font-size: .65rem; }
}

@media (max-width: 680px) {
  .site-header { min-height: 4.7rem; }
  .brand { font-size: .61rem; letter-spacing: .28em; }
  .primary-nav { display: none; }
  .header-cta { margin-left: auto; font-size: .51rem; }
  .hero { min-height: 39rem; padding-top: 3.5rem; }
  .hero-ring { width: min(70vw, 19rem); }
  .hero h1 { max-width: 18rem; font-size: 1.8rem; }
  .hero-lede { max-width: 20rem; font-size: .8rem; }
  .hero-actions { flex-wrap: wrap; justify-content: center; }
  .service-rail { grid-template-columns: repeat(2, 1fr); gap: 1rem 0; margin-top: 2.2rem; }
  .service-rail li:nth-child(3) { border-left: 0; }
  .service-rail li:nth-child(5) { grid-column: 1 / -1; border-left: 0; }
  .angled-band { margin-top: -1.2rem; padding: 5rem 0 5rem; clip-path: polygon(0 2.5%, 100% 0, 100% 97.5%, 0 100%); }
  .angled-band::before { top: 2.5%; }
  .angled-band::after { bottom: 2.5%; }
  .band-grid { grid-template-columns: 1fr; gap: 1.7rem; }
  .band-grid h2 { max-width: 20rem; }
  .band-copy, .band-copy:last-child { grid-column: auto; border-left: 1px solid var(--line); }
  .section-block { padding: 5rem 0; }
  .work-grid { grid-template-columns: 1fr; }
  .work-item, .work-item:nth-child(3n + 1) { border-left: 1px solid var(--line); }
  .process-section { padding: 5rem 0; }
  .process-section::before { top: 11rem; width: 22rem; height: 36rem; }
  .process-section::after { top: 13rem; width: 17rem; height: 32rem; }
  .process-track { grid-template-columns: 1fr; gap: 1.25rem; margin-top: 3.2rem; }
  .process-track::before { top: 2.5rem; right: auto; bottom: 2.5rem; left: 50%; width: 1px; height: auto; background: linear-gradient(180deg, transparent, rgba(104, 167, 255, .82) 10%, rgba(104, 167, 255, .82) 90%, transparent); }
  .process-step p { max-width: 14rem; }
  .site-footer { grid-template-columns: 1fr; gap: 1rem; padding: 1.7rem 0; }
  .footer-nav { flex-wrap: wrap; gap: .7rem 1rem; }
  .footer-caption { justify-self: start; }
  .page-hero { min-height: 24rem; padding: 3.7rem 1rem 4rem; }
  .page-hero h1 { font-size: 1.9rem; }
  .document-section { padding: 4rem 0 5rem; }
  .document-grid { grid-template-columns: 1fr; gap: 1.7rem; }
  .detail-list { grid-template-columns: 1fr; }
  .case-row { grid-template-columns: 2.7rem 1fr auto; gap: .8rem; }
  .contact-form { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-delay: 0ms !important; animation-iteration-count: 1 !important; }
  .intro { display: none; }
  .site, .hero-ring, .hero h1, .hero-lede, .hero-actions, .service-rail { opacity: 1; transform: none; }
}
