:root {
  --blue: #009fe3;
  --blue-strong: #0077b6;
  --brand-sky: #27aae1;
  --brand-deep-blue: #00609c;
  --brand-ice-blue: #b0e1f3;
  --cyan: #4bd8ff;
  --ink: #11212b;
  --ink-2: #23333d;
  --paper: #f6fafb;
  --white: #ffffff;
  --muted: #5f727d;
  --line: #d7e5ea;
  --green: #00a66c;
  --amber: #f2a900;
  --charcoal: #0c151a;
  --shadow: 0 20px 55px rgba(17, 33, 43, 0.15);
  --max: 1180px;
  --header-height: 159px;
  --hero-progress: 0;
  --hero-content-opacity: 1;
  --hero-content-y: 0px;
  --hero-video-scale: 1.035;
  --hero-video-x: 0%;
  --hero-video-y: 0%;
  --hero-ring-scale: 0.86;
  --hero-blueprint-opacity: 0.22;
  --hero-overlay-x: 68.9%;
  --hero-label-opacity: 1;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.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 {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 110;
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-mega-open,
.site-header.is-menu-open {
  background: rgba(8, 31, 43, 0.92);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.announcement {
  position: relative;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #20b5e9 0%, #0077b6 100%);
  font-size: 14px;
  font-weight: 700;
}

.announcement-toggle,
.mobile-search-button {
  display: none;
}

.announcement a {
  position: absolute;
  left: 0;
  right: 420px;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
}

.announcement span {
  text-transform: uppercase;
}

.announcement span::after {
  content: "›";
  padding-left: 8px;
  font-size: 19px;
  line-height: 0;
}

.utility-bar {
  position: absolute;
  inset: 0 0 auto 0;
  min-height: 50px;
  background: transparent;
  border-bottom: 0;
}

.inline-search {
  position: absolute;
  top: 8px;
  right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  z-index: 4;
  width: min(572px, calc(100vw - 380px));
  height: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(5, 52, 88, 0.76);
  color: var(--white);
  opacity: 0;
  transform: scaleX(0.18);
  transform-origin: right center;
  pointer-events: none;
  transition: opacity 160ms ease, transform 180ms ease;
}

.site-header.is-search-open .inline-search {
  opacity: 1;
  transform: scaleX(1);
  pointer-events: auto;
}

.inline-search svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.inline-search input {
  min-width: 0;
  width: 100%;
  height: 100%;
  border: 0;
  color: var(--white);
  background: transparent;
  outline: none;
  font-size: 18px;
}

.inline-search input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.inline-search button {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
}

.site-header.is-search-open .utility-links > a,
.site-header.is-search-open .utility-links > .icon-button {
  opacity: 0;
  pointer-events: none;
}

.utility-links {
  max-width: var(--max);
  min-height: 50px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
}

.utility-links a,
.main-menu a,
.main-menu button {
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.utility-links a:hover,
.main-menu a:hover,
.main-menu button:hover {
  color: #c7f4ff;
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: currentColor;
  background: transparent;
  display: inline-grid;
  place-items: center;
}

.icon-button:hover {
  background: rgba(255, 255, 255, 0.13);
}

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

.primary-nav {
  max-width: var(--max);
  min-height: 109px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 162px;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 800;
}

.brand-kicker {
  font-size: 24px;
  font-weight: 700;
}

.brand-name {
  font-size: 15px;
  margin-top: 5px;
  word-spacing: 4px;
}

.main-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
}

.mobile-submenu {
  display: none;
}

.main-menu button {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: inherit;
}

.demo-link {
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 4px;
  color: var(--blue-strong);
  background: var(--white);
  text-transform: uppercase;
  font-size: 14px;
}

.demo-link:hover {
  color: var(--ink);
  border-color: var(--white);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.14);
  color: var(--white);
  place-items: center;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mega-panel {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 158px;
  width: auto;
  transform: translateY(-6px);
  opacity: 0;
  pointer-events: none;
  z-index: 8;
  transition: opacity 180ms ease, transform 180ms ease;
}

.mega-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 0.82fr) minmax(360px, 1fr);
  min-height: 394px;
  gap: 0;
  padding: 40px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.99);
  border-radius: 0;
  box-shadow: none;
}

.mega-overview {
  padding-right: 46px;
  border-right: 1px solid var(--line);
}

.mega-overview h3 {
  margin: 0 0 12px;
  color: #285f7a;
  font-size: 28px;
  line-height: 1.1;
}

.mega-overview p {
  max-width: 410px;
  margin: 0 0 22px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.55;
}

.mega-overview .button {
  min-width: 178px;
  background: #47a9df;
  color: var(--white);
}

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

.mega-link-groups {
  display: grid;
  gap: 20px;
  align-content: start;
  padding: 0 40px;
}

.mega-list a {
  display: block;
  padding: 0;
  border-radius: 0;
  color: #285f7a;
  font-size: 18px;
  font-weight: 800;
}

.mega-list a:hover {
  background: transparent;
  color: var(--blue);
}

.mega-list a.mega-sub {
  margin-top: -6px;
  color: #566b76;
  font-size: 15px;
  font-weight: 500;
}

.mega-resource-card {
  display: grid;
  align-content: start;
  background: #eff5f8;
  min-height: 312px;
}

.mega-resource-image {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background: var(--ink);
}

.mega-resource-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-resource-image span {
  position: absolute;
  top: 0;
  right: 0;
  padding: 17px 35px;
  color: var(--white);
  background: #68b540;
  font-weight: 800;
}

.mega-resource-card h4 {
  margin: 0;
  color: #285f7a;
  font-size: 19px;
  line-height: 1.3;
}

.mega-resource-card a {
  display: grid;
  gap: 0;
  padding: 0;
  color: #285f7a;
  font-weight: 800;
}

.mega-resource-body {
  padding: 20px 0 28px;
}

.read-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  color: #47a9df;
  text-transform: uppercase;
}

.page-shade {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(5, 20, 32, 0.76);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.page-shade.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.hero-scroll-stage {
  position: relative;
  min-height: 188vh;
  background: var(--brand-deep-blue);
}

.hero {
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  display: flex;
  align-items: center;
}

.hero-media-stack {
  position: absolute;
  inset: 0;
  z-index: -5;
  overflow: hidden;
  background: var(--ink);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(var(--hero-video-scale, 1.035)) translate3d(var(--hero-video-x, 0%), var(--hero-video-y, 0%), 0);
  filter: saturate(0.82) contrast(1.04) brightness(0.92);
  will-change: transform;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.06) translate3d(0, 0, 0);
  filter: saturate(0.9) contrast(1.05);
  transition: opacity 1800ms ease;
  will-change: opacity, transform;
}

.hero-video + .hero-media {
  opacity: 0;
}

.hero-media.is-active {
  opacity: 1;
  animation: heroDrift 10s linear forwards;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background: #169bd3;
  mix-blend-mode: color;
  opacity: 0.96;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(0, 96, 156, 0.42) 0%, rgba(0, 96, 156, 0.88) 100%),
    radial-gradient(circle at var(--hero-overlay-x, 68.9%) 50%, rgba(176, 225, 243, 0.18) 0, rgba(0, 96, 156, 0.08) 31%, rgba(0, 96, 156, 0) 47%);
}

.hero-focus-rings {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-focus-rings span {
  position: absolute;
  top: 50%;
  left: 68.9%;
  border: 1px solid rgba(39, 170, 225, 0.34);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(var(--hero-ring-scale, 0.86));
  transition: transform 80ms linear;
}

.hero-focus-rings span:nth-child(1) {
  width: 800px;
  height: 800px;
  border-color: rgba(39, 170, 225, 0.75);
}

.hero-focus-rings span:nth-child(2) {
  width: 920px;
  height: 920px;
  animation-delay: 0.25s;
}

.hero-focus-rings span:nth-child(3) {
  width: 1040px;
  height: 1040px;
  border-color: rgba(39, 170, 225, 0.25);
  animation-delay: 0.5s;
}

.hero-focus-rings span:nth-child(4) {
  width: 1160px;
  height: 1160px;
  border-color: rgba(39, 170, 225, 0.2);
  animation-delay: 0.75s;
}

.hero-blueprint {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: var(--hero-blueprint-opacity, 0.22);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at 42% 62%, black, transparent 58%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1620px;
  margin: 0 auto;
  padding: calc(var(--header-height) + 56px) 200px 58px;
  opacity: var(--hero-content-opacity, 1);
  transform: translate3d(0, var(--hero-content-y, 0px), 0);
  will-change: opacity, transform;
}

.hero-eyebrow {
  max-width: 1010px;
  margin: 0 0 28px;
  font-size: clamp(38px, 1.98vw, 38px);
  line-height: 48px;
  font-weight: 400;
}

.hero h1 {
  max-width: 85vw;
  margin: 0;
  font-size: 110px;
  line-height: 1.2;
  font-weight: 500;
  text-wrap: balance;
}

.hero-copy {
  max-width: 1010px;
  margin: 34px 0 0;
  font-size: 38px;
  line-height: 48px;
  font-weight: 400;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-light {
  color: var(--blue-strong);
  background: var(--white);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.hotspot {
  position: absolute;
  z-index: 3;
  width: 51px;
  height: 51px;
  border: 1px solid rgba(39, 170, 225, 0.5);
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  transition: background 160ms ease, transform 160ms ease;
}

.hotspot::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  left: 50%;
  top: 50%;
  background: rgba(176, 225, 243, 0.5);
  border: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulseRing 2.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0.175s infinite;
}

.hotspot::before {
  content: "";
  position: absolute;
  width: 19px;
  height: 19px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  background: var(--brand-ice-blue);
  border: 1px solid rgba(255, 255, 255, 0.72);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 8px rgba(176, 225, 243, 0.28);
  animation: pulseDot 2.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0.5s infinite;
}

.hotspot:hover,
.hotspot.is-active {
  background: rgba(255, 255, 255, 0.14);
  transform: scale(1.04);
}

.hotspot-a {
  left: 10%;
  top: 49%;
}

.hotspot-b {
  right: 24%;
  bottom: 12%;
}

.hotspot-c {
  right: 25%;
  top: 44%;
}

.hotspot-label {
  position: absolute;
  z-index: 4;
  right: 8%;
  bottom: 5%;
  max-width: 270px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  background: rgba(5, 34, 48, 0.38);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  opacity: var(--hero-label-opacity, 1);
  transform: translate3d(0, var(--hero-label-y, 0px), 0);
  transition: opacity 120ms ease, transform 120ms ease;
}

.hero-frame {
  position: absolute;
  z-index: 2;
  width: 238px;
  height: 92px;
  border: 2px dashed rgba(255, 255, 255, 0.62);
  pointer-events: none;
  will-change: transform, opacity;
}

.frame-left {
  left: -96px;
  bottom: 35%;
  transform: translate3d(var(--hero-frame-left-x, 0px), var(--hero-frame-left-y, 0px), 0);
}

.frame-right {
  right: 15%;
  bottom: 2%;
  transform: translate3d(var(--hero-frame-right-x, 0px), var(--hero-frame-right-y, 0px), 0);
}

.hero-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  height: 12px;
  background: #005e98;
}

.hero-progress-inner {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  width: 100%;
  background: linear-gradient(90deg, #27aae1 0%, #6acffa 100%);
  transform: scaleX(var(--hero-progress, 0));
  transform-origin: left center;
  transition: transform 80ms linear;
}

.hero-progress-inner::after,
.progress-dot {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-ice-blue);
  border: 5px solid rgba(22, 155, 211, 0.5);
  box-sizing: content-box;
  transform: translate(-50%, -50%);
}

.hero-progress-inner::after {
  right: 0;
  transform: translate(50%, -50%);
}

.progress-dot {
  background: #fff;
  border: 1px solid var(--brand-sky);
  opacity: 0.52;
  transition: opacity 120ms ease, background 120ms ease, box-shadow 120ms ease;
}

.progress-dot.is-passed {
  opacity: 1;
  background: var(--brand-ice-blue);
  box-shadow: 0 0 0 8px rgba(176, 225, 243, 0.28);
}

.progress-dot-a {
  left: 33.333%;
}

.progress-dot-b {
  left: 66.666%;
}

.progress-dot-c {
  left: 100%;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--charcoal);
  color: var(--white);
}

.proof-strip div {
  padding: 26px 28px;
  min-height: 104px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-strip strong {
  display: block;
  color: var(--cyan);
  font-size: 32px;
  line-height: 1;
}

.proof-strip span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 28px;
}

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

.heading-split {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--blue-strong);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section h2,
.platform-band h2,
.case-band h2,
.cta-section h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.12;
  font-weight: 800;
  color: var(--ink);
  text-wrap: balance;
}

.section h3,
.solution-card h3,
.application-grid h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.section p,
.solution-card p,
.application-grid p,
.platform-band p,
.case-band p,
.cta-section p {
  color: var(--muted);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.intro-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.intro-grid span {
  display: block;
  margin-bottom: 36px;
  color: var(--amber);
  font-size: 38px;
  font-weight: 800;
}

.intro-grid p {
  margin-bottom: 0;
}

.products-section {
  max-width: none;
  background: var(--paper);
}

.products-section > .section-heading,
.product-layout {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 36px;
  align-items: stretch;
}

.product-visual {
  min-height: 530px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-list {
  display: grid;
  gap: 12px;
  align-content: start;
}

.product-tab {
  width: 100%;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
}

.product-tab span {
  display: block;
  font-size: 20px;
  font-weight: 800;
}

.product-tab small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.product-tab.is-active {
  border-color: var(--blue);
  box-shadow: inset 5px 0 0 var(--blue);
}

.tab-panel {
  padding: 26px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), #15566f);
}

.tab-panel h3 {
  color: var(--white);
}

.tab-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.tab-panel a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--cyan);
  font-weight: 800;
}

.text-link {
  color: var(--blue-strong);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  white-space: nowrap;
}

.text-link::after {
  content: " ›";
}

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

.solution-card {
  min-height: 430px;
  padding: 0;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.solution-card:nth-child(2) {
  background: #0a6d8f;
}

.solution-card:nth-child(3) {
  background: #14523f;
}

.solution-card:nth-child(4) {
  background: #684a13;
}

.solution-card img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  background: var(--ink);
}

.solution-number,
.solution-card h3,
.solution-card p {
  margin-left: 28px;
  margin-right: 28px;
}

.solution-number {
  margin-top: 24px;
}

.solution-card h3 {
  color: var(--white);
  margin-top: 26px;
}

.solution-card p {
  color: rgba(255, 255, 255, 0.78);
}

.solution-card a {
  margin: auto 28px 28px;
  color: var(--white);
  font-weight: 800;
}

.solution-card a::after {
  content: " ›";
}

.solution-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-weight: 800;
}

.platform-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 46px;
  padding: 98px max(28px, calc((100vw - var(--max)) / 2 + 28px));
  background: linear-gradient(135deg, #eef8fb 0%, #ffffff 48%, #eff6ef 100%);
}

.platform-content {
  max-width: 680px;
}

.platform-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.platform-image {
  margin: 34px 0 0;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  box-shadow: 0 18px 40px rgba(17, 33, 43, 0.14);
}

.platform-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.platform-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.platform-metrics div {
  min-height: 150px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(17, 33, 43, 0.08);
}

.platform-metrics strong {
  display: block;
  font-size: 28px;
}

.platform-metrics span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.industry-marquee {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.industry-marquee span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-weight: 700;
}

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

.application-grid article,
.application-grid a {
  min-height: 330px;
  padding: 0 24px 24px;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
  overflow: hidden;
  display: grid;
  align-content: start;
}

.application-grid img {
  width: calc(100% + 48px);
  height: 148px;
  margin: 0 -24px 22px;
  object-fit: cover;
  background: var(--ink);
}

.application-grid a:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(17, 33, 43, 0.1);
}

.brands-section {
  max-width: none;
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  background: var(--charcoal);
}

.brands-section .section-heading {
  max-width: 780px;
}

.brands-section h2 {
  color: var(--white);
}

.brands-section .eyebrow {
  color: var(--cyan);
}

.brand-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.brand-wall a {
  min-height: 92px;
  padding: 24px;
  display: flex;
  align-items: center;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 20px;
  font-weight: 800;
}

.brand-wall a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.case-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 44px;
  padding: 98px max(28px, calc((100vw - var(--max)) / 2 + 28px));
  background: var(--paper);
  align-items: center;
}

.case-copy {
  grid-row: span 2;
}

.case-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  box-shadow: 0 18px 40px rgba(17, 33, 43, 0.14);
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-stack {
  display: grid;
  gap: 14px;
}

.case-stack a {
  padding: 24px 28px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 22px;
  font-weight: 800;
}

.case-stack a::after {
  content: " ›";
  color: var(--blue-strong);
}

.knowledge-section {
  background: var(--white);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.guide-grid a {
  min-height: 112px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-size: 22px;
  font-weight: 800;
  isolation: isolate;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.guide-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(135deg, rgba(0, 96, 156, 0.86), rgba(17, 33, 43, 0.78)),
    var(--guide-image);
  background-size: cover;
  background-position: center;
  transition: transform 240ms ease;
}

.guide-grid a::after {
  content: "";
  position: absolute;
  inset: auto 20px 20px 20px;
  z-index: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
}

.guide-grid a:hover::before {
  transform: scale(1.04);
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 44px;
  align-items: center;
  padding: 92px max(28px, calc((100vw - var(--max)) / 2 + 28px));
  color: var(--white);
  background: linear-gradient(135deg, #0077b6 0%, #0f513f 100%);
}

.cta-section h2,
.cta-section .eyebrow {
  color: var(--white);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.78);
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.inquiry-form label,
.inquiry-form span {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-weight: 800;
}

.inquiry-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
}

.page-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 86px) max(28px, calc((100vw - var(--max)) / 2 + 28px)) 86px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 0.68;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 33, 49, 0.9), rgba(0, 96, 156, 0.66) 48%, rgba(0, 96, 156, 0.36)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 96, 156, 0.52));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 1.02;
  font-weight: 800;
  text-wrap: balance;
}

.page-hero p {
  max-width: 780px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 22px;
  line-height: 1.48;
}

.page-main {
  background: var(--white);
}

.page-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 84px 28px;
}

.page-section.is-muted {
  max-width: none;
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  background: var(--paper);
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 48px;
  align-items: start;
}

.page-copy h2,
.page-section h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.12;
  text-wrap: balance;
}

.page-copy h3 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
}

.page-copy p,
.page-copy li,
.page-card p,
.faq-list p {
  color: var(--muted);
}

.page-copy ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.side-panel {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(17, 33, 43, 0.08);
}

.side-panel strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.side-panel a {
  color: var(--blue-strong);
  font-weight: 800;
}

.page-media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  aspect-ratio: 16 / 9;
}

.page-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-proof .section-heading {
  margin-bottom: 28px;
}

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

.visual-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(17, 33, 43, 0.08);
}

.visual-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--ink);
}

.visual-card figcaption {
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 800;
}

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

.page-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.page-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 22px;
}

.page-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue-strong);
  font-weight: 800;
}

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

.faq-item {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-item h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 19px;
}

.faq-item p {
  margin: 0;
}

.related-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.related-list a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
}

.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 42px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #00609c 0%, #0c151a 100%);
}

.page-cta h2 {
  margin: 0;
  color: var(--white);
}

.page-cta p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.directory-grid a {
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.directory-grid a:hover {
  border-color: var(--blue);
  color: var(--blue-strong);
}

.site-footer {
  color: var(--white);
  background: var(--charcoal);
  padding: 64px max(28px, calc((100vw - var(--max)) / 2 + 28px)) 28px;
}

.footer-brand {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 42px 0;
}

.footer-grid h3 {
  margin: 0 0 16px;
  font-size: 16px;
  color: var(--cyan);
}

.footer-grid a {
  display: block;
  margin: 11px 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    transform: scale(0.64);
    opacity: 1;
  }
  100% {
    transform: scale(1.28);
    opacity: 0;
  }
}

@keyframes pulseRing {
  0% {
    width: 18.7px;
    height: 18.7px;
    opacity: 0;
  }
  20% {
    width: 18.7px;
    height: 18.7px;
    opacity: 1;
  }
  80%,
  100% {
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}

@keyframes pulseDot {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  25% {
    transform: translate(-50%, -50%) scale(1.1);
  }
  50%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes heroVideoDrift {
  0% {
    transform: scale(1.035) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.095) translate3d(-1.6%, -0.8%, 0);
  }
}

@keyframes heroRingBreath {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.84);
    opacity: 0.78;
  }
  45% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 1;
  }
}

@keyframes heroProgress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes heroDrift {
  0% {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.16) translate3d(-1.8%, -1.2%, 0);
  }
}

@media (max-width: 1679px) {
  .hero-content {
    max-width: 1140px;
    padding-left: 115px;
    padding-right: 15px;
  }

  .hero h1 {
    font-size: 70px;
  }
}

@media (max-width: 1120px) {
  .utility-links,
  .primary-nav {
    padding-left: 24px;
    padding-right: 24px;
  }

  .inline-search {
    right: 24px;
  }

  .main-menu {
    gap: 16px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 50px;
    line-height: 80px;
  }

  .hero-copy,
  .hero-eyebrow {
    font-size: 28px;
    line-height: 38px;
  }

  .solution-grid,
  .application-grid,
  .brand-wall {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 880px) {
  .announcement {
    min-height: 50px;
    justify-content: space-between;
    padding: 0 15px;
    font-size: 12px;
    text-align: center;
  }

  .announcement a {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 50px;
    z-index: 11;
    justify-content: center;
    padding: 14px 18px;
    background: #2b9add;
  }

  .site-header.is-announcement-open .announcement a {
    display: flex;
  }

  .announcement-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.74);
    font-weight: 400;
  }

  .announcement-toggle::after {
    content: "⌄";
    font-size: 15px;
    line-height: 1;
  }

  .mobile-search-button {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border: 0;
    color: var(--white);
    background: transparent;
  }

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

  .utility-bar {
    min-height: 0;
    border: 0;
    background: transparent;
  }

  .utility-links {
    display: none;
  }

  .inline-search {
    top: 8px;
    left: 56px;
    right: 56px;
    width: auto;
    background: rgba(16, 63, 99, 0.92);
  }

  .primary-nav {
    min-height: 93px;
    padding-left: 15px;
    padding-right: 15px;
    background: rgba(9, 34, 51, 0.58);
  }

  .menu-button {
    display: block;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .main-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 143px;
    display: none;
    align-items: stretch;
    min-height: calc(100vh - 143px);
    padding: 24px 30px 110px;
    border-radius: 0;
    background: var(--white);
    color: #2d607c;
    box-shadow: none;
    overflow-y: auto;
  }

  .main-menu.is-open {
    display: grid;
    gap: 0;
    align-content: start;
  }

  .site-header.is-menu-open .inline-search {
    opacity: 0;
    transform: scaleX(0.18);
    pointer-events: none;
    transition: none;
  }

  .main-menu a,
  .main-menu button {
    width: 100%;
    min-height: 52px;
    text-align: left;
    color: #2d607c;
    font-size: 21px;
    font-weight: 400;
  }

  .nav-item > button {
    position: relative;
    padding-left: 30px;
  }

  .nav-item > button::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #3f9ec9;
    font-size: 24px;
    transition: transform 160ms ease;
  }

  .nav-item.is-expanded > button::before {
    transform: translateY(-50%) rotate(90deg);
  }

  .mobile-submenu {
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding-left: 30px;
    transition: max-height 240ms ease;
  }

  .nav-item.is-expanded .mobile-submenu {
    max-height: 520px;
    padding-bottom: 12px;
  }

  .mobile-submenu a {
    min-height: 36px;
    color: #5f727d;
    font-size: 16px;
  }

  .main-menu > a:not(.demo-link) {
    padding-left: 30px;
  }

  .demo-link {
    order: -1;
    width: 100%;
    min-height: 38px;
    justify-content: center;
    margin-bottom: 16px;
    border-color: #8abfd8;
    color: var(--blue-strong);
    font-size: 14px;
    font-weight: 800;
  }

  .mega-panel {
    display: none;
  }

  .hero-scroll-stage {
    min-height: 128vh;
  }

  .hero {
    min-height: 820px;
    align-items: flex-end;
  }

  .hero-content {
    width: 100%;
    margin: 0;
    padding: 0 15px 94px;
    text-align: center;
  }

  .hero h1 {
    max-width: 345px;
    margin: 0 auto;
    font-size: 25px;
    line-height: 35px;
    font-weight: 500;
  }

  .hero-copy,
  .hero-eyebrow {
    max-width: 345px;
    margin-left: auto;
    margin-right: auto;
    font-size: 22px;
    line-height: 32px;
  }

  .hero-eyebrow {
    margin-bottom: 42px;
  }

  .hero-copy {
    margin-top: 25px;
  }

  .hero-actions {
    display: grid;
    max-width: 345px;
    margin-left: auto;
    margin-right: auto;
  }

  .frame-left,
  .frame-right,
  .hotspot-label {
    display: none;
  }

  .hotspot-a {
    left: 18%;
    top: 58%;
  }

  .hotspot-b {
    right: 16%;
    bottom: 18%;
  }

  .hotspot-c {
    right: 20%;
    top: 38%;
  }

  .hero-focus-rings,
  .hero-progress {
    display: none;
  }

  .proof-strip,
  .intro-grid,
  .product-layout,
  .platform-band,
  .case-band,
  .guide-grid,
  .page-grid,
  .visual-grid,
  .card-grid,
  .directory-grid,
  .page-cta,
  .cta-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 520px;
    padding: calc(var(--header-height) + 46px) 20px 62px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .page-hero p {
    font-size: 19px;
  }

  .page-section,
  .page-section.is-muted {
    padding: 64px 20px;
  }

  .side-panel {
    position: static;
  }

  .case-copy {
    grid-row: auto;
  }

  .product-layout {
    gap: 22px;
  }

  .product-visual {
    min-height: 360px;
  }

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

  .footer-brand,
  .footer-bottom,
  .heading-split {
    display: grid;
  }

}

@media (max-width: 560px) {
  .brand {
    min-width: 132px;
  }

  .brand-kicker {
    font-size: 20px;
  }

  .brand-name {
    font-size: 13px;
  }

  .hero-scroll-stage {
    min-height: 112vh;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-media {
    object-position: 62% center;
  }

  .hero-video {
    object-position: 60% center;
  }

  .hero-content {
    width: 100%;
    padding: 0 15px 94px;
  }

  .hero h1 {
    font-size: 25px;
    line-height: 35px;
    overflow-wrap: normal;
  }

  .hero-copy,
  .hero-eyebrow {
    font-size: 22px;
    line-height: 32px;
  }

  .hotspot {
    display: none;
  }

  .frame-left {
    display: block;
    left: -78px;
    top: 43%;
    bottom: auto;
    width: 182px;
    height: 72px;
  }

  .hotspot.hotspot-a {
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .hotspot.hotspot-a:hover,
  .hotspot.hotspot-a.is-active {
    transform: translate(-50%, -50%) scale(1.04);
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    max-width: 345px;
  }

  .section {
    padding: 72px 20px;
  }

  .section h2,
  .platform-band h2,
  .case-band h2,
  .cta-section h2 {
    font-size: 34px;
  }

  .solution-grid,
  .application-grid,
  .brand-wall,
  .platform-metrics {
    grid-template-columns: 1fr;
  }

  .solution-card img,
  .application-grid img,
  .visual-card img {
    height: 210px;
  }

  .proof-strip div {
    min-height: auto;
  }

  .product-visual {
    min-height: 280px;
  }

  .platform-band,
  .case-band,
  .cta-section,
  .site-footer,
  .brands-section {
    padding-left: 20px;
    padding-right: 20px;
  }
}

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