:root {
  --bg: #f7fbff;
  --bg-strong: #ffffff;
  --ink: #111b27;
  --muted: #566475;
  --line: rgba(20, 32, 47, 0.12);
  --blue: #079be4;
  --green: #35ad3c;
  --amber: #f2ad00;
  --red: #ef3f42;
  --steel: #dce7ef;
  --shadow: 0 24px 70px rgba(37, 62, 88, 0.13);
  --body-background: radial-gradient(circle at 12% 14%, rgba(7, 155, 228, 0.12), transparent 24rem), radial-gradient(circle at 86% 8%, rgba(53, 173, 60, 0.1), transparent 28rem), linear-gradient(180deg, #ffffff 0%, var(--bg) 58%, #ffffff 100%);
  --grid-line: rgba(20, 32, 47, 0.035);
  --shader-opacity: 0.72;
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-shadow: 0 20px 60px rgba(37, 62, 88, 0.06);
  --nav-bg: rgba(255, 255, 255, 0.92);
  --kicker-bg: rgba(255, 255, 255, 0.68);
  --kicker-ink: #116d99;
  --secondary-bg: rgba(255, 255, 255, 0.74);
  --secondary-border: rgba(17, 27, 39, 0.22);
  --tag-bg: rgba(255, 255, 255, 0.78);
  --tag-ink: #263748;
  --footer-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(238, 248, 255, 0.78)), radial-gradient(circle at 85% 24%, rgba(7, 155, 228, 0.16), transparent 20rem);
  --footer-shadow: 0 20px 60px rgba(37, 62, 88, 0.08);
  --logo-filter: grayscale(1) brightness(0) saturate(100%);
  --fine-text: #8490a0;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

html[data-theme="dark"] {
  --bg: #07111e;
  --bg-strong: #0e1a2a;
  --ink: #eef7ff;
  --muted: #a5b7c9;
  --line: rgba(212, 232, 247, 0.16);
  --blue: #21aef4;
  --green: #5cca68;
  --amber: #f7bf36;
  --steel: #223348;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --body-background: radial-gradient(circle at 14% 12%, rgba(33, 174, 244, 0.18), transparent 27rem), radial-gradient(circle at 84% 8%, rgba(92, 202, 104, 0.12), transparent 27rem), linear-gradient(180deg, #09121f 0%, var(--bg) 54%, #0a111b 100%);
  --grid-line: rgba(210, 232, 248, 0.055);
  --shader-opacity: 0.86;
  --glass-bg: rgba(13, 25, 39, 0.76);
  --glass-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  --nav-bg: rgba(12, 24, 38, 0.94);
  --kicker-bg: rgba(33, 174, 244, 0.1);
  --kicker-ink: #7bd7ff;
  --secondary-bg: rgba(12, 24, 38, 0.68);
  --secondary-border: rgba(220, 239, 255, 0.22);
  --tag-bg: rgba(255, 255, 255, 0.06);
  --tag-ink: #dcecff;
  --footer-bg: linear-gradient(135deg, rgba(13, 25, 39, 0.86), rgba(13, 37, 55, 0.7)), radial-gradient(circle at 85% 24%, rgba(33, 174, 244, 0.18), transparent 20rem);
  --footer-shadow: 0 22px 70px rgba(0, 0, 0, 0.25);
  --logo-filter: grayscale(1) brightness(0) invert(1) saturate(0);
  --fine-text: #94a8b9;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--body-background);
  color: var(--ink);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

#shader-bg,
.backdrop-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#shader-bg {
  z-index: -2;
  opacity: var(--shader-opacity);
}

.backdrop-grid {
  z-index: -1;
  background:
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
    linear-gradient(180deg, var(--grid-line) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(180deg, transparent 0%, black 14%, black 72%, transparent 100%);
}

.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;
}

.site-header,
main,
.site-footer {
  width: min(100% - 64px, 1790px);
  margin-inline: auto;
}

.site-header {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
  font-size: clamp(1rem, 1.28vw, 1.72rem);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-mark {
  width: clamp(54px, 4.6vw, 84px);
  flex: 0 0 auto;
  fill: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
}

.site-nav {
  order: 1;
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 78px);
  font-size: clamp(0.95rem, 1vw, 1.3rem);
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding-block: 10px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--blue);
  transition: right 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.theme-toggle {
  order: 2;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--secondary-bg);
  color: var(--ink);
  box-shadow: 0 12px 24px rgba(37, 62, 88, 0.08);
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: rgba(7, 155, 228, 0.44);
  transform: translateY(-1px);
}

.theme-toggle svg {
  width: 23px;
  height: 23px;
}

.theme-rays,
.theme-disc {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-half {
  fill: currentColor;
}

.nav-toggle {
  order: 3;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: clamp(44px, 6vw, 104px);
  padding: clamp(54px, 6.4vw, 108px) 0 32px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 24px;
  padding: 9px 14px;
  border: 1px solid rgba(7, 155, 228, 0.2);
  border-radius: 999px;
  background: var(--kicker-bg);
  color: var(--kicker-ink);
  font-size: 0.86rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.hero h1 {
  display: grid;
  gap: 0.015em;
  margin: 0;
  color: var(--ink);
  font-size: clamp(4rem, 5.9vw, 8rem);
  line-height: 0.91;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 .accent {
  color: var(--blue);
}

.hero-subtitle {
  margin: clamp(18px, 2.1vw, 32px) 0 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 1.45vw, 1.72rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 26px);
  flex-wrap: wrap;
  margin-top: clamp(26px, 3vw, 42px);
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 30px;
  border-radius: 8px;
  font-size: clamp(1rem, 1vw, 1.3rem);
  font-weight: 760;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  background: linear-gradient(135deg, #0696df, #0faeea);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(7, 155, 228, 0.26);
}

.button-secondary {
  border: 1px solid var(--secondary-border);
  background: var(--secondary-bg);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(7, 155, 228, 0.4);
  box-shadow: 0 14px 28px rgba(37, 62, 88, 0.1);
}

.text-link {
  color: var(--blue);
  font-size: clamp(0.98rem, 0.98vw, 1.18rem);
  font-weight: 650;
}

.text-link::after,
.clients p::after,
.engine-summary a::after {
  content: "↗";
  margin-left: 6px;
  font-size: 0.86em;
}

.hero-visual {
  min-width: 0;
}

.engine-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  background: var(--bg-strong);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.engine-window::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 16%, transparent 82%, rgba(255, 255, 255, 0.2)),
    radial-gradient(circle at 72% 8%, rgba(255, 255, 255, 0.55), transparent 9rem);
  pointer-events: none;
}

.hero-scene {
  display: block;
  width: 100%;
  aspect-ratio: 2.1 / 1;
  object-fit: cover;
  transition: opacity 220ms ease;
}

.hero-scene-night {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
}

html[data-theme="dark"] .hero-scene-day {
  opacity: 0;
}

html[data-theme="dark"] .hero-scene-night {
  opacity: 1;
}

.selection-box {
  position: absolute;
  z-index: 3;
  border: 2px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 0 1px rgba(7, 155, 228, 0.08);
}

.box-a {
  left: 7%;
  bottom: 17%;
  width: 10%;
  height: 17%;
}

.box-b {
  right: 11%;
  bottom: 15%;
  width: 10%;
  height: 20%;
}

.gizmo {
  position: absolute;
  z-index: 4;
  width: 3px;
  height: 76px;
  background: rgba(255, 255, 255, 0.86);
  transform-origin: bottom;
}

.gizmo::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -8px;
  width: 12px;
  height: 12px;
  border-top: 3px solid rgba(255, 255, 255, 0.92);
  border-right: 3px solid rgba(255, 255, 255, 0.92);
  transform: translateX(-50%) rotate(-45deg);
}

.gizmo-a {
  left: 32%;
  bottom: 11%;
  transform: rotate(49deg);
}

.gizmo-b {
  right: 27%;
  bottom: 15%;
  transform: rotate(-8deg);
}

.services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.5vw, 24px);
  padding: 24px 0;
}

.service-card,
.platform-band,
.engine-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--glass-bg);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px);
}

.service-card {
  min-height: 156px;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  padding: clamp(22px, 2vw, 34px);
}

.service-icon {
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--blue);
}

.service-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon.green {
  color: var(--green);
}

.service-icon.amber {
  color: var(--amber);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.12rem, 1.35vw, 1.72rem);
  line-height: 1.1;
}

.service-card p {
  max-width: 19ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.92rem, 0.98vw, 1.12rem);
  line-height: 1.42;
}

.platform-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
  margin: 0 0 20px;
  padding: clamp(16px, 1.5vw, 22px);
}

.platform-copy {
  min-width: 0;
}

.platform-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 11px;
  border: 1px solid rgba(7, 155, 228, 0.2);
  border-radius: 999px;
  background: var(--kicker-bg);
  color: var(--kicker-ink);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-copy h2 {
  margin: 10px 0 6px;
  font-size: clamp(1.45rem, 1.75vw, 2.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.platform-copy p {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.88rem, 0.9vw, 1rem);
  line-height: 1.38;
}

.platform-grid {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 9px 14px;
}

.platform-group {
  min-width: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.platform-group h3 {
  margin: 0 2px 0 0;
  color: var(--kicker-ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.15;
  text-transform: uppercase;
}

.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.platform-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--tag-bg);
  color: var(--tag-ink);
  font-size: 0.72rem;
  font-weight: 650;
  white-space: nowrap;
}

.engine-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.8fr);
  align-items: stretch;
  gap: clamp(20px, 3vw, 40px);
  margin: 0 0 28px;
  padding: clamp(28px, 3vw, 46px);
}

.engine-summary {
  display: grid;
  align-content: center;
}

.engine-summary h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3.2vw, 4.45rem);
  line-height: 1;
  letter-spacing: 0;
}

.engine-summary p {
  margin: 14px 0 8px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.45vw, 1.72rem);
}

.engine-summary a {
  color: var(--blue);
  font-weight: 690;
}

.engine-strip {
  min-width: 0;
  display: block;
  aspect-ratio: 1680 / 927;
  overflow: hidden;
  border-radius: 6px;
  background: #122033;
  box-shadow: 0 24px 60px rgba(21, 54, 86, 0.16), inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.engine-strip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clients {
  padding: 8px 0 34px;
  text-align: center;
}

.clients h2 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  margin: 0 0 22px;
  font-size: clamp(1.25rem, 1.5vw, 1.95rem);
  line-height: 1.2;
}

.clients h2::before,
.clients h2::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.client-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-block: 1px solid var(--line);
}

.client-logo {
  min-width: 86px;
  min-height: 82px;
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  border-right: 1px solid var(--line);
  opacity: 0.92;
  overflow: hidden;
}

.client-logo:last-child {
  border-right: 0;
}

.client-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 32px;
  object-fit: contain;
  filter: var(--logo-filter);
}

.logo-fury {
  flex: 1.08 0 104px;
}

.logo-fury img {
  max-height: 66px;
  max-width: 56px;
}

.logo-cdpr {
  flex: 1.32 0 154px;
}

.logo-cdpr img {
  max-height: 50px;
  max-width: 150px;
}

.client-logo:nth-child(5) img,
.client-logo:nth-child(9) img,
.client-logo:nth-child(10) img {
  max-height: 34px;
}

.clients p {
  margin: 20px 0 0;
  color: var(--fine-text);
  font-size: clamp(0.78rem, 0.82vw, 0.98rem);
}

.clients p::after {
  content: "";
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
  padding: clamp(28px, 3vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--footer-bg);
  box-shadow: var(--footer-shadow);
}

.site-footer h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  line-height: 1;
}

.site-footer p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1vw, 1.18rem);
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 40px, 960px);
  }

  .site-header {
    min-height: 84px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 42px;
  }

  .hero h1 {
    max-width: 8ch;
  }

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

  .engine-band {
    grid-template-columns: 1fr;
  }

  .client-row {
    overflow-x: auto;
    display: flex;
    justify-content: flex-start;
    scrollbar-width: thin;
  }

  .client-logo {
    min-width: 138px;
    flex: 0 0 138px;
    border-right: 1px solid var(--line);
  }

  .logo-cdpr {
    flex-basis: 168px;
  }

  .logo-fury {
    flex-basis: 122px;
  }
}

@media (max-width: 760px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 24px, 520px);
  }

  .site-header {
    min-height: 78px;
  }

  .brand {
    gap: 12px;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }

  .brand-mark {
    width: 44px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 20;
  }

  .site-nav {
    position: fixed;
    z-index: 15;
    inset: 78px 12px auto;
    display: grid;
    gap: 8px;
    padding: 14px 22px;
    background: var(--nav-bg);
    border: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(-100% - 96px));
    transition: opacity 160ms ease, transform 200ms ease;
    backdrop-filter: blur(20px);
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 0;
    font-size: 1.12rem;
  }

  .hero {
    padding-top: 28px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 0.7rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-subtitle {
    max-width: 31ch;
    font-size: 1.05rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .text-link {
    justify-self: center;
  }

  .hero-scene {
    aspect-ratio: 1.38 / 1;
  }

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

  .service-card {
    min-height: 148px;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 18px;
  }

  .service-icon {
    width: 46px;
    height: 46px;
  }

  .service-icon svg {
    width: 42px;
    height: 42px;
  }

  .service-card h3 {
    font-size: 0.98rem;
  }

  .service-card p {
    font-size: 0.78rem;
  }

  .platform-band {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .platform-kicker {
    min-height: 26px;
    font-size: 0.64rem;
  }

  .platform-copy h2 {
    margin-top: 9px;
    font-size: 1.58rem;
  }

  .platform-copy p {
    display: none;
  }

  .platform-group h3 {
    font-size: 0.66rem;
  }

  .platform-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
  }

  .platform-group {
    display: block;
    align-content: flex-start;
    align-items: flex-start;
  }

  .platform-tags {
    margin-top: 6px;
    gap: 6px;
  }

  .platform-tags span {
    min-height: 24px;
    padding: 0 8px;
    font-size: 0.68rem;
  }

  .engine-band {
    gap: 18px;
    padding: 20px;
  }

  .engine-summary {
    align-items: flex-start;
  }

  .engine-summary h2 {
    font-size: 1.8rem;
  }

  .engine-summary p {
    margin: 7px 0;
    font-size: 0.96rem;
  }

  .clients h2 {
    display: block;
    margin-bottom: 12px;
    font-size: 1.05rem;
  }

  .client-logo {
    min-width: 122px;
    flex-basis: 122px;
    min-height: 58px;
    padding: 8px 12px;
  }

  .client-logo img {
    max-width: 100%;
    max-height: 28px;
  }

  .logo-fury {
    min-width: 92px;
    flex-basis: 92px;
  }

  .logo-fury img {
    max-height: 48px;
    max-width: 40px;
  }

  .logo-cdpr {
    min-width: 152px;
    flex-basis: 152px;
  }

  .logo-cdpr img {
    max-height: 42px;
    max-width: 132px;
  }

  .site-footer {
    display: grid;
    margin-bottom: 24px;
    padding: 22px;
  }
}

@media (max-width: 420px) {
  .services {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 98px;
    grid-template-columns: 46px 1fr;
    align-items: center;
  }
}

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