:root {
  --navy: #071f42;
  --navy-2: #0b2d5b;
  --blue: #1769e0;
  --sky: #5aa8ff;
  --orange: #ff8a1f;
  --mint: #19b889;
  --red: #e45757;
  --ink: #17233b;
  --muted: #6d7890;
  --line: #e7ebf1;
  --soft: #f4f7fb;
  --white: #fff;
  --shadow: 0 22px 70px rgba(9, 34, 73, 0.13);
  --font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ui);
  background: #fff;
  line-height: 1.6;
}
button,
a,
input,
select {
  font: inherit;
}
.container {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.eyebrow:before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 9px;
  background: var(--orange);
}
.icon {
  width: 20px;
  height: 20px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-sm {
  width: 15px;
  height: 15px;
}
.icon-lg {
  width: 23px;
  height: 23px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.18;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.section-lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
}
.section {
  padding: 106px 0;
}
.section-head {
  margin-bottom: 46px;
}

/* Navigation */
.nav {
  height: 72px;
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 31, 66, 0.78);
  backdrop-filter: blur(18px);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}
.brand-mark svg {
  width: 38px;
  height: 38px;
}
.links {
  display: flex;
  align-items: center;
}
.links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-decoration: none;
}
.links a:hover {
  color: #fff;
}
.nav-actions {
  display: flex;
}
.btn {
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: 0.22s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #2b7ef0, #135ac7);
  box-shadow: 0 12px 28px rgba(23, 105, 224, 0.25);
}
.btn-white {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 25px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(
      circle at 84% 16%,
      rgba(46, 123, 235, 0.46),
      transparent 28%
    ),
    radial-gradient(circle at 68% 72%, rgba(0, 198, 255, 0.12), transparent 26%),
    linear-gradient(135deg, #061a38 0%, #082851 55%, #063c67 100%);
  padding: 150px 0 104px;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.028) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to right, transparent, black 55%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy {
  padding-top: 10px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(115, 190, 255, 0.26);
  background: rgba(53, 137, 239, 0.13);
  border-radius: 999px;
  color: #a8d5ff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 25px;
}
.hero-tag i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #56d7ac;
  box-shadow: 0 0 0 5px rgba(86, 215, 172, 0.12);
}
.hero h1 {
  font-size: clamp(43px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  margin-bottom: 25px;
}
.hero h1 span {
  display: block;
  color: #73baff;
  margin-top: 10px;
}
.hero-lead {
  font-size: 20px;
  line-height: 1.65;
  color: #fff;
  margin-bottom: 10px;
}
.hero-lead strong {
  color: #ffc46f;
}
.hero-sub {
  max-width: 545px;
  color: rgba(229, 240, 255, 0.68);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
}
.trust {
  display: flex;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  flex-wrap: wrap;
}
.trust span {
  display: inline-flex;
  align-items: center;
}
.trust span:before {
  content: "";
  width: 12px;
  height: 7px;
  border-left: 2px solid #62dcaf;
  border-bottom: 2px solid #62dcaf;
  transform: rotate(-45deg) translateY(-1px);
}
.product-shell {
  position: relative;
  padding: 10px 0 28px;
}
.window {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 40px 100px rgba(0, 4, 21, 0.36);
  border-radius: 22px;
  overflow: hidden;
  transform: perspective(1300px) rotateY(-2deg) rotateX(1deg);
}
.window-top {
  height: 49px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e8edf3;
  background: #fbfcfe;
}
.dots {
  display: flex;
}
.dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.window-title {
  color: #909aad;
  font-size: 11px;
  margin-left: auto;
}
.dash {
  display: grid;
  grid-template-columns: 132px 1fr;
  min-height: 424px;
  color: var(--ink);
}
.sidebar {
  padding: 22px 14px;
  background: #0a2851;
}
.mini-brand {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 0 8px 19px;
}
.side-item {
  height: 33px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  margin-bottom: 6px;
}
.side-item.active {
  color: #fff;
  background: #1b65c6;
}
.side-item b {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 2px;
}
.dash-main {
  padding: 20px;
  background: #f3f6fa;
}
.dash-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 15px;
}
.dash-head h3 {
  font-size: 17px;
  margin: 0;
}
.dash-head small {
  font-size: 9px;
  color: #929cae;
}
.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.kpi {
  padding: 12px;
  background: #fff;
  border: 1px solid #e9edf3;
  border-radius: 10px;
}
.kpi small {
  display: block;
  color: #8a94a8;
  font-size: 8px;
}
.kpi strong {
  display: block;
  font-size: 19px;
  line-height: 1.35;
  margin-top: 4px;
}
.kpi em {
  font-size: 8px;
  color: var(--mint);
  font-style: normal;
}
.charts {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  margin-top: 10px;
}
.chart-card {
  background: #fff;
  border: 1px solid #e9edf3;
  border-radius: 11px;
  padding: 13px;
}
.chart-title {
  font-size: 10px;
  font-weight: 800;
  margin-bottom: 11px;
}
.chart-area {
  height: 128px;
  position: relative;
  overflow: hidden;
  background: repeating-linear-gradient(
    to bottom,
    #fff 0,
    #fff 31px,
    #edf1f6 32px
  );
}
.line-svg {
  width: 100%;
  height: 100%;
}
.donut-wrap {
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.donut {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 0 66%, #65b6ff 66% 82%, #e9eef5 82%);
  position: relative;
}
.donut:after {
  content: "82%";
  position: absolute;
  inset: 18px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 850;
}
.activity {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 10px;
}
.activity .chart-card {
  height: 79px;
}
.progress {
  height: 6px;
  background: #edf1f6;
  border-radius: 9px;
  margin-top: 12px;
  overflow: hidden;
}
.progress i {
  display: block;
  width: 78%;
  height: 100%;
  background: linear-gradient(90deg, #2a77e5, #5cb9ff);
}
.float-card {
  position: absolute;
  z-index: 3;
  background: #fff;
  color: var(--ink);
  border: 1px solid #e7ebf1;
  border-radius: 14px;
  box-shadow: 0 16px 44px rgba(0, 13, 37, 0.2);
  padding: 12px 15px;
  display: flex;
  align-items: center;
}
.float-card.top {
  right: -26px;
  top: -16px;
}
.float-card.bottom {
  left: -28px;
  bottom: 3px;
}
.float-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.float-card b {
  display: block;
  font-size: 12px;
}
.float-card small {
  display: block;
  color: #95a0b3;
  font-size: 9px;
}

/* Hero business journey: a code-native product story instead of a fake screenshot */
.hero-operations {
  min-height: 560px;
  padding: 26px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(130, 185, 255, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 83% 10%, rgba(62, 146, 255, 0.2), transparent 31%),
    linear-gradient(145deg, rgba(13, 50, 94, 0.96), rgba(6, 30, 61, 0.98));
  box-shadow: 0 40px 100px rgba(0, 8, 31, 0.34);
}
.hero-operations:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 310px;
  height: 310px;
  right: -108px;
  bottom: -154px;
  border: 74px solid rgba(38, 126, 236, 0.08);
  border-radius: 50%;
}
.hero-ops-head,
.hero-journey-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-ops-head strong {
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.hero-ops-head > span {
  display: inline-flex;
  align-items: center;
  color: #a9c6e9;
  font-size: 11px;
}
.hero-ops-head i {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #52d6a2;
  box-shadow: 0 0 0 5px rgba(82, 214, 162, 0.09);
}
.hero-ops-status {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 15px -4px 0;
}
.hero-ops-status > div {
  min-width: 0;
  margin: 0 4px;
  padding: 14px 13px;
  border: 1px solid rgba(155, 199, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}
.hero-ops-status small,
.hero-ops-status strong,
.hero-ops-status em {
  display: block;
}
.hero-ops-status small {
  overflow: hidden;
  color: #a9bdd8;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-ops-status strong {
  margin-top: 7px;
  color: #fff;
  font-size: 18px;
  line-height: 1.15;
}
.hero-ops-status em {
  margin-top: 7px;
  overflow: hidden;
  color: #59d6a6;
  font-size: 8px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-journey {
  margin-top: 16px;
  padding: 20px 20px 18px;
  border: 1px solid rgba(155, 199, 255, 0.15);
  border-radius: 18px;
  background: rgba(2, 20, 44, 0.46);
}
.hero-journey-head strong {
  color: #fff;
  font-size: 13px;
}
.hero-journey-head span {
  color: #7897bd;
  font-size: 9px;
}
.hero-journey ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.hero-journey ol:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, #59d6a6, #479fff 52%, #788af8);
  opacity: 0.66;
}
.hero-journey li {
  position: relative;
  z-index: 1;
  min-width: 0;
  color: #bed0e6;
  font-size: 10px;
  text-align: center;
}
.hero-journey li i {
  display: block;
  width: 21px;
  height: 21px;
  margin: 0 auto 8px;
  border: 5px solid #0d315e;
  border-radius: 50%;
  background: #5bd7a8;
  box-shadow: 0 0 0 1px rgba(145, 220, 255, 0.3);
}
.hero-journey li:nth-child(2) i,
.hero-journey li:nth-child(3) i {
  background: #49a8ff;
}
.hero-journey li:nth-child(4) i,
.hero-journey li:nth-child(5) i {
  background: #7e8df7;
}
.hero-ops-modules,
.hero-ops-alerts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 8px -5px 0;
}
.hero-ops-modules > div {
  min-width: 0;
  margin: 5px;
  padding: 13px 14px;
  border-left: 2px solid #3698f8;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
}
.hero-ops-modules span,
.hero-ops-modules small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-ops-modules span {
  color: #edf6ff;
  font-size: 11px;
  font-weight: 750;
}
.hero-ops-modules small {
  margin-top: 5px;
  color: #819bbd;
  font-size: 8px;
}
.hero-ops-alerts {
  margin-top: 7px;
}
.hero-ops-alerts > div {
  min-width: 0;
  display: flex;
  align-items: center;
  margin: 5px;
  padding: 10px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(0, 10, 33, 0.14);
}
.hero-ops-alerts > div > span:last-child {
  min-width: 0;
  margin-left: 9px;
}
.hero-ops-alerts b,
.hero-ops-alerts small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-ops-alerts b {
  font-size: 10px;
}
.hero-ops-alerts small {
  margin-top: 3px;
  color: #94a0b2;
  font-size: 8px;
}
.hero-alert-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #236fdb;
  border-radius: 10px;
  background: #e9f2ff;
  font-size: 12px;
  font-weight: 850;
}
.hero-alert-icon.success {
  color: #089b70;
  background: #e8f8f2;
}
.hero-alert-icon svg {
  width: 17px;
  height: 17px;
}

/* Pain / features */
.pain {
  background: #fff;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pain-card {
  padding: 26px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid transparent;
  transition: 0.28s ease;
}
.pain-card:hover {
  border-color: #dbe5f3;
  background: #fff;
  box-shadow: 0 15px 40px rgba(7, 31, 66, 0.08);
  transform: translateY(-4px);
}
.pain-icon,
.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.pain-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.pain-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
.features {
  background: linear-gradient(180deg, #f5f8fc, #eef4fa);
}
.feature-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
}
.feature-menu {
  display: flex;
  flex-direction: column;
}
.feature-tab {
  border: 1px solid transparent;
  background: transparent;
  border-radius: 16px;
  padding: 18px;
  text-align: left;
  display: grid;
  grid-template-columns: 38px 1fr;
  color: var(--muted);
  cursor: pointer;
}
.feature-tab strong {
  display: block;
  color: var(--ink);
  margin-bottom: 3px;
}
.feature-tab span {
  font-size: 12px;
}
.feature-tab > span:last-child {
  min-width: 0;
  padding-left: 13px;
}
.feature-tab .num {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}
.feature-tab.active {
  background: #fff;
  border-color: #dfe7f1;
  box-shadow: 0 16px 40px rgba(7, 31, 66, 0.08);
}
.feature-stage {
  min-height: 560px;
  background: #fff;
  border: 1px solid #e3eaf2;
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.stage-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 26px;
}
.stage-top h3 {
  font-size: 25px;
  margin-bottom: 7px;
}
.stage-top p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
.stage-tag {
  font-size: 11px;
  color: #147059;
  background: #eafaf5;
  border: 1px solid #c6f2e4;
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.workbench {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}
.work-card {
  border: 1px solid #e7ebf1;
  border-radius: 16px;
  padding: 18px;
  background: #fbfcfe;
}
.work-card h4 {
  font-size: 13px;
  margin: 0 0 14px;
}
.people {
  display: flex;
  flex-direction: column;
}
.person {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  padding: 9px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #edf0f4;
}
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, #dbeafe, #e7efff);
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}
.person b {
  font-size: 11px;
  display: block;
}
.person small {
  font-size: 8px;
  color: #9aa3b4;
}
.status {
  font-size: 8px;
  padding: 3px 6px;
  border-radius: 99px;
  color: #137b5a;
  background: #e8f9f3;
}
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.bed {
  height: 50px;
  border-radius: 9px;
  border: 1px solid #dce8f7;
  background: #edf5ff;
  display: grid;
  place-items: center;
  font-size: 9px;
  color: #2e70c9;
}
.bed.empty {
  background: #f7f8fa;
  color: #a1a9b7;
  border-style: dashed;
}
.mini-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 14px;
}
.mini-stat {
  background: #fff;
  border: 1px solid #e9edf2;
  border-radius: 10px;
  padding: 12px;
}
.mini-stat span {
  font-size: 8px;
  color: #949eb0;
}
.mini-stat b {
  display: block;
  font-size: 17px;
}
.timeline {
  position: relative;
  padding-left: 18px;
}
.timeline:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #dce4ee;
}
.timeline div {
  font-size: 10px;
  margin-bottom: 16px;
  position: relative;
}
.timeline div:before {
  content: "";
  position: absolute;
  left: -17px;
  top: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px #e8f2ff;
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}
.feature-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}
.quick {
  padding: 19px;
  border-radius: 14px;
  border: 1px solid #e6ebf2;
  background: #fff;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
}
.quick-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: #eef5ff;
  color: var(--blue);
  display: grid;
  place-items: center;
}
.quick > span:last-child {
  min-width: 0;
  padding-left: 12px;
}
.quick b {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}
.quick > span:last-child > span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}
.process-text {
  display: flex !important;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-size: 10px !important;
}
.process-text i {
  flex: 0 0 10px;
  width: 10px;
  height: 1px;
  background: #a9b5c6;
  position: relative;
}
.process-text i:after {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #a9b5c6;
  border-right: 1px solid #a9b5c6;
  transform: rotate(45deg);
}

/* Role collaboration */
.roles {
  background: #fff;
}
.role-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
}
.role-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.role-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
  transition: 0.28s ease;
}
.role-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(7, 31, 66, 0.08);
  border-color: #d7e2f1;
}
.role-head {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.role-mark {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eaf3ff;
  font-size: 13px;
  font-weight: 900;
}
.role-card:nth-child(2) .role-mark {
  color: #118e6a;
  background: #eaf9f4;
}
.role-card:nth-child(3) .role-mark {
  color: #d66b13;
  background: #fff3e8;
}
.role-card:nth-child(4) .role-mark {
  color: #6759c9;
  background: #f1efff;
}
.role-head h3 {
  font-size: 17px;
  margin: 0;
}
.role-head span {
  display: block;
  font-size: 10px;
  color: var(--muted);
}
.role-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.role-card li {
  position: relative;
  padding-left: 15px;
  color: #68748a;
  font-size: 13px;
  margin: 9px 0;
}
.role-card li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #86a9d8;
}

/* Dark data screen */
.screen-section {
  padding: 105px 0;
  background: #06152f;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.screen-section:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 60%;
  background: radial-gradient(
    ellipse at center bottom,
    rgba(22, 112, 224, 0.3),
    transparent 65%
  );
}
.screen-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.screen-head p {
  color: rgba(255, 255, 255, 0.56);
  max-width: 520px;
}
.screen-frame {
  position: relative;
  margin-top: 42px;
  padding: 22px;
  border: 1px solid rgba(124, 188, 255, 0.22);
  background: rgba(9, 38, 77, 0.72);
  border-radius: 24px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
}
.screen-kpis {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.screen-kpi {
  padding: 17px 13px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.screen-kpi span {
  display: block;
  font-size: 10px;
  color: #7b92b2;
}
.screen-kpi b {
  display: block;
  color: #72c8ff;
  font-size: 23px;
  margin-top: 5px;
}
.screen-kpi em {
  font-size: 9px;
  color: #4fd7ad;
  font-style: normal;
}
.screen-charts {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  margin-top: 12px;
}
.screen-card {
  height: 210px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.035);
  padding: 16px;
}
.screen-card h4 {
  font-size: 11px;
  color: #c8d7eb;
  margin: 0 0 12px;
}
.bars {
  height: 144px;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.bars i {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, #1666d4, #58c3ff);
  min-height: 16%;
}
.rings {
  height: 140px;
  display: grid;
  place-items: center;
}
.ring {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: conic-gradient(
    #3eb4ff 0 64%,
    #20cfa0 64% 83%,
    rgba(255, 255, 255, 0.08) 83%
  );
  position: relative;
}
.ring:after {
  content: "在岗\A 86.6%";
  white-space: pre;
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  background: #0d284f;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 10px;
}
.risk-list {
  display: flex;
  flex-direction: column;
}
.risk {
  padding: 9px 10px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #cbd7e8;
}
.risk span:last-child {
  color: #ffbf75;
}

/* ROI and pricing */
.roi {
  background: #fff;
}
.roi-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}
.roi-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.roi-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.roi-card strong {
  font-size: 28px;
  display: block;
  line-height: 1.2;
}
.roi-card b {
  display: block;
  font-size: 14px;
  margin: 9px 0 5px;
}
.roi-card span {
  font-size: 12px;
  color: var(--muted);
}
.roi-quote {
  margin-top: 26px;
  padding: 20px 22px;
  border-left: 4px solid var(--orange);
  background: #fff8f0;
  border-radius: 0 13px 13px 0;
  color: #815128;
  font-size: 14px;
}
.pricing {
  background: var(--soft);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}
.price-card {
  position: relative;
  padding: 29px 23px;
  border: 1px solid #e1e7ef;
  border-radius: 19px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: 0.28s ease;
}
.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(7, 31, 66, 0.09);
}
.price-card.featured {
  border: 2px solid var(--blue);
  box-shadow: 0 24px 60px rgba(23, 105, 224, 0.17);
  transform: translateY(-10px);
}
.price-card.featured:hover {
  transform: translateY(-14px);
}
.recommend {
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--blue);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}
.price-name {
  font-size: 17px;
  font-weight: 850;
}
.price-sub {
  color: var(--muted);
  font-size: 11px;
  margin-top: 3px;
}
.price {
  font-size: 34px;
  font-weight: 900;
  margin: 22px 0 6px;
  letter-spacing: -0.04em;
}
.price small {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.old {
  font-size: 11px;
  color: #9da5b3;
  text-decoration: line-through;
}
.quota {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 20px 0;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quota div {
  text-align: center;
}
.quota b {
  display: block;
  font-size: 13px;
}
.quota span {
  font-size: 9px;
  color: var(--muted);
}
.price ul {
  padding-left: 0;
  list-style: none;
  margin: 0 0 25px;
  flex: 1;
}
.price-card li {
  position: relative;
  padding-left: 20px;
  font-size: 12px;
  color: #566178;
  margin-bottom: 9px;
}
.price-card li:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 5px;
  width: 9px;
  height: 5px;
  border-left: 1.5px solid var(--mint);
  border-bottom: 1.5px solid var(--mint);
  transform: rotate(-45deg);
}
.price-btn {
  width: 100%;
  min-height: 43px;
  border-radius: 11px;
  border: 1px solid #dce3ec;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: 0.22s ease;
}
.price-btn:hover {
  border-color: #aebed2;
  background: #f8fafc;
}
.featured .price-btn {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.featured .price-btn:hover {
  background: #0f5ccc;
}
.promo {
  margin-top: 30px;
  background: linear-gradient(135deg, #102f5d, #0a1e3f);
  color: #fff;
  border-radius: 20px;
  padding: 27px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.promo-copy {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
}
.promo-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffca82;
  display: grid;
  place-items: center;
}
.promo h3 {
  margin-bottom: 5px;
}
.promo p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 13px;
}
.invite {
  padding: 11px 15px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #ffcb85;
  white-space: nowrap;
}

/* CTA/footer */
.cta {
  padding: 98px 0;
  background: linear-gradient(125deg, #146be0, #0d3f8c);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta:after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  right: -100px;
  top: -170px;
  border: 70px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cta h2 {
  max-width: 670px;
  margin-bottom: 11px;
}
.cta p {
  color: rgba(255, 255, 255, 0.67);
  margin: 0;
}
.cta-actions {
  display: flex;
  flex-shrink: 0;
}
.footer {
  padding: 46px 0;
  background: #06152f;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .brand {
  font-size: 14px;
}
.footer-links {
  display: flex;
}
.footer a {
  color: inherit;
  text-decoration: none;
}
.mobile-nav {
  display: none;
  position: fixed;
  z-index: 29;
  top: 64px;
  left: 15px;
  right: 15px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(7, 31, 66, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}
.mobile-nav.open {
  display: grid;
}
.mobile-nav a {
  color: #fff;
  text-decoration: none;
  padding: 11px 12px;
  border-radius: 9px;
  font-size: 14px;
}
.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.07);
}

/* Reveal and focus */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(90, 168, 255, 0.58);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .links {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: 700px;
  }
  .product-shell {
    max-width: 760px;
  }
  .pain-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-layout {
    grid-template-columns: 1fr;
  }
  .feature-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .feature-tab {
    grid-template-columns: 1fr;
    padding: 14px;
  }
  .feature-tab .num {
    display: none;
  }
  .screen-kpis {
    grid-template-columns: repeat(3, 1fr);
  }
  .screen-charts {
    grid-template-columns: 1fr 1fr;
  }
  .screen-card:first-child {
    grid-column: 1/-1;
  }
  .role-layout,
  .roi-grid {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 30px, 1180px);
  }
  .section {
    padding: 76px 0;
  }
  .nav {
    height: 64px;
  }
  .nav-actions .btn-ghost {
    display: none;
  }
  .nav-actions .btn-primary {
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
  }
  .menu-btn {
    display: block;
  }
  .hero {
    padding: 118px 0 84px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero-grid {
  }
  .dash {
    grid-template-columns: 1fr;
  }
  .sidebar {
    display: none;
  }
  .dash-main {
    padding: 12px;
  }
  .kpis {
    grid-template-columns: repeat(2, 1fr);
  }
  .charts {
    grid-template-columns: 1fr;
  }
  .window {
    border-radius: 15px;
  }
  .float-card {
    display: none;
  }
  .pain-grid,
  .pricing-grid,
  .roi-cards,
  .role-list {
    grid-template-columns: 1fr;
  }
  .feature-menu {
    grid-template-columns: 1fr 1fr;
  }
  .feature-tab span {
    display: none;
  }
  .feature-stage {
    padding: 18px;
    min-height: 0;
  }
  .workbench {
    grid-template-columns: 1fr;
  }
  .feature-quick {
    grid-template-columns: 1fr;
  }
  .screen-head {
    display: block;
  }
  .screen-kpis {
    grid-template-columns: repeat(2, 1fr);
  }
  .screen-charts {
    grid-template-columns: 1fr;
  }
  .screen-card:first-child {
    grid-column: auto;
  }
  .price-card.featured,
  .price-card.featured:hover {
    transform: none;
  }
  .promo,
  .cta-actions,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .promo-copy {
    grid-template-columns: 1fr;
  }
  .footer-links {
    flex-wrap: wrap;
  }
  .cta-actions {
    width: 100%;
  }
  .cta-actions .btn {
    width: 100%;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Official site integration: reference layout, production API states and no-gap spacing */
:root {
  --serif: var(--font-ui);
  --scrollbar-track: #071f42;
  --scrollbar-thumb: #2f75c7;
  --scrollbar-hover: #5aa8ff;
}
html {
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  scrollbar-width: thin;
  scroll-padding-top: 82px;
}
html::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}
html::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}
html::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border: 3px solid var(--scrollbar-track);
  border-radius: 999px;
}
html::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-hover);
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
button,
a,
input,
select {
  font-family: var(--font-ui);
}
button,
a {
  touch-action: manipulation;
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 18px;
  top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.brand-logo {
  display: block;
  flex: 0 0 auto;
}
.brand-logo + span {
  margin-left: 12px;
}
.links a + a {
  margin-left: 32px;
}
.nav-actions > span > * + * {
  margin-left: 10px;
}
.nav-actions > span + span,
.nav-actions > .menu-btn {
  margin-left: 10px;
}
.btn svg {
  margin-left: 9px;
}
.hero-copy {
  margin-right: 33px;
}
.product-shell {
  margin-left: 33px;
}
.hero-actions > * + * {
  margin-left: 12px;
}
.trust span + span {
  margin-left: 22px;
}
.dots i + i {
  margin-left: 7px;
}
.side-item b {
  margin-right: 8px;
}
.trust span:before {
  margin-right: 8px;
}
.float-card > * + * {
  margin-left: 10px;
}
.donut:after {
  content: "实时";
}
.kpis,
.charts,
.activity,
.pain-grid,
.role-list,
.roi-cards,
.pricing-grid,
.screen-charts,
.screen-kpis {
  margin-left: -7px;
  margin-right: -7px;
}
.kpis > *,
.charts > *,
.activity > *,
.pain-grid > *,
.role-list > *,
.roi-cards > *,
.pricing-grid > *,
.screen-charts > *,
.screen-kpis > * {
  margin-left: 7px;
  margin-right: 7px;
}
.kpis,
.charts,
.activity,
.pain-grid,
.role-list,
.roi-cards,
.pricing-grid,
.screen-charts,
.screen-kpis {
  margin-top: -7px;
  margin-bottom: -7px;
}
.kpis > *,
.charts > *,
.activity > *,
.pain-grid > *,
.role-list > *,
.roi-cards > *,
.pricing-grid > *,
.screen-charts > *,
.screen-kpis > * {
  margin-top: 7px;
  margin-bottom: 7px;
}
.feature-layout {
  grid-template-columns: 340px minmax(0, 1fr);
  align-items: start;
}
.feature-menu {
  display: block;
  margin-right: 13px;
}
.feature-stage {
  margin-left: 13px;
}
.feature-menu .feature-tab {
  width: 100%;
}
.feature-menu .feature-tab + .feature-tab {
  margin-top: 10px;
}
.workbench {
  margin: -7px;
}
.workbench > * {
  margin: 7px;
}
.people .person + .person,
.risk-list .risk + .risk {
  margin-top: 9px;
}
.person > * + * {
  margin-left: 9px;
}
.room-grid {
  margin: -3.5px;
}
.room-grid > * {
  margin: 3.5px;
}
.mini-stat-row {
  margin-left: -4px;
  margin-right: -4px;
}
.mini-stat-row > * {
  margin-left: 4px;
  margin-right: 4px;
}
.feature-quick {
  margin: 26px -7px 0;
}
.feature-quick > * {
  margin: 0 7px;
}
.process-text > * + * {
  margin-left: 5px;
}
.role-layout {
  grid-template-columns: 0.78fr minmax(0, 1.22fr);
}
.role-intro {
  margin-right: 23px;
}
.role-list {
  margin-left: 23px;
}
.role-head > * + * {
  margin-left: 13px;
}
.role-head > .role-mark {
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}
.role-head > span:last-child {
  display: block;
}
.screen-head > p {
  margin-left: 40px;
}
.roi-grid {
  grid-template-columns: 1.05fr minmax(0, 0.95fr);
}
.roi-grid > .section-head {
  margin-right: 30px;
}
.roi-grid > .roi-cards {
  margin-left: 30px;
}
.promo-copy > * + * {
  margin-left: 15px;
}
.cta-inner {
  align-items: stretch;
}
.cta-copy {
  max-width: 620px;
  padding-top: 8px;
}
.cta-actions {
  margin-top: 28px;
}
.cta-actions > * + * {
  margin-left: 10px;
}
.service-panel {
  width: min(430px, 100%);
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 20px;
  background: rgba(5, 28, 67, 0.44);
  box-shadow: 0 24px 60px rgba(0, 16, 50, 0.2);
  backdrop-filter: blur(16px);
}
.service-copy {
  display: flex;
  align-items: center;
}
.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-right: 14px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
}
.service-copy small {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
}
.contact-phones {
  min-height: 30px;
}
.contact-phone {
  display: inline-block;
  color: #fff;
  font-size: 24px;
  font-weight: 850;
  line-height: 1.25;
  text-decoration: none;
}
.contact-phone + .contact-phone {
  margin-left: 14px;
}
.contact-status {
  display: block;
  min-height: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}
.service-qr {
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.service-qr img {
  display: block;
  flex: 0 0 auto;
  width: 92px;
  height: 92px;
  padding: 5px;
  border-radius: 12px;
  background: #fff;
}
.service-qr p {
  margin: 0 0 0 16px;
}
.service-qr strong,
.service-qr span {
  display: block;
}
.service-qr span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}
.contact-retry {
  margin-top: 14px;
}
.contact-retry button,
.retry-button {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(23, 105, 224, 0.25);
  border-radius: 10px;
  background: #fff;
  color: var(--blue);
  font-weight: 800;
  cursor: pointer;
}
.plan-status {
  min-height: 58px;
  padding: 18px;
  border: 1px solid #dfe7f1;
  border-radius: 14px;
  background: #fff;
  color: var(--muted);
  text-align: center;
}
.retry-button {
  display: block;
  margin: 18px auto 0;
}
.retry-button[hidden],
.contact-retry[hidden],
.service-qr[hidden],
[hidden] {
  display: none !important;
}
.price-card {
  min-width: 0;
}
.price-card .price {
  font-size: 34px;
}
.price-card .price small {
  font-size: 12px;
}
.price-card .old:empty {
  visibility: hidden;
}
.price-card .quota {
  margin-left: -2.5px;
  margin-right: -2.5px;
}
.price-card .quota > span {
  margin-left: 2.5px;
  margin-right: 2.5px;
  text-align: center;
}
.price-card .quota b,
.price-card .quota small {
  display: block;
}
.price-card ul {
  padding: 0;
  list-style: none;
  margin: 0 0 25px;
  flex: 1;
}
.price-card li {
  position: relative;
  padding-left: 20px;
  font-size: 12px;
  color: #566178;
  margin-bottom: 9px;
}
.price-card li:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 5px;
  width: 9px;
  height: 5px;
  border-left: 1.5px solid var(--mint);
  border-bottom: 1.5px solid var(--mint);
  transform: rotate(-45deg);
}
.price-btn {
  display: grid;
  place-items: center;
  text-decoration: none;
}
.plan-badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--blue);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}
.screen-section:before {
  height: 78%;
  background: radial-gradient(
    ellipse at center,
    rgba(23, 105, 224, 0.25),
    transparent 66%
  );
}
.screen-eyebrow {
  color: #74baff;
}
.screen-showcase {
  position: relative;
  aspect-ratio: 1180 / 760;
  margin-top: 40px;
  isolation: isolate;
}
.screen-showcase:before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 2%;
  height: 46%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(67, 151, 255, 0.25),
    transparent 70%
  );
  filter: blur(28px);
  pointer-events: none;
}
.screen-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(102, 166, 237, 0.16);
  border-radius: 16px;
  background: #071326;
  box-shadow: 0 32px 80px rgba(0, 5, 22, 0.42);
}
.screen-window-main {
  position: absolute;
  z-index: 2;
  top: 10%;
  left: 8%;
  width: 84%;
  margin: 0;
}
.screen-window-overview,
.screen-window-insights,
.screen-window-performance {
  position: absolute;
}
.screen-window-overview {
  z-index: 3;
  top: 23%;
  left: 0;
  width: 26%;
}
.screen-window-insights {
  z-index: 3;
  top: 21%;
  right: 0;
  width: 25%;
}
.screen-window-performance {
  z-index: 4;
  bottom: 0;
  left: 14%;
  width: 72%;
}
.screen-panel-image {
  position: relative;
  overflow: hidden;
}
.screen-panel-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 14, 33, 0.05),
    transparent 62%,
    rgba(3, 14, 33, 0.18)
  );
  pointer-events: none;
}
.screen-panel-image img {
  display: block;
  width: 100%;
  height: auto;
}
.screen-callout-rail {
  position: absolute;
  z-index: 5;
  inset: 0;
  margin: 0;
  pointer-events: none;
}
.screen-callout {
  position: absolute;
  display: flex;
  align-items: center;
  padding: 11px 19px 11px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(0, 12, 38, 0.24);
  color: var(--navy);
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
}
.screen-callout:first-child {
  top: 15%;
  left: 1%;
}
.screen-callout:last-child {
  top: 70%;
  right: 1%;
}
.screen-callout-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-right: 10px;
  border-radius: 50%;
  background: #ff6849;
  color: #fff;
  box-shadow: 0 0 0 7px rgba(255, 104, 73, 0.11);
}
.screen-callout + .screen-callout .screen-callout-icon {
  background: #42aaf5;
  box-shadow: 0 0 0 7px rgba(66, 170, 245, 0.12);
}
.mobile-nav > span {
  display: block;
}
.mobile-nav > span a {
  display: block;
}
.footer {
  padding: 24px 0;
}
.footer .brand-logo {
  width: 32px;
  height: 32px;
}
.footer-links > * + * {
  margin-left: 22px;
}
.footer-compliance {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.footer-compliance > * + * {
  margin-left: 8px;
}
.footer-compliance a {
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.footer-compliance a:hover {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
}
.footer-compliance a:focus-visible {
  outline: 2px solid #5db3ff;
  outline-offset: 4px;
  border-radius: 2px;
}
.noscript {
  padding: 14px;
  text-align: center;
  background: #fff4dd;
  color: #704719;
  font-size: 13px;
}
@media (max-width: 980px) {
  .hero-copy,
  .product-shell,
  .feature-stage,
  .role-intro,
  .role-list,
  .roi-grid > .section-head,
  .roi-grid > .roi-cards {
    margin-left: 0;
    margin-right: 0;
  }
  .feature-menu {
    display: grid;
    margin: -5px -5px 8px;
  }
  .feature-menu > * {
    margin: 5px;
  }
  .feature-menu .feature-tab + .feature-tab {
    margin-top: 5px;
  }
  .feature-stage {
    margin-top: 13px;
  }
  .screen-head > p {
    margin-left: 0;
  }
  .service-panel {
    margin-top: 28px;
  }
  .cta-copy {
    max-width: none;
  }
}
@media (max-width: 640px) {
  .links {
    display: none;
  }
  .nav-actions > span .btn {
    display: none;
  }
  .nav-actions > span[data-auth-actions] .btn {
    display: none;
  }
  .hero-copy,
  .product-shell {
    margin: 0;
  }
  .hero-actions > * + * {
    margin-left: 0;
    margin-top: 10px;
  }
  .trust span + span {
    margin-left: 0;
  }
  .trust span {
    margin-right: 16px;
    margin-bottom: 8px;
  }
  .feature-menu {
    margin: -5px;
  }
  .feature-menu > * {
    margin: 5px;
  }
  .screen-showcase {
    aspect-ratio: auto;
    min-height: 0;
    margin-top: 28px;
    padding: 0 0 20px;
  }
  .screen-window-main,
  .screen-window-overview,
  .screen-window-insights,
  .screen-window-performance {
    position: relative;
    inset: auto;
    width: 100%;
    margin: 10px 0 0;
    border-radius: 12px;
  }
  .screen-window-main {
    margin-top: 0;
  }
  .screen-callout-rail {
    position: relative;
    inset: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 0 10px;
  }
  .screen-callout {
    position: static;
    inset: auto;
    padding: 7px 11px 7px 7px;
    font-size: 11px;
  }
  .screen-callout:first-child,
  .screen-callout:last-child {
    inset: auto;
  }
  .screen-callout-icon {
    width: 28px;
    height: 28px;
    margin-right: 7px;
    box-shadow: 0 0 0 4px rgba(255, 104, 73, 0.11);
  }
  .screen-callout-icon .icon {
    width: 16px;
    height: 16px;
  }
  .screen-callout + .screen-callout .screen-callout-icon {
    box-shadow: 0 0 0 4px rgba(66, 170, 245, 0.12);
  }
  .cta-inner {
    display: block;
  }
  .service-panel {
    margin-top: 30px;
  }
  .cta-actions {
    display: block;
  }
  .cta-actions > * {
    width: 100%;
  }
  .cta-actions > * + * {
    margin-left: 0;
    margin-top: 10px;
  }
  .service-qr {
    align-items: flex-start;
  }
  .footer-links > * {
    display: block;
  }
  .footer-links > .footer-compliance {
    display: inline-flex;
  }
  .footer-links > * + * {
    margin-left: 0;
    margin-top: 8px;
  }
  .contact-phone {
    font-size: 20px;
  }
}

/* Full-site H5 layout: keep every section readable from 320px without changing desktop composition */
@media (max-width: 640px) {
  html {
    scroll-padding-top: 72px;
  }
  body {
    overflow-x: hidden;
  }
  h2 {
    font-size: clamp(30px, 9vw, 38px);
  }
  .section,
  .screen-section {
    padding: 72px 0;
  }
  .section-head {
    margin-bottom: 32px;
  }
  .section-lead {
    font-size: 15px;
    line-height: 1.8;
  }
  .nav-inner,
  .brand,
  .nav-actions {
    min-width: 0;
  }
  .brand-logo {
    width: 32px;
    height: 32px;
  }
  .brand-logo + span {
    margin-left: 9px;
    font-size: 14px;
    white-space: nowrap;
  }
  .nav-actions {
    flex: 0 0 auto;
  }
  .menu-btn {
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-items: center;
  }
  .mobile-nav {
    max-height: calc(100vh - 78px);
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .hero {
    padding: 104px 0 70px;
  }
  .hero:after {
    background-size: 32px 32px;
  }
  .hero-tag {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: 11px;
  }
  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(38px, 12vw, 48px);
  }
  .hero-lead {
    font-size: 17px;
    line-height: 1.7;
  }
  .hero-sub {
    margin-bottom: 26px;
    font-size: 14px;
    line-height: 1.8;
  }
  .hero-actions {
    display: block;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .trust {
    margin-top: 22px;
  }
  .product-shell {
    min-width: 0;
    margin-top: 42px;
    padding-bottom: 0;
  }
  .hero-operations {
    min-height: 0;
    padding: 16px;
    border-radius: 20px;
  }
  .hero-operations:before {
    width: 220px;
    height: 220px;
    right: -104px;
    bottom: -118px;
    border-width: 50px;
  }
  .hero-ops-head strong {
    font-size: 16px;
  }
  .hero-ops-status {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 10px -4px 0;
  }
  .hero-ops-status > div {
    margin: 4px;
    padding: 11px;
  }
  .hero-ops-status strong {
    font-size: 16px;
  }
  .hero-journey {
    margin-top: 12px;
    padding: 15px 10px 14px;
    border-radius: 15px;
  }
  .hero-journey-head {
    display: block;
    padding: 0 4px;
  }
  .hero-journey-head span {
    display: block;
    margin-top: 4px;
  }
  .hero-journey ol {
    margin-top: 18px;
  }
  .hero-journey li {
    font-size: 9px;
  }
  .hero-journey li i {
    width: 18px;
    height: 18px;
    margin-bottom: 6px;
    border-width: 4px;
  }
  .hero-journey ol:before {
    top: 8px;
  }
  .hero-ops-modules {
    margin-top: 7px;
  }
  .hero-ops-modules > div {
    padding: 11px;
  }
  .hero-ops-alerts {
    grid-template-columns: 1fr;
    margin: 7px 0 0;
  }
  .hero-ops-alerts > div {
    margin: 5px 0;
  }
  .window {
    border-radius: 16px;
    transform: none;
  }
  .window-top {
    height: 38px;
    padding: 0 12px;
  }
  .window-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dash {
    min-height: 0;
  }
  .dash-head {
    align-items: center;
  }
  .dash-head h3 {
    font-size: 15px;
  }
  .kpi {
    min-width: 0;
    padding: 10px;
  }
  .kpi strong {
    font-size: 16px;
  }
  .charts,
  .activity {
    margin-top: 8px;
  }
  .chart-card {
    min-width: 0;
    padding: 11px;
  }
  .chart-area,
  .donut-wrap {
    height: 108px;
  }
  .donut {
    width: 72px;
    height: 72px;
  }
  .donut:after {
    inset: 15px;
  }
  .activity {
    grid-template-columns: 1fr;
  }
  .activity .chart-card {
    height: auto;
    min-height: 70px;
  }
  .pain-card {
    padding: 22px;
  }
  .pain-icon,
  .feature-icon {
    margin-bottom: 16px;
  }
  .feature-layout {
    width: 100%;
    display: block;
  }
  .feature-menu {
    grid-template-columns: 1fr 1fr;
    margin: -4px;
  }
  .feature-menu > * {
    margin: 4px;
  }
  .feature-menu .feature-tab + .feature-tab {
    margin-top: 4px;
  }
  .feature-tab {
    min-width: 0;
    min-height: 72px;
    padding: 11px 9px;
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: center;
    border-radius: 13px;
  }
  .feature-tab .num {
    width: 30px;
    height: 30px;
    display: grid;
    font-size: 10px;
  }
  .feature-tab > span:last-child {
    min-width: 0;
    display: block;
    padding-left: 8px;
    font-size: 0;
  }
  .feature-tab strong {
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
  }
  .feature-stage {
    margin-top: 16px;
    padding: 16px;
    border-radius: 18px;
  }
  .stage-top {
    display: block;
    margin-bottom: 18px;
  }
  .stage-top h3 {
    font-size: 20px;
    line-height: 1.35;
  }
  .stage-tag {
    display: inline-block;
    margin-top: 12px;
  }
  .workbench {
    margin: -5px;
  }
  .workbench > * {
    min-width: 0;
    margin: 5px;
  }
  .work-card {
    min-width: 0;
    padding: 14px;
    border-radius: 13px;
  }
  .person {
    min-width: 0;
    padding: 8px;
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: start;
  }
  .avatar {
    width: 30px;
    height: 30px;
  }
  .person > span:nth-child(2) {
    min-width: 0;
  }
  .person small {
    display: block;
    overflow-wrap: anywhere;
    font-size: 9px;
    line-height: 1.5;
  }
  .person .status {
    grid-column: 2;
    justify-self: start;
    margin-top: 5px;
    margin-left: 0;
  }
  .mini-stat-row {
    grid-template-columns: 1fr 1fr;
  }
  .feature-quick {
    margin: 22px 0 0;
  }
  .feature-quick > * {
    margin: 5px 0;
  }
  .quick {
    min-width: 0;
    padding: 16px;
  }
  .process-text {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }
  .screen-head > p {
    margin-top: 18px;
  }
  .screen-showcase:before {
    left: 0;
    right: 0;
  }
  .screen-window,
  .screen-panel-image,
  .screen-panel-image img {
    min-width: 0;
    max-width: 100%;
  }
  .role-layout,
  .role-intro,
  .role-list,
  .role-card,
  .roi-grid,
  .roi-cards,
  .price-card {
    min-width: 0;
  }
  .role-layout,
  .roi-grid {
    display: block;
  }
  .role-list,
  .roi-cards {
    width: 100%;
    margin-top: 28px;
  }
  .role-intro,
  .roi-grid > .section-head {
    margin-bottom: 28px;
  }
  .role-card,
  .roi-card {
    padding: 22px 20px;
    border-radius: 16px;
  }
  .role-head {
    align-items: flex-start;
  }
  .role-head > span:last-child {
    min-width: 0;
  }
  .role-head h3 {
    font-size: 18px;
    line-height: 1.35;
  }
  .role-head span {
    font-size: 12px;
    line-height: 1.55;
  }
  .role-card li {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.65;
  }
  .roi-quote {
    padding: 18px;
    font-size: 13px;
  }
  .price-card {
    padding: 25px 21px;
  }
  .price-card .price {
    font-size: 32px;
  }
  .promo {
    padding: 24px 20px;
    align-items: stretch;
  }
  .promo-copy {
    grid-template-columns: 42px minmax(0, 1fr);
  }
  .promo-copy > * + * {
    margin-left: 12px;
  }
  .invite {
    width: 100%;
    margin-top: 18px;
    white-space: normal;
    text-align: center;
  }
  .cta {
    padding: 72px 0;
  }
  .cta:after {
    width: 280px;
    height: 280px;
    right: -130px;
    top: -100px;
    border-width: 48px;
  }
  .cta-actions {
    margin-top: 24px;
  }
  .service-panel {
    padding: 20px;
    border-radius: 16px;
  }
  .service-copy > div {
    min-width: 0;
  }
  .contact-phone {
    display: block;
    overflow-wrap: anywhere;
  }
  .contact-phone + .contact-phone {
    margin-top: 4px;
    margin-left: 0;
  }
  .service-qr {
    display: block;
  }
  .service-qr p {
    margin: 14px 0 0;
  }
  .footer {
    padding: 30px 0;
  }
  .footer-links {
    width: 100%;
    display: block;
    margin-top: 20px;
  }
}

@media (max-width: 380px) {
  .brand-logo + span {
    font-size: 13px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero-operations {
    padding: 13px;
  }
  .hero-ops-head > span,
  .hero-journey-head span {
    font-size: 8px;
  }
  .hero-ops-status > div {
    padding: 9px;
  }
  .hero-ops-status strong {
    font-size: 15px;
  }
  .hero-ops-modules span {
    font-size: 10px;
  }
  .hero-ops-modules small {
    font-size: 7px;
  }
  .screen-callout {
    padding-right: 8px;
    font-size: 10px;
  }
  .screen-callout-icon {
    margin-right: 5px;
  }
}

@media (hover: none) {
  .btn:hover,
  .pain-card:hover,
  .role-card:hover,
  .price-card:hover,
  .price-card.featured:hover {
    transform: none;
  }
  .pain-card:hover,
  .role-card:hover {
    box-shadow: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn,
  .pain-card,
  .role-card,
  .price-card {
    transition: none;
  }
  .btn:hover,
  .pain-card:hover,
  .role-card:hover,
  .price-card:hover,
  .price-card.featured,
  .price-card.featured:hover {
    transform: none;
  }
}
@media (forced-colors: active) {
  html {
    scrollbar-color: auto;
  }
  .btn,
  .price-card,
  .service-panel,
  .plan-status {
    border: 1px solid CanvasText;
  }
}
