/* Aero decision-flow widgets: Spot-inspired structure, Aero-native styling. */
.aero-flow-spot {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: clamp(92px, 8vw, 132px) 5%;
  background: #050a26;
  color: #fff;
}

.aero-flow-spot--light {
  background: #f7f8fc;
  color: #0d1333;
}

.aero-flow-spot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(229, 4, 201, .16), rgba(149, 191, 249, .08) 46%, rgba(5, 10, 38, 0) 76%);
  opacity: .72;
  pointer-events: none;
}

.aero-flow-spot--light::before {
  background: linear-gradient(115deg, rgba(229, 4, 201, .07), rgba(43, 107, 214, .06) 48%, rgba(255, 255, 255, 0) 78%);
  opacity: 1;
}

.aero-flow-spot__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: clamp(52px, 6vw, 96px);
  align-items: center;
}

.aero-flow-spot__copy {
  max-width: 560px;
}

.aero-flow-spot__kicker {
  display: inline-block;
  margin-bottom: 18px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #95bff9;
}

.aero-flow-spot--light .aero-flow-spot__kicker {
  color: #2b6bd6;
}

.aero-flow-spot__title {
  margin: 0 0 clamp(18px, 2vw, 24px);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
  color: inherit;
}

.aero-flow-spot__title span {
  background: linear-gradient(135deg, #e504c9, #9b59d0, #95bff9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.aero-flow-spot__copy p {
  margin: 0 0 clamp(28px, 3vw, 42px);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.82;
  color: rgba(255, 255, 255, .68);
}

.aero-flow-spot--light .aero-flow-spot__copy p {
  color: #3d4564;
}

.aero-flow-spot__list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.aero-flow-spot__list li {
  position: relative;
  padding-left: 28px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.62;
  color: rgba(255, 255, 255, .72);
}

.aero-flow-spot--light .aero-flow-spot__list li {
  color: #38415f;
}

.aero-flow-spot__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #95bff9;
  box-shadow: 0 0 18px rgba(149, 191, 249, .65);
}

.aero-flow-card {
  position: relative;
  border: 1px solid rgba(149, 191, 249, .16);
  border-radius: 18px;
  background: rgba(9, 14, 45, .78);
  box-shadow: 0 36px 110px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .08);
  padding: clamp(22px, 2.2vw, 32px);
  overflow: hidden;
}

.aero-flow-spot--light .aero-flow-card {
  border-color: rgba(13, 19, 51, .1);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 26px 80px rgba(13, 19, 51, .13), inset 0 1px 0 rgba(255, 255, 255, .9);
}

.aero-flow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(229, 4, 201, .16), transparent 42%), radial-gradient(circle at 86% 72%, rgba(149, 191, 249, .16), transparent 44%);
  pointer-events: none;
}

.aero-flow-card__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.aero-flow-card__header strong {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
}

.aero-flow-spot--light .aero-flow-card__header strong {
  color: #38415f;
}

.aero-flow-card__header span {
  font-family: "JetBrains Mono", "SF Mono", Consolas, monospace;
  font-size: 11px;
  color: #95bff9;
}

.aero-flow-svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 760 / 430;
}

.aero-flow-svg .node rect {
  fill: #151a2f;
  stroke: rgba(255, 255, 255, .18);
  stroke-width: 2;
}

.aero-flow-spot--light .aero-flow-svg .node rect {
  fill: #fff;
  stroke: rgba(13, 19, 51, .14);
}

.aero-flow-svg .node text {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 800;
  fill: #fff;
}

.aero-flow-spot--light .aero-flow-svg .node text {
  fill: #0d1333;
}

.aero-flow-band {
  fill: none;
  stroke-linecap: round;
  opacity: .72;
  transition: opacity .24s ease, filter .24s ease, stroke-width .24s ease;
}

.aero-flow-card:hover .aero-flow-band {
  opacity: .34;
}

.aero-flow-card .aero-flow-band:hover {
  opacity: 1;
  filter: drop-shadow(0 0 14px rgba(149, 191, 249, .4));
  stroke-width: 34;
}

.aero-flow-band--blue {
  stroke: url(#aeroFlowBlue);
  stroke-width: 42;
}

.aero-flow-band--mag {
  stroke: url(#aeroFlowMag);
  stroke-width: 26;
}

.aero-flow-band--green {
  stroke: url(#aeroFlowGreen);
  stroke-width: 30;
}

.aero-flow-band--gold {
  stroke: url(#aeroFlowGold);
  stroke-width: 24;
}

.aero-flow-note {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .48);
}

.aero-flow-spot--light .aero-flow-note {
  color: #68708a;
}

.aero-flow-spot--compliance .aero-flow-spot__inner {
  max-width: 1280px;
  grid-template-columns: minmax(260px, .78fr) minmax(560px, 1.62fr);
  gap: clamp(48px, 5vw, 72px);
}

.aero-flow-spot--compliance .aero-flow-spot__copy {
  max-width: 470px;
}

.aero-flow-spot--compliance .aero-flow-spot__title {
  font-size: clamp(32px, 3.6vw, 50px);
}

.aero-flow-key {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.aero-flow-key li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, .68);
}

.aero-flow-key strong {
  color: #fff;
  font-weight: 700;
}

.aero-flow-key__dot {
  width: 11px;
  height: 11px;
  flex: none;
  border-radius: 50%;
}

.aero-flow-key__dot--blue {
  background: #6fa8ff;
  box-shadow: 0 0 12px rgba(111, 168, 255, .6);
}

.aero-flow-key__dot--green {
  background: #34c997;
  box-shadow: 0 0 12px rgba(52, 201, 151, .55);
}

.aero-flow-key__dot--purple {
  background: #c07be6;
  box-shadow: 0 0 12px rgba(192, 123, 230, .55);
}

.aero-flow-key__dot--pink {
  background: #de7bc6;
  box-shadow: 0 0 12px rgba(222, 123, 198, .55);
}

.aero-flow-key__dot--gold {
  background: #e6b24e;
  box-shadow: 0 0 12px rgba(230, 178, 78, .5);
}

.aero-flow-card--compliance {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(24, 36, 78, .52), rgba(8, 12, 34, .64));
  box-shadow: 0 44px 130px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .06);
  padding: 0;
}

.aero-flow-card--compliance::before {
  background: radial-gradient(circle at 88% 6%, rgba(192, 123, 230, .18), transparent 36%), radial-gradient(circle at 10% 92%, rgba(111, 168, 255, .16), transparent 38%);
}

.aero-flow-card--compliance .aero-flow-card__header {
  margin: 0;
  padding: 20px 26px 0;
}

.aero-flow-card--compliance .aero-flow-svg {
  aspect-ratio: 1110 / 452;
  padding: 0 26px 6px;
}

.aero-flow-card--compliance .aero-flow-note {
  margin: 0;
  padding: 13px 26px;
  border-top: 1px solid rgba(149, 191, 249, .12);
  font-family: "JetBrains Mono", "SF Mono", Consolas, monospace;
  font-size: 11px;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, .34);
}

.aero-flow-compliance-band {
  transition: opacity .22s ease, filter .22s ease;
}

.aero-flow-card--compliance:hover .aero-flow-compliance-band {
  opacity: .34;
}

.aero-flow-card--compliance .aero-flow-compliance-band:hover {
  opacity: 1;
  filter: drop-shadow(0 0 16px rgba(149, 191, 249, .36));
}

.aero-flow-compliance-tier {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .24em;
  fill: rgba(255, 255, 255, .32);
}

.aero-flow-compliance-node rect {
  fill: url(#parkingNodeGlass);
  stroke-width: 1.25;
}

.aero-flow-compliance-node--case rect {
  fill: url(#caseEvidenceNodeGlass);
}

.aero-flow-compliance-node__title {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  fill: #fff;
}

.aero-flow-compliance-node__sub {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  fill: rgba(255, 255, 255, .55);
}

.aero-flow-compliance-node__num {
  font-family: "JetBrains Mono", "SF Mono", Consolas, monospace;
  font-size: 15px;
  font-weight: 600;
}

.aero-flow-compliance-scan-pulse {
  animation: aeroFlowScanPulse 2.6s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes aeroFlowScanPulse {
  0% {
    opacity: .5;
    transform: scale(.5);
  }

  80%,
  100% {
    opacity: 0;
    transform: scale(3);
  }
}

@media (prefers-reduced-motion: reduce) {
  .aero-flow-compliance-scan-pulse {
    animation: none;
    opacity: .45;
  }
}

body.aero-dark-product-top .ar-dash .aero-flow-spot,
body.aero-dark-product-top .ar-intel .aero-flow-spot {
  font-family: "DM Sans", system-ui, sans-serif;
  padding: clamp(92px, 8vw, 132px) clamp(28px, 5vw, 80px) !important;
}

body.aero-dark-product-top .ar-dash .aero-flow-spot__title,
body.aero-dark-product-top .ar-intel .aero-flow-spot__title {
  font-family: "Playfair Display", Georgia, serif;
}

body.aero-dark-product-top .ar-dash .aero-flow-spot__inner,
body.aero-dark-product-top .ar-intel .aero-flow-spot__inner {
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.aero-dark-product-top .ar-dash .aero-flow-spot__title,
body.aero-dark-product-top .ar-intel .aero-flow-spot__title {
  margin: 0 0 clamp(18px, 2vw, 24px) !important;
}

body.aero-dark-product-top .ar-dash .aero-flow-spot__copy p,
body.aero-dark-product-top .ar-intel .aero-flow-spot__copy p {
  margin: 0 0 clamp(28px, 3vw, 42px) !important;
}

body.aero-dark-product-top .ar-dash .aero-flow-key,
body.aero-dark-product-top .ar-intel .aero-flow-key {
  margin: 30px 0 0 !important;
  padding: 0 !important;
}

body.aero-dark-product-top .ar-dash #parking-compliance-flow.aero-flow-spot {
  padding-left: clamp(34px, 5.4vw, 92px) !important;
  padding-right: clamp(34px, 5.4vw, 92px) !important;
}

body.aero-dark-product-top .ar-dash #parking-compliance-flow .aero-flow-spot__inner {
  max-width: 1360px;
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1.48fr);
  gap: clamp(46px, 4.8vw, 78px);
  align-items: start;
}

body.aero-dark-product-top .ar-dash #parking-compliance-flow .aero-flow-spot__copy {
  max-width: 500px;
  padding-top: clamp(8px, 1vw, 18px) !important;
}

body.aero-dark-product-top .ar-dash #parking-compliance-flow .aero-flow-card--compliance {
  width: 100%;
  min-width: 0;
  justify-self: stretch;
}

body.aero-dark-product-top .ar-dash #parking-compliance-flow .aero-flow-spot__title {
  font-size: clamp(34px, 3vw, 48px);
}

@media screen and (max-width: 1320px) {
  body.aero-dark-product-top .ar-dash #parking-compliance-flow .aero-flow-spot__inner {
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: clamp(36px, 4vw, 56px);
  }

  body.aero-dark-product-top .ar-dash #parking-compliance-flow .aero-flow-spot__copy {
    max-width: 430px;
  }

  body.aero-dark-product-top .ar-dash #parking-compliance-flow .aero-flow-spot__title {
    font-size: clamp(32px, 3.2vw, 42px);
  }
}

@media screen and (max-width: 1120px) {
  body.aero-dark-product-top .ar-dash #parking-compliance-flow.aero-flow-spot {
    padding-left: clamp(24px, 5vw, 48px) !important;
    padding-right: clamp(24px, 5vw, 48px) !important;
  }

  body.aero-dark-product-top .ar-dash #parking-compliance-flow .aero-flow-spot__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  body.aero-dark-product-top .ar-dash #parking-compliance-flow .aero-flow-spot__copy {
    max-width: 720px;
    padding-top: 0 !important;
  }
}

@media screen and (max-width: 980px) {
  .aero-flow-spot__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .aero-flow-spot__copy {
    max-width: 680px;
  }

  .aero-flow-card {
    padding: 20px;
  }

  .aero-flow-card--compliance {
    padding: 0;
  }

  .aero-flow-spot--compliance .aero-flow-spot__inner {
    grid-template-columns: 1fr;
  }

  .aero-flow-svg .node text {
    font-size: 15px;
  }

  .aero-flow-card .aero-flow-band:hover {
    stroke-width: 30;
  }
}

@media screen and (max-width: 640px) {
  .aero-flow-spot {
    padding: 78px 18px;
  }

  .aero-flow-card {
    border-radius: 14px;
    padding: 14px;
    overflow-x: auto;
  }

  .aero-flow-card--compliance {
    padding: 0;
  }

  .aero-flow-svg {
    min-width: 650px;
  }

  .aero-flow-card--compliance .aero-flow-svg {
    min-width: 860px;
  }

  .aero-flow-card__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .aero-flow-spot__title {
    font-size: clamp(30px, 10vw, 42px);
  }
}

/* Aero Intel metrics strip: centred, contained and rebuilt from scratch. */
.aero-metrics-strip {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  overflow: clip;
  padding: clamp(96px, 8vw, 140px) 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(229, 4, 201, .18), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(95, 214, 230, .13), transparent 36%),
    linear-gradient(180deg, #060929 0%, #050a26 100%);
  color: #fff;
  isolation: isolate;
}

.aero-metrics-strip *,
.aero-metrics-strip *::before,
.aero-metrics-strip *::after {
  box-sizing: border-box;
}

.aero-metrics-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(149, 191, 249, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(149, 191, 249, .04) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
  pointer-events: none;
}

.aero-metrics-strip::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(5, 10, 38, .72));
  pointer-events: none;
}

.aero-metrics-strip__panel {
  width: min(calc(100% - clamp(40px, 8vw, 128px)), 1240px);
  margin: 0 auto;
  padding: clamp(30px, 4.2vw, 56px);
  border: 1px solid rgba(149, 191, 249, .16);
  border-radius: 32px;
  background: linear-gradient(140deg, rgba(16, 25, 64, .82), rgba(5, 10, 31, .92));
  box-shadow:
    0 34px 90px rgba(0, 0, 0, .32),
    inset 0 1px 0 rgba(255, 255, 255, .06);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
}

.aero-metrics-strip__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 360px);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
}

.aero-metrics-strip__intro {
  min-width: 0;
}

.aero-metrics-strip__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 20px;
  padding: 7px 15px;
  border: 1px solid rgba(111, 168, 255, .28);
  border-radius: 999px;
  background: rgba(10, 16, 45, .58);
  color: #8fbeff;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.aero-metrics-strip__title {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.aero-metrics-strip__title span {
  background: linear-gradient(120deg, #9bbfff, #5fd6e6, #45d195);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.aero-metrics-strip__copy {
  max-width: 690px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .68);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(15px, 1.05vw, 16.5px);
  font-weight: 300;
  line-height: 1.75;
}

.aero-metrics-strip__summary {
  min-width: 0;
  padding: 22px 24px;
  border: 1px solid rgba(149, 191, 249, .15);
  border-radius: 22px;
  background: rgba(255, 255, 255, .055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
  font-family: "DM Sans", system-ui, sans-serif;
}

.aero-metrics-strip__summary span {
  display: block;
  color: rgba(255, 255, 255, .52);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.aero-metrics-strip__summary strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.1;
}

.aero-metrics-strip__summary p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.55;
}

.aero-metrics-strip__grid {
  display: grid;
  width: 100%;
  min-width: 0;
  margin-top: clamp(34px, 4vw, 52px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.aero-metrics-strip__card {
  --metric-accent: #6fa8ff;
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 176px;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(149, 191, 249, .15);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(24, 38, 82, .62), rgba(7, 12, 35, .72));
  box-shadow: 0 26px 72px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .06);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
}

.aero-metrics-strip__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--metric-accent);
  opacity: .72;
}

.aero-metrics-strip__label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .5);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.aero-metrics-strip__label::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--metric-accent);
  box-shadow: 0 0 9px var(--metric-accent);
}

.aero-metrics-strip__number {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 17px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 2.9vw, 46px);
  font-weight: 500;
  line-height: 1;
}

.aero-metrics-strip__unit {
  color: var(--metric-accent);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.aero-metrics-strip__sub {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .56);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12.5px;
  line-height: 1.45;
}

.aero-metrics-strip__viz {
  display: flex;
  width: 100%;
  min-width: 0;
  height: 50px;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 18px;
}

.aero-metrics-strip__viz svg {
  display: block;
  width: 100%;
  max-width: 100%;
}

.aero-metrics-strip__spark-line {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: aeroMetricsDraw 1.7s cubic-bezier(.2, .8, .2, 1) .2s forwards;
}

.aero-metrics-strip__spark-area {
  opacity: 0;
  animation: aeroMetricsFade .9s ease .55s forwards;
}

.aero-metrics-strip__bar {
  transform: scaleY(.08);
  transform-box: fill-box;
  transform-origin: bottom;
  animation: aeroMetricsRise .9s cubic-bezier(.2, .8, .2, 1) forwards;
}

.aero-metrics-strip__target-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: aeroMetricsPulse 2.6s ease-out infinite;
}

.aero-metrics-strip__uptime-track {
  width: 100%;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(149, 191, 249, .12);
}

.aero-metrics-strip__uptime-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6fa8ff, #34c997);
  box-shadow: 0 0 12px rgba(111, 168, 255, .5);
  animation: aeroMetricsFill 1.5s cubic-bezier(.2, .8, .2, 1) .3s forwards;
}

@keyframes aeroMetricsDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes aeroMetricsFade {
  to { opacity: 1; }
}

@keyframes aeroMetricsRise {
  to { transform: scaleY(1); }
}

@keyframes aeroMetricsFill {
  to { width: 99.9%; }
}

@keyframes aeroMetricsPulse {
  0% {
    opacity: .55;
    transform: scale(.5);
  }

  80%,
  100% {
    opacity: 0;
    transform: scale(2.6);
  }
}

@media (prefers-reduced-motion: reduce) {
  .aero-metrics-strip__spark-line,
  .aero-metrics-strip__spark-area,
  .aero-metrics-strip__bar,
  .aero-metrics-strip__uptime-fill,
  .aero-metrics-strip__target-pulse {
    animation: none;
  }

  .aero-metrics-strip__spark-line {
    stroke-dashoffset: 0;
  }

  .aero-metrics-strip__spark-area {
    opacity: 1;
  }

  .aero-metrics-strip__bar {
    transform: scaleY(1);
  }

  .aero-metrics-strip__uptime-fill {
    width: 99.9%;
  }
}

@media screen and (max-width: 1180px) {
  .aero-metrics-strip__panel {
    width: min(calc(100% - 40px), 920px);
  }

  .aero-metrics-strip__header {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .aero-metrics-strip__summary {
    max-width: none;
  }

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

@media screen and (max-width: 720px) {
  .aero-metrics-strip {
    padding: 72px 0;
  }

  .aero-metrics-strip__panel {
    width: min(calc(100% - 28px), 560px);
    padding: 22px;
    border-radius: 24px;
  }

  .aero-metrics-strip__title {
    font-size: clamp(34px, 11vw, 44px);
  }

  .aero-metrics-strip__copy {
    font-size: 14.5px;
  }

  .aero-metrics-strip__grid {
    grid-template-columns: 1fr;
  }

  .aero-metrics-strip__card {
    min-height: 160px;
  }
}
