﻿:root {
  --ink-900: #07131f;
  --ink-800: #0b2236;
  --ink-700: #12304a;
  --slate-100: #e7edf2;
  --slate-200: #d3dde6;
  --steel-400: #6f8799;
  --accent: #f97316;
  --accent-strong: #ea580c;
  --paper: #f5f8fb;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(5, 14, 23, 0.16);
  --site-max-width: 1680px;
  --site-gutter: clamp(12px, 2.4vw, 32px);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(0.95rem, 0.93rem + 0.16vw, 1rem);
  color: var(--ink-900);
  background: var(--paper);
  line-height: 1.66;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(160deg, #eef3f7 0%, #d9e1e8 48%, #f9fbfd 100%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 5px clamp(16px, 4vw, 56px);
  backdrop-filter: blur(10px);
  background: rgba(245, 248, 251, 0.88);
  border-bottom: 1px solid rgba(7, 19, 31, 0.08);
}

.brand {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
}

.brand-wrap {
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  transform: translateY(-12px);
}

.brand-logo {
  display: block;
  width: clamp(220px, 32vw, 440px);
  height: auto;
}

.brand-location {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.24);
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  list-style: none;
}

.brand-location::-webkit-details-marker {
  display: none;
}

.brand-location::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.brand-location-menu[open] .brand-location::after {
  transform: rotate(-135deg) translateY(-1px);
}

.brand-location-menu {
  position: relative;
  margin-top: 16px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-location-menu__panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 210px;
  display: grid;
  gap: 6px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(11, 34, 54, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(5, 14, 23, 0.14);
}

.brand-location-menu__link {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 0;
  text-decoration: none;
  text-align: left;
  color: var(--ink-800);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  width: 100%;
  background: rgba(19, 52, 77, 0.04);
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.brand-location-menu__link:hover,
.brand-location-menu__link:focus-visible {
  background: rgba(19, 52, 77, 0.08);
  transform: translateX(2px);
}

.brand-location-menu__link.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
}

.site-nav {
  display: flex;
  gap: clamp(10px, 2vw, 24px);
  align-items: center;
  grid-column: 3;
  justify-self: end;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-800);
  font-weight: 600;
  font-size: 0.95rem;
}

.location-card {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(11, 34, 54, 0.08);
  background: rgba(255, 255, 255, 0.76);
}

.location-card p {
  margin: 6px 0;
}

.menu-btn {
  display: none;
}

main {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 72px;
}

.hero,
.section-flow,
.site-footer {
  width: min(var(--site-max-width), calc(100% - (var(--site-gutter) * 2)));
  margin-left: auto;
  margin-right: auto;
}

.section-flow > section,
.site-footer {
  margin-left: auto;
  margin-right: auto;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  width: min(1860px, calc(100% - (var(--site-gutter) * 2)));
  padding: clamp(48px, 8vw, 88px) clamp(12px, 3vw, 40px) 56px;
}

.hero--home {
  display: block;
}

.hero-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
}

.hero--home .hero-container {
  display: grid;
  grid-template-columns: minmax(540px, 660px) minmax(56px, 1fr) minmax(760px, 980px);
  column-gap: clamp(20px, 2vw, 36px);
  row-gap: 0;
  align-items: stretch;
  justify-content: space-between;
}

.hero--home .hero-copy {
  width: 100%;
  max-width: 660px;
  justify-self: start;
  margin-top: 0 !important;
}

.hero--home .hero-media {
  grid-column: 3;
  width: min(980px, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-self: end;
  margin-top: 0 !important;
}

.hero--home h1 {
  font-size: clamp(2rem, 1.08rem + 3.08vw, 4.15rem);
  max-width: 15ch;
}

.hero-copy {
  min-width: 0;
  max-width: min(62ch, 100%);
}

.hero--home .lead {
  max-width: 60ch;
}

.hero-media {
  min-width: 0;
  justify-self: end;
}

.hero-media .label {
  margin-bottom: 12px;
}

.kicker, .label {
  display: inline-block;
  margin-top: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.hero--home .hero-copy > :first-child,
.hero--home .hero-media > :first-child {
  margin-top: 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

h1, h2, h3 {
  margin-top: 0;
  color: var(--ink-900);
}

h1 {
  margin-bottom: 16px;
  max-width: 20ch;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 1.16rem + 2.18vw, 3.55rem);
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.lead {
  font-size: clamp(0.98rem, 0.94rem + 0.22vw, 1.08rem);
  line-height: 1.7;
  max-width: 60ch;
  color: var(--ink-800);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: clamp(0.92rem, 0.9rem + 0.08vw, 0.98rem);
  padding: 12px 18px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: var(--white);
  box-shadow: 0 10px 22px rgba(234, 88, 12, 0.32);
}

.btn.ghost {
  background: rgba(11, 34, 54, 0.04);
  color: var(--ink-900);
  border-color: rgba(11, 34, 54, 0.2);
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  padding: 12px 18px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: var(--white);
  box-shadow: 0 10px 22px rgba(234, 88, 12, 0.32);
}

.btn-secondary {
  background: rgba(11, 34, 54, 0.04);
  color: var(--ink-900);
  border-color: rgba(11, 34, 54, 0.2);
}

.hero-points {
  margin: 20px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
}

.proof-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 18px;
}

.badge {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  min-height: 100%;
}

.badge strong {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1rem, 1vw, 1.12rem);
  letter-spacing: 0.02em;
}


.trust-signals .section-head h2 {
  max-width: 24ch;
  margin-bottom: 20px;
}


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

.media-card {
  margin: 0;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
}

.media-card img {
  width: 100%;
  height: clamp(200px, 27vw, 320px);
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(11, 34, 54, 0.12);
}

.media-card figcaption {
  margin-top: 8px;
  font-size: 0.95rem;
  color: var(--ink-700);
}

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

.component-models--inline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.component-models--inline .component-model {
  padding: 10px;
}

.component-models--inline .component-model__art {
  min-height: 82px;
}

.component-models--inline .component-model__art--empty {
  min-height: 82px;
}

.component-models--inline .component-model h3 {
  margin-top: 6px;
  font-size: 0.82rem;
  text-align: center;
}

.service-capabilities-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(720px, 1.16fr);
  align-items: center;
  gap: clamp(20px, 2.4vw, 32px);
}

.service-capabilities-preview__copy {
  max-width: min(60ch, 100%);
}

.service-capabilities-preview__copy h2 {
  margin: 8px 0 0;
  max-width: 16ch;
}

.service-capabilities-preview__copy .hero-actions {
  margin-top: 28px;
}

.service-capabilities-preview .hero-actions {
  margin: 0;
}

.service-capabilities-preview .component-models--inline {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  gap: 0;
}

.service-capabilities-preview .component-models--inline .component-model {
  flex: 1 1 0;
  width: auto;
  max-width: 168px;
  padding: 4px 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.service-capabilities-preview .component-models--inline .component-model__art {
  min-height: 116px;
}

.service-capabilities-preview .component-models--inline .component-model__art--empty {
  min-height: 116px;
}

.service-capabilities-preview .component-models--inline .component-model h3 {
  margin-top: 6px;
  font-size: 0.94rem;
}

.component-model {
  display: flex;
  flex-direction: column;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 249, 0.92));
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(5, 14, 23, 0.1);
}

.component-model h3 {
  margin: 8px 0 0;
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.component-model__art,
.component-card__art {
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: transparent;
}

.component-model__art {
  flex: 1 1 auto;
  min-height: 112px;
}

.component-model__art--empty {
  min-height: 112px;
}

.component-model__art svg,
.component-card__art svg {
  display: block;
  width: 100%;
  height: auto;
}

.fan-rotor {
  transform-box: fill-box;
  transform-origin: center;
}

.hero-fan-rotor {
  transform-box: fill-box;
  transform-origin: center;
}

.component-model:hover .hero-fan-rotor--boost,
.component-model:focus-within .hero-fan-rotor--boost,
.component-model__art:hover .hero-fan-rotor--boost,
.component-card__art:hover .hero-fan-rotor--boost,
.service-showcase__row:hover .hero-fan-rotor--boost,
.service-showcase__row:focus-within .hero-fan-rotor--boost {
  animation: fan-spin-ramp 2.2s cubic-bezier(0.55, 0.02, 1, 1) 1 forwards;
}

.component-model:hover .hero-fan-rotor--cruise,
.component-model:focus-within .hero-fan-rotor--cruise,
.component-model__art:hover .hero-fan-rotor--cruise,
.component-card__art:hover .hero-fan-rotor--cruise,
.service-showcase__row:hover .hero-fan-rotor--cruise,
.service-showcase__row:focus-within .hero-fan-rotor--cruise {
  animation: fan-spin-cruise 0.78s linear 2.2s infinite;
}

@keyframes fan-spin-ramp {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes fan-spin-cruise {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.component-card__art {
  min-height: 88px;
  padding: 10px;
}

.hood-light-svg {
  overflow: visible;
  shape-rendering: crispEdges;
}

.vent-flow-svg {
  overflow: visible;
}

.pipe-flow-svg {
  overflow: visible;
}

.pipe-standard-svg {
  overflow: visible;
}

.pipe-water-burst__drop {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform, opacity;
}

.component-model:hover .pipe-water-burst__drop--1,
.component-model:focus-within .pipe-water-burst__drop--1,
.component-model__art:hover .pipe-water-burst__drop--1,
.component-card__art:hover .pipe-water-burst__drop--1,
.service-showcase__row:hover .pipe-water-burst__drop--1,
.service-showcase__row:focus-within .pipe-water-burst__drop--1 {
  animation: pipe-water-burst 1.8s linear 0s infinite;
}

.component-model:hover .pipe-water-burst__drop--2,
.component-model:focus-within .pipe-water-burst__drop--2,
.component-model__art:hover .pipe-water-burst__drop--2,
.component-card__art:hover .pipe-water-burst__drop--2,
.service-showcase__row:hover .pipe-water-burst__drop--2,
.service-showcase__row:focus-within .pipe-water-burst__drop--2 {
  animation: pipe-water-burst 1.8s linear 0.12s infinite;
}

.component-model:hover .pipe-water-burst__drop--3,
.component-model:focus-within .pipe-water-burst__drop--3,
.component-model__art:hover .pipe-water-burst__drop--3,
.component-card__art:hover .pipe-water-burst__drop--3,
.service-showcase__row:hover .pipe-water-burst__drop--3,
.service-showcase__row:focus-within .pipe-water-burst__drop--3 {
  animation: pipe-water-burst 1.8s linear 0.24s infinite;
}

.component-model:hover .pipe-water-burst__drop--4,
.component-model:focus-within .pipe-water-burst__drop--4,
.component-model__art:hover .pipe-water-burst__drop--4,
.component-card__art:hover .pipe-water-burst__drop--4,
.service-showcase__row:hover .pipe-water-burst__drop--4,
.service-showcase__row:focus-within .pipe-water-burst__drop--4 {
  animation: pipe-water-burst 1.8s linear 0.36s infinite;
}

.vent-flow {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: right center;
  will-change: transform, opacity, filter;
  --flow-delay: 0s;
}

.component-model:hover .vent-flow,
.component-model:focus-within .vent-flow,
.service-showcase__row:hover .vent-flow,
.service-showcase__row:focus-within .vent-flow {
  animation: vent-flow-move 2.8s linear var(--flow-delay) infinite;
}

.vent-flow--1 {
  --flow-delay: 0s;
}

.vent-flow--2 {
  --flow-delay: 0.12s;
}

.vent-flow--3 {
  --flow-delay: 0.24s;
}

.vent-flow--4 {
  --flow-delay: 0.36s;
}

.vent-flow--5 {
  --flow-delay: 0.48s;
}

.hood-debris {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform, opacity, filter;
}

.component-model:hover .hood-debris,
.component-model:focus-within .hood-debris,
.service-showcase__row:hover .hood-debris,
.service-showcase__row:focus-within .hood-debris {
  animation: hood-debris-rise 1.8s linear infinite;
}

.hood-debris--1 {
  animation-delay: 0s;
}

.hood-debris--2 {
  animation-delay: 0.18s;
}

.hood-debris--3 {
  animation-delay: 0.34s;
}

.hood-debris--4 {
  animation-delay: 0.12s;
}

.hood-debris--5 {
  animation-delay: 0.28s;
}

.pipe-particle {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform, opacity, filter;
}

.component-model:hover .pipe-particle,
.component-model:focus-within .pipe-particle,
.service-showcase__row:hover .pipe-particle,
.service-showcase__row:focus-within .pipe-particle {
  animation: pipe-particle-drift 1.4s linear infinite;
}

.pipe-particle--1 {
  animation-delay: 0s;
}

.pipe-particle--2 {
  animation-delay: 0.16s;
}

.pipe-particle--3 {
  animation-delay: 0.3s;
}

.pipe-particle--4 {
  animation-delay: 0.1s;
}

.hood-light-glow {
  transform-box: fill-box;
  transform-origin: center;
  transition:
    fill 0.18s ease,
    filter 0.18s ease,
    opacity 0.18s ease;
}

.component-model:hover .hood-light-glow,
.component-model:focus-within .hood-light-glow,
.service-showcase__row:hover .hood-light-glow,
.service-showcase__row:focus-within .hood-light-glow {
  animation: hood-light-flicker 2.4s linear infinite;
}

@keyframes hood-light-flicker {
  0% {
    fill: #f97316;
    opacity: 0.16;
    filter: brightness(0.55) drop-shadow(0 0 1px rgba(249, 115, 22, 0.08));
  }

  5% {
    fill: #f97316;
    opacity: 1;
    filter: brightness(1.9) drop-shadow(0 0 16px rgba(249, 115, 22, 0.56));
  }

  9% {
    opacity: 0.34;
    filter: brightness(0.7) drop-shadow(0 0 2px rgba(249, 115, 22, 0.12));
  }

  13% {
    opacity: 0.96;
    filter: brightness(1.65) drop-shadow(0 0 12px rgba(249, 115, 22, 0.5));
  }

  17% {
    fill: #f97316;
    opacity: 0.42;
    filter: brightness(0.78) drop-shadow(0 0 3px rgba(249, 115, 22, 0.16));
  }

  22% {
    opacity: 1;
    filter: brightness(2) drop-shadow(0 0 18px rgba(249, 115, 22, 0.6));
  }

  28% {
    opacity: 0.78;
    filter: brightness(1.15) drop-shadow(0 0 7px rgba(249, 115, 22, 0.28));
  }

  36% {
    opacity: 0.94;
    filter: brightness(1.32) drop-shadow(0 0 11px rgba(249, 115, 22, 0.4));
  }

  52% {
    opacity: 0.92;
    filter: brightness(1.28) drop-shadow(0 0 9px rgba(249, 115, 22, 0.38));
  }

  68% {
    opacity: 0.9;
    filter: brightness(1.24) drop-shadow(0 0 10px rgba(249, 115, 22, 0.36));
  }

  84% {
    opacity: 0.88;
    filter: brightness(1.2) drop-shadow(0 0 8px rgba(249, 115, 22, 0.34));
  }

  100% {
    opacity: 0.91;
    filter: brightness(1.26) drop-shadow(0 0 10px rgba(249, 115, 22, 0.36));
  }
}

@keyframes pipe-particle-drift {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.82);
    filter: blur(0);
  }

  12% {
    opacity: 0.9;
    transform: translate3d(4px, -1px, 0) scale(1);
  }

  48% {
    opacity: 0.62;
    transform: translate3d(14px, -3px, 0) scale(0.92);
  }

  82% {
    opacity: 0.18;
    transform: translate3d(24px, -5px, 0) scale(0.68);
    filter: blur(0.25px);
  }

  100% {
    opacity: 0;
    transform: translate3d(28px, -6px, 0) scale(0.52);
    filter: blur(0.4px);
  }
}

@keyframes hood-debris-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, 8px, 0) scale(0.96);
    filter: blur(0);
  }

  12% {
    opacity: 0.82;
    transform: translate3d(0, 3px, 0) scale(1);
    filter: blur(0);
  }

  42% {
    opacity: 0.74;
    transform: translate3d(1px, -6px, 0) scale(0.88);
    filter: blur(0.15px);
  }

  64% {
    opacity: 0.22;
    transform: translate3d(2px, -13px, 0) scale(0.64);
    filter: blur(0.35px);
  }

  78% {
    opacity: 0.04;
    transform: translate3d(2px, -17px, 0) scale(0.48);
    filter: blur(0.5px);
  }

  100% {
    opacity: 0;
    transform: translate3d(2px, -18px, 0) scale(0.36);
    filter: blur(0.6px);
  }
}

@keyframes vent-flow-move {
  0% {
    opacity: 0.82;
    transform: translate3d(0, 0, 0) scaleX(0.18) scaleY(0.82);
    filter: blur(0);
  }

  18% {
    opacity: 0.72;
    transform: translate3d(-2px, 0, 0) scaleX(0.34) scaleY(0.86);
    filter: blur(0);
  }

  42% {
    opacity: 0.5;
    transform: translate3d(-5px, 0, 0) scaleX(0.58) scaleY(0.9);
    filter: blur(0.02px);
  }

  68% {
    opacity: 0.26;
    transform: translate3d(-9px, 0, 0) scaleX(0.86) scaleY(0.96);
    filter: blur(0.05px);
  }

  86% {
    opacity: 0.1;
    transform: translate3d(-12px, 0, 0) scaleX(1.02) scaleY(1);
    filter: blur(0.08px);
  }

  100% {
    opacity: 0;
    transform: translate3d(-15px, 0, 0) scaleX(1.08) scaleY(1.02);
    filter: blur(0.14px);
  }
}

@keyframes pipe-water-burst {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.75);
  }

  12% {
    opacity: 0.9;
    transform: translate3d(3px, 0, 0) scale(1);
  }

  55% {
    opacity: 0.55;
    transform: translate3d(14px, 0, 0) scale(0.82);
  }

  100% {
    opacity: 0;
    transform: translate3d(22px, 0, 0) scale(0.45);
  }
}

@keyframes coverage-pulse {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }

  70% {
    opacity: 0;
    transform: scale(2.5);
  }

  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}

.blade-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 20px;
  align-items: start;
}

.blade-preview__frame {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 24px;
  border: 2px dashed rgba(11, 34, 54, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.blade-preview__frame svg {
  width: min(420px, 100%);
  height: auto;
  display: block;
}

.blade-preview p {
  margin: 0;
  max-width: 48ch;
  grid-column: 1 / -1;
}

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

.service-showcase__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 250, 0.94));
  width: 100%;
  transform-origin: center center;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease,
    filter 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.service-showcase__diagram {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(232, 240, 246, 0.92), rgba(220, 231, 239, 0.9));
  border-right: 1px solid var(--slate-200);
  text-align: center;
}

.service-showcase__diagram h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-showcase__diagram p {
  margin: 0;
  max-width: 42ch;
}

.service-showcase__diagram .component-card__art {
  width: min(250px, 92%);
  min-height: 108px;
  padding: 12px;
}

.service-showcase__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.service-showcase__pair figure {
  margin: 0;
  position: relative;
}

.service-showcase__pair figure + figure {
  border-left: 1px solid rgba(11, 34, 54, 0.08);
}

.service-showcase__pair img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  display: block;
  object-fit: cover;
  image-rendering: auto;
  filter: contrast(1.04) saturate(1.02);
}

.service-showcase__pair figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  margin: 0;
  padding: 6px 10px;
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(7, 19, 31, 0.72);
  border-radius: 999px;
}

@media (hover: hover) and (pointer: fine) {
  .service-showcase:hover .service-showcase__row {
    opacity: 0.72;
    transform: scale(0.975);
    filter: saturate(0.9) brightness(0.97);
    box-shadow: 0 10px 20px rgba(5, 14, 23, 0.08);
    border-color: rgba(11, 34, 54, 0.08);
  }

  .service-showcase:hover .service-showcase__row:hover {
    opacity: 1;
    transform: scale(1.02);
    filter: saturate(1.02) brightness(1);
    box-shadow: 0 20px 42px rgba(5, 14, 23, 0.16);
    border-color: rgba(249, 115, 22, 0.2);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 251, 253, 0.96));
    z-index: 2;
  }
}

.panel, .split, .contact {
  margin-top: 30px;
  padding: clamp(18px, 2.4vw, 30px);
  width: 100%;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(11, 34, 54, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-flow {
  position: relative;
  margin-top: 30px;
  padding-left: 0;
  padding-right: 0;
}

.section-flow > section {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 0;
  border-top: 0;
  padding-left: clamp(16px, 1.8vw, 24px);
  padding-right: clamp(16px, 1.8vw, 24px);
  box-shadow: none;
}

.section-flow > section:first-child {
  border-top: 1px solid rgba(11, 34, 54, 0.1);
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.section-flow > section:last-child {
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-flow > section:nth-child(odd) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 252, 0.9));
}

.section-flow > section:nth-child(even) {
  background: linear-gradient(180deg, rgba(244, 248, 251, 0.98), rgba(235, 241, 246, 0.9));
}

.section-flow > section:nth-child(4n + 1)::before {
  background: var(--accent);
}

.section-flow > section:nth-child(4n + 2)::before {
  background: #0b2236;
}

.section-flow > section:nth-child(4n + 3)::before {
  background: #1d4f73;
}

.section-flow > section:nth-child(4n)::before {
  background: #d97706;
}

.panel,
.split,
.contact,
.site-footer {
  padding-left: clamp(16px, 5vw, 64px);
  padding-right: clamp(16px, 5vw, 64px);
}

.section-head h2 {
  max-width: 26ch;
  font-size: clamp(1.28rem, 0.98rem + 1.28vw, 1.95rem);
  line-height: 1.16;
  margin-bottom: 24px;
}

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

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 18px;
}

.card h3 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: start;
}

.split ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.market-section {
  overflow: hidden;
}

.market-section__header {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.market-section__header h2 {
  margin-bottom: 0;
  max-width: 22ch;
}

.market-section__intro {
  margin: 0;
  max-width: 64ch;
  color: var(--ink-700);
}

.market-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.market-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(11, 34, 54, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 250, 0.94)),
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.08), transparent 34%);
  box-shadow: 0 18px 34px rgba(5, 14, 23, 0.08);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.market-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  border: 1px solid rgba(11, 34, 54, 0.04);
  pointer-events: none;
}

.market-card__media {
  position: relative;
  width: 100%;
  height: clamp(260px, 28vw, 360px);
  overflow: hidden;
  border-radius: 0;
}

.market-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 19, 31, 0.06), rgba(7, 19, 31, 0.32)),
    linear-gradient(0deg, rgba(7, 19, 31, 0.24), rgba(7, 19, 31, 0));
  pointer-events: none;
}

.market-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.45s ease;
}

.market-card__copy {
  min-width: 0;
  padding: 20px 20px 22px;
}

.market-card__eyebrow {
  margin: 0 0 6px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.market-card h3 {
  margin: 0 0 8px;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.15;
}

.market-card p:last-child {
  margin: 0;
  color: var(--ink-700);
}

.market-section.is-focused .market-card,
.market-section[data-focus="active"] .market-card {
  opacity: 1;
  transform: translateY(0);
}

.market-section.is-focused .market-card:nth-child(1),
.market-section[data-focus="active"] .market-card:nth-child(1) {
  transition-delay: 0.05s;
}

.market-section.is-focused .market-card:nth-child(2),
.market-section[data-focus="active"] .market-card:nth-child(2) {
  transition-delay: 0.14s;
}

.market-section.is-focused .market-card:nth-child(3),
.market-section[data-focus="active"] .market-card:nth-child(3) {
  transition-delay: 0.23s;
}

.market-section.is-focused .market-card:nth-child(4),
.market-section[data-focus="active"] .market-card:nth-child(4) {
  transition-delay: 0.32s;
}

@media (hover: hover) and (pointer: fine) {
  .market-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(5, 14, 23, 0.14);
    border-color: rgba(249, 115, 22, 0.18);
  }

  .market-card:hover .market-card__media img {
    transform: scale(1.06);
  }
}

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

.stats-grid article {
  padding: 14px;
  background: linear-gradient(170deg, #ffffff, #f4f8fc);
  border-radius: 12px;
  border: 1px solid var(--slate-200);
}

.stats-grid h3 {
  margin-bottom: 2px;
  color: var(--ink-700);
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 12px 14px;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

.contact {
  display: block;
}

.contact-with-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-direct {
  max-width: 760px;
}

.service-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.service-left {
  flex: 1;
}

.service-right {
  flex: 1;
}

.service-left ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.service-left h2 {
  max-width: 22ch;
  font-size: clamp(1.28rem, 0.98rem + 1.28vw, 1.95rem);
  line-height: 1.16;
  margin-bottom: 24px;
}

@media (max-width: 1440px) {
  .hero--home h1 {
    font-size: clamp(1.92rem, 1.02rem + 2.5vw, 3.55rem);
    max-width: 14ch;
  }

  h1 {
    font-size: clamp(1.72rem, 1.12rem + 1.84vw, 3.05rem);
  }

  .lead {
    font-size: 1rem;
    max-width: 58ch;
  }

  .section-head h2,
  .service-left h2 {
    font-size: clamp(1.22rem, 0.98rem + 1vw, 1.72rem);
  }
}

.coverage-panel {
  display: grid;
  gap: 14px;
}

.coverage-card {
  padding: 18px;
  background: linear-gradient(170deg, #ffffff, #eef4f8);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
}

.coverage-card p:last-child {
  margin-bottom: 0;
  max-width: 52ch;
}

.coverage-label {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.coverage-map {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(19, 52, 77, 0.14);
  border-radius: 16px;
  background: linear-gradient(180deg, #f7fafc 0%, #edf5fa 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 18px 38px rgba(15, 23, 42, 0.08);
  margin: 0;
  padding: 12px;
}

.coverage-map__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: var(--white);
}

.coverage-map__svg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.42);
}

.coverage-map__label text {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.coverage-map__label--tulsa text {
  fill: #ffffff;
}

.coverage-map__glow {
  filter: blur(4px);
}

.coverage-map__pulse {
  animation: coverage-pulse 1.85s ease-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.coverage-locations {
  display: grid;
  gap: 10px;
  padding: 14px 16px 16px;
  border-radius: 14px;
  border: 1px solid rgba(19, 52, 77, 0.08);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.94), rgba(238, 244, 248, 0.88));
}

.coverage-locations__label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-400);
}

.coverage-locations__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.coverage-location-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink-800);
  background: rgba(19, 52, 77, 0.06);
  border: 1px solid rgba(19, 52, 77, 0.08);
  font-size: 0.88rem;
  font-weight: 700;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.coverage-location-chip:hover,
.coverage-location-chip:focus-visible {
  background: rgba(19, 52, 77, 0.1);
  border-color: rgba(19, 52, 77, 0.14);
  transform: translateY(-1px);
}

.coverage-location-chip.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  border-color: rgba(234, 88, 12, 0.18);
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.16);
}

.coverage-location-chip[aria-current="page"] {
  cursor: default;
}

.video-wrap {
  width: 100%;
}

.hero--home .video-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  flex: 0 0 auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.hero--home .video-embed {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  box-shadow: 0 22px 48px rgba(5, 14, 23, 0.18);
}

@media (max-width: 1280px) {
  .hero--home .hero-container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero--home .hero-copy,
  .hero--home .hero-media {
    max-width: none;
    width: 100%;
    justify-self: stretch;
  }

  .service-capabilities-preview {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-capabilities-preview .component-models--inline {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px;
  }

  .service-capabilities-preview .component-models--inline .component-model {
    flex: 0 1 176px;
    max-width: none;
  }

  .service-section {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-container {
    grid-template-columns: 1fr;
  }

  .proof-badges {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  .contact-with-form {
    grid-template-columns: 1fr;
  }

  .service-showcase {
    grid-template-columns: 1fr;
  }

  .service-showcase__row {
    grid-template-columns: 1fr;
  }

  .service-showcase__diagram {
    border-right: 0;
    border-bottom: 1px solid var(--slate-200);
  }

  .service-showcase__pair img {
    min-height: 220px;
  }

  .market-section__grid {
    grid-template-columns: 1fr;
  }
}

.video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.ba-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.ba-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  background: linear-gradient(170deg, #ffffff, #eff4f8);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
}

.ba-pair figure {
  margin: 0;
  display: grid;
  gap: 8px;
}

.ba-pair img {
  width: 100%;
  height: clamp(260px, 32vw, 440px);
  object-fit: contain;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--slate-200);
  background: #f8fbfd;
  box-shadow: 0 14px 28px rgba(5, 14, 23, 0.12);
}

.ba-pair figcaption {
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-700);
  text-align: center;
}

.quote-form {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 16px;
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

input, select, textarea {
  width: 100%;
  font: inherit;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  padding: 10px;
  background: #fff;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(249, 115, 22, 0.45);
  outline-offset: 1px;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--steel-400);
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.site-footer {
  width: 100%;
  margin: 0 auto 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  color: var(--ink-700);
  font-size: 0.95rem;
}

.site-footer a {
  color: inherit;
}

.panel.reveal,
.split.reveal,
.contact.reveal {
  opacity: 0.68;
  transform: scale(0.97);
  transform-origin: center center;
  will-change: transform, opacity, box-shadow, border-color, filter;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    filter 0.28s ease;
  filter: saturate(0.9) brightness(0.97);
  box-shadow: 0 12px 24px rgba(5, 14, 23, 0.1);
  border-color: rgba(11, 34, 54, 0.08);
  z-index: 1;
}

.panel.reveal.is-focused,
.split.reveal.is-focused,
.contact.reveal.is-focused,
.panel.reveal[data-focus="active"],
.split.reveal[data-focus="active"],
.contact.reveal[data-focus="active"] {
  opacity: 1;
  transform: scale(1.02);
  filter: saturate(1.02) brightness(1);
  box-shadow: 0 20px 42px rgba(5, 14, 23, 0.16);
  border-color: rgba(249, 115, 22, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.94));
  z-index: 2;
}

@media (max-width: 940px) {
  .cards,
  .process-steps,
  .proof-badges,
  .media-grid,
  .stats-grid,
  .ba-gallery,
  .split,
  .contact-with-form {
    grid-template-columns: 1fr;
  }

  .service-section {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-flow {
    padding-left: 14px;
    padding-right: 14px;
  }

  .section-flow > section {
    padding-left: 20px;
  }

  .topbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 6px clamp(14px, 4vw, 22px);
  }

  .brand {
    grid-column: auto;
    justify-self: auto;
  }

  .brand-wrap {
    grid-column: auto;
    justify-self: auto;
    flex-wrap: wrap;
    gap: 8px;
    transform: none;
  }

  .brand-location-menu {
    width: 100%;
    margin-top: 0;
  }

  .brand-location-menu__panel {
    position: static;
    margin-top: 8px;
    min-width: 0;
  }

  .brand-logo {
    width: min(82vw, 360px);
  }

  .menu-btn {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(11, 34, 54, 0.22);
    font-weight: 700;
  }

  .site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0 2px;
  }

  .site-nav.open {
    display: flex;
  }

  .ba-pair {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero--home {
    grid-template-columns: 1fr;
  }

  .hero-container,
  .hero--home .hero-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero--home .hero-copy,
  .hero--home .hero-media {
    max-width: none;
    width: 100%;
    justify-self: stretch;
  }

  .component-models {
    grid-template-columns: 1fr 1fr;
  }

  .proof-badges {
    grid-template-columns: 1fr;
  }

  .component-models--inline {
    grid-template-columns: 1fr 1fr;
  }

  .service-capabilities-preview {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-capabilities-preview__copy {
    max-width: none;
  }

  .service-capabilities-preview .component-models--inline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .service-showcase__row {
    grid-template-columns: 1fr;
  }

  .market-section__header {
    gap: 8px;
  }

  .market-section__intro {
    max-width: none;
  }

  .market-section__grid {
    grid-template-columns: 1fr;
  }

  .market-card {
    transform: none;
    opacity: 1;
  }

  .market-card__media {
    height: clamp(220px, 52vw, 300px);
  }

  .blade-preview {
    grid-template-columns: 1fr;
  }

  .service-showcase {
    grid-template-columns: 1fr;
  }

  .service-showcase__diagram {
    border-right: 0;
    border-bottom: 1px solid var(--slate-200);
  }

  .service-showcase__pair img {
    min-height: 180px;
  }

  .panel.reveal,
  .split.reveal,
  .contact.reveal {
    opacity: 0.82;
    transform: scale(0.985);
  }

  .panel.reveal.is-focused,
  .split.reveal.is-focused,
  .contact.reveal.is-focused,
  .panel.reveal[data-focus="active"],
  .split.reveal[data-focus="active"],
  .contact.reveal[data-focus="active"] {
    transform: scale(1.006);
  }
}
