/* Homepage hero uses the supplied visual directly so its dashboard stays exact. */
:root {
  --home-surface: rgba(12, 35, 53, .78);
  --home-surface-strong: rgba(14, 43, 65, .92);
  --home-line: rgba(119, 195, 235, .24);
  --home-glow: rgba(91, 184, 255, .22);
  --home-ease: cubic-bezier(.22, 1, .36, 1);
}

body {
  background:
    radial-gradient(circle at 78% 10%, rgba(23, 91, 139, .12), transparent 28rem),
    linear-gradient(180deg, #06131f 0%, #05111b 46%, #071722 100%);
}

::selection {
  color: #04111d;
  background: #65e6dc;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(101, 230, 220, .9);
  outline-offset: 4px;
}

.hero {
  min-height: 660px;
}

.hero-backdrop {
  background:
    radial-gradient(circle at 78% 38%, rgba(20, 96, 148, .24), transparent 32%),
    linear-gradient(90deg, #04111d 0%, rgba(4, 17, 29, .87) 42%, rgba(4, 15, 26, .5) 100%);
  background-position: center, center;
  background-size: auto, auto;
  background-repeat: no-repeat, no-repeat;
  opacity: 1;
}

.hero-city-layer {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background:
    linear-gradient(0deg, rgba(4, 17, 29, .76), rgba(4, 17, 29, .08) 72%),
    url("./assets/optimized/hero/city-night.webp") center bottom / 100% auto no-repeat;
  opacity: .62;
  pointer-events: none;
}

.hero-backdrop::before {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 45%;
  content: "";
  background: linear-gradient(
    90deg,
    #04111d 0%,
    #04111d 86%,
    rgba(4, 17, 29, .94) 91%,
    rgba(4, 17, 29, .58) 96%,
    transparent 100%
  );
}

.hero-backdrop::after {
  z-index: 2;
  background: linear-gradient(0deg, var(--bg) 0%, rgba(6, 19, 31, .88) 4%, transparent 23%);
  opacity: 1;
}

.hero-grid-lines {
  display: block;
  z-index: 1;
  opacity: .045;
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, transparent 0%, black 35%, transparent 100%);
}

.dashboard-wrap {
  display: block;
  width: min(100%, 720px);
  max-width: 720px;
  justify-self: end;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(137, 214, 255, .62);
  border-radius: 12px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .48), 0 0 34px var(--home-glow);
  cursor: pointer;
  transform: perspective(1400px) rotateY(-15deg) rotateZ(-1.1deg);
  transform-origin: 84% 50%;
  transition: clip-path .45s var(--home-ease), transform .45s var(--home-ease), box-shadow .35s ease, border-color .3s ease;
}

.hero .dashboard-wrap:hover,
.dashboard-wrap:focus-within {
  box-shadow: 0 32px 90px rgba(0, 0, 0, .56), 0 0 42px rgba(91, 184, 255, .3);
  border-color: rgba(139, 233, 225, .86);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.hero-dashboard-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 570px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero .reveal {
    transition: opacity 1.05s ease, transform 1.05s var(--home-ease);
  }

  .hero .reveal-delay {
    transition-delay: .1s;
  }
}

.hero h1 {
  letter-spacing: .5px;
  text-wrap: balance;
}

.hero h1 em {
  display: inline-block;
  color: #d2efff;
  background: linear-gradient(105deg, #d2efff 0%, #7ed6ff 58%, #65e6dc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lede {
  margin-top: 26px;
  color: #e0f3fc;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: 1.5px;
}

.hero-description {
  max-width: 500px;
  color: #b2c6d1;
  line-height: 1.9;
}

.hero-actions {
  gap: 14px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  transition: transform .22s var(--home-ease), background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

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

.button:active {
  transform: translateY(-1px) scale(.98);
}

.button-primary {
  background: linear-gradient(135deg, #0d6fc6, #128ccf);
  box-shadow: 0 12px 26px rgba(13, 111, 198, .28);
}

.button-primary:hover {
  background: linear-gradient(135deg, #1685e4, #19a6d8);
  box-shadow: 0 16px 32px rgba(13, 111, 198, .38);
}

.button-ghost {
  background: rgba(8, 29, 45, .46);
}

.hero-note {
  margin-top: 25px;
  color: #88a7b7;
}

.proof-strip {
  background: rgba(7, 26, 41, .9);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .12);
}

.proof-grid {
  min-height: 104px;
}

.proof-item strong {
  font-size: 25px;
  letter-spacing: .3px;
}

.proof-item > span {
  margin-top: 3px;
  color: #8ca8b8;
}

.protocols span {
  border-radius: 4px;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.protocols span:hover {
  color: #e8f8ff;
  border-color: rgba(101, 230, 220, .6);
  background: rgba(27, 92, 117, .45);
}

.content-section,
.about-section {
  padding-top: 112px;
}

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

.section-heading h2 {
  font-size: clamp(30px, 3vw, 39px);
  letter-spacing: 1px;
}

.section-heading > p {
  line-height: 1.8;
}

.capability-grid {
  gap: 18px;
}

.capability-card {
  position: relative;
  min-height: 336px;
  padding: 32px 28px 28px;
  border-radius: 10px;
  border-color: var(--home-line);
  background: linear-gradient(150deg, var(--home-surface), rgba(6, 22, 35, .84));
  box-shadow: inset 0 1px 0 rgba(188, 231, 249, .04);
  transition: transform .28s var(--home-ease), border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.capability-card::before {
  position: absolute;
  top: -1px;
  right: 18px;
  left: 18px;
  height: 2px;
  content: "";
  opacity: .55;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.capability-card:hover {
  transform: translateY(-8px);
  border-color: rgba(94, 190, 255, .75);
  background: linear-gradient(150deg, var(--home-surface-strong), rgba(6, 26, 43, .94));
  box-shadow: 0 18px 32px rgba(0, 0, 0, .2), 0 0 22px rgba(31, 128, 220, .12);
}

.card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 26px;
  color: #6bc4ff;
  border: 1px solid #2c94e7;
  border-radius: 8px;
  background: radial-gradient(circle at 50% 46%, rgba(32, 129, 205, .2), rgba(5, 28, 46, .55) 72%);
}

.card-icon::before,
.card-icon::after {
  content: none;
}

.card-icon svg {
  width: 48px;
  height: 48px;
  overflow: visible;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(91, 184, 255, .28));
}

.card-icon svg * {
  vector-effect: non-scaling-stroke;
}

.card-icon .icon-fill {
  fill: currentColor;
  stroke: none;
}

.ai-icon,
.iot-icon,
.shield-icon {
  border-radius: 8px;
  font: inherit;
}

.capability-card h3 {
  margin-bottom: 14px;
  font-size: 20px;
  line-height: 1.35;
  text-align: center;
}

.capability-card p {
  color: #9bb4c1;
  font-size: 14px;
  line-height: 1.8;
}

.capability-card a,
.text-link {
  min-height: 44px;
  margin-top: 17px;
  padding: 9px 0;
  transition: color .2s ease, transform .2s ease;
}

.capability-card a {
  font-size: 14px;
}

.capability-card a:hover,
.text-link:hover {
  color: #8be9e1;
  transform: translateX(4px);
}

.solutions-layout {
  gap: 24px;
}

.solution-feature,
.solution-tile {
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18), inset 0 0 0 1px rgba(91, 184, 255, .04);
}

.solution-feature {
  min-height: 520px;
  transition: transform .28s var(--home-ease), border-color .28s ease, box-shadow .28s ease;
}

.solution-tiles {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-height: 520px;
  overflow: visible;
  border-radius: 0;
}

.solution-feature:after,
.solution-tile:after,
.case-image:after {
  background: linear-gradient(
    180deg,
    rgba(4, 16, 26, .08) 0%,
    rgba(4, 16, 26, .32) 46%,
    rgba(3, 14, 24, .96) 100%
  );
}

.solution-tile {
  min-height: 0;
  filter: saturate(.84);
  transition: transform .28s var(--home-ease), filter .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.solution-tile:nth-child(4) {
  grid-column: auto;
}

.solution-tile:nth-child(5) {
  grid-column: 1 / -1;
}

.solution-feature:hover,
.solution-feature:focus-within,
.solution-tile:hover,
.solution-tile:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(101, 230, 220, .9);
  box-shadow:
    0 20px 38px rgba(0, 0, 0, .3),
    0 0 24px rgba(91, 184, 255, .2),
    inset 0 0 0 1px rgba(101, 230, 220, .14);
}

.solution-tile:hover,
.solution-tile:focus-visible {
  filter: saturate(1.06);
}

.solution-copy,
.solution-tile small {
  transition: transform .28s var(--home-ease), color .28s ease;
}

.solution-feature:hover .solution-copy,
.solution-feature:focus-within .solution-copy {
  transform: translateX(4px);
}

.solution-feature:hover .text-link,
.solution-feature:focus-within .text-link,
.solution-tile:hover small,
.solution-tile:focus-visible small {
  color: #8be9e1;
}

.solution-tile:hover small,
.solution-tile:focus-visible small {
  transform: translateX(4px);
}

.solution-tile:active {
  transform: translateY(-2px) scale(.99);
}

.cases-section {
  padding-top: 112px;
}

.case-controls button {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.case-controls button:hover {
  transform: translateY(-2px);
}

.case-track {
  gap: 16px;
}

.case-card {
  border-radius: 10px;
  border-color: var(--home-line);
  background: linear-gradient(150deg, rgba(13, 37, 55, .9), rgba(7, 24, 37, .94));
  transition: transform .28s var(--home-ease), border-color .22s ease, box-shadow .28s ease;
}

.case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(91, 184, 255, .7);
  box-shadow: 0 18px 30px rgba(0, 0, 0, .22);
}

.case-image {
  height: 164px;
}

.case-image span {
  border-radius: 4px;
}

.case-body p {
  color: #9bb4c1;
}

.case-card-emphasis .case-body h3 {
  font-size: 17px;
}

.case-card-emphasis .case-body p {
  font-size: 12px;
  line-height: 1.75;
}

.case-card-emphasis .case-body div {
  font-size: 11px;
}

.about-grid {
  border-radius: 10px;
  border-color: var(--home-line);
  overflow: hidden;
  background: rgba(8, 27, 42, .44);
}

.contact-banner {
  min-height: 212px;
}

.contact-inner {
  min-height: 212px;
}

.contact-inner .button {
  min-width: 168px;
  justify-content: center;
}

.contact-inner p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.8;
}

.site-footer {
  border-top: 1px solid rgba(125, 180, 218, .1);
}

.footer-brand p {
  margin-top: 26px;
  color: #a7bfcb;
  font-size: 13px;
  line-height: 1.6;
}

.footer-brand > small {
  color: #6f8b9a;
  font-size: 12px;
  line-height: 1.5;
}

.footer-links {
  gap: 26px;
}

.footer-links div {
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: #e0edf3;
  font-size: 14px;
  line-height: 1.4;
}

.footer-links a {
  color: #89a5b3;
  font-size: 12px;
  line-height: 1.5;
}

.footer-contact {
  gap: 12px;
  color: #91adba;
  font-size: 13px;
}

.qr-placeholder {
  width: 104px;
  height: 104px;
  padding: 8px;
  border: 1px solid rgba(91, 184, 255, .72);
  border-radius: 8px;
  background-color: #f3f7f0;
  background-size: calc(100% - 16px) calc(100% - 16px);
  box-shadow: 0 0 0 5px rgba(91, 184, 255, .08), 0 12px 24px rgba(0, 0, 0, .22);
}

.footer-contact > small {
  color: #a7bfcb;
  font-size: 13px;
  line-height: 1.4;
}

.back-top {
  width: 42px;
  height: 42px;
  color: #c9efff;
  border: 1px solid rgba(102, 203, 255, .52);
  border-radius: 8px;
  background: rgba(5, 27, 43, .92);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(202, 241, 255, .12);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  backdrop-filter: blur(8px);
  transition: opacity .2s ease, transform .2s var(--home-ease), color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.back-top:hover {
  transform: translateY(-4px);
  color: #ffffff;
  border-color: #76deff;
  background: #0b6eae;
  box-shadow: 0 14px 28px rgba(0, 53, 86, .38), 0 0 0 4px rgba(76, 184, 242, .12);
}

.back-top:focus-visible {
  outline: 3px solid rgba(101, 230, 220, .9);
  outline-offset: 3px;
}

.back-top:active {
  transform: translateY(-1px) scale(.96);
}

/* Homepage-only layout after removing the enterprise information panel. */
.about-grid {
  grid-template-columns: 1fr 1.6fr;
}

.about-intro {
  border-right: 0;
}

.company-info {
  display: none;
}

.about-intro h3 {
  margin-bottom: 19px;
  font-size: 27px;
  line-height: 1.45;
}

.about-intro p {
  color: #a7bfcb;
  font-size: 15px;
  line-height: 1.9;
}

.cert-list {
  gap: 22px;
  margin-top: 30px;
}

.cert-list > span {
  min-width: 105px;
  gap: 8px;
  color: #78caff;
  font-size: 14px;
}

.cert-list .cert-icon {
  width: 42px;
  height: 42px;
  overflow: visible;
  fill: rgba(91, 184, 255, .08);
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(91, 184, 255, .26));
}

.cert-list small {
  color: #89a7b6;
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 800px) {
  .footer-contact small {
    display: block;
  }

  .hero {
    min-height: 1020px;
    padding-bottom: 42px;
  }

  .hero-backdrop {
    background:
      linear-gradient(180deg, #04111d 0%, rgba(4, 17, 29, .86) 56%, rgba(4, 17, 29, .55) 100%);
    background-position: center;
    background-size: auto;
    background-repeat: no-repeat;
  }

  .hero-city-layer {
    opacity: .48;
  }

  .hero-backdrop::before {
    display: none;
  }

  .dashboard-wrap {
    display: block;
    overflow: hidden;
    margin-top: 52px;
    border: 1px solid rgba(106, 193, 255, .55);
    border-radius: 10px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .42), 0 0 26px rgba(91, 184, 255, .16);
    transform: none;
    clip-path: none;
  }

  .hero .dashboard-wrap:hover,
  .dashboard-wrap:focus-within {
    border-color: rgba(106, 193, 255, .55);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .42), 0 0 26px rgba(91, 184, 255, .16);
    transform: none;
  }

  .solutions-layout {
    gap: 18px;
  }

  .solution-feature {
    min-height: 470px;
  }

  .solution-tiles {
    min-height: 510px;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .content-section,
  .about-section,
  .cases-section {
    padding-top: 88px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 960px;
  }

  .dashboard-wrap {
    margin-top: 42px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .hero-lede {
    font-size: 17px;
    letter-spacing: 1px;
  }

  .hero-description {
    line-height: 1.8;
  }

  .proof-grid {
    min-height: 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .solution-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(145px, auto));
    min-height: 0;
  }

  .solution-tile {
    min-height: 145px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solution-feature,
  .solution-tile,
  .solution-copy,
  .solution-tile small {
    transition: none;
  }

  .solution-feature:hover,
  .solution-feature:focus-within,
  .solution-tile:hover,
  .solution-tile:focus-visible,
  .solution-feature:hover .solution-copy,
  .solution-feature:focus-within .solution-copy,
  .solution-tile:hover small,
  .solution-tile:focus-visible small {
    transform: none;
  }
}

/* Optimized local asset mapping. Original source files remain in assets/source. */
.hero-dashboard-image {
  content: url('./assets/optimized/hero/platform-dashboard-clean-v2.webp');
}

.solution-feature {
  background-image: url('./assets/optimized/solutions/smart-safety-platform.webp') !important;
  background-position: center 38%;
}

.solution-tile:nth-child(1) {
  background-image: url('./assets/source/fireworks-risk/image46.png') !important;
  background-position: center center;
}

.solution-tile:nth-child(2) {
  background-image: url('./assets/optimized/solutions/fireworks-warehouse.webp') !important;
}

.solution-tile:nth-child(3) {
  background-image: url('./assets/source/fireworks-risk/image45.png') !important;
  background-position: center center;
}

.solution-tile:nth-child(4) {
  background-image: url('./assets/optimized/industry/steel-floor.webp') !important;
}

.solution-tile:nth-child(5) {
  background-image: url('./assets/optimized/solutions/warehouse-operations.webp') !important;
  background-position: center top;
}

.case-card:nth-child(1) .case-image {
  background-image: url('./assets/optimized/solutions/fireworks-monitor.webp') !important;
}

.case-card:nth-child(2) .case-image {
  background-image: url('./assets/optimized/industry/construction.webp') !important;
}

.case-card:nth-child(3) .case-image {
  background-image: url('./assets/optimized/industry/steel-floor.webp') !important;
}

.case-card:nth-child(4) .case-image {
  background-image: url('./assets/optimized/industry/steel-mill.webp') !important;
}

.hero-city-layer {
  background-image:
    linear-gradient(0deg, rgba(4, 17, 29, .76), rgba(4, 17, 29, .08) 72%),
    url('./assets/optimized/hero/city-night.webp');
}

@media (min-width: 1101px) {
  .hero .dashboard-wrap {
    width: min(118%, 860px);
    max-width: 860px;
    margin-right: -90px;
  }

  .brand-company {
    font-size: 15px;
    letter-spacing: .6px;
  }

  .main-nav {
    gap: clamp(24px, 2.4vw, 40px);
    font-size: 15px;
  }
}

/* Match the reference information strip with stronger hierarchy and dividers. */
.proof-strip {
  background: linear-gradient(180deg, rgba(13, 47, 71, .96), rgba(9, 35, 54, .96));
}

.proof-grid {
  grid-template-columns: repeat(4, minmax(110px, .67fr)) minmax(0, 3.2fr);
  min-height: 116px;
}

.proof-item {
  min-height: 76px;
  justify-content: center;
  padding: 14px 24px;
  border-left-color: rgba(118, 180, 215, .24);
}

.proof-item strong {
  font-size: 28px;
  line-height: 1;
}

.proof-item > span {
  margin-top: 7px;
  font-size: 12px;
  letter-spacing: .25px;
}

.protocols {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 15px 0 15px 24px;
  border-left-color: rgba(118, 180, 215, .24);
}

@media (min-width: 801px) {
  .protocols {
    transform: translateX(28px);
  }
}

.protocols .protocol-heading {
  margin: 0;
  color: #b6d3df;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .6px;
  line-height: 1.5;
  text-align: left;
  white-space: nowrap;
}

.protocol-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(70px, 1fr));
  gap: 18px;
  width: min(100%, 560px);
  margin: 0;
}

.protocol-list span {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px 8px;
  border-radius: 4px;
  text-align: center;
}

.protocol-list span b {
  color: #cbe3ed;
  font: 800 15px/1.1 "Manrope", sans-serif;
}

.protocol-list span small {
  margin-top: 4px;
  color: #7293a5;
  font-size: 11px;
  line-height: 1.1;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .proof-grid {
    grid-template-columns: repeat(4, 1fr);
    min-height: 0;
  }

  .proof-item {
    min-height: 70px;
    padding: 12px 11px;
  }

  .proof-item strong {
    font-size: 20px;
  }

  .proof-item > span {
    font-size: 10px;
  }

  .protocols {
    display: block;
    transform: none;
    min-height: 0;
    padding: 15px 0 0;
    border-top: 1px solid rgba(118, 180, 215, .24);
    border-left: 0;
  }

  .protocols .protocol-heading {
    display: block;
    width: auto;
    margin-bottom: 10px;
    font-size: 12px;
    text-align: center;
    white-space: normal;
  }

  .protocol-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    margin: 0 auto;
    gap: 8px;
  }

  .protocol-list span {
    min-height: 60px;
    padding: 8px;
  }
}

/* The capabilities section follows the centered reference composition. */
#capabilities,
#solutions,
#cases,
#about {
  padding-top: 64px;
}

#solutions,
#cases,
#about {
  padding-bottom: 84px;
}

#solutions,
#cases {
  padding-bottom: 42px;
}

.capability-heading,
.solution-heading,
.cases-heading,
.about-heading {
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  text-align: center;
}

.capability-heading > div,
.solution-heading > div,
.about-heading > div,
.cases-heading > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.capability-heading .eyebrow,
.solution-heading .eyebrow,
.cases-heading .eyebrow,
.about-heading .eyebrow {
  margin-bottom: 7px;
}

.capability-heading h2,
.solution-heading h2,
.cases-heading h2,
.about-heading h2 {
  font-size: clamp(34px, 3.2vw, 42px);
}

.capability-heading > p,
.solution-heading > p,
.about-heading > p {
  max-width: 620px;
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
}

.cases-heading {
  position: relative;
}

.cases-heading .case-controls {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media (max-width: 800px) {
  #capabilities,
  #solutions,
  #cases,
  #about {
    padding-top: 52px;
  }

  #solutions,
  #cases,
  #about {
    padding-bottom: 64px;
  }

  #solutions,
  #cases {
    padding-bottom: 32px;
  }

  .capability-heading > p,
  .solution-heading > p {
    font-size: 14px;
  }

  .about-heading > p {
    font-size: 14px;
  }

  .capability-grid {
    gap: 14px;
  }

  .capability-card {
    min-height: 0;
    padding: 26px 22px;
  }

  .card-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
  }

  .capability-card h3 {
    font-size: 18px;
  }

  .capability-card p,
  .capability-card a {
    font-size: 13px;
  }

  .cases-heading .case-controls {
    position: static;
    transform: none;
  }
}

@media (max-width: 520px) {
  .case-card-emphasis .case-body h3 {
    font-size: 16px;
  }

  .proof-item {
    padding-right: 7px;
    padding-left: 7px;
  }

  .proof-item strong {
    font-size: 17px;
  }

  .proof-item > span {
    font-size: 9px;
    white-space: nowrap;
  }
}

/* Keep the platform preview visibly angled after the reveal animation completes. */
.hero-feature-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 9px 0 0;
  color: #73c6e9;
  font-size: 12px;
  letter-spacing: .35px;
}

.hero-feature-line i {
  margin: 0 9px;
  color: #4d8fac;
  font-style: normal;
}

.hero-description {
  margin-top: 14px;
}

@media (min-width: 801px) {
  .hero .dashboard-wrap.reveal {
    transform: perspective(1500px) rotateY(-14deg) rotateZ(-1deg) translateY(20px);
    transform-origin: 84% 50%;
  }

  .hero .dashboard-wrap.reveal.is-visible {
    transform: perspective(1500px) rotateY(-14deg) rotateZ(-1deg) translateY(0);
  }

  .hero .dashboard-wrap.reveal:hover,
  .hero .dashboard-wrap.reveal:focus-within {
    transform: perspective(1500px) rotateY(-10deg) rotateZ(-.5deg) translateY(-4px) scale(1.01);
  }
}

@media (max-width: 520px) {
  .footer-contact {
    position: static;
    align-items: center;
    margin-top: 28px;
  }

  .hero-feature-line {
    font-size: 11px;
    letter-spacing: 0;
  }

  .hero-feature-line i {
    margin: 0 6px;
  }
}
