:root {
  --site-navy-950: #031127;
  --site-navy-900: #071a3a;
  --site-navy-850: #0a2248;
  --site-navy-800: #0d2b57;
  --site-blue-600: #087af5;
  --site-blue-500: #258cff;
  --site-blue-400: #5aa8ff;
  --site-cyan: #58d9ff;
  --site-green: #19c886;
  --site-amber: #ffb545;
  --site-red: #ff6577;
  --site-ink: #0b1830;
  --site-muted: #5d6b82;
  --site-line: #dfe7f2;
  --site-soft: #f4f7fb;
  --site-white: #fff;
  --site-radius: 18px;
  --site-radius-lg: 28px;
  --site-shadow: 0 24px 70px rgba(6, 27, 59, .13);
  --site-container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.marketing-page {
  margin: 0;
  color: var(--site-ink);
  background: var(--site-white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

.marketing-page a {
  color: inherit;
  text-decoration: none;
}

.marketing-page button,
.marketing-page input,
.marketing-page select,
.marketing-page textarea {
  font: inherit;
}

.marketing-page img,
.marketing-page svg {
  display: block;
}

.site-container {
  width: min(calc(100% - 48px), var(--site-container));
  margin: 0 auto;
}

.site-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  border-radius: 10px;
  background: #fff;
  color: var(--site-ink);
  padding: 11px 16px;
  font-weight: 700;
  transition: transform .2s ease;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  color: #fff;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(5, 21, 47, .92);
  border-color: rgba(255, 255, 255, .08);
  box-shadow: 0 12px 36px rgba(1, 10, 25, .2);
  backdrop-filter: blur(18px);
}

.site-header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  width: 147px;
  height: 48px;
  overflow: hidden;
}

.site-logo img {
  width: 144px;
  height: 48px;
  object-fit: cover;
  object-position: left center;
}

.site-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
  flex: 1;
}

.site-navigation-links,
.site-navigation-actions {
  display: flex;
  align-items: center;
}

.site-navigation-links {
  margin-left: auto;
  gap: 30px;
}

.site-navigation-links a,
.site-login-link {
  position: relative;
  color: rgba(255, 255, 255, .72);
  font-size: .92rem;
  font-weight: 620;
  transition: color .2s ease;
}

.site-navigation-links a:hover,
.site-navigation-links a.is-active,
.site-login-link:hover {
  color: #fff;
}

.site-navigation-links a.is-active::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  border-radius: 2px;
  background: var(--site-blue-400);
  content: "";
}

.site-navigation-actions {
  gap: 20px;
}

.site-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
}

.site-menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: #fff;
}

.site-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--site-blue-600);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--site-blue-600), var(--site-blue-500));
  box-shadow: 0 12px 28px rgba(8, 122, 245, .24);
  color: #fff !important;
  padding: 13px 20px;
  font-size: .94rem;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.site-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(8, 122, 245, .32);
}

.site-button .site-icon {
  width: 17px;
  height: 17px;
}

.site-button-small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: .86rem;
  border-radius: 10px;
}

.site-button-secondary {
  border-color: #d9e3ef;
  background: #fff;
  box-shadow: none;
  color: var(--site-ink) !important;
}

.site-button-secondary:hover {
  border-color: #b7c7da;
  box-shadow: 0 10px 22px rgba(8, 31, 67, .1);
}

.site-button-dark-secondary {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.site-button-light {
  border-color: #fff;
  background: #fff;
  color: var(--site-navy-900) !important;
  box-shadow: 0 12px 28px rgba(1, 11, 28, .18);
}

.site-button-ghost {
  border-color: rgba(255, 255, 255, .22);
  background: transparent;
  box-shadow: none;
}

.site-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--site-blue-600) !important;
  font-size: .92rem;
  font-weight: 750;
}

.site-text-link .site-icon {
  width: 17px;
  height: 17px;
  transition: transform .2s ease;
}

.site-text-link:hover .site-icon,
.operation-copy a:hover .site-icon {
  transform: translateX(4px);
}

.hero,
.inner-hero,
.contact-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 15%, rgba(19, 113, 235, .27), transparent 31%),
    linear-gradient(145deg, #04142d 0%, #071d42 55%, #061735 100%);
}

.hero {
  min-height: 960px;
  padding: 162px 0 58px;
}

.hero-grid,
.final-cta-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(rgba(124, 173, 236, .22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 173, 236, .22) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 87%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: 170px;
  left: -180px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 125, 255, .2), transparent 68%);
}

.hero-glow-two {
  right: -160px;
  bottom: 80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(57, 191, 255, .13), transparent 68%);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
}

.hero-release {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(104, 176, 255, .25);
  border-radius: 999px;
  background: rgba(30, 102, 190, .14);
  color: #acd3ff;
  padding: 8px 13px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .01em;
  backdrop-filter: blur(10px);
}

.hero-release .site-icon {
  width: 15px;
  height: 15px;
}

.hero h1,
.inner-hero h1,
.contact-copy h1 {
  margin: 27px 0 23px;
  font-size: clamp(3.2rem, 6.2vw, 5.65rem);
  line-height: .98;
  letter-spacing: -.064em;
  font-weight: 720;
}

.hero h1 span,
.inner-hero h1 span {
  color: #73b8ff;
}

.hero-copy > p,
.inner-hero-copy > p,
.contact-copy > p {
  max-width: 690px;
  margin: 0 auto;
  color: rgba(226, 237, 251, .7);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 27px;
  color: rgba(222, 235, 251, .59);
  font-size: .77rem;
  font-weight: 630;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust .site-icon {
  width: 14px;
  height: 14px;
  color: #55dba2;
}

.hero-product {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  perspective: 1800px;
}

.product-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(155, 196, 246, .24);
  border-radius: 18px;
  background: #fff;
  box-shadow:
    0 52px 120px rgba(0, 5, 18, .54),
    0 0 0 8px rgba(99, 166, 242, .035);
  color: var(--site-ink);
}

.hero-product .product-window {
  transform: rotateX(1.4deg);
  transform-origin: center bottom;
}

.product-window-bar {
  height: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid #dfe7f1;
  background: #f8fafc;
  padding: 0 14px;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d3dae4;
}

.window-dots span:first-child {
  background: #ff7e7e;
}

.window-dots span:nth-child(2) {
  background: #ffc760;
}

.window-dots span:nth-child(3) {
  background: #55d292;
}

.window-address {
  min-width: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  border: 1px solid #e1e8f0;
  border-radius: 7px;
  background: #fff;
  color: #728096;
  padding: 6px 20px;
  font-size: .62rem;
}

.window-lock .site-icon {
  width: 11px;
  height: 11px;
}

.window-live {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: #728096;
  font-size: .58rem;
  font-weight: 700;
}

.window-live span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--site-green);
  box-shadow: 0 0 0 4px rgba(25, 200, 134, .12);
}

.product-app {
  min-height: 515px;
  display: grid;
  grid-template-columns: 164px 1fr;
  background: #f4f7fb;
}

.mock-sidebar {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #0a1b38, #0b2347);
  color: #fff;
  padding: 20px 13px 14px;
}

.mock-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 7px 22px;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: -.03em;
}

.mock-brand-mark {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 5px 8px 5px 5px;
  background: var(--site-blue-500);
  color: #fff;
  font-size: .75rem;
  font-weight: 900;
  font-style: italic;
}

.mock-nav {
  display: grid;
  gap: 6px;
}

.mock-nav span {
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 8px;
  color: rgba(255, 255, 255, .51);
  padding: 9px 10px;
  font-size: .58rem;
  font-weight: 650;
}

.mock-nav span.active {
  background: linear-gradient(135deg, #147cf1, #3699ff);
  box-shadow: 0 8px 18px rgba(21, 123, 239, .26);
  color: #fff;
}

.mock-nav .site-icon {
  width: 13px;
  height: 13px;
}

.mock-user {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 14px 6px 0;
}

.mock-user > span,
.mock-avatar {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: rgba(84, 163, 255, .17);
  color: #7fbdff;
  font-size: .52rem;
  font-weight: 800;
}

.mock-user div {
  display: grid;
  gap: 2px;
}

.mock-user strong {
  font-size: .52rem;
}

.mock-user small {
  color: rgba(255, 255, 255, .4);
  font-size: .45rem;
}

.mock-content {
  min-width: 0;
  padding: 0 21px 21px;
}

.mock-top {
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 -21px 17px;
  border-bottom: 1px solid #e5eaf1;
  background: rgba(255, 255, 255, .92);
  padding: 0 21px;
}

.mock-top > div:first-child {
  display: grid;
  gap: 2px;
}

.mock-top small {
  color: #9aa6b7;
  font-size: .48rem;
}

.mock-top strong {
  font-size: .77rem;
}

.mock-top-actions {
  display: flex;
  align-items: center;
  gap: 11px;
}

.mock-top-actions .site-icon {
  width: 14px;
  height: 14px;
  color: #8794a7;
}

.mock-health {
  position: relative;
  overflow: hidden;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 13px;
  background:
    radial-gradient(circle at 80% 0%, rgba(71, 164, 255, .37), transparent 42%),
    linear-gradient(115deg, #0d2e5b, #0c4781);
  color: #fff;
  padding: 19px 23px;
}

.mock-health::after {
  position: absolute;
  right: 110px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  content: "";
}

.mock-health-copy {
  display: grid;
  gap: 4px;
  z-index: 1;
}

.mock-eyebrow {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #80c3ff;
  font-size: .45rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.mock-eyebrow i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4de0a4;
}

.mock-health-copy > strong {
  font-size: 1.05rem;
}

.mock-health-copy > small {
  color: rgba(255, 255, 255, .57);
  font-size: .49rem;
}

.mock-badges {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}

.mock-badges span {
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 99px;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .74);
  padding: 4px 7px;
  font-size: .42rem;
}

.mock-score {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  border: 6px solid rgba(86, 218, 170, .22);
  border-top-color: #4bd9a3;
  border-right-color: #4bd9a3;
  border-radius: 50%;
  padding-top: 20px;
  z-index: 1;
}

.mock-score strong {
  font-size: 1.2rem;
}

.mock-score span {
  color: rgba(255, 255, 255, .55);
  font-size: .42rem;
}

.mock-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 11px;
}

.mock-kpis > div {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "icon label" "icon value" "icon trend";
  column-gap: 10px;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  padding: 12px;
}

.mock-kpi-icon {
  grid-area: icon;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
}

.mock-kpi-icon .site-icon {
  width: 14px;
  height: 14px;
}

.mock-kpi-icon.blue {
  background: #eaf3ff;
  color: #2587f5;
}

.mock-kpi-icon.green {
  background: #e9faf4;
  color: #15af77;
}

.mock-kpi-icon.amber {
  background: #fff6e7;
  color: #e79a23;
}

.mock-kpis small {
  grid-area: label;
  color: #8995a7;
  font-size: .44rem;
}

.mock-kpis strong {
  grid-area: value;
  font-size: .9rem;
}

.mock-kpis em {
  grid-area: trend;
  color: #8c98aa;
  font-size: .4rem;
  font-style: normal;
}

.mock-lower {
  display: grid;
  grid-template-columns: 1.65fr .8fr;
  gap: 10px;
  margin-top: 11px;
}

.mock-chart,
.mock-priority {
  min-width: 0;
  border: 1px solid #e2e8f0;
  border-radius: 11px;
  background: #fff;
  padding: 13px;
}

.mock-card-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.mock-card-title > div {
  display: grid;
  gap: 2px;
}

.mock-card-title strong {
  font-size: .58rem;
}

.mock-card-title small {
  color: #9aa5b4;
  font-size: .4rem;
}

.mock-card-title > span {
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  color: #8491a2;
  padding: 4px 6px;
  font-size: .38rem;
}

.mock-chart-area {
  position: relative;
  height: 117px;
  margin-top: 9px;
}

.chart-grid {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-grid i {
  height: 1px;
  background: #edf1f6;
}

.mock-chart-area svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.chart-fill {
  fill: url(#mockChartFill);
}

.chart-line {
  fill: none;
  stroke: #2586ff;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.mock-donut {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin: 13px auto 10px;
  border-radius: 50%;
  background: conic-gradient(#ff6577 0 12.5%, #ffb545 12.5% 42%, #258cff 42% 100%);
  position: relative;
}

.mock-donut::after {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.mock-donut > div {
  display: grid;
  z-index: 1;
  text-align: center;
}

.mock-donut strong {
  font-size: .72rem;
}

.mock-donut small {
  color: #929eae;
  font-size: .38rem;
}

.mock-legend {
  display: grid;
  gap: 5px;
}

.mock-legend span {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 5px;
  color: #7e8b9e;
  font-size: .39rem;
}

.mock-legend i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.mock-legend i.red {
  background: var(--site-red);
}

.mock-legend i.amber {
  background: var(--site-amber);
}

.mock-legend i.blue {
  background: var(--site-blue-500);
}

.mock-legend b {
  color: #526078;
}

.floating-event {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(172, 205, 242, .3);
  border-radius: 13px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 22px 44px rgba(0, 9, 27, .24);
  color: var(--site-ink);
  padding: 11px 14px 11px 10px;
  backdrop-filter: blur(12px);
  animation: site-float 5s ease-in-out infinite;
}

.floating-event-one {
  right: -26px;
  top: 116px;
}

.floating-event-two {
  left: -29px;
  bottom: 80px;
  animation-delay: -2.4s;
}

.floating-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.floating-icon .site-icon {
  width: 16px;
  height: 16px;
}

.floating-icon.success {
  background: #e6f9f1;
  color: #0cab72;
}

.floating-icon.warning {
  background: #fff3df;
  color: #df8f15;
}

.floating-event > div {
  display: grid;
  gap: 3px;
}

.floating-event strong {
  font-size: .64rem;
}

.floating-event small {
  color: #8390a3;
  font-size: .48rem;
}

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

.hero-proof {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 55px;
  color: rgba(255, 255, 255, .44);
  font-size: .74rem;
}

.hero-proof > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 17px;
}

.hero-proof strong {
  color: rgba(255, 255, 255, .7);
  font-size: .76rem;
}

.hero-proof i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
}

.site-section {
  padding: 116px 0;
}

.site-eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--site-blue-600);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-eyebrow::before {
  width: 22px;
  height: 1px;
  margin-right: 10px;
  background: currentColor;
  content: "";
}

.site-eyebrow.light {
  color: #82c1ff;
}

.section-heading {
  max-width: 690px;
}

.section-heading.center {
  margin: 0 auto;
  text-align: center;
}

.section-heading.center .site-eyebrow {
  justify-content: center;
}

.section-heading h2 {
  margin: 18px 0 20px;
  color: var(--site-ink);
  font-size: clamp(2.2rem, 4.2vw, 3.7rem);
  font-weight: 700;
  letter-spacing: -.052em;
  line-height: 1.06;
}

.section-heading p {
  margin: 0;
  color: var(--site-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.operations-section {
  background: #fff;
}

.operations-section .section-heading {
  margin-bottom: 58px;
}

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

.operation-story {
  position: relative;
  min-width: 0;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius-lg);
  background: linear-gradient(145deg, #f9fbfe, #f1f5fa);
  padding: 40px;
}

.operation-story-large {
  min-height: 620px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .85fr 1.35fr;
  align-items: center;
  gap: 64px;
  background:
    radial-gradient(circle at 90% 10%, rgba(79, 160, 255, .14), transparent 37%),
    linear-gradient(145deg, #f9fbfe, #eef4fb);
}

.operation-copy {
  position: relative;
  z-index: 2;
}

.story-number {
  display: block;
  margin-bottom: 28px;
  color: var(--site-blue-600);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.operation-copy h3 {
  margin: 0 0 17px;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  font-weight: 690;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.operation-copy p {
  margin: 0;
  color: var(--site-muted);
  font-size: .96rem;
  line-height: 1.7;
}

.operation-copy a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  color: var(--site-blue-600);
  font-size: .83rem;
  font-weight: 750;
}

.operation-copy a .site-icon {
  width: 16px;
  height: 16px;
}

.work-order-demo {
  position: relative;
  overflow: hidden;
  border: 1px solid #dce5f0;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--site-shadow);
  padding: 25px;
}

.demo-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -25px -25px 24px;
  border-bottom: 1px solid #e7ecf2;
  background: #fbfcfe;
  padding: 16px 20px;
  color: #718097;
  font-size: .66rem;
  font-weight: 800;
}

.demo-toolbar b {
  border-radius: 99px;
  background: #e6f8f1;
  color: #0ba671;
  padding: 6px 9px;
  font-size: .58rem;
}

.demo-title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.demo-priority {
  width: 7px;
  height: 45px;
  flex: 0 0 auto;
  border-radius: 6px;
  background: var(--site-red);
}

.demo-title > div {
  display: grid;
  gap: 5px;
}

.demo-title small {
  color: var(--site-red);
  font-size: .58rem;
  font-weight: 800;
  text-transform: uppercase;
}

.demo-title strong {
  font-size: 1.02rem;
}

.demo-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 28px 0;
}

.demo-meta span {
  display: grid;
  gap: 5px;
  border: 1px solid #e5ebf2;
  border-radius: 10px;
  background: #f8fafc;
  padding: 12px;
}

.demo-meta small {
  color: #8a97a9;
  font-size: .54rem;
}

.demo-meta strong {
  font-size: .66rem;
}

.demo-progress {
  display: grid;
  gap: 8px;
}

.demo-progress div {
  display: flex;
  justify-content: space-between;
  color: #69778c;
  font-size: .6rem;
}

.demo-progress div b {
  color: var(--site-blue-600);
}

.demo-progress > i {
  height: 6px;
  overflow: hidden;
  border-radius: 9px;
  background: #e8eef5;
}

.demo-progress > i em {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--site-blue-600), #60b6ff);
}

.calendar-demo {
  margin-top: 46px;
  border: 1px solid #dce5f0;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(10, 38, 75, .1);
  padding: 21px;
}

.calendar-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 17px;
  font-size: .72rem;
}

.calendar-head span {
  color: #8896aa;
}

.calendar-days,
.calendar-grid-demo {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-days span {
  color: #a2adbc;
  font-size: .48rem;
  text-align: center;
}

.calendar-grid-demo span {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #66758a;
  font-size: .54rem;
}

.calendar-grid-demo span.has-event {
  background: #eaf4ff;
  color: var(--site-blue-600);
  font-weight: 800;
}

.calendar-grid-demo span.has-event::after {
  position: absolute;
  bottom: 4px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--site-blue-500);
  content: "";
}

.calendar-grid-demo span.is-today {
  background: var(--site-blue-600);
  color: #fff;
}

.calendar-grid-demo span.is-today::after {
  background: #fff;
}

.asset-demo {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  margin-top: 62px;
  border: 1px solid #dce5f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(10, 38, 75, .1);
  padding: 16px;
}

.asset-demo-icon,
.asset-demo-qr {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #eaf4ff;
  color: var(--site-blue-600);
}

.asset-demo-qr {
  background: #f1f4f8;
  color: #516078;
}

.asset-demo > div:nth-child(2) {
  display: grid;
  gap: 3px;
}

.asset-demo small {
  color: #8a97a9;
  font-size: .48rem;
  font-weight: 750;
  letter-spacing: .06em;
}

.asset-demo strong {
  font-size: .78rem;
}

.asset-demo div > span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0ba671;
  font-size: .5rem;
}

.asset-demo div > span i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #19c886;
}

.asset-line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 19px;
  color: #8a97a9;
  font-size: .55rem;
}

.asset-line i {
  width: 16px;
  height: 1px;
  background: #cfd9e5;
}

.asset-line strong {
  color: var(--site-blue-600);
}

.modules-section {
  border-top: 1px solid #edf1f5;
  background: var(--site-soft);
}

.split-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 54px;
}

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

.feature-card {
  min-height: 250px;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: #fff;
  padding: 27px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #c6d8ec;
  box-shadow: 0 20px 45px rgba(8, 34, 72, .09);
}

.feature-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid #d8e8fa;
  border-radius: 13px;
  background: linear-gradient(145deg, #f1f7ff, #e8f3ff);
  color: var(--site-blue-600);
}

.feature-icon .site-icon {
  width: 21px;
  height: 21px;
}

.feature-tag {
  border-radius: 99px;
  background: #ecf5ff;
  color: var(--site-blue-600);
  padding: 6px 9px;
  font-size: .6rem;
  font-weight: 800;
}

.feature-card h3 {
  margin: 34px 0 12px;
  font-size: 1.08rem;
  letter-spacing: -.02em;
}

.feature-card p {
  margin: 0;
  color: var(--site-muted);
  font-size: .88rem;
  line-height: 1.7;
}

.workflow-section {
  background: #fff;
}

.workflow-layout {
  display: grid;
  grid-template-columns: .8fr 1.25fr;
  gap: 110px;
  align-items: start;
}

.workflow-sticky {
  position: sticky;
  top: 130px;
}

.workflow-sticky .site-button {
  margin-top: 30px;
}

.workflow-steps {
  display: grid;
}

.workflow-step {
  position: relative;
  display: grid;
  grid-template-columns: 42px 60px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--site-line);
  padding: 34px 0;
}

.workflow-step:first-child {
  padding-top: 5px;
}

.workflow-step > span {
  color: #a2afbf;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .7rem;
  font-weight: 800;
}

.workflow-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #edf5ff;
  color: var(--site-blue-600);
}

.workflow-step h3 {
  margin: 0 0 9px;
  font-size: 1.25rem;
  letter-spacing: -.025em;
}

.workflow-step p {
  margin: 0;
  color: var(--site-muted);
  font-size: .9rem;
  line-height: 1.7;
}

.security-section {
  padding-top: 35px;
}

.security-card {
  position: relative;
  min-height: 480px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 86% 40%, rgba(35, 138, 255, .32), transparent 28%),
    linear-gradient(135deg, #061731, #0a2c59);
  box-shadow: 0 30px 90px rgba(3, 20, 47, .2);
  color: #fff;
  padding: 70px 76px;
}

.security-copy {
  position: relative;
  z-index: 2;
}

.security-copy h2 {
  margin: 17px 0 20px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: -.052em;
  line-height: 1.05;
}

.security-copy > p {
  max-width: 610px;
  margin: 0;
  color: rgba(224, 236, 251, .66);
  line-height: 1.72;
}

.security-points {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}

.security-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 99px;
  background: rgba(255, 255, 255, .06);
  padding: 8px 11px;
  color: rgba(255, 255, 255, .77);
  font-size: .68rem;
  font-weight: 700;
}

.security-points .site-icon {
  width: 14px;
  height: 14px;
  color: #68b4ff;
}

.security-visual {
  position: relative;
  min-height: 320px;
}

.security-orbit {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(112, 184, 255, .18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 240px;
  height: 240px;
}

.orbit-two {
  width: 330px;
  height: 330px;
}

.security-shield {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(119, 193, 255, .33);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(59, 154, 255, .32), rgba(20, 95, 178, .2));
  box-shadow: 0 0 60px rgba(43, 142, 255, .22);
  color: #85c6ff;
  transform: translate(-50%, -50%) rotate(4deg);
  backdrop-filter: blur(10px);
}

.security-shield .site-icon {
  width: 47px;
  height: 47px;
}

.security-node {
  position: absolute;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 13px;
  background: rgba(255, 255, 255, .08);
  color: #77bdff;
  backdrop-filter: blur(9px);
}

.security-node .site-icon {
  width: 20px;
  height: 20px;
}

.node-one {
  top: 20px;
  left: 48%;
}

.node-two {
  left: 20px;
  bottom: 48px;
}

.node-three {
  right: 15px;
  bottom: 58px;
}

.pricing-teaser {
  background: #fff;
}

.pricing-teaser .section-heading {
  margin-bottom: 48px;
}

.teaser-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 14px;
}

.teaser-plan {
  position: relative;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: #fff;
  padding: 31px;
}

.teaser-plan.featured {
  border-color: #9cc9ff;
  box-shadow: 0 22px 55px rgba(26, 121, 229, .12);
}

.plan-popular {
  position: absolute;
  top: 19px;
  right: 19px;
  border-radius: 99px;
  background: #e8f3ff;
  color: var(--site-blue-600);
  padding: 6px 9px;
  font-size: .6rem;
  font-weight: 800;
}

.teaser-plan > span:not(.plan-popular) {
  color: var(--site-blue-600);
  font-size: .74rem;
  font-weight: 800;
}

.teaser-plan > strong {
  margin: 22px 0 15px;
  font-size: 2.5rem;
  letter-spacing: -.06em;
}

.teaser-plan > strong small {
  color: #8190a5;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 0;
}

.teaser-plan p {
  margin: 0;
  color: var(--site-muted);
  font-size: .84rem;
  line-height: 1.65;
}

.teaser-plan a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 25px;
  color: var(--site-blue-600);
  font-size: .78rem;
  font-weight: 800;
}

.teaser-plan a .site-icon {
  width: 15px;
  height: 15px;
}

.faq-section {
  border-top: 1px solid #edf1f5;
  background: var(--site-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: .7fr 1.15fr;
  gap: 100px;
}

.faq-list {
  display: grid;
}

.faq-list details {
  border-bottom: 1px solid #dce4ee;
}

.faq-list details:first-child {
  border-top: 1px solid #dce4ee;
}

.faq-list summary {
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 730;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: #fff;
  color: var(--site-blue-600);
  font-size: 1.1rem;
  transition: transform .2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -4px 45px 24px 0;
  color: var(--site-muted);
  font-size: .88rem;
  line-height: 1.7;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(28, 131, 249, .34), transparent 34%),
    linear-gradient(135deg, #05142e, #092650);
  color: #fff;
}

.final-cta-grid {
  opacity: .15;
  mask-image: none;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  padding: 115px 0;
  text-align: center;
}

.final-cta-inner .site-eyebrow {
  justify-content: center;
}

.final-cta h2 {
  margin: 20px 0;
  font-size: clamp(2.5rem, 5.3vw, 4.8rem);
  font-weight: 710;
  letter-spacing: -.06em;
  line-height: 1;
}

.final-cta p {
  max-width: 630px;
  margin: 0 auto;
  color: rgba(224, 236, 251, .65);
  font-size: 1rem;
  line-height: 1.7;
}

.final-cta-inner > div:last-child {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}

.site-footer {
  background: #031027;
  color: #fff;
  padding: 75px 0 25px;
}

.site-footer-main {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 100px;
  padding-bottom: 65px;
}

.site-footer-brand p {
  max-width: 330px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .48);
  font-size: .85rem;
  line-height: 1.7;
}

.site-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.site-footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer-links strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: .74rem;
}

.site-footer-links a,
.site-footer-links span {
  color: rgba(255, 255, 255, .45);
  font-size: .76rem;
}

.site-footer-links a:hover {
  color: #fff;
}

.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
  color: rgba(255, 255, 255, .35);
  font-size: .68rem;
}

.inner-hero {
  min-height: 780px;
  padding: 175px 0 95px;
}

.inner-hero-content {
  position: relative;
  z-index: 2;
}

.inner-hero-copy {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.inner-hero h1 {
  font-size: clamp(3.1rem, 6vw, 5.5rem);
}

.inner-hero-visual {
  margin-top: 70px;
}

.inner-hero-visual .product-window {
  max-width: 1080px;
  margin: 0 auto -310px;
}

.inner-hero:has(.inner-hero-visual) {
  margin-bottom: 280px;
}

.product-principles {
  padding-top: 60px;
}

.product-principles .section-heading {
  margin-bottom: 50px;
}

.principles-grid .feature-card {
  min-height: 270px;
}

.product-deep-dive {
  background: var(--site-soft);
}

.deep-dive-list {
  display: grid;
  gap: 90px;
}

.deep-dive {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  gap: 90px;
}

.deep-dive:nth-child(even) .deep-dive-copy {
  order: 2;
}

.deep-dive-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  letter-spacing: -.045em;
  line-height: 1.08;
}

.deep-dive-copy > p {
  color: var(--site-muted);
  line-height: 1.75;
}

.deep-dive-copy ul {
  display: grid;
  gap: 11px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.deep-dive-copy li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #536279;
  font-size: .86rem;
}

.deep-dive-copy li .site-icon {
  width: 17px;
  height: 17px;
  color: var(--site-green);
}

.deep-dive-visual {
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #dce5ef;
  border-radius: 26px;
  background:
    radial-gradient(circle at 85% 10%, rgba(57, 152, 255, .16), transparent 35%),
    #edf3f9;
  padding: 42px;
}

.mini-board {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.mini-board > div {
  min-width: 0;
  border: 1px solid #dce4ed;
  border-radius: 12px;
  background: rgba(255, 255, 255, .74);
  padding: 12px;
}

.mini-board > div > span {
  display: flex;
  justify-content: space-between;
  color: #69778a;
  font-size: .58rem;
  font-weight: 750;
}

.mini-board > div > span b {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: #e9eef5;
  font-size: .5rem;
}

.mini-board article {
  position: relative;
  display: grid;
  gap: 7px;
  margin-top: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(10, 34, 68, .07);
  padding: 14px;
}

.mini-board article > i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 9px 0 0 9px;
}

.mini-board article > i.amber { background: var(--site-amber); }
.mini-board article > i.blue { background: var(--site-blue-500); }
.mini-board article > i.green { background: var(--site-green); }

.mini-board article small {
  color: #939faf;
  font-size: .47rem;
}

.mini-board article strong {
  min-height: 34px;
  font-size: .62rem;
  line-height: 1.35;
}

.mini-board article em {
  color: #7f8da0;
  font-size: .48rem;
  font-style: normal;
}

.asset-tree-demo {
  width: min(100%, 450px);
  border: 1px solid #dbe4ee;
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--site-shadow);
  padding: 25px;
  color: #34435b;
  font-size: .78rem;
}

.asset-tree-demo > span {
  display: block;
  border-radius: 8px;
  background: #eaf4ff;
  color: var(--site-blue-600);
  padding: 12px;
  font-weight: 800;
}

.asset-tree-demo > div,
.asset-tree-demo > div > div,
.asset-tree-demo > div > div > div {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 15px 0 0 20px;
  border-left: 1px solid #cad6e4;
  padding-left: 23px;
}

.asset-tree-demo i {
  position: absolute;
  top: 8px;
  left: -4px;
  width: 7px;
  height: 7px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--site-blue-500);
  box-shadow: 0 0 0 1px #aab9ca;
}

.preventive-timeline {
  position: relative;
  width: min(100%, 460px);
  display: grid;
  gap: 19px;
}

.timeline-line {
  position: absolute;
  top: 44px;
  bottom: 44px;
  left: 28px;
  width: 1px;
  background: #bed0e3;
}

.preventive-timeline article {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #dce5ef;
  border-radius: 14px;
  background: rgba(255, 255, 255, .84);
  padding: 17px;
}

.preventive-timeline article > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  background: #edf2f7;
  color: #8290a3;
  z-index: 1;
}

.preventive-timeline article.done > span {
  background: #e5f8f1;
  color: var(--site-green);
}

.preventive-timeline article.active {
  border-color: #9dc9fa;
  box-shadow: 0 14px 34px rgba(19, 114, 222, .11);
}

.preventive-timeline article.active > span {
  background: #e5f2ff;
  color: var(--site-blue-600);
}

.preventive-timeline article > div {
  display: grid;
  gap: 3px;
}

.preventive-timeline small {
  color: #8d9aad;
  font-size: .5rem;
  font-weight: 800;
}

.preventive-timeline strong {
  font-size: .72rem;
}

.preventive-timeline em {
  color: #7a889b;
  font-size: .52rem;
  font-style: normal;
}

.features-catalog {
  background: var(--site-soft);
}

.feature-group + .feature-group {
  margin-top: 85px;
}

.feature-group-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.feature-group-heading span {
  color: var(--site-blue-600);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .68rem;
  font-weight: 800;
}

.feature-group-heading h2 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: -.04em;
}

.role-section {
  background: #fff;
}

.role-section .section-heading {
  margin-bottom: 50px;
}

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

.role-card {
  min-height: 280px;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  padding: 31px;
}

.role-card > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--site-navy-900);
  color: #74b9ff;
}

.role-card h3 {
  margin: 58px 0 12px;
  font-size: 1.2rem;
}

.role-card p {
  margin: 0;
  color: var(--site-muted);
  font-size: .88rem;
  line-height: 1.7;
}

.pricing-section {
  background: var(--site-soft);
  padding-bottom: 75px;
}

.pricing-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  color: #65758b;
  font-size: .76rem;
}

.pricing-notice .site-icon {
  width: 16px;
  height: 16px;
  color: var(--site-blue-600);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 12px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--site-line);
  border-radius: 20px;
  background: #fff;
  padding: 29px 25px;
}

.price-card.featured {
  border-color: #83bbf8;
  box-shadow: 0 25px 65px rgba(26, 116, 219, .14);
}

.price-card-head {
  min-height: 190px;
}

.price-plan {
  color: var(--site-blue-600);
  font-size: .75rem;
  font-weight: 820;
}

.price-card h2 {
  margin: 25px 0 16px;
  font-size: 2.25rem;
  letter-spacing: -.06em;
}

.price-card h2 small {
  color: #8190a5;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 0;
}

.price-card-head p {
  margin: 0;
  color: var(--site-muted);
  font-size: .78rem;
  line-height: 1.65;
}

.price-card .site-button {
  width: 100%;
  min-height: 46px;
  margin-top: 20px;
}

.price-divider {
  height: 1px;
  margin: 27px 0;
  background: var(--site-line);
}

.price-includes {
  font-size: .76rem;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 19px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 8px;
  color: #5e6c81;
  font-size: .72rem;
  line-height: 1.45;
}

.price-card li .site-icon {
  width: 15px;
  height: 15px;
  color: var(--site-green);
}

.pricing-footnote {
  margin-top: 24px;
  color: #7a899e;
  font-size: .7rem;
  text-align: center;
}

.comparison-section {
  padding-top: 80px;
}

.comparison-section .section-heading {
  margin-bottom: 45px;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--site-line);
  border-radius: 18px;
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid var(--site-line);
  padding: 18px 20px;
  font-size: .78rem;
  text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}

.comparison-table th {
  background: #f7f9fc;
  color: #47566c;
}

.comparison-table td {
  color: #647389;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.contact-hero {
  min-height: 100vh;
  padding: 155px 0 100px;
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .8fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.contact-copy h1 {
  margin-top: 22px;
  font-size: clamp(3rem, 5.5vw, 5rem);
}

.contact-copy > p {
  margin: 0;
}

.contact-promises {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-promises span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(231, 241, 253, .72);
  font-size: .84rem;
}

.contact-promises .site-icon {
  width: 17px;
  height: 17px;
  color: #4fd69e;
}

.contact-direct {
  display: grid;
  gap: 8px;
  margin-top: 44px;
}

.contact-direct span {
  color: rgba(255, 255, 255, .42);
  font-size: .69rem;
}

.contact-direct a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #80beff;
  font-size: .86rem;
  font-weight: 750;
}

.contact-direct .site-icon {
  width: 16px;
  height: 16px;
}

.contact-card {
  border: 1px solid rgba(186, 213, 244, .2);
  border-radius: 24px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 40px 100px rgba(0, 7, 22, .36);
  color: var(--site-ink);
  padding: 34px;
}

.contact-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 27px;
}

.contact-card-head h2 {
  margin: 0 0 5px;
  font-size: 1.3rem;
  letter-spacing: -.03em;
}

.contact-card-head p {
  margin: 0;
  color: var(--site-muted);
  font-size: .72rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid label > span {
  color: #46556b;
  font-size: .7rem;
  font-weight: 750;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid #d8e1ec;
  border-radius: 10px;
  outline: 0;
  background: #fff;
  color: var(--site-ink);
  padding: 12px 13px;
  font-size: .78rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-grid textarea {
  resize: vertical;
  min-height: 110px;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: #6bb0fc;
  box-shadow: 0 0 0 4px rgba(37, 140, 255, .1);
}

.form-full {
  grid-column: 1 / -1;
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 18px 0;
  color: #7e8b9d;
  font-size: .63rem;
  line-height: 1.5;
}

.form-privacy .site-icon {
  width: 14px;
  height: 14px;
  margin-top: 1px;
  color: var(--site-blue-600);
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 20px;
  margin-top: 10px;
  color: #63738a;
  font-size: .67rem;
  text-align: center;
}

.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

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

@media (max-width: 1100px) {
  .site-navigation {
    gap: 25px;
  }

  .site-navigation-links {
    gap: 19px;
  }

  .floating-event-one {
    right: -8px;
  }

  .floating-event-two {
    left: -8px;
  }

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

  .contact-layout {
    gap: 45px;
  }
}

@media (max-width: 900px) {
  .site-container {
    width: min(calc(100% - 32px), var(--site-container));
  }

  .site-menu-toggle {
    display: block;
  }

  .site-navigation {
    position: fixed;
    top: 78px;
    right: 16px;
    left: 16px;
    max-height: calc(100vh - 96px);
    display: none;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    background: rgba(5, 22, 49, .98);
    box-shadow: 0 25px 60px rgba(0, 5, 18, .38);
    padding: 20px;
    backdrop-filter: blur(18px);
  }

  .site-navigation.is-open {
    display: block;
  }

  .site-navigation-links,
  .site-navigation-actions {
    display: grid;
  }

  .site-navigation-links {
    gap: 0;
    margin: 0;
  }

  .site-navigation-links a {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 15px 5px;
  }

  .site-navigation-links a.is-active::after {
    display: none;
  }

  .site-navigation-actions {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .site-login-link {
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 140px;
  }

  .product-app {
    grid-template-columns: 118px 1fr;
  }

  .mock-sidebar {
    padding-inline: 9px;
  }

  .mock-lower {
    grid-template-columns: 1fr;
  }

  .mock-priority {
    display: none;
  }

  .operation-story-large,
  .deep-dive,
  .workflow-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .operation-story-large {
    gap: 42px;
  }

  .feature-grid,
  .principles-grid,
  .role-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-layout,
  .faq-layout {
    gap: 55px;
  }

  .workflow-sticky {
    position: static;
  }

  .security-card {
    grid-template-columns: 1fr;
    padding: 55px;
  }

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

  .teaser-plans {
    grid-template-columns: 1fr;
  }

  .site-footer-main {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .inner-hero-visual .product-window {
    margin-bottom: -220px;
  }

  .inner-hero:has(.inner-hero-visual) {
    margin-bottom: 190px;
  }

  .deep-dive {
    gap: 42px;
  }

  .deep-dive:nth-child(even) .deep-dive-copy {
    order: initial;
  }
}

@media (max-width: 640px) {
  .site-container {
    width: min(calc(100% - 24px), var(--site-container));
  }

  .site-header-inner {
    min-height: 70px;
  }

  .site-navigation {
    top: 70px;
    right: 12px;
    left: 12px;
  }

  .site-logo {
    width: 128px;
    height: 43px;
  }

  .site-logo img {
    width: 128px;
    height: 43px;
  }

  .hero {
    padding: 122px 0 44px;
  }

  .hero h1,
  .inner-hero h1,
  .contact-copy h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
    line-height: 1;
  }

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

  .hero-copy > p,
  .inner-hero-copy > p,
  .contact-copy > p {
    font-size: .98rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .site-button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    justify-content: start;
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    gap: 9px;
    text-align: left;
  }

  .product-window-bar {
    grid-template-columns: 1fr auto;
  }

  .window-address {
    display: none;
  }

  .product-app {
    min-height: 390px;
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    display: none;
  }

  .mock-content {
    padding: 0 11px 11px;
  }

  .mock-top {
    height: 50px;
    margin: 0 -11px 10px;
    padding-inline: 13px;
  }

  .mock-health {
    min-height: 105px;
    padding: 15px;
  }

  .mock-health-copy > strong {
    font-size: .88rem;
  }

  .mock-health-copy > small {
    max-width: 150px;
  }

  .mock-score {
    width: 62px;
    height: 62px;
    padding-top: 16px;
  }

  .mock-kpis {
    gap: 5px;
  }

  .mock-kpis > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    padding: 8px;
  }

  .mock-kpi-icon {
    width: 27px;
    height: 27px;
  }

  .mock-kpis em {
    display: none;
  }

  .mock-chart-area {
    height: 80px;
  }

  .floating-event {
    display: none;
  }

  .hero-proof {
    display: grid;
    gap: 13px;
    margin-top: 35px;
    text-align: center;
  }

  .hero-proof > div {
    justify-content: center;
  }

  .site-section {
    padding: 82px 0;
  }

  .section-heading h2 {
    font-size: 2.35rem;
  }

  .operations-grid,
  .feature-grid,
  .principles-grid,
  .role-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .operation-story {
    min-height: 450px;
    padding: 27px;
  }

  .operation-story-large {
    min-height: auto;
    display: block;
  }

  .work-order-demo {
    margin-top: 35px;
    padding: 18px;
  }

  .demo-toolbar {
    margin: -18px -18px 18px;
  }

  .demo-meta {
    grid-template-columns: 1fr;
  }

  .split-heading {
    display: block;
  }

  .split-heading .site-text-link {
    margin-top: 24px;
  }

  .workflow-step {
    grid-template-columns: 32px 48px 1fr;
    gap: 11px;
  }

  .workflow-icon {
    width: 43px;
    height: 43px;
  }

  .security-section {
    padding-top: 12px;
  }

  .security-card {
    width: calc(100% - 24px);
    border-radius: 24px;
    padding: 37px 25px;
  }

  .security-visual {
    min-height: 240px;
    transform: scale(.8);
  }

  .final-cta-inner {
    padding: 88px 0;
  }

  .final-cta-inner > div:last-child {
    display: grid;
  }

  .site-footer {
    padding-top: 55px;
  }

  .site-footer-links {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }

  .site-footer-bottom {
    flex-direction: column;
  }

  .inner-hero {
    min-height: auto;
    padding: 135px 0 78px;
  }

  .inner-hero-visual {
    margin-top: 45px;
  }

  .inner-hero-visual .product-window {
    margin-bottom: -115px;
  }

  .inner-hero:has(.inner-hero-visual) {
    margin-bottom: 100px;
  }

  .product-principles {
    padding-top: 30px;
  }

  .deep-dive-list {
    gap: 75px;
  }

  .deep-dive-visual {
    min-height: 350px;
    padding: 20px;
  }

  .mini-board {
    grid-template-columns: 1fr;
  }

  .mini-board > div:nth-child(n+2) {
    display: none;
  }

  .asset-tree-demo {
    padding: 17px;
  }

  .feature-group + .feature-group {
    margin-top: 65px;
  }

  .pricing-notice {
    align-items: flex-start;
    text-align: left;
  }

  .price-card-head {
    min-height: 0;
  }

  .price-card .site-button {
    margin-top: 30px;
  }

  .contact-hero {
    padding: 125px 0 75px;
  }

  .contact-layout {
    gap: 50px;
  }

  .contact-card {
    padding: 24px 18px;
  }

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

  .form-full {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
