:root {
  color-scheme: light;
  --ink: #07152f;
  --muted: #5b6b83;
  --soft: #eef6ff;
  --line: rgba(15, 35, 70, .12);
  --blue: #1677ff;
  --cyan: #00c6ff;
  --navy: #0d1b2a;
  --green: #12b981;
  --gold: #ffc107;
  --violet: #7c3aed;
  --red: #ef4444;
  --surface: rgba(255, 255, 255, .78);
  --shadow: 0 24px 70px rgba(15, 35, 70, .12);
  --premium-shadow: 0 28px 80px rgba(22, 119, 255, .16);
  --radius: 8px;
  --section-y: clamp(52px, 5.2vw, 72px);
  --section-y-tight: clamp(34px, 4vw, 50px);
  --card-shadow: 0 18px 46px rgba(15, 35, 70, .08);
  --card-shadow-hover: 0 26px 64px rgba(15, 35, 70, .13);
  --card-border-hover: rgba(22, 119, 255, .24);
  font-family: Montserrat, Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 16%, rgba(0, 198, 255, .22), transparent 32rem),
    radial-gradient(circle at 18% 10%, rgba(22, 119, 255, .12), transparent 28rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 38%, #f7fbff 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13, 27, 42, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 27, 42, .035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .75), transparent 72%);
  z-index: -1;
}

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

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

.page-shell {
  min-height: 100vh;
  padding-top: 84px;
}

.site-framed {
  padding-top: 84px;
}

.site-header {
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 30;
  pointer-events: none;
}

.nav {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 66px;
  padding: 8px 10px 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(245, 250, 255, .72)),
    rgba(255, 255, 255, .82);
  box-shadow: 0 20px 58px rgba(7, 21, 47, .12), inset 0 1px 0 rgba(255, 255, 255, .82);
  backdrop-filter: blur(24px) saturate(148%);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 192px;
  padding: 4px 4px 4px 0;
}

.brand img {
  width: 178px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-link,
.dropdown-menu a {
  border-radius: var(--radius);
  color: #263850;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  position: relative;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-item .nav-link {
  padding-right: 6px;
}

.dropdown-toggle {
  width: 28px;
  height: 38px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: #27384f;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s ease, color .2s ease;
}

.dropdown-toggle span {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 328px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 252, 255, .92)),
    rgba(255, 255, 255, .94);
  box-shadow: 0 30px 70px rgba(7, 21, 47, .18), 0 6px 18px rgba(22, 119, 255, .08);
  backdrop-filter: blur(24px) saturate(150%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(.98);
  transform-origin: top left;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.product-dropdown {
  left: 50%;
  min-width: 680px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  transform: translate(-50%, 10px) scale(.98);
  transform-origin: top center;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 24px;
  top: -13px;
  width: 24px;
  height: 13px;
}

.dropdown-menu a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  min-height: 68px;
  align-items: center;
  gap: 12px;
  padding: 10px;
  color: var(--muted);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, .46);
  transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.dropdown-menu a strong,
.dropdown-menu a small {
  display: block;
}

.dropdown-menu a strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 900;
}

.dropdown-menu a small {
  margin-top: 4px;
  color: #61718a;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 700;
}

.dropdown-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #0f5fc8;
  background: linear-gradient(135deg, rgba(22, 119, 255, .14), rgba(0, 198, 255, .12));
  box-shadow: inset 0 0 0 1px rgba(22, 119, 255, .12);
  font-size: 10px;
  font-weight: 900;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(255, 255, 255, .92);
  border-color: rgba(22, 119, 255, .16);
  color: var(--blue);
  box-shadow: 0 12px 28px rgba(22, 119, 255, .1);
  transform: translateY(-1px);
  outline: none;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu,
.nav-item.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item:hover .product-dropdown,
.nav-item:focus-within .product-dropdown,
.nav-item.is-open .product-dropdown {
  transform: translate(-50%, 0);
}

.nav-item:hover .dropdown-toggle span,
.nav-item:focus-within .dropdown-toggle span,
.nav-item.is-open .dropdown-toggle span {
  transform: translateY(1px) rotate(225deg);
}

.nav-link:hover,
.dropdown-toggle:hover,
.nav-link[aria-current="page"],
.nav-item.is-active .nav-link,
.nav-item.is-active .dropdown-toggle {
  background: linear-gradient(135deg, rgba(22, 119, 255, .1), rgba(0, 198, 255, .08));
  color: #0f5fc8;
  box-shadow: inset 0 0 0 1px rgba(22, 119, 255, .1);
}

.mobile-sales-link {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.nav-sales-cta {
  min-height: 42px;
  padding: 0 18px;
  color: white;
  border-color: rgba(22, 119, 255, .36);
  background: linear-gradient(135deg, #0f65df, #00aee8);
  box-shadow: 0 14px 30px rgba(22, 119, 255, .28), inset 0 1px 0 rgba(255, 255, 255, .3);
}

.nav-sales-cta:hover {
  box-shadow: 0 18px 38px rgba(22, 119, 255, .34), inset 0 1px 0 rgba(255, 255, 255, .34);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .22s ease, opacity .22s ease;
}

.menu-toggle:focus-visible,
body.nav-open .menu-toggle {
  outline: 3px solid rgba(22, 119, 255, .16);
  border-color: rgba(22, 119, 255, .42);
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(15, 35, 70, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 38px rgba(22, 119, 255, .32);
}

.btn-secondary {
  color: var(--blue);
  border-color: rgba(22, 119, 255, .25);
  background: rgba(255, 255, 255, .82);
}

.nav-actions .nav-sales-cta {
  color: white;
  border-color: rgba(22, 119, 255, .36);
  background: linear-gradient(135deg, #0f65df, #00aee8);
  box-shadow: 0 14px 30px rgba(22, 119, 255, .28), inset 0 1px 0 rgba(255, 255, 255, .3);
}

.nav-actions .nav-sales-cta:hover {
  box-shadow: 0 18px 38px rgba(22, 119, 255, .34), inset 0 1px 0 rgba(255, 255, 255, .34);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: var(--section-y) 0;
}

[data-shot] {
  scroll-margin-top: 92px;
}

.hero {
  width: min(1340px, calc(100% - 48px));
  min-height: calc(100vh - 190px);
  margin: 0 auto;
  padding: 48px 0 28px;
  display: grid;
  grid-template-columns: minmax(600px, 1.06fr) minmax(500px, .94fr);
  align-items: center;
  gap: 34px;
  overflow: clip;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  padding: 5px 9px;
  border: 1px solid rgba(22, 119, 255, .08);
  border-radius: 999px;
  background: rgba(22, 119, 255, .055);
  font-size: 10.5px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

h1,
h2,
h3,
p {
  margin: 0;
}

.hero h1 {
  margin-top: 22px;
  max-width: 790px;
  font-size: clamp(44px, 4.65vw, 66px);
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 900;
}

.hero h1 span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(100deg, #1677ff 10%, #00c6ff 62%, #1677ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.lead {
  margin-top: 24px;
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
  font-weight: 500;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
  max-width: 700px;
}

.metric {
  padding: 11px 14px 12px;
  border: 1px solid rgba(15, 35, 70, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 34px rgba(15, 35, 70, .08);
}

.metric i {
  width: 26px;
  height: 26px;
  margin-bottom: 8px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 10px 22px rgba(22, 119, 255, .22);
  font-style: normal;
  font-size: 0;
  font-weight: 900;
}

.metric i::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.metric:nth-child(2) i {
  background: linear-gradient(135deg, #6d28d9, #7ea7ff);
}

.metric:nth-child(2) i::before {
  width: 14px;
  height: 10px;
  border-radius: 2px;
  box-shadow: 0 5px 0 -2px currentColor;
}

.metric:nth-child(3) i {
  background: linear-gradient(135deg, #00a6d6, #22d3ee);
}

.metric:nth-child(3) i::before {
  width: 16px;
  height: 10px;
  border-width: 0;
  border-radius: 999px;
  background: currentColor;
  box-shadow: -5px 2px 0 -2px currentColor, 5px 2px 0 -2px currentColor;
}

.metric:nth-child(4) i {
  background: linear-gradient(135deg, #12b981, #00c6ff);
}

.metric:nth-child(4) i::before {
  width: 15px;
  height: 13px;
  border-width: 0 0 2px 2px;
  border-radius: 0;
  transform: skew(-10deg);
  box-shadow: 4px -4px 0 -2px currentColor, 8px -8px 0 -2px currentColor;
}

.metric strong {
  display: block;
  color: var(--ink);
  font-size: 21px;
  line-height: 1;
  font-weight: 900;
}

.metric span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 700;
}

.metric small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.32;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 0 0 6%;
  border-radius: 42%;
  background:
    radial-gradient(circle at 52% 62%, rgba(0, 198, 255, .28), transparent 18%),
    radial-gradient(circle at 50% 48%, rgba(22, 119, 255, .16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .64), rgba(235, 247, 255, .18));
  filter: blur(2px);
  pointer-events: none;
}

.suite-panel {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(590px, 100%);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.suite-panel-head {
  position: absolute;
  left: 50%;
  top: 82px;
  z-index: 8;
  transform: translateX(-50%);
  min-width: 270px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 35, 70, .08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 44px rgba(15, 35, 70, .1);
  backdrop-filter: blur(16px);
}

.suite-panel-head img {
  width: 42px;
  height: 42px;
}

.suite-panel-head strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
}

.suite-panel-head span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.signal {
  width: 62px;
  height: 30px;
  border-radius: 999px;
  background: rgba(18, 185, 129, .1);
  color: #059669;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
}

.orbit {
  position: relative;
  margin-top: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center bottom, rgba(0, 198, 255, .26), transparent 30%),
    linear-gradient(30deg, transparent 49.5%, rgba(22, 119, 255, .12) 50%, transparent 50.5%),
    linear-gradient(150deg, transparent 49.5%, rgba(0, 198, 255, .1) 50%, transparent 50.5%),
    radial-gradient(circle, rgba(22, 119, 255, .12) 0 2px, transparent 3px),
    radial-gradient(circle at center, rgba(255, 255, 255, .92), rgba(240, 248, 255, .7));
  background-size: auto, auto, auto, 28px 28px, auto;
  border: 1px solid var(--line);
  overflow: visible;
  box-shadow: 0 34px 90px rgba(22, 119, 255, .12);
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(22, 119, 255, .18);
  border-radius: 50%;
}

.orbit::after {
  inset: 26%;
}

.orbit::before {
  box-shadow:
    0 0 0 42px rgba(22, 119, 255, .05),
    0 0 58px rgba(0, 198, 255, .12) inset;
}

.platform-stage {
  position: absolute;
  left: 50%;
  top: 67%;
  width: 210px;
  height: 58px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 198, 255, .46), rgba(22, 119, 255, .22) 45%, transparent 72%);
  box-shadow:
    0 8px 0 rgba(22, 119, 255, .12),
    0 22px 58px rgba(0, 198, 255, .3);
  z-index: 2;
  pointer-events: none;
}

.center-product {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: linear-gradient(145deg, #fff, #f0f8ff);
  box-shadow:
    0 26px 62px rgba(22, 119, 255, .28),
    0 0 0 12px rgba(255, 255, 255, .72);
  z-index: 3;
}

.center-product img {
  width: 88px;
  height: 88px;
}

.product-dot {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(145deg, #fff, #f3f9ff);
  display: grid;
  place-items: center;
  box-shadow:
    0 14px 30px rgba(15, 35, 70, .16),
    0 0 0 6px rgba(255, 255, 255, .62);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: float 5s ease-in-out infinite;
}

.product-dot::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  top: calc(100% + 6px);
  transform: translateX(-50%);
  max-width: 74px;
  padding: 4px 7px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(15, 35, 70, .08);
  font-size: 10px;
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-dot img {
  width: 34px;
  height: 34px;
}

.product-dot:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 34px rgba(15, 35, 70, .18);
}

.product-dot:nth-child(2) { left: 47%; top: 6%; animation-delay: -.2s; }
.product-dot:nth-child(3) { left: 66%; top: 10%; animation-delay: -.6s; }
.product-dot:nth-child(4) { right: 9%; top: 25%; animation-delay: -1s; }
.product-dot:nth-child(5) { right: 8%; bottom: 34%; animation-delay: -1.4s; }
.product-dot:nth-child(6) { right: 18%; bottom: 15%; animation-delay: -1.8s; }
.product-dot:nth-child(7) { left: 51%; bottom: 7%; animation-delay: -2.2s; }
.product-dot:nth-child(8) { left: 28%; bottom: 12%; animation-delay: -2.6s; }
.product-dot:nth-child(9) { left: 10%; bottom: 30%; animation-delay: -3s; }
.product-dot:nth-child(10) { left: 8%; top: 28%; animation-delay: -3.4s; }
.product-dot:nth-child(11) { left: 22%; top: 12%; animation-delay: -3.8s; }
.product-dot:nth-child(12) { left: 38%; top: 20%; animation-delay: -4.2s; }
.product-dot:nth-child(13) { right: 28%; top: 24%; animation-delay: -4.6s; }
.product-dot:nth-child(14) { right: 31%; bottom: 24%; animation-delay: -5s; }

.ecosystem-caption {
  display: grid;
  gap: 6px;
  margin: 16px auto 0;
  max-width: 460px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
}

.ecosystem-caption strong {
  font-size: 13px;
  font-weight: 900;
}

.ecosystem-caption span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
}

.floating-note {
  position: absolute;
  left: 8px;
  bottom: 92px;
  width: 300px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.floating-note strong {
  display: block;
  font-size: 14px;
  font-weight: 900;
}

.floating-note span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin-top: 14px;
  max-width: 760px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.03;
  font-weight: 900;
}

.section-head p {
  max-width: 440px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

.band {
  background: rgba(255, 255, 255, .74);
  border-block: 1px solid rgba(15, 35, 70, .08);
}

.product-strip-band {
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 198, 255, .14), transparent 30rem),
    linear-gradient(180deg, rgba(245, 252, 255, .86), rgba(255, 255, 255, .78));
}

.compact-section {
  padding: 38px 0 38px;
}

.product-strip-band .compact-section {
  padding: 42px 0 46px;
}

.center-head {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.center-head .eyebrow {
  justify-content: center;
}

.center-head h2 {
  margin-top: 12px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  font-weight: 900;
}

.center-head p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
  padding: 4px;
}

.strip-card {
  min-height: 194px;
  padding: 20px;
  border: 1px solid rgba(15, 35, 70, .1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(248, 252, 255, .84)),
    rgba(255, 255, 255, .9);
  box-shadow: 0 18px 44px rgba(15, 35, 70, .09);
  display: flex;
  flex-direction: column;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.strip-card:hover,
.strip-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(22, 119, 255, .26);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 26px 66px rgba(15, 35, 70, .14);
  outline: none;
}

.strip-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.strip-card strong {
  margin-top: 16px;
  min-height: 36px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 900;
}

.strip-card span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 600;
}

.strip-card em {
  align-self: flex-start;
  margin-top: auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(18, 185, 129, .14);
  color: #059669;
  font-style: normal;
  font-size: 10px;
  font-weight: 900;
}

.strip-card[data-status="Available"] em {
  background: rgba(18, 185, 129, .14);
  color: #059669;
}

.strip-card[data-status="Coming Soon"] em {
  background: rgba(255, 193, 7, .18);
  color: #a16207;
}

.strip-card[data-status="Preview"] em {
  background: rgba(22, 119, 255, .12);
  color: var(--blue);
}

#zentrack-suite {
  padding-top: 56px;
}

.home-page main > .section {
  padding: var(--section-y) 0;
}

.home-page main > .band > .section {
  padding: var(--section-y) 0;
}

.home-page .section-head {
  align-items: center;
  margin-bottom: 30px;
}

.home-page .section-head h2 {
  margin-top: 18px;
}

.home-page .product-strip-band .compact-section {
  padding: var(--section-y-tight) 0;
}

.home-page main > #trust.section {
  padding: var(--section-y-tight) 0;
}

.home-page main > #product-strip.band > .section.compact-section {
  padding: var(--section-y-tight) 0;
}

.home-page #zentrack-suite {
  position: relative;
  padding: var(--section-y-tight) 0;
  background:
    radial-gradient(circle at 14% 0%, rgba(22, 119, 255, .07), transparent 26rem),
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(247, 251, 255, .68));
  box-shadow: 0 0 0 100vmax rgba(248, 252, 255, .36);
  clip-path: inset(0 -100vmax);
}

.home-page #zentrack-suite .section-head {
  align-items: center;
  gap: 42px;
  margin-bottom: 28px;
}

.home-page #zentrack-suite .section-head h2 {
  max-width: 660px;
  font-size: clamp(32px, 3.62vw, 52px);
  line-height: 1.05;
}

.home-page #zentrack-suite .section-head p {
  max-width: 470px;
  color: #334765;
  font-size: 15.5px;
  line-height: 1.72;
  font-weight: 600;
}

.home-page #zentrack-suite .grid-3 {
  gap: 16px;
}

.home-page #zentrack-suite .value-card {
  min-height: 202px;
  padding: 28px;
  border-color: rgba(15, 35, 70, .09);
  background:
    radial-gradient(circle at 90% 0%, rgba(22, 119, 255, .07), transparent 14rem),
    rgba(255, 255, 255, .86);
  box-shadow: var(--card-shadow);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.home-page #zentrack-suite .value-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
  box-shadow: var(--card-shadow-hover);
}

.home-page #zentrack-suite .value-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #0f5fc8;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(225, 246, 255, .8)),
    linear-gradient(135deg, rgba(22, 119, 255, .18), rgba(0, 198, 255, .2));
  box-shadow:
    inset 0 0 0 1px rgba(22, 119, 255, .16),
    0 14px 30px rgba(22, 119, 255, .13);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .02em;
}

.home-page #zentrack-suite .value-card h3 {
  margin-top: 22px;
  font-size: 19px;
  line-height: 1.22;
}

.home-page #zentrack-suite .value-card p {
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.68;
  font-weight: 600;
}

.home-page #comparison {
  position: relative;
  padding-top: 62px;
  padding-bottom: 54px;
}

.home-page #comparison::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background:
    radial-gradient(circle at 80% 10%, rgba(22, 119, 255, .06), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, .68), rgba(247, 251, 255, .72));
  border-block: 1px solid rgba(15, 35, 70, .05);
}

.home-page #why-zentrack {
  background:
    radial-gradient(circle at 84% 4%, rgba(0, 198, 255, .11), transparent 26rem),
    radial-gradient(circle at 12% 92%, rgba(22, 119, 255, .06), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(247, 251, 255, .78));
}

.home-page #why-zentrack .section {
  padding-top: 46px;
  padding-bottom: 46px;
}

.home-page #why-zentrack .section-head {
  margin-bottom: 32px;
}

.home-page #why-zentrack .section-head p {
  max-width: 500px;
  color: #334765;
  font-weight: 600;
}

.home-page #why-zentrack .benefit-grid {
  gap: 16px;
}

.home-page #why-zentrack .benefit-card {
  min-height: 210px;
  padding: 24px;
  border-radius: 10px;
  border-color: rgba(15, 35, 70, .09);
  background:
    radial-gradient(circle at 92% 4%, rgba(22, 119, 255, .06), transparent 12rem),
    rgba(255, 255, 255, .86);
  box-shadow: var(--card-shadow);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.home-page #why-zentrack .benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--card-shadow-hover);
}

.home-page #why-zentrack .benefit-card i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #0f5fc8;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(226, 246, 255, .82)),
    linear-gradient(135deg, rgba(22, 119, 255, .16), rgba(0, 198, 255, .18));
  box-shadow:
    inset 0 0 0 1px rgba(22, 119, 255, .14),
    0 14px 30px rgba(22, 119, 255, .11);
}

.home-page #why-zentrack .benefit-card svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page #why-zentrack .benefit-card small {
  display: inline-flex;
  width: fit-content;
  min-height: 19px;
  align-items: center;
  margin-top: 8px;
  padding: 0 7px;
  border-radius: 7px;
  color: #0f5fc8;
  background: rgba(22, 119, 255, .045);
  font-size: 8.5px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.home-page #why-zentrack .benefit-card strong {
  margin-top: 2px;
  line-height: 1.22;
}

.home-page #why-zentrack .benefit-card span {
  font-size: 12.8px;
  line-height: 1.62;
  font-weight: 600;
}

.home-page #deployment {
  background:
    radial-gradient(circle at 18% 4%, rgba(22, 119, 255, .07), transparent 25rem),
    linear-gradient(180deg, rgba(255, 255, 255, .84), rgba(248, 252, 255, .74));
}

.home-page #deployment .section {
  padding-top: var(--section-y-tight);
  padding-bottom: var(--section-y-tight);
}

.home-page #deployment .section-head {
  margin-bottom: 32px;
}

.home-page #deployment .section-head p {
  max-width: 500px;
  color: #334765;
  font-weight: 600;
}

.home-page #deployment + #security {
  padding-top: var(--section-y-tight);
}

.home-page #deployment .deployment-grid {
  gap: 16px;
}

.home-page #deployment .deployment-card {
  min-height: 258px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border-color: rgba(15, 35, 70, .09);
  background:
    radial-gradient(circle at 88% 0%, rgba(22, 119, 255, .06), transparent 12rem),
    rgba(255, 255, 255, .86);
  box-shadow: var(--card-shadow);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.home-page #deployment .deployment-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--card-shadow-hover);
}

.home-page #deployment .deployment-card.recommended {
  border-color: rgba(22, 119, 255, .22);
  background:
    radial-gradient(circle at 88% 0%, rgba(0, 198, 255, .12), transparent 13rem),
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(236, 248, 255, .82));
}

.home-page #deployment .deployment-card i {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #0f5fc8;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(226, 246, 255, .82)),
    linear-gradient(135deg, rgba(22, 119, 255, .16), rgba(0, 198, 255, .18));
  box-shadow:
    inset 0 0 0 1px rgba(22, 119, 255, .14),
    0 14px 30px rgba(22, 119, 255, .11);
}

.home-page #deployment .deployment-card svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page #deployment .deployment-card em {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  min-height: 21px;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  color: #0f5fc8;
  background: rgba(22, 119, 255, .06);
  font-size: 8.5px;
  line-height: 1;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-page #deployment .deployment-card h3 {
  margin-top: 24px;
}

.home-page #deployment .deployment-card p {
  font-size: 13px;
  line-height: 1.65;
}

.home-page .cta {
  margin: 44px auto 72px;
}

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

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

.trust-section {
  position: relative;
  padding: 34px 0 34px;
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 198, 255, .1), transparent 28rem),
    linear-gradient(180deg, rgba(247, 251, 255, .84), rgba(255, 255, 255, .74));
  box-shadow: 0 0 0 100vmax rgba(247, 251, 255, .58);
  clip-path: inset(0 -100vmax);
}

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

.trust-card-primary {
  grid-column: span 3;
}

.trust-card-secondary {
  grid-column: span 4;
}

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

.comparison-grid,
.deployment-grid,
.feature-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.glass-card,
.product-card,
.value-card,
.benefit-card,
.trust-card,
.comparison-card,
.deployment-card,
.feature-card,
.industry-card,
.media-card,
.contact-card {
  border: 1px solid rgba(15, 35, 70, .1);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(18px);
  height: 100%;
}

.trust-card,
.feature-card {
  display: grid;
  gap: 13px;
  align-content: start;
  padding: 22px;
  min-height: 164px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.benefit-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  align-content: start;
  min-height: 214px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.benefit-card i,
.trust-card i,
.deployment-card i,
.feature-card i,
.industry-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(230, 247, 255, .82)),
    linear-gradient(135deg, rgba(22, 119, 255, .1), rgba(0, 198, 255, .16));
  box-shadow: inset 0 0 0 1px rgba(22, 119, 255, .12), 0 12px 28px rgba(22, 119, 255, .12);
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}

.trust-card i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.trust-card i svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-card-secondary i {
  color: #0f8fa8;
  background: linear-gradient(135deg, rgba(0, 198, 255, .13), rgba(18, 185, 129, .1));
  box-shadow: 0 12px 28px rgba(0, 198, 255, .1);
}

.trust-card strong,
.feature-card strong {
  font-size: 15px;
  line-height: 1.28;
  font-weight: 900;
}

.trust-card span,
.feature-card span {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.62;
  font-weight: 600;
}

.trust-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--card-shadow-hover);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
  box-shadow: var(--card-shadow-hover);
}

.benefit-card:nth-child(2n) i {
  color: #6d28d9;
  background: linear-gradient(135deg, rgba(109, 40, 217, .1), rgba(0, 198, 255, .14));
}

.benefit-card:nth-child(3n) i {
  color: #059669;
  background: linear-gradient(135deg, rgba(18, 185, 129, .12), rgba(0, 198, 255, .14));
}

.comparison-card {
  padding: 30px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--card-shadow);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.comparison-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -52% 34%;
  height: 220px;
  background: radial-gradient(circle, rgba(22, 119, 255, .16), transparent 66%);
  pointer-events: none;
}

.comparison-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
  box-shadow: var(--card-shadow-hover);
}

.comparison-card.with {
  border-color: rgba(22, 119, 255, .22);
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 198, 255, .16), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(236, 248, 255, .82));
}

.comparison-card.with::after {
  background: radial-gradient(circle, rgba(22, 119, 255, .18), transparent 66%);
}

.comparison-card.with span {
  color: #0f5fc8;
  background: rgba(22, 119, 255, .1);
}

.comparison-card.with li::before {
  content: "";
  color: #0f5fc8;
  background:
    linear-gradient(135deg, rgba(22, 119, 255, .12), rgba(0, 198, 255, .12)),
    rgba(255, 255, 255, .7);
  box-shadow: inset 0 0 0 1px rgba(22, 119, 255, .12);
}

.comparison-card.with li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #0f5fc8;
  border-bottom: 2px solid #0f5fc8;
  transform: rotate(-45deg);
}

.comparison-card.without {
  border-color: rgba(15, 35, 70, .1);
  background: linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(245, 248, 252, .76));
}

.comparison-card.without::after {
  background: radial-gradient(circle, rgba(91, 107, 131, .11), transparent 66%);
}

.comparison-card.without span {
  color: #475569;
  background: rgba(100, 116, 139, .1);
}

.comparison-card.without li::before {
  content: "";
  background: rgba(100, 116, 139, .11);
  box-shadow: inset 0 0 0 1px rgba(100, 116, 139, .12);
}

.comparison-card.without li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 11px;
  width: 9px;
  height: 2px;
  border-radius: 2px;
  background: #64748b;
}

.comparison-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.comparison-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  max-width: 520px;
  font-size: 22px;
  line-height: 1.28;
  font-weight: 900;
}

.comparison-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 700;
}

.comparison-card li::before {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(22, 119, 255, .08);
  font-size: 12px;
  font-weight: 900;
}

.deployment-card {
  padding: 24px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.deployment-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
  box-shadow: var(--card-shadow-hover);
}

.deployment-card h3 {
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.deployment-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  font-weight: 600;
}

.benefit-card strong {
  font-size: 16px;
  font-weight: 900;
}

.benefit-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

.value-card {
  padding: 24px;
}

.value-card .icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(22, 119, 255, .12), rgba(0, 198, 255, .16));
  font-size: 20px;
}

.value-card h3 {
  margin-top: 20px;
  font-size: 19px;
  font-weight: 900;
}

.value-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 14px;
  row-gap: 22px;
}

.product-card {
  padding: 18px;
  min-height: 184px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--card-shadow);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--card-shadow-hover);
  outline: none;
}

.product-card img {
  width: 54px;
  height: 54px;
}

.product-card h3 {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
}

.product-card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
}

.product-card em {
  width: fit-content;
  margin-top: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(18, 185, 129, .12);
  color: #059669;
  font-style: normal;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
}

.product-card em[data-status="Preview"] {
  background: rgba(22, 119, 255, .12);
  color: var(--blue);
}

.product-card em[data-status="Coming Soon"] {
  background: rgba(255, 193, 7, .18);
  color: #a16207;
}

.platform-strip {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 26px;
  align-items: stretch;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 16px;
}

.media-card {
  padding: 18px;
  display: flex;
  flex-direction: column;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.media-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--card-shadow-hover);
}

.media-card.large {
  grid-row: span 2;
}

.media-frame {
  min-height: 230px;
  border-radius: var(--radius);
  border: 1px dashed rgba(22, 119, 255, .28);
  background:
    linear-gradient(rgba(22, 119, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 119, 255, .05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(238, 248, 255, .8));
  background-size: 24px 24px, 24px 24px, auto;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.media-frame.phone {
  min-height: 230px;
  width: min(160px, 100%);
  margin: 0 auto;
  border-radius: 28px;
}

.media-frame.video {
  min-height: 230px;
}

.media-frame.video span::before {
  content: "";
  display: block;
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 34px rgba(22, 119, 255, .24);
}

.media-card h3 {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 900;
}

.media-card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.industry-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-height: 228px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--card-shadow-hover);
}

.industry-card h3 {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.industry-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
  font-weight: 600;
}

.industry-card span {
  display: block;
  margin-top: auto;
  padding-top: 16px;
  color: var(--blue);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 900;
}

.platform-card {
  padding: 32px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0d1b2a, #113f75 58%, #1677ff);
  color: white;
  min-height: 430px;
  position: relative;
  overflow: hidden;
}

.platform-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% 28%;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 198, 255, .42), transparent 64%);
}

.platform-card img {
  width: 96px;
  height: 96px;
}

.platform-card h3 {
  position: relative;
  margin-top: 28px;
  font-size: 34px;
  line-height: 1.04;
  font-weight: 900;
}

.platform-card p {
  position: relative;
  margin-top: 16px;
  max-width: 470px;
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
}

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

.capability {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 20px;
  min-height: 128px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.capability i {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(229, 247, 255, .82)),
    rgba(22, 119, 255, .08);
  box-shadow: inset 0 0 0 1px rgba(22, 119, 255, .12), 0 12px 28px rgba(22, 119, 255, .1);
  font-size: 14px;
  font-weight: 900;
}

.capability:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--card-shadow-hover);
}

.capability strong {
  display: block;
  font-size: 17px;
  font-weight: 900;
}

.capability span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: step;
}

.step {
  padding: 24px;
  min-height: 184px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.step:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--card-shadow-hover);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  width: 42px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(22, 119, 255, .09);
  font-size: 12px;
  font-weight: 900;
}

.step h3 {
  margin-top: 22px;
  font-size: 18px;
  font-weight: 900;
}

.step p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
}

.cta {
  width: min(1180px, calc(100% - 40px));
  margin: 60px auto 96px;
  padding: 46px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0d1b2a, #12345f 55%, #1677ff);
  color: white;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  position: relative;
}

.cta::after {
  content: "";
  position: absolute;
  inset: -50% -10% auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 198, 255, .34), transparent 70%);
}

.cta h2 {
  position: relative;
  max-width: 720px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
  font-weight: 900;
}

.cta p {
  position: relative;
  margin-top: 14px;
  color: rgba(255, 255, 255, .76);
  font-size: 16px;
  line-height: 1.6;
}

.cta .btn {
  position: relative;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .74);
}

.footer-inner {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 32px;
  display: grid;
  grid-template-columns: minmax(230px, 1.25fr) repeat(7, minmax(92px, .55fr));
  gap: 22px;
}

.footer-brand img {
  width: 178px;
}

.footer-brand p,
.footer-col a,
.footer-col span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  font-weight: 600;
}

.footer-brand p {
  margin-top: 16px;
  max-width: 360px;
}

.footer-col strong {
  display: block;
  margin-bottom: 13px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-col a {
  display: block;
  margin-top: 8px;
}

.footer-col a:hover,
.social-links a:hover {
  color: var(--blue);
}

.footer-bottom {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.page-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0 48px;
}

.solution-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  align-items: center;
  gap: 36px;
}

.solution-hero .section-head {
  max-width: 760px;
}

.solution-hero-content h1 {
  max-width: 720px;
}

.solution-hero-visual {
  position: relative;
  min-height: 460px;
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(15, 35, 70, .1);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, .84), rgba(238, 248, 255, .8));
  backdrop-filter: blur(16px);
}

.solution-media-large {
  min-height: 230px;
  display: grid;
  align-content: end;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(22, 119, 255, .1), rgba(0, 198, 255, .1));
}

.solution-media-large .solution-media-caption {
  margin-top: 22px;
  padding: 5px 10px;
  width: fit-content;
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: .03em;
  background: rgba(255, 255, 255, .78);
  color: var(--blue);
  border: 1px solid rgba(22, 119, 255, .14);
}

.solution-media-small {
  position: absolute;
  right: 14px;
  bottom: 18px;
  width: 210px;
  min-height: 120px;
  padding: 18px;
  border-radius: var(--radius);
  display: grid;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(238, 248, 255, .88));
}

.solution-media-small .solution-media-caption {
  margin-top: 10px;
  padding: 4px 8px;
  width: fit-content;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: .02em;
  background: rgba(22, 119, 255, .08);
  border: 1px solid rgba(22, 119, 255, .14);
}

.solution-media-tiny {
  position: absolute;
  left: 16px;
  top: 22px;
  width: 160px;
  min-height: 110px;
  padding: 14px;
  border-radius: 12px;
  display: grid;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(246, 251, 255, .88));
}

.solution-media-tiny .solution-media-caption {
  margin-top: 9px;
  padding: 4px 8px;
  width: fit-content;
  border-radius: 999px;
  font-size: 9.5px;
  letter-spacing: .02em;
  background: rgba(18, 185, 129, .07);
  border: 1px solid rgba(18, 185, 129, .16);
}

.solution-media-large strong,
.solution-media-small strong,
.solution-media-tiny strong {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 900;
}

.solution-badge,
.solution-step-no {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  background: rgba(22, 119, 255, .12);
  color: #0f5fc8;
}

.solution-badge + strong,
.solution-outcome strong {
  margin-top: 12px;
}

.solution-badge {
  align-self: start;
}

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

.solution-outcome {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 20px;
  min-height: 178px;
  border: 1px solid rgba(15, 35, 70, .1);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(18px);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
  align-self: stretch;
}

.solution-outcome:hover,
.solution-capability:hover,
.solution-product-link:hover,
.solution-industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--card-shadow-hover);
}

.solution-outcome strong {
  font-size: 15px;
  line-height: 1.32;
  font-weight: 900;
}

.solution-outcome span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.solution-outcome em {
  justify-self: end;
  margin-top: auto;
  font-size: 11px;
  font-style: normal;
  color: var(--muted);
  font-weight: 800;
}

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

.solution-capability {
  display: grid;
  min-height: 176px;
  gap: 12px;
  padding: 18px;
  align-items: start;
  border: 1px solid rgba(15, 35, 70, .1);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(18px);
  align-self: stretch;
}

.solution-capability h4 {
  margin: 0;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 900;
}

.solution-capability-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: var(--blue);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(230, 247, 255, .82)),
    linear-gradient(135deg, rgba(22, 119, 255, .1), rgba(0, 198, 255, .16));
  box-shadow: inset 0 0 0 1px rgba(22, 119, 255, .12), 0 10px 22px rgba(22, 119, 255, .12);
}

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

.solution-product-link {
  padding: 18px;
  min-height: 148px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  align-self: stretch;
}

.solution-product-link img {
  width: 42px;
  height: 42px;
}

.solution-product-link strong {
  font-size: 15px;
  line-height: 1.28;
  font-weight: 900;
}

.solution-product-link span {
  margin-top: 2px;
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.solution-industry-card {
  display: grid !important;
  grid-template-columns: 46px 1fr auto;
  gap: 12px;
  align-items: start;
  align-self: stretch;
}

.solution-industry-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  border: 1px solid rgba(22, 119, 255, .16);
  color: var(--blue);
  background: linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(230, 247, 255, .82));
}

.solution-industry-card div {
  min-width: 0;
}

.solution-industry-card h3 {
  margin-top: 0;
  font-size: 16px;
}

.solution-industry-card p {
  margin-top: 8px;
  color: var(--muted);
}

.solution-industry-card > span:last-child {
  width: fit-content;
  margin-top: auto;
  align-self: end;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(22, 119, 255, .06);
  border: 1px solid rgba(22, 119, 255, .14);
  font-size: 10px;
  font-weight: 800;
  color: #0f5fc8;
}

.solution-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  background: rgba(18, 185, 129, .14);
  color: #059669;
}


.page-hero h1 {
  margin-top: 18px;
  max-width: 880px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1;
  font-weight: 900;
}

.page-hero p {
  margin-top: 22px;
  max-width: 740px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 500;
}

.product-hero {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 46px;
  align-items: center;
}

.product-hero-card {
  padding: 28px;
}

.product-hero-card img {
  width: 112px;
  height: 112px;
}

.product-hero-card h2 {
  margin-top: 24px;
  font-size: 28px;
  font-weight: 900;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.feature-list li {
  list-style: none;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 22px;
}

.contact-card {
  padding: 26px;
}

.contact-card h3 {
  font-size: 22px;
  font-weight: 900;
}

.contact-card p,
.policy-copy p,
.policy-copy li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: rgba(255, 255, 255, .86);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}

.form-grid textarea {
  min-height: 132px;
  padding-top: 14px;
  resize: vertical;
}

.policy-copy {
  max-width: 860px;
}

.legal-meta {
  margin-top: 14px;
  color: var(--blue) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

.policy-copy h2 {
  margin: 34px 0 12px;
  font-size: 28px;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  border: 1px solid rgba(15, 35, 70, .1);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 46px rgba(15, 35, 70, .08);
  overflow: hidden;
}

.faq-list summary {
  min-height: 58px;
  padding: 18px 20px;
  cursor: pointer;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.faq-list p {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}

.product-card small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.product-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: var(--radius);
  color: #0f65df;
  background: rgba(22, 119, 255, .07);
  font-size: 12px;
  font-weight: 900;
}

.product-actions a:last-child {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.product-page .hrms-preview-shell {
  overflow: hidden;
}

.product-dashboard {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.dashboard-kpis,
.timeline-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.dashboard-kpis div,
.timeline-kpis div {
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(15, 35, 70, .09);
  border-radius: 14px;
  background: white;
  box-shadow: 0 14px 28px rgba(15, 35, 70, .06);
}

.dashboard-kpis span,
.timeline-kpis span,
.mock-row span,
.ai-note span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 800;
}

.dashboard-kpis strong,
.timeline-kpis strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.1;
  font-weight: 900;
}

.mock-chart {
  height: 154px;
  padding: 18px;
  display: flex;
  align-items: end;
  gap: 10px;
  border: 1px solid rgba(15, 35, 70, .09);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #eef8ff);
}

.mock-chart i {
  flex: 1;
  min-width: 18px;
  border-radius: 9px 9px 4px 4px;
  background: linear-gradient(180deg, #00c6ff, #1677ff);
}

.mock-chart i:nth-child(1) { height: 48%; }
.mock-chart i:nth-child(2) { height: 70%; }
.mock-chart i:nth-child(3) { height: 56%; }
.mock-chart i:nth-child(4) { height: 86%; }
.mock-chart i:nth-child(5) { height: 62%; }
.mock-chart i:nth-child(6) { height: 78%; }

.mock-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(15, 35, 70, .08);
  border-radius: 12px;
  background: rgba(255, 255, 255, .86);
}

.mock-row strong {
  font-size: 14px;
}

.ai-note {
  padding: 16px;
  border: 1px solid rgba(22, 119, 255, .14);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(22, 119, 255, .1), rgba(0, 198, 255, .08));
}

.ai-note strong {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.45;
}

.timeline-board {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.timeline-track {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(15, 35, 70, .09);
  border-radius: 16px;
  background: white;
  box-shadow: 0 14px 28px rgba(15, 35, 70, .06);
}

.timeline-segment {
  display: grid;
  grid-template-columns: 82px 1fr 74px;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  color: #143050;
  background: linear-gradient(135deg, rgba(22, 119, 255, .12), rgba(0, 198, 255, .08));
  font-size: 12px;
  font-weight: 900;
}

.timeline-segment.sleep { background: #eef4ff; }
.timeline-segment.work { background: #e8f7ff; }
.timeline-segment.gap { background: #fff7e6; color: #835b00; }
.timeline-segment.personal { background: #ecfdf5; color: #075e45; }
.timeline-segment.current { background: linear-gradient(135deg, #1677ff, #00c6ff); color: white; }

.product-form-card {
  padding: 26px;
  border: 1px solid rgba(15, 35, 70, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--card-shadow);
}

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

.product-form-card textarea,
.product-form-card .form-full {
  grid-column: 1 / -1;
}

.form-grid label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}

.form-grid label input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.form-message {
  min-height: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 800;
}

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

.related-products a {
  padding: 18px;
  border: 1px solid rgba(15, 35, 70, .1);
  border-radius: 14px;
  background: white;
  box-shadow: var(--card-shadow);
}

.related-products strong,
.related-products span {
  display: block;
}

.related-products span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

.roadmap-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #5b21b6;
  background: #f5f0ff;
  font-size: 11px;
  font-weight: 900;
}

.health-web-preview {
  display: grid;
  grid-template-columns: 1fr 172px;
  gap: 16px;
  margin-top: 18px;
  align-items: stretch;
}

.health-web-browser,
.health-web-admin {
  border: 1px solid rgba(15, 35, 70, .1);
  border-radius: 16px;
  background: white;
  box-shadow: 0 16px 34px rgba(15, 35, 70, .07);
  overflow: hidden;
}

.health-web-browser {
  min-height: 390px;
}

.health-web-topbar {
  display: flex;
  gap: 7px;
  padding: 12px;
  background: #eef7ff;
  border-bottom: 1px solid rgba(15, 35, 70, .08);
}

.health-web-topbar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(22, 119, 255, .3);
}

.health-web-site {
  padding: 18px;
}

.health-web-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15, 35, 70, .08);
}

.health-web-nav strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.health-web-nav span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 10px;
  font-weight: 900;
}

.health-web-hero-card {
  margin-top: 16px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f8fcff, #eaf8ff);
}

.health-web-hero-card small,
.doctor-card small,
.treatment-row small,
.health-web-admin small {
  display: block;
  color: #0f65df;
  font-size: 10px;
  line-height: 1.3;
  font-weight: 900;
  text-transform: uppercase;
}

.health-web-hero-card strong {
  display: block;
  margin-top: 8px;
  max-width: 340px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.08;
  font-weight: 900;
}

.health-web-hero-card p {
  margin-top: 10px;
  max-width: 390px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
}

.health-web-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.doctor-card,
.treatment-row {
  padding: 14px;
  border: 1px solid rgba(15, 35, 70, .08);
  border-radius: 12px;
  background: rgba(255, 255, 255, .9);
}

.doctor-avatar {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1677ff, #00c6ff);
}

.doctor-card strong,
.treatment-row strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.doctor-card span,
.treatment-row span,
.health-web-admin span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 700;
}

.health-web-phone {
  padding: 10px;
  border-radius: 28px;
  background: #07152f;
  box-shadow: 0 20px 48px rgba(7, 21, 47, .18);
}

.health-web-phone-screen {
  min-height: 300px;
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #e5f7ff);
}

.health-web-phone-screen strong {
  display: block;
  margin-top: 44px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.08;
  font-weight: 900;
}

.health-web-phone-screen span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
}

.health-web-admin {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
}

.health-web-admin div {
  padding: 12px;
  border-radius: 12px;
  background: #f7fbff;
}

.api-boundary {
  padding: 30px;
}

.api-boundary h2 {
  margin-top: 14px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
  font-weight: 900;
}

.api-boundary p {
  margin-top: 16px;
  max-width: 920px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1180px) {
  .hero,
  .platform-strip,
  .product-hero,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

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

  .trust-grid,
  .benefit-grid,
  .industry-grid,
  .deployment-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-card-primary,
  .trust-card-secondary {
    grid-column: span 1;
  }

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

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

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

  .solution-hero-visual {
    min-height: 360px;
    margin-top: 8px;
  }

  .solution-capability-grid,
  .solution-outcome-grid,
  .solution-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

@media (max-width: 920px) {
  .page-shell {
    padding-top: 84px;
  }

  .site-framed {
    padding-top: 84px;
  }

  .site-header {
    top: 10px;
  }

  .nav {
    width: min(100% - 24px, 1240px);
    min-height: 64px;
    padding: 8px 10px;
  }

  .brand img {
    width: 154px;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 84px;
    z-index: 40;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 24px 56px rgba(7, 21, 47, .16);
    backdrop-filter: blur(20px);
  }

  .nav-link,
  .dropdown-menu a {
    min-height: 48px;
    padding: 0 14px;
    display: flex;
    align-items: center;
  }

  .nav-item {
    display: grid;
    grid-template-columns: 1fr 48px;
    align-items: stretch;
    border-radius: var(--radius);
  }

  .nav-item .nav-link {
    padding-right: 14px;
  }

  .dropdown-toggle {
    width: 48px;
    height: 48px;
    border-left: 1px solid rgba(15, 35, 70, .08);
  }

  .dropdown-menu {
    grid-column: 1 / -1;
    position: static;
    min-width: 0;
    padding: 6px 0 10px 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transform-origin: initial;
    display: none;
  }

  .product-dropdown {
    left: auto;
    min-width: 0;
    grid-template-columns: 1fr;
    transform: none;
  }

  .nav-item:hover .product-dropdown,
  .nav-item:focus-within .product-dropdown,
  .nav-item.is-open .product-dropdown {
    transform: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-item:hover .dropdown-menu,
  .nav-item:focus-within .dropdown-menu {
    display: none;
  }

  .nav-item.is-open .dropdown-menu {
    display: grid;
    gap: 6px;
  }

  .dropdown-menu a {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 58px;
    padding: 8px;
    font-size: 12px;
    background: rgba(22, 119, 255, .04);
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:focus-visible {
    transform: none;
  }

  .dropdown-icon {
    width: 34px;
    height: 34px;
    font-size: 9px;
  }

  .dropdown-menu a strong {
    font-size: 12px;
  }

  .dropdown-menu a small {
    margin-top: 2px;
    font-size: 10px;
    line-height: 1.35;
  }

  .mobile-sales-link {
    display: flex;
    margin-top: 4px;
    min-height: 48px;
    justify-content: center;
    border-radius: 8px;
    font-weight: 900;
    color: white !important;
    background: linear-gradient(135deg, var(--blue), var(--cyan)) !important;
    box-shadow: 0 14px 32px rgba(22, 119, 255, .24);
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .nav-actions .btn {
    display: none;
  }

  .section,
  .page-hero {
    padding: 62px 0;
  }

  .hero {
    min-height: auto;
    padding: 46px 0 42px;
    gap: 26px;
  }

  .hero h1 {
    margin-top: 18px;
    max-width: 680px;
    font-size: clamp(38px, 10vw, 52px);
    line-height: 1.02;
  }

  .lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.62;
  }

  .hero-actions {
    margin-top: 24px;
    gap: 12px;
  }

  .hero-actions .btn {
    min-height: 46px;
    padding: 0 15px;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 16px;
  }

  .grid-3,
  .grid-4,
  .timeline,
  .product-grid,
  .benefit-grid,
  .comparison-grid,
  .deployment-grid,
  .feature-grid,
  .industry-grid,
  .media-grid,
  .footer-inner,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 30px;
  }

  .metric {
    padding: 12px;
    min-height: 102px;
  }

  .metric:nth-child(3) {
    grid-column: auto;
    min-height: 102px;
  }

  .metric strong {
    font-size: 21px;
  }

  .metric span {
    margin-top: 7px;
    font-size: 11px;
    line-height: 1.32;
  }

  .metric small {
    margin-top: 8px;
    font-size: 9.8px;
  }

  .trust-section {
    padding: 30px 0 34px;
  }

  .comparison-card,
  .deployment-card {
    padding: 22px;
  }

  .comparison-card h3 {
    font-size: 22px;
  }

  .hero-visual {
    min-height: auto;
  }

  .suite-panel {
    position: relative;
    inset: auto;
    width: 100%;
    padding: 16px;
  }

  .hero-visual::before {
    inset: 5% -4% 0 -4%;
  }

  .suite-panel-head {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
  }

  .suite-panel-head img {
    width: 44px;
    height: 44px;
  }

  .suite-panel-head strong {
    font-size: 15px;
  }

  .orbit {
    display: block;
    margin-top: 16px;
  }

  .center-product {
    width: 96px;
    height: 96px;
    border-radius: 22px;
  }

  .center-product img {
    width: 68px;
    height: 68px;
  }

  .product-dot {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    box-shadow:
      0 10px 22px rgba(15, 35, 70, .12),
      0 0 0 4px rgba(255, 255, 255, .58);
  }

  .product-dot img {
    width: 25px;
    height: 25px;
  }

  .product-dot::after {
    display: none;
  }

  .platform-stage {
    width: 160px;
    height: 44px;
  }

  .ecosystem-caption {
    margin-top: 12px;
  }

  .product-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 4px;
  }

  .solution-hero-content,
  .solution-hero-visual {
    width: 100%;
  }

  .solution-hero-visual {
    position: relative;
    min-height: 420px;
    padding-top: 16px;
  }

  .solution-media-large,
  .solution-media-small,
  .solution-media-tiny {
    position: static;
    width: 100%;
    min-height: auto;
  }

  .solution-media-small,
  .solution-media-tiny {
    margin-top: 12px;
  }

  .solution-capability-grid,
  .solution-product-grid,
  .solution-outcome-grid,
  .timeline,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .floating-note {
    display: none;
  }

  .cta {
    padding: 30px;
  }

  .footer-bottom {
    display: grid;
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .hero,
  .section,
  .page-hero,
  .cta,
  .nav,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

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

  .brand {
    min-width: auto;
  }

  .brand img {
    width: 132px;
  }

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

  .hero {
    padding-top: 40px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-metrics {
    margin-top: 32px;
  }

  .metric i {
    width: 28px;
    height: 28px;
    margin-bottom: 9px;
  }

  .metric {
    min-height: 102px;
  }

  .section-head h2 {
    font-size: 34px;
  }

  .compact-section {
    padding: 48px 0 42px;
  }

  .product-strip-band .compact-section {
    padding: 42px 0 40px;
  }

  .product-strip {
    grid-template-columns: 1fr;
  }

  #zentrack-suite {
    padding-top: 52px;
  }

  .media-frame,
  .media-frame.phone,
  .media-frame.video {
    min-height: 190px;
    width: 100%;
    border-radius: var(--radius);
  }

  .footer-inner,
  .footer-bottom {
    width: min(100% - 28px, 1180px);
  }
}

@media (max-width: 920px) {
  .home-page main > .section {
    padding: 56px 0;
  }

  .home-page main > .band > .section {
    padding: 54px 0;
  }

  .home-page .section-head {
    margin-bottom: 24px;
  }

  .home-page .product-strip-band .compact-section {
    padding: 38px 0 30px;
  }

  .home-page main > #trust.section {
    padding: 30px 0 34px;
  }

  .home-page main > #product-strip.band > .section.compact-section {
    padding: 38px 0 30px;
  }

  .home-page #zentrack-suite {
    padding: 38px 0 38px;
  }

  .home-page #comparison {
    padding-top: 52px;
    padding-bottom: 46px;
  }

  .home-page #zentrack-suite .section-head {
    gap: 18px;
    margin-bottom: 22px;
  }

  .home-page #zentrack-suite .section-head h2 {
    font-size: clamp(31px, 5.8vw, 45px);
  }

  .home-page #zentrack-suite .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-page #zentrack-suite .value-card {
    min-height: 220px;
    padding: 22px;
  }

  .home-page #zentrack-suite .value-card h3 {
    font-size: 17px;
  }

  .home-page #zentrack-suite .value-card p {
    font-size: 12.8px;
  }

  .home-page #why-zentrack .section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .home-page #why-zentrack .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page #why-zentrack .benefit-card {
    min-height: 206px;
    padding: 22px;
  }

  .home-page #deployment .section {
    padding-top: 50px;
    padding-bottom: 32px;
  }

  .home-page #deployment + #security {
    padding-top: 38px;
  }

  .home-page #deployment .deployment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page #deployment .deployment-card {
    min-height: 238px;
    padding: 24px;
  }

  .home-page .cta {
    margin: 34px auto 58px;
  }
}

@media (max-width: 760px) {
  .home-page #zentrack-suite .grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .dashboard-kpis,
  .timeline-kpis,
  .health-web-preview,
  .health-web-admin,
  .related-products,
  .product-form-card .form-grid {
    grid-template-columns: 1fr;
  }

  .product-form-card textarea,
  .product-form-card .form-full {
    grid-column: auto;
  }

  .timeline-segment {
    grid-template-columns: 70px 1fr;
  }

  .timeline-segment span:last-child {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .home-page main > .section {
    padding: 50px 0;
  }

  .home-page main > .band > .section {
    padding: 48px 0;
  }

  .home-page .product-strip-band .compact-section {
    padding: 34px 0 28px;
  }

  .home-page main > #trust.section {
    padding: 30px 0 32px;
  }

  .home-page main > #product-strip.band > .section.compact-section {
    padding: 34px 0 28px;
  }

  .home-page #zentrack-suite {
    padding: 34px 0 34px;
  }

  .home-page #comparison {
    padding-top: 46px;
    padding-bottom: 40px;
  }

  .home-page #zentrack-suite .value-card {
    min-height: auto;
    padding: 24px;
  }

  .home-page #zentrack-suite .section-head h2 {
    font-size: 32px;
  }

  .home-page #zentrack-suite .section-head p {
    font-size: 14px;
    line-height: 1.68;
  }

  .home-page #why-zentrack .section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .home-page #why-zentrack .benefit-grid {
    grid-template-columns: 1fr;
  }

  .home-page #why-zentrack .benefit-card {
    min-height: auto;
    padding: 22px;
  }

  .home-page #deployment .section {
    padding-top: 46px;
    padding-bottom: 30px;
  }

  .home-page #deployment + #security {
    padding-top: 34px;
  }

  .home-page #deployment .deployment-grid {
    grid-template-columns: 1fr;
  }

  .home-page #deployment .deployment-card {
    min-height: auto;
    padding: 24px;
  }

  .home-page #deployment .deployment-card em {
    top: 22px;
    right: 22px;
    max-width: calc(100% - 92px);
  }
}


/* Zentrack HRMS landing page */
.hrms-page{background:linear-gradient(180deg,#f7fbff 0%,#ffffff 38%,#f6fbff 100%)}.hrms-page main{overflow:hidden}.hrms-page a:focus-visible,.hrms-page summary:focus-visible{outline:3px solid rgba(22,119,255,.28);outline-offset:3px}.hrms-hero{width:min(1240px,calc(100% - 40px));min-height:calc(100vh - 120px);margin:0 auto;padding:142px 0 52px;display:grid;grid-template-columns:minmax(0,1fr) minmax(420px,.86fr);gap:42px;align-items:center}.hrms-hero h1{margin-top:22px;max-width:760px;font-size:clamp(42px,5vw,72px);line-height:1.03;font-weight:900}.hrms-lead{margin-top:22px;max-width:720px;color:var(--muted);font-size:clamp(17px,1.8vw,21px);line-height:1.7}.hrms-hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px}.hrms-trust-strip{display:flex;flex-wrap:wrap;gap:10px;margin-top:28px}.hrms-trust-strip span,.hrms-chip-list span,.hrms-feature-list span,.hrms-roadmap span{display:inline-flex;align-items:center;min-height:36px;padding:8px 12px;border:1px solid rgba(15,35,70,.1);border-radius:999px;background:rgba(255,255,255,.76);color:#29415f;font-size:12px;font-weight:800}.hrms-preview-shell{position:relative;padding:20px;border:1px solid rgba(22,119,255,.16);border-radius:18px;background:linear-gradient(135deg,rgba(255,255,255,.96),rgba(236,248,255,.84));box-shadow:0 30px 90px rgba(15,35,70,.16)}.hrms-preview-top{display:flex;gap:12px;align-items:center}.hrms-preview-top img{border-radius:12px}.hrms-preview-top strong,.hrms-preview-top span{display:block}.hrms-preview-top span{margin-top:4px;color:var(--muted);font-size:11px;font-weight:700}.hrms-preview-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:18px}.hrms-preview-grid article{min-height:150px;padding:16px;border:1px solid rgba(15,35,70,.1);border-radius:14px;background:#fff;box-shadow:0 16px 34px rgba(15,35,70,.07)}.hrms-preview-grid span,.hrms-phone-screen span,.hrms-message-head span{display:block;color:#0f65df;font-size:11px;font-weight:900;text-transform:uppercase}.hrms-preview-grid strong{display:block;margin-top:8px;font-size:15px}.hrms-bars{height:62px;display:flex;gap:8px;align-items:end;margin-top:18px}.hrms-bars i{flex:1;border-radius:8px 8px 3px 3px;background:linear-gradient(180deg,#00c6ff,#1677ff)}.hrms-bars i:nth-child(1){height:42%}.hrms-bars i:nth-child(2){height:72%}.hrms-bars i:nth-child(3){height:58%}.hrms-bars i:nth-child(4){height:86%}.hrms-mini-list{display:grid;gap:8px;margin-top:20px}.hrms-mini-list i,.hrms-payroll-line{height:9px;border-radius:999px;background:#e7f1ff}.hrms-payroll-line{margin-top:34px;box-shadow:0 18px 0 #d6f7ee,0 36px 0 #eaf1ff}.hrms-chat-dots{display:flex;gap:8px;margin-top:28px}.hrms-chat-dots i{width:30px;height:30px;border-radius:50%;background:linear-gradient(135deg,#1677ff,#00c6ff)}.hrms-phone-card{position:absolute;right:-18px;bottom:-28px;width:168px;padding:10px;border-radius:28px;background:#07152f;box-shadow:0 22px 48px rgba(7,21,47,.22)}.hrms-phone-screen{min-height:230px;padding:18px;border-radius:22px;background:linear-gradient(180deg,#f8fcff,#dff5ff)}.hrms-phone-screen strong{display:block;margin-top:42px;font-size:22px}.hrms-phone-screen small{display:block;margin-top:8px;color:var(--muted);font-weight:700}.hrms-value-band{width:min(1180px,calc(100% - 40px));margin:0 auto;padding:18px;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;border:1px solid rgba(15,35,70,.09);border-radius:18px;background:rgba(255,255,255,.78);box-shadow:var(--card-shadow)}.hrms-value-item{padding:18px;border-radius:14px;background:#fff}.hrms-value-item strong,.hrms-value-item span{display:block}.hrms-value-item span{margin-top:8px;color:var(--muted);font-size:13px;line-height:1.55}.hrms-module-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:14px}.hrms-card,.hrms-plan{padding:22px;border:1px solid rgba(15,35,70,.1);border-radius:16px;background:rgba(255,255,255,.84);box-shadow:var(--card-shadow);backdrop-filter:blur(16px)}.hrms-card>span{display:grid;place-items:center;width:40px;height:40px;border-radius:12px;background:linear-gradient(135deg,rgba(22,119,255,.13),rgba(0,198,255,.12));color:#0f65df;font-weight:900}.hrms-card h3{margin-top:18px;font-size:18px}.hrms-card p,.hrms-large-card p{margin-top:10px;color:var(--muted);font-size:14px;line-height:1.65}.hrms-split-band,.hrms-message-section{background:linear-gradient(180deg,rgba(238,247,255,.72),rgba(255,255,255,.72));border-block:1px solid rgba(15,35,70,.08)}.hrms-split,.hrms-two-column{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:28px;align-items:center}.hrms-split h2,.hrms-large-card h2{margin-top:14px;font-size:clamp(30px,3.4vw,48px);line-height:1.08;font-weight:900}.hrms-split p{margin-top:16px;color:var(--muted);font-size:16px;line-height:1.75}.hrms-chip-list,.hrms-feature-list{display:flex;flex-wrap:wrap;gap:10px;margin-top:20px}.hrms-workflow-card,.hrms-notification-grid{display:grid;gap:12px}.hrms-workflow-card div,.hrms-notification-grid div{padding:22px;border-radius:16px;background:#fff;border:1px solid rgba(15,35,70,.1);box-shadow:var(--card-shadow)}.hrms-workflow-card strong,.hrms-notification-grid strong{display:block}.hrms-workflow-card span,.hrms-notification-grid span{display:block;margin-top:8px;color:var(--muted);font-size:14px;line-height:1.55}.hrms-phone-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:14px}.hrms-phone-mock{padding:10px;border-radius:28px;background:#07152f;box-shadow:0 20px 48px rgba(7,21,47,.16)}.hrms-phone-mock div{min-height:250px;padding:18px;border-radius:22px;background:linear-gradient(180deg,#ffffff,#e5f7ff)}.hrms-phone-mock span,.hrms-phone-mock small{display:block;color:var(--muted);font-size:12px;font-weight:800}.hrms-phone-mock strong{display:block;margin-top:70px;font-size:22px}.hrms-message-panel{padding:20px;border-radius:18px;background:#07152f;color:white;box-shadow:0 30px 90px rgba(7,21,47,.2)}.hrms-message-head{padding-bottom:18px;border-bottom:1px solid rgba(255,255,255,.12)}.hrms-message-head span{color:#a9e8ff;text-transform:none}.hrms-message-row{width:fit-content;max-width:82%;margin-top:16px;padding:13px 15px;border-radius:14px;background:rgba(255,255,255,.1);font-weight:800}.hrms-message-row.outbound{margin-left:auto;background:linear-gradient(135deg,#1677ff,#00c6ff)}.hrms-message-row b{margin-left:8px;color:#9ff7d0}.hrms-large-card{min-height:100%}.hrms-compare{display:grid;margin-top:18px;border:1px solid rgba(15,35,70,.1);border-radius:14px;overflow:hidden}.hrms-compare div{display:grid;grid-template-columns:1.1fr 1fr 1fr;gap:10px;padding:12px;border-bottom:1px solid rgba(15,35,70,.08);font-size:12px}.hrms-compare div:first-child{background:#eef7ff;font-weight:900}.hrms-compare div:last-child{border-bottom:0}.hrms-compare strong{color:#0f65df}.hrms-plan-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.hrms-plan{display:grid;gap:14px}.hrms-plan strong{font-size:24px}.hrms-plan span{color:var(--muted);font-weight:800}.hrms-roadmap{display:flex;flex-wrap:wrap;gap:10px}.hrms-roadmap span{border-color:rgba(124,58,237,.18);background:#f5f0ff;color:#5b21b6}.hrms-faq{max-width:980px}.hrms-final-cta{width:min(1180px,calc(100% - 40px));margin:0 auto 74px;padding:34px;display:grid;grid-template-columns:1fr auto;gap:24px;align-items:center;border-radius:20px;background:linear-gradient(135deg,#07152f,#103a6f);color:white;box-shadow:0 30px 86px rgba(7,21,47,.22)}.hrms-final-cta p{margin-top:14px;max-width:760px;color:#c9d7f0;line-height:1.7}.hrms-final-cta .btn-secondary{background:rgba(255,255,255,.1);color:white;border-color:rgba(255,255,255,.24)}@media (max-width:1180px){.hrms-hero,.hrms-split,.hrms-two-column,.hrms-final-cta{grid-template-columns:1fr}.hrms-module-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.hrms-phone-grid,.hrms-plan-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.hrms-final-cta .hrms-hero-actions{justify-content:flex-start}}@media (max-width:760px){.hrms-hero{width:min(100% - 28px,1180px);padding-top:118px}.hrms-hero h1{font-size:38px}.hrms-preview-grid,.hrms-value-band,.hrms-module-grid,.hrms-phone-grid,.hrms-plan-grid{grid-template-columns:1fr}.hrms-phone-card{position:static;width:100%;margin-top:14px}.hrms-phone-screen{min-height:170px}.hrms-compare{overflow-x:auto}.hrms-compare div{min-width:560px}.hrms-final-cta{width:min(100% - 28px,1180px);padding:24px}.hrms-hero-actions{flex-direction:column}.hrms-hero-actions .btn{width:100%}.hrms-message-row{max-width:100%}}@media (prefers-reduced-motion:reduce){.hrms-page *{animation:none!important;transition:none!important;scroll-behavior:auto!important}}
