:root {
  --bg: #050608;
  --bg-2: #0b0f13;
  --ink: #f5f7f8;
  --muted: #aab2b8;
  --soft: #d9dee2;
  --line: rgba(255,255,255,0.13);
  --line-strong: rgba(255,255,255,0.24);
  --panel: rgba(14,18,22,0.74);
  --blue: #2f5f86;
  --cyan: #8fd4ff;
  --amber: #e7b15f;
  --green: #92b08f;
  --max: 1180px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(ellipse 44rem 26rem at 86% 0%, rgba(47,95,134,0.42), transparent 62%),
    radial-gradient(ellipse 36rem 20rem at 12% 18%, rgba(231,177,95,0.18), transparent 62%),
    linear-gradient(180deg, #07080a 0%, #0b0f13 46%, #050608 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

main,
section {
  background-color: transparent;
}

section[id] {
  scroll-margin-top: 118px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,6,8,0.82), transparent 28%, transparent 72%, rgba(5,6,8,0.78)),
    radial-gradient(circle at 50% 40%, transparent 0 42%, rgba(0,0,0,0.55) 100%);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.58'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 16px max(16px, calc((100% - var(--max)) / 2));
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(5,6,8,0.86), rgba(5,6,8,0.52));
  backdrop-filter: blur(18px);
  mask-image: linear-gradient(180deg, #000 72%, transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(150px, 15vw, 204px);
  height: auto;
  max-height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.42));
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.055);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) { transform: translateY(-6px); }
.nav-toggle span:nth-child(3) { transform: translateY(6px); }

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

.nav a,
.site-footer a {
  transition: color 0.18s ease, opacity 0.18s ease;
}
.nav a:hover,
.site-footer a:hover,
.nav a.is-active { color: var(--ink); }
.nav a { position: relative; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--amber));
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero {
  min-height: min(760px, calc(100vh - 82px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  align-items: center;
  gap: clamp(32px, 7vw, 88px);
  padding: clamp(30px, 4vw, 58px) 0 clamp(42px, 6vw, 78px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  max-width: 820px;
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: normal;
}
h1 span { display: block; }
h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: normal;
}
h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}
h4 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.22;
}
p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.04rem;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  color: var(--soft);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}
.hero-copy { min-width: 0; }

.hero-facts {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 24px 0 0;
  padding: 7px 8px;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(14px);
}

.hero-facts li {
  position: relative;
  min-width: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  min-height: 26px;
  padding: 3px 8px;
}

.hero-facts li + li::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 1px;
  background: rgba(255,255,255,0.12);
}

.hero-facts strong {
  color: var(--ink);
  font-size: clamp(0.94rem, 1.08vw, 1.02rem);
  line-height: 1;
  white-space: nowrap;
}

.hero-facts li > span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-facts [data-count-up] {
  display: inline-block;
  min-width: 2ch;
  text-align: right;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  font-weight: 750;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(143,212,255,0.56);
  box-shadow: 0 18px 44px rgba(0,0,0,0.24);
}
.button.primary:hover,
.button.primary:focus-visible { box-shadow: 0 20px 54px rgba(143,212,255,0.22); }
.button.ghost:hover,
.button.ghost:focus-visible { background: rgba(143,212,255,0.09); }
.button.primary {
  color: #061017;
  background: linear-gradient(135deg, #f7f8f8, #b8e4ff 54%, #e7b15f);
  box-shadow: 0 16px 42px rgba(143,212,255,0.16);
}
.button.ghost {
  color: var(--soft);
  background: rgba(255,255,255,0.045);
}

.hero-stage {
  position: relative;
  min-height: 560px;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 6% 0 8% 8%;
  border: 1px solid rgba(143,212,255,0.22);
  background: linear-gradient(135deg, rgba(47,95,134,0.24), rgba(231,177,95,0.08));
  transform: rotate(-3deg);
}

.feature-card,
.work-card,
.service-item,
.contact-panel,
.timeline,
.legal-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.035));
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.feature-card {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
  width: min(78%, 430px);
  isolation: isolate;
}
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,0.72));
  z-index: 1;
}
.feature-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
}
.feature-card.is-large.is-mrsg {
  left: 50%;
  right: auto;
  translate: -50% 0;
}
.feature-card.is-mrsg img {
  object-position: center center;
}

.feature-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
}
.feature-card span,
.service-item span,
.timeline span {
  display: block;
  color: var(--amber);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}
.feature-card strong {
  display: block;
  margin-top: 5px;
  font-size: 1.15rem;
}
.feature-card small {
  display: block;
  margin-top: 4px;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.feature-card.is-large { top: 0; right: 0; width: min(88%, 520px); }
.feature-card:not(.is-large):nth-child(2) { left: 0; bottom: 94px; width: min(56%, 310px); }
.feature-card:not(.is-large):nth-child(3) { right: 32px; bottom: 0; width: min(54%, 300px); }

.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.035);
}
.marquee div {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.marquee span {
  padding: 18px 30px;
  color: var(--soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
  white-space: nowrap;
}

.split-section,
.process-layout {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(28px, 6vw, 84px);
  padding: clamp(82px, 12vw, 150px) 0;
}

.profile-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.work-section {
  padding: clamp(78px, 11vw, 136px) 0;
  background: linear-gradient(180deg, transparent, rgba(47,95,134,0.13), transparent);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.category-showcase {
  display: grid;
  gap: clamp(28px, 5vw, 52px);
}

.category-carousel {
  min-width: 0;
}

.category-topline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

.category-topline > div:first-child {
  min-width: 0;
}

.category-topline .eyebrow {
  margin-bottom: 8px;
}

.category-topline h3 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
}

.carousel-controls {
  display: none;
  gap: 8px;
  justify-self: end;
}

.category-carousel.is-scrollable .carousel-controls {
  display: inline-flex;
}

.carousel-controls button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255,255,255,0.06);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.carousel-controls button:hover {
  transform: translateY(-2px);
  border-color: rgba(143,212,255,0.42);
  background: rgba(143,212,255,0.12);
}

.carousel-controls button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 32%);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 8px 2px 18px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(143,212,255,0.38) rgba(255,255,255,0.08);
  scrollbar-width: thin;
}

.carousel-track::-webkit-scrollbar {
  height: 8px;
}

.carousel-track::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.08);
}

.carousel-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(143,212,255,0.38);
}

.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-width: 0;
  scroll-snap-align: start;
  transform: translateZ(0);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}
.work-card:hover,
.work-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(143,212,255,0.62);
  background: linear-gradient(180deg, rgba(143,212,255,0.15), rgba(255,255,255,0.045));
  box-shadow: 0 28px 76px rgba(0,0,0,0.38), 0 0 0 1px rgba(143,212,255,0.14);
}

.work-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.work-card > div { padding: 18px 16px 20px; }
.work-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  column-gap: 12px;
  margin-bottom: 14px;
}
.work-title-row h4 {
  margin: 0;
  min-width: 0;
}
.work-card .work-meta {
  display: inline-flex;
  justify-self: end;
  margin: 0;
  color: var(--amber);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: none;
  text-align: right;
}
.work-card p { margin: 0; font-size: 0.95rem; }

.services-section {
  padding: clamp(72px, 10vw, 128px) 0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.service-item {
  min-height: 260px;
  padding: 22px;
  border-radius: 8px;
}
.service-item p { font-size: 0.96rem; margin-bottom: 0; }

.process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 36rem 22rem at 18% 18%, rgba(143,212,255,0.16), transparent 64%),
    radial-gradient(ellipse 32rem 24rem at 88% 76%, rgba(231,177,95,0.13), transparent 66%),
    linear-gradient(135deg, rgba(8,12,15,0.98), rgba(5,6,8,0.95) 54%, rgba(12,16,18,0.98));
  isolation: isolate;
}
.process-section::before,
.process-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.process-section::before {
  z-index: -2;
  opacity: 0.22;
  background-image:
    linear-gradient(115deg, rgba(255,255,255,0.12) 0 1px, transparent 1px 42px),
    linear-gradient(25deg, rgba(143,212,255,0.11) 0 1px, transparent 1px 68px);
  background-size: 56px 56px, 86px 86px;
}
.process-section::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5,6,8,0.78), transparent 34%, transparent 64%, rgba(5,6,8,0.7)),
    linear-gradient(180deg, rgba(5,6,8,0.4), transparent 38%, rgba(5,6,8,0.58));
}
.process-section .section-shell {
  position: relative;
  z-index: 1;
}
.process-section h2 {
  text-shadow: 0 16px 34px rgba(0,0,0,0.5);
}
.timeline {
  display: grid;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(5,6,8,0.82);
}
.timeline div {
  padding: 24px;
  border-bottom: 1px solid var(--line);
}
.timeline div:last-child { border-bottom: 0; }
.timeline p { margin-bottom: 0; }

.contact-section {
  padding: clamp(82px, 12vw, 150px) 0;
}
.contact-panel {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 8px;
  text-align: center;
}
.contact-panel p { max-width: 680px; margin-inline: auto; }
.contact-actions { justify-content: center; }

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  align-items: start;
  gap: 28px;
  padding: 30px 0 42px;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-brand,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.footer-brand {
  flex-direction: column;
  gap: 5px;
}
.footer-brand strong {
  color: var(--ink);
  letter-spacing: 0.12em;
}
.footer-contact,
.footer-legal { justify-content: flex-end; }

.legal-main {
  padding: clamp(72px, 10vw, 120px) 0;
}
.legal-card {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 56px);
  border-radius: 8px;
}
.legal-card h1 {
  font-size: clamp(2.7rem, 7vw, 5.8rem);
}
.legal-card h2 { margin-top: 34px; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.legal-card h3 { margin-top: 24px; }
.legal-card h4 {
  margin: 22px 0 8px;
  font-size: 1rem;
  line-height: 1.35;
}
.legal-card a { color: var(--cyan); border-bottom: 1px solid rgba(143,212,255,0.35); }
.legal-card ul { color: var(--muted); line-height: 1.7; padding-left: 1.2rem; }
.legal-card,
.legal-card p,
.legal-card li {
  overflow-wrap: anywhere;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.motion-ready .reveal.is-visible,
.reveal {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.carousel-controls button:disabled {
  opacity: 0.38;
  cursor: default;
  transform: none;
}

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

@media (max-width: 980px) {
  .hero,
  .split-section,
  .process-layout {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero-stage { min-height: 520px; }
  .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .carousel-track { grid-auto-columns: minmax(250px, 48%); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  body {
    background:
      radial-gradient(ellipse 28rem 18rem at 100% 0%, rgba(47,95,134,0.24), transparent 64%),
      radial-gradient(ellipse 24rem 16rem at 8% 14%, rgba(231,177,95,0.12), transparent 62%),
      linear-gradient(180deg, #07080a 0%, #0b0f13 46%, #050608 100%);
  }
  .section-shell,
  .section-shell {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }
  .site-header {
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-block: 12px;
  }
  .site-header::before {
    background: rgba(5,6,8,0.92);
    mask-image: none;
  }
  .brand img { width: 142px; }
  .nav-toggle {
    position: relative;
    display: inline-flex;
  }
  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8,10,12,0.96);
    box-shadow: 0 18px 46px rgba(0,0,0,0.34);
    backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .site-header.is-open .nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }
  .nav a {
    min-height: 42px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    padding: 10px 12px;
  }
  .nav a:hover,
  .nav a:focus-visible,
  .nav a.is-active {
    background: rgba(255,255,255,0.07);
  }
  .nav a::after { display: none; }
  section[id] { scroll-margin-top: 82px; }
  .work-grid,
  .service-grid { grid-template-columns: 1fr; }
  .category-topline {
    align-items: center;
    gap: 12px;
  }
  .carousel-controls { gap: 6px; }
  .carousel-controls button {
    width: 36px;
    height: 36px;
    font-size: 1.45rem;
  }
  .carousel-track {
    grid-auto-columns: clamp(260px, 84%, 320px);
    gap: 12px;
    padding: 6px 0 10px;
    scroll-padding-inline: 0;
    scrollbar-width: none;
  }
  .carousel-track::-webkit-scrollbar { display: none; }
  .service-item { min-height: 0; }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer-contact,
  .footer-legal { justify-content: flex-start; }
  h1 {
    font-size: clamp(2.1rem, 10.2vw, 2.72rem);
    line-height: 0.96;
  }
  h2 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
    line-height: 1.03;
  }
  .legal-card h1 {
    font-size: clamp(1.85rem, 8.4vw, 2.45rem);
    line-height: 1;
  }
  .legal-card { padding-inline: 20px; }
  .hero-actions .button,
  .contact-actions .button {
    flex: 1 1 100%;
    padding-inline: 14px;
  }
  .hero-facts {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 10px;
    padding: 10px;
  }
  .hero-facts li {
    height: 64px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 6px;
    text-align: center;
  }
  .hero-facts strong { font-size: 1.08rem; }
  .hero-facts li > span {
    max-width: 13ch;
    white-space: normal;
  }
  .hero-facts li + li::before {
    display: none;
  }
  .hero-copy > p:not(.eyebrow),
  p {
    font-size: 1rem;
  }
  .hero {
    gap: 26px;
    padding-top: 34px;
  }
  .hero-stage {
    display: grid;
    gap: 12px;
    min-height: auto;
    overflow: visible;
  }
  .hero-stage::before { display: none; }
  .feature-card,
  .feature-card.is-large,
  .feature-card:not(.is-large):nth-child(2),
  .feature-card:not(.is-large):nth-child(3) {
    position: relative;
    inset: auto;
    width: 100%;
  }
  .feature-card img {
    aspect-ratio: 16 / 9;
  }
  .feature-card.is-large.is-mrsg {
    left: auto;
    translate: none;
  }
}
