:root {
  --navy-950: #030a18;
  --navy-900: #071225;
  --navy-800: #0a1d3d;
  --navy-700: #123264;
  --blue-700: #164bcc;
  --blue-600: #1e63f3;
  --blue-500: #2f7bff;
  --cyan-400: #58d6ff;
  --sky-100: #e8f4ff;
  --paper: #f6f8fc;
  --white: #ffffff;
  --ink: #0c1a31;
  --muted: #5f6f89;
  --line: #dce4ef;
  --green: #0c9b69;
  --amber: #d38313;
  --violet: #7257dc;
  --shadow-sm: 0 8px 24px rgba(8, 26, 57, .08);
  --shadow-md: 0 24px 70px rgba(8, 26, 57, .14);
  --shadow-dark: 0 28px 80px rgba(0, 5, 20, .42);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --shell: 1220px;
  --font: "Avenir Next", Avenir, Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: 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; }
.icon-library { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 20px; height: 20px; flex: 0 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 10, 24, .88);
  border-bottom: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; min-width: 0; }
.brand img { width: 42px; height: 42px; object-fit: cover; border-radius: 13px; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 8px 24px rgba(0,0,0,.24); }
.brand-copy { line-height: 1; }
.brand-copy strong { display: block; font-size: .98rem; letter-spacing: .035em; }
.brand-copy span { display: block; color: #8fb4ef; font-size: .62rem; letter-spacing: .24em; margin-top: 5px; }
.nav-links { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav-links > a { color: #c5d2e7; font-size: .86rem; font-weight: 700; transition: color .18s ease; }
.nav-links > a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; background: rgba(255,255,255,.06); color: white; align-items: center; justify-content: center; cursor: pointer; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--blue-600); box-shadow: 0 12px 28px rgba(30,99,243,.3); }
.btn-primary:hover { background: var(--blue-500); box-shadow: 0 16px 34px rgba(30,99,243,.38); }
.btn-light { color: var(--ink); background: #fff; box-shadow: var(--shadow-sm); }
.btn-ghost { color: #eaf2ff; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
.btn-dark { color: #fff; background: var(--navy-900); }
.btn-small { min-height: 42px; padding: 10px 15px; }

.announcement { background: #0f2e61; color: #dbe9ff; border-bottom: 1px solid rgba(255,255,255,.08); font-size: .78rem; font-weight: 700; }
.announcement .shell { min-height: 36px; display: flex; align-items: center; justify-content: center; gap: 10px; text-align: center; }
.announcement strong { color: #fff; }
.announcement-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan-400); box-shadow: 0 0 16px var(--cyan-400); }
.launch-badge { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 7px; padding: 4px 9px; color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); border-radius: 999px; text-transform: uppercase; letter-spacing: .08em; font-size: .62rem; font-weight: 900; }

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(900px 520px at 83% 25%, rgba(44,123,255,.34), transparent 65%),
    radial-gradient(600px 500px at 6% 90%, rgba(88,214,255,.10), transparent 70%),
    linear-gradient(145deg, var(--navy-950) 0%, #071634 54%, #0b2551 100%);
  padding: 92px 0 108px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, #000, transparent 72%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .92fr 1.08fr; gap: 72px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: #9bc3ff; font-size: .72rem; font-weight: 850; text-transform: uppercase; letter-spacing: .16em; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--cyan-400); }
.hero h1 { max-width: 720px; font-size: clamp(3.2rem, 6.3vw, 6.3rem); letter-spacing: -.065em; line-height: .92; margin: 20px 0 24px; font-weight: 760; }
.hero h1 span { color: #8fc7ff; }
.hero-copy > p { max-width: 620px; color: #bdcbe1; font-size: clamp(1rem, 1.4vw, 1.15rem); margin: 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-copy > .trial-microcopy { display: flex; align-items: center; gap: 7px; margin: 14px 0 0; color: #9fb1cb; font-size: .72rem; }
.trial-microcopy .icon { flex: 0 0 auto; color: var(--cyan-400); }
.trial-microcopy strong { color: #fff; }
.hero-proof { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 34px; color: #adc0dc; font-size: .76rem; font-weight: 750; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof .icon { width: 16px; height: 16px; color: #64d7ae; }

.hero-console { position: relative; }
.console-glow { position: absolute; inset: 12% 6% -7%; background: #286ff8; filter: blur(70px); opacity: .25; }
.hero-tour-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050d1d;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 25px;
  box-shadow: var(--shadow-dark);
  transform: perspective(1200px) rotateY(-2deg) rotateX(.7deg);
}
.hero-tour-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(2,8,20,.12), transparent 22%, transparent 72%, rgba(2,8,20,.32));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.hero-tour-video { display: block; width: 100%; height: 100%; object-fit: cover; background: #eef3f9; }
.hero-tour-meta { position: absolute; z-index: 2; inset: 16px 16px auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; pointer-events: none; }
.tour-live, .tour-scene, .hero-tour-note { color: #eaf2ff; background: rgba(4,13,30,.84); border: 1px solid rgba(255,255,255,.15); box-shadow: 0 8px 24px rgba(0,0,0,.22); backdrop-filter: blur(12px); }
.tour-live, .tour-scene { display: inline-flex; align-items: center; min-height: 32px; padding: 7px 10px; border-radius: 999px; font-size: .58rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.tour-live i { width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: #64d7ae; box-shadow: 0 0 0 4px rgba(100,215,174,.14); }
.tour-scene { color: #fff; }
.hero-tour-note { position: absolute; z-index: 2; left: 16px; bottom: 17px; padding: 7px 10px; border-radius: 9px; font-size: .56rem; font-weight: 750; letter-spacing: .04em; }
.hero-tour-progress { position: absolute; z-index: 3; inset: auto 0 0; height: 3px; overflow: hidden; background: rgba(255,255,255,.16); }
.hero-tour-progress span { display: block; width: var(--tour-progress, 0%); height: 100%; background: linear-gradient(90deg, #58d6ff, #5f7dff); transition: width .18s linear; }
.console-window { position: relative; background: #f9fbff; color: var(--ink); border: 1px solid rgba(255,255,255,.54); border-radius: 25px; overflow: hidden; box-shadow: var(--shadow-dark); transform: perspective(1200px) rotateY(-2.5deg) rotateX(1deg); }
.window-bar { min-height: 48px; background: #eaf0f8; border-bottom: 1px solid #d8e0eb; display: flex; align-items: center; gap: 10px; padding: 0 16px; }
.window-dots { display: flex; gap: 6px; }
.window-dots i { width: 8px; height: 8px; border-radius: 50%; background: #b2bfd0; }
.window-title { margin-left: 8px; color: #718097; font-size: .66rem; font-weight: 800; letter-spacing: .05em; }
.system-console { display: grid; grid-template-columns: 150px 1fr; min-height: 430px; }
.console-side { background: #09162b; color: #c4d2e8; padding: 19px 14px; }
.console-brand { display: flex; align-items: center; gap: 9px; color: #fff; font-size: .74rem; font-weight: 850; margin-bottom: 24px; }
.console-brand img { width: 30px; height: 30px; object-fit: cover; border-radius: 9px; }
.console-nav { display: grid; gap: 7px; }
.console-nav span { display: flex; align-items: center; gap: 8px; padding: 9px 10px; border-radius: 9px; font-size: .66rem; font-weight: 700; }
.console-nav span.active { color: #fff; background: #1e63f3; }
.console-nav .icon { width: 14px; height: 14px; }
.console-main { padding: 21px; min-width: 0; }
.console-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.console-heading small { display: block; color: #718097; font-size: .62rem; font-weight: 750; }
.console-heading strong { display: block; font-size: 1.05rem; margin-top: 3px; }
.live-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 9px; border-radius: 999px; color: #087754; background: #e2f7ef; font-size: .58rem; font-weight: 850; white-space: nowrap; }
.live-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #13a875; }
.console-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 18px; }
.console-stat { border: 1px solid #e0e7f0; background: #fff; padding: 12px; border-radius: 12px; }
.console-stat span { display: block; color: #718097; font-size: .56rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.console-stat b { display: block; font-size: 1.15rem; margin-top: 5px; }
.console-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 10px; margin-top: 10px; }
.mini-card { border: 1px solid #e0e7f0; background: #fff; border-radius: 13px; padding: 13px; min-width: 0; }
.mini-card-head { display: flex; justify-content: space-between; align-items: center; font-size: .63rem; font-weight: 850; }
.mini-card-head small { color: #718097; font-size: .53rem; }
.pipeline { display: grid; gap: 8px; margin-top: 14px; }
.pipeline-row { display: grid; grid-template-columns: 62px 1fr 24px; gap: 7px; align-items: center; font-size: .54rem; color: #66758d; }
.pipeline-row i { height: 7px; background: #e8edf4; border-radius: 99px; overflow: hidden; }
.pipeline-row i::after { content: ""; display: block; width: var(--fill); height: 100%; background: linear-gradient(90deg, #1e63f3, #58d6ff); border-radius: inherit; }
.pipeline-row b { color: var(--ink); font-size: .56rem; text-align: right; }
.activity { display: grid; gap: 8px; margin-top: 13px; }
.activity div { display: grid; grid-template-columns: 7px 1fr; gap: 7px; color: #65758c; font-size: .54rem; line-height: 1.35; }
.activity i { width: 7px; height: 7px; border-radius: 50%; background: #1e63f3; margin-top: 2px; }
.app-dock { position: absolute; left: 8%; right: -4%; bottom: -32px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; z-index: 3; }
.app-chip { display: flex; align-items: center; gap: 8px; min-width: 0; padding: 9px; color: #dbe7f8; background: rgba(8,22,46,.96); border: 1px solid rgba(255,255,255,.13); border-radius: 12px; box-shadow: 0 12px 28px rgba(0,0,0,.3); }
.app-chip.active { color: #fff; border-color: rgba(88,214,255,.72); background: rgba(18,56,116,.98); transform: translateY(-3px); box-shadow: 0 16px 32px rgba(0,0,0,.34), 0 0 0 1px rgba(88,214,255,.15); }
.app-chip img { width: 32px; height: 32px; border-radius: 9px; object-fit: cover; }
.app-chip span { min-width: 0; font-size: .6rem; font-weight: 850; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-chip small { color: #8fc7ff; font-size: .46rem; font-weight: 850; text-transform: uppercase; letter-spacing: .05em; }

.sector-strip { background: #fff; border-bottom: 1px solid var(--line); }
.sector-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.sector-inner > span { color: #8592a6; font-size: .67rem; font-weight: 850; text-transform: uppercase; letter-spacing: .14em; white-space: nowrap; }
.sector-list { display: flex; align-items: center; justify-content: flex-end; gap: 22px; flex-wrap: wrap; color: #52627a; font-size: .78rem; font-weight: 750; }

section { position: relative; }
.section { padding: 108px 0; }
.section-white { background: #fff; }
.section-dark { color: #fff; background: var(--navy-950); }
.section-head { max-width: 760px; margin-bottom: 52px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(2.3rem, 4.5vw, 4.4rem); letter-spacing: -.055em; line-height: .98; margin: 14px 0 17px; }
.section-head p { color: var(--muted); max-width: 680px; margin: 0; font-size: 1.02rem; }
.section-dark .section-head p { color: #aebed6; }
.section-dark .eyebrow { color: #89b7ff; }

.system-stage { position: relative; min-height: 600px; padding: 54px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: linear-gradient(145deg, #fdfefe, #eef4fb); box-shadow: var(--shadow-md); overflow: hidden; }
.system-stage::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(#b7c8de 1px, transparent 1px); background-size: 22px 22px; opacity: .34; }
.system-lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.system-lines path { fill: none; stroke: #95b4de; stroke-width: 2; stroke-dasharray: 8 8; }
.system-lines circle { fill: #1e63f3; stroke: #fff; stroke-width: 4; }
.system-core { position: absolute; left: 50%; top: 50%; z-index: 3; width: min(330px, 32%); transform: translate(-50%, -50%); padding: 27px; text-align: center; color: #fff; border-radius: 26px; background: linear-gradient(145deg, #07152c, #123c79); box-shadow: 0 25px 70px rgba(8,32,73,.28); }
.system-core .core-icon { width: 48px; height: 48px; margin: 0 auto 15px; display: grid; place-items: center; border-radius: 15px; color: #fff; background: #1e63f3; }
.system-core h3 { margin: 0; font-size: 1.24rem; }
.system-core p { margin: 8px 0 0; color: #b7c9e2; font-size: .8rem; }
.system-node { position: absolute; z-index: 3; width: 230px; display: grid; grid-template-columns: 58px 1fr; gap: 13px; align-items: center; padding: 14px; background: rgba(255,255,255,.93); border: 1px solid #d8e3f1; border-radius: 18px; box-shadow: var(--shadow-sm); }
.system-node img { width: 58px; height: 58px; object-fit: cover; border-radius: 15px; }
.system-node small { display: block; color: #74839a; font-size: .58rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.system-node strong { display: block; font-size: .93rem; margin-top: 2px; }
.system-node span { display: inline-flex; margin-top: 5px; color: #0a7e5c; font-size: .58rem; font-weight: 850; }
.system-node.finance span { color: var(--violet); }
.node-crm { left: 5%; top: 12%; }
.node-estimator { right: 5%; top: 12%; }
.node-scan { left: 5%; bottom: 12%; }
.node-finance { right: 5%; bottom: 12%; }
.system-caption { position: absolute; left: 50%; bottom: 30px; z-index: 3; transform: translateX(-50%); color: #66758d; font-size: .72rem; font-weight: 750; text-align: center; white-space: nowrap; }

.product-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 24px; }
.product-tab { appearance: none; border: 1px solid var(--line); border-radius: 16px; background: #fff; padding: 12px; display: flex; align-items: center; gap: 10px; text-align: left; cursor: pointer; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.product-tab:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.product-tab[aria-selected="true"] { color: #fff; border-color: #1e63f3; background: #0b2042; box-shadow: 0 14px 34px rgba(8,32,73,.2); }
.product-tab img { width: 44px; height: 44px; object-fit: cover; border-radius: 12px; }
.product-tab strong { display: block; font-size: .8rem; }
.product-tab small { display: block; color: #7b899e; font-size: .6rem; margin-top: 2px; }
.product-tab[aria-selected="true"] small { color: #a9c1e5; }
.product-panel { display: none; grid-template-columns: .74fr 1.26fr; gap: 54px; align-items: center; min-height: 580px; padding: 48px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-md); }
.product-panel.active { display: grid; }
.product-kicker { display: flex; align-items: center; gap: 12px; }
.product-kicker img { width: 58px; height: 58px; object-fit: cover; border-radius: 16px; }
.product-kicker span { display: block; color: var(--blue-600); font-size: .68rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.product-copy h3 { font-size: clamp(2rem, 3.2vw, 3.3rem); line-height: 1.02; letter-spacing: -.05em; margin: 22px 0 15px; }
.product-copy > p { color: var(--muted); margin: 0; }
.feature-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.feature-list li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; align-items: start; font-size: .84rem; font-weight: 750; }
.feature-list .icon { width: 20px; height: 20px; color: var(--blue-600); }
.product-note { margin-top: 24px; padding: 13px 15px; color: #52627a; background: #f1f5fa; border-radius: 12px; font-size: .72rem; font-weight: 750; }

.app-window { overflow: hidden; border: 1px solid #dbe4ef; border-radius: 22px; background: #f4f7fb; box-shadow: 0 26px 65px rgba(8,26,57,.18); }
.app-window .window-bar { min-height: 44px; }
.app-window .window-title { margin-left: auto; margin-right: auto; }
.ui-layout { display: grid; grid-template-columns: 132px 1fr; min-height: 430px; }
.ui-sidebar { background: #08152a; color: #8296b5; padding: 16px 12px; }
.ui-sidebar-brand { display: flex; align-items: center; gap: 8px; color: #fff; font-size: .62rem; font-weight: 850; margin-bottom: 18px; }
.ui-sidebar-brand img { width: 29px; height: 29px; border-radius: 8px; object-fit: cover; }
.ui-sidebar nav { display: grid; gap: 5px; }
.ui-sidebar nav span { padding: 8px 9px; border-radius: 8px; font-size: .54rem; font-weight: 800; }
.ui-sidebar nav span.active { color: #fff; background: #1e63f3; }
.ui-content { min-width: 0; padding: 17px; }
.ui-title { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.ui-title div strong { display: block; font-size: .84rem; }
.ui-title div small { color: #7a899f; font-size: .52rem; }
.ui-action { padding: 7px 9px; color: #fff; background: #1e63f3; border-radius: 8px; font-size: .52rem; font-weight: 850; }
.ui-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 14px; }
.ui-stat { padding: 10px; border: 1px solid #e0e7f0; border-radius: 10px; background: #fff; }
.ui-stat small { display: block; color: #7b899e; font-size: .48rem; font-weight: 800; text-transform: uppercase; }
.ui-stat b { display: block; margin-top: 4px; font-size: .88rem; }
.ui-card { margin-top: 9px; padding: 11px; border: 1px solid #e0e7f0; border-radius: 11px; background: #fff; }
.ui-card-head { display: flex; justify-content: space-between; font-size: .55rem; font-weight: 850; }
.ui-card-head span:last-child { color: #74839a; font-weight: 700; }
.work-list { display: grid; gap: 7px; margin-top: 10px; }
.work-row { display: grid; grid-template-columns: 5px 1fr auto; gap: 7px; align-items: center; padding-top: 7px; border-top: 1px solid #edf1f6; }
.work-row i { width: 5px; height: 24px; border-radius: 99px; background: var(--blue-600); }
.work-row strong { display: block; font-size: .52rem; }
.work-row small { display: block; color: #7d8ca1; font-size: .46rem; }
.work-row b { color: #54637a; font-size: .46rem; }

.estimate-screen { padding: 18px; background: #eef3f9; }
.estimate-sheet { max-width: 470px; margin: auto; background: #fff; border: 1px solid #dfe6ef; border-radius: 17px; padding: 18px; box-shadow: 0 16px 36px rgba(8,26,57,.1); }
.estimate-head { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
.estimate-head img { width: 42px; height: 42px; border-radius: 12px; object-fit: cover; }
.estimate-label { margin-left: auto; text-align: right; }
.estimate-label small { color: #728198; font-size: .48rem; text-transform: uppercase; font-weight: 850; }
.estimate-label strong { display: block; font-size: .82rem; }
.estimate-customer { margin-top: 15px; padding: 12px; border-radius: 11px; background: #f4f7fb; }
.estimate-customer small { display: block; color: #758399; font-size: .48rem; }
.estimate-customer strong { display: block; font-size: .65rem; margin-top: 3px; }
.estimate-table { margin-top: 13px; }
.estimate-row { display: grid; grid-template-columns: 1fr 50px 68px; gap: 8px; padding: 9px 2px; border-bottom: 1px solid #e8edf3; font-size: .52rem; }
.estimate-row.head { color: #7d8ba0; font-size: .46rem; font-weight: 850; text-transform: uppercase; }
.estimate-row span:last-child { text-align: right; font-weight: 800; }
.estimate-total { display: flex; justify-content: flex-end; align-items: baseline; gap: 10px; margin-top: 14px; }
.estimate-total span { color: #6e7d93; font-size: .55rem; }
.estimate-total b { font-size: 1.15rem; }
.estimate-actions { display: flex; justify-content: flex-end; gap: 7px; margin-top: 15px; }
.estimate-actions span { padding: 7px 10px; border: 1px solid #d9e1ec; border-radius: 8px; font-size: .48rem; font-weight: 850; }
.estimate-actions span:last-child { color: #fff; background: #1e63f3; border-color: #1e63f3; }

.scan-screen { display: grid; grid-template-columns: .88fr 1.12fr; gap: 12px; padding: 17px; background: #eef3f9; min-height: 430px; }
.scan-camera { position: relative; overflow: hidden; border-radius: 16px; background: linear-gradient(145deg, #071327, #143d77); min-height: 340px; display: grid; place-items: center; }
.scan-camera::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px); background-size: 20px 20px; opacity: .35; }
.scan-frame { position: relative; width: 150px; aspect-ratio: 1; border: 2px solid #63dcff; border-radius: 18px; box-shadow: 0 0 35px rgba(88,214,255,.25); }
.scan-frame::before, .scan-frame::after { content: ""; position: absolute; left: 16px; right: 16px; height: 1px; background: #63dcff; }
.scan-frame::before { top: 50%; box-shadow: 0 0 12px #63dcff; }
.scan-frame::after { top: 20%; opacity: .45; }
.scan-tag { position: absolute; left: 14px; bottom: 14px; color: #d5e8ff; font-size: .48rem; font-weight: 800; }
.scan-side { display: grid; align-content: start; gap: 9px; }
.asset-card { padding: 13px; border: 1px solid #dfe7f1; background: #fff; border-radius: 13px; }
.asset-card small { color: #75849b; font-size: .46rem; font-weight: 850; text-transform: uppercase; }
.asset-card h4 { margin: 5px 0 2px; font-size: .72rem; }
.asset-card p { margin: 0; color: #6f7f95; font-size: .5rem; }
.asset-status { display: inline-flex; margin-top: 9px; padding: 5px 7px; color: #087754; background: #e3f6ef; border-radius: 99px; font-size: .44rem; font-weight: 850; }
.scan-history { padding: 12px; border: 1px solid #dfe7f1; background: #fff; border-radius: 13px; }
.scan-history > strong { font-size: .58rem; }
.scan-event { display: grid; grid-template-columns: 6px 1fr; gap: 7px; margin-top: 9px; font-size: .46rem; color: #6f7f95; }
.scan-event i { width: 6px; height: 6px; border-radius: 50%; background: #1e63f3; margin-top: 2px; }
.scan-event b { display: block; color: #22324a; font-size: .48rem; }

.finance-screen { padding: 17px; background: #f4f8fc; min-height: 430px; }
.finance-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.finance-brand { display: flex; gap: 9px; align-items: center; }
.finance-brand img { width: 38px; height: 38px; border-radius: 11px; object-fit: cover; }
.finance-brand strong { display: block; font-size: .75rem; }
.finance-brand small { display: block; color: #718097; font-size: .47rem; }
.beta-pill { padding: 6px 8px; color: #6049b7; background: #ece8ff; border-radius: 99px; font-size: .45rem; font-weight: 900; }
.finance-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 14px; }
.finance-metric { padding: 11px; background: #fff; border: 1px solid #e0e8f2; border-radius: 11px; }
.finance-metric small { display: block; color: #77869c; font-size: .45rem; text-transform: uppercase; font-weight: 850; }
.finance-metric b { display: block; font-size: .9rem; margin-top: 5px; }
.finance-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 9px; margin-top: 9px; }
.finance-card { padding: 12px; background: #fff; border: 1px solid #e0e8f2; border-radius: 12px; }
.finance-card > strong { font-size: .56rem; }
.aging-bars { display: grid; gap: 9px; margin-top: 14px; }
.aging-row { display: grid; grid-template-columns: 50px 1fr 42px; gap: 7px; align-items: center; color: #738198; font-size: .45rem; }
.aging-row i { height: 8px; border-radius: 99px; background: #edf1f6; overflow: hidden; }
.aging-row i::after { content: ""; display: block; height: 100%; width: var(--fill); background: var(--blue-600); border-radius: inherit; }
.aging-row b { color: #23334a; text-align: right; font-size: .46rem; }
.cash-flow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; height: 116px; align-items: end; margin-top: 12px; }
.cash-flow i { display: block; height: var(--height); min-height: 10px; background: linear-gradient(#58d6ff, #1e63f3); border-radius: 5px 5px 2px 2px; }

.automation-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: center; }
.automation-layout h2 { font-size: clamp(2.5rem, 4.6vw, 4.5rem); line-height: .98; letter-spacing: -.055em; margin: 14px 0 18px; }
.automation-layout > div > p { color: #aebed6; margin: 0; }
.automation-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.automation-point { display: flex; gap: 10px; align-items: flex-start; padding: 14px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.045); border-radius: 13px; }
.automation-point .icon { color: var(--cyan-400); }
.automation-point strong { display: block; font-size: .75rem; }
.automation-point small { display: block; color: #92a7c7; font-size: .65rem; margin-top: 3px; }
.workflow-card { padding: 26px; background: #0b1b34; border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius-lg); box-shadow: var(--shadow-dark); }
.workflow-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.09); }
.workflow-head strong { font-size: .82rem; }
.workflow-head span { color: #75e2bb; font-size: .6rem; font-weight: 850; }
.workflow-step { position: relative; display: grid; grid-template-columns: 44px 1fr auto; gap: 13px; align-items: center; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.workflow-step:last-child { border-bottom: 0; }
.workflow-step::before { content: ""; position: absolute; left: 21px; top: 51px; bottom: -16px; width: 1px; background: rgba(88,214,255,.25); }
.workflow-step:last-child::before { display: none; }
.step-icon { width: 44px; height: 44px; display: grid; place-items: center; color: #a7d7ff; border-radius: 13px; background: #123361; }
.workflow-step strong { display: block; font-size: .74rem; }
.workflow-step small { display: block; color: #8fa4c2; font-size: .62rem; margin-top: 3px; }
.workflow-step > span { color: #73dcb8; font-size: .53rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value-card { min-height: 240px; padding: 25px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.value-icon { width: 44px; height: 44px; display: grid; place-items: center; color: var(--blue-600); background: var(--sky-100); border-radius: 13px; }
.value-card h3 { margin: 32px 0 10px; font-size: 1.05rem; }
.value-card p { color: var(--muted); margin: 0; font-size: .84rem; }
.industry-band { margin-top: 42px; padding: 25px; border: 1px solid #d6e3f2; border-radius: 22px; background: linear-gradient(135deg, #ecf5ff, #f8fbff); }
.industry-band > strong { display: block; font-size: .77rem; text-transform: uppercase; letter-spacing: .12em; color: #4c6382; }
.industry-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.industry-tags span { padding: 8px 11px; border: 1px solid #d4e1ef; border-radius: 10px; background: #fff; color: #52627a; font-size: .7rem; font-weight: 750; }

.pricing-layout { display: grid; grid-template-columns: 1.02fr .98fr; gap: 28px; align-items: stretch; }
.suite-card { position: relative; overflow: hidden; padding: 38px; color: #fff; background: linear-gradient(145deg, #07152b, #123d7b); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.suite-card::after { content: ""; position: absolute; width: 320px; height: 320px; right: -100px; top: -100px; border-radius: 50%; background: #1e63f3; filter: blur(10px); opacity: .3; }
.suite-card > * { position: relative; z-index: 1; }
.price-kicker { color: #95beff; font-size: .7rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.suite-card h3 { max-width: 540px; margin: 15px 0 0; font-size: clamp(2rem, 3.4vw, 3.2rem); line-height: 1.03; letter-spacing: -.05em; }
.price { display: flex; align-items: end; gap: 9px; margin-top: 26px; }
.price b { font-size: 4.4rem; line-height: .9; letter-spacing: -.06em; }
.price span { color: #afc1da; font-size: .74rem; font-weight: 750; padding-bottom: 7px; }
.suite-card ul { list-style: none; padding: 0; margin: 28px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.suite-card li { display: flex; gap: 8px; align-items: center; color: #d5e0ef; font-size: .74rem; font-weight: 700; }
.suite-card li .icon { width: 16px; height: 16px; color: #65dcb3; }
.suite-trial-note { margin: 10px 0 0; color: #d4e3fb; font-size: .68rem; font-weight: 800; }
.founder-rate { margin-top: 18px; color: #c7d7eb; font-size: .69rem; }
.founder-rate strong { color: #fff; }
.individual-prices { display: grid; gap: 11px; }
.price-row { display: grid; grid-template-columns: 50px 1fr auto; gap: 13px; align-items: center; padding: 14px; border: 1px solid var(--line); background: #fff; border-radius: 17px; }
.price-row img { width: 50px; height: 50px; object-fit: cover; border-radius: 14px; }
.price-row strong { display: block; font-size: .84rem; }
.price-row small { display: block; color: var(--muted); font-size: .62rem; margin-top: 3px; }
.price-row b { font-size: .92rem; white-space: nowrap; }
.price-row.finance { background: #f7f5ff; border-color: #e4defa; }
.pricing-note { margin-top: 14px; color: #6b7b91; font-size: .68rem; }

.trial-strip { margin-top: 26px; display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; padding: 22px 24px; color: #fff; background: #1e63f3; border-radius: 20px; box-shadow: 0 18px 45px rgba(30,99,243,.25); }
.trial-number { width: 58px; height: 58px; display: grid; place-items: center; color: #0f3471; background: #fff; border-radius: 17px; font-size: 1.2rem; font-weight: 900; }
.trial-strip strong { display: block; }
.trial-strip small { display: block; color: #c8dbff; margin-top: 3px; }

.login-section { padding: 82px 0; background: #eaf0f8; }
.login-layout { display: grid; grid-template-columns: 1fr .9fr; gap: 62px; align-items: center; }
.login-layout h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); line-height: 1; letter-spacing: -.05em; margin: 14px 0 15px; }
.login-layout p { color: var(--muted); margin: 0; }
.login-card { padding: 25px; background: #fff; border: 1px solid #d8e2ee; border-radius: 20px; box-shadow: var(--shadow-md); }
.login-card label { display: block; font-size: .68rem; font-weight: 850; text-transform: uppercase; letter-spacing: .09em; margin-bottom: 9px; }
.login-row { display: grid; grid-template-columns: 1fr auto; }
.login-row input { min-width: 0; border: 1px solid #cfd9e6; border-right: 0; border-radius: 12px 0 0 12px; padding: 13px 14px; color: var(--ink); outline: none; }
.login-row input:focus { border-color: var(--blue-600); box-shadow: inset 0 0 0 1px var(--blue-600); }
.login-row .btn { border-radius: 0 12px 12px 0; }
.login-help { margin-top: 11px !important; font-size: .68rem; }
.login-error { display: none; color: #b22626 !important; font-size: .68rem; font-weight: 750; margin-top: 9px !important; }

.final-cta { padding: 98px 0; color: #fff; background: linear-gradient(135deg, #0b1d3a, #164dcc); }
.final-cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; }
.final-cta h2 { max-width: 850px; margin: 0; font-size: clamp(2.6rem, 5.1vw, 5.2rem); line-height: .94; letter-spacing: -.06em; }
.final-cta p { max-width: 650px; color: #c3d4ee; margin: 20px 0 0; }
.final-actions { display: grid; gap: 10px; min-width: 210px; }

.site-footer { color: #a8b8d0; background: #030914; padding: 45px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3, .75fr); gap: 45px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { max-width: 370px; margin: 0; font-size: .75rem; }
.footer-col strong { display: block; color: #fff; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 13px; }
.footer-col a { display: block; font-size: .72rem; margin: 8px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); font-size: .66rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease var(--reveal-delay, 0ms), transform .55s ease var(--reveal-delay, 0ms); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .hero-grid { gap: 40px; }
  .system-node { width: 205px; }
  .product-panel { grid-template-columns: 1fr; gap: 34px; }
  .product-copy { max-width: 720px; }
  .automation-layout { gap: 42px; }
}

@media (max-width: 840px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .announcement .shell { min-height: 42px; }
  .nav-actions > .btn-ghost { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-links { position: fixed; inset: 76px 0 auto; display: none; padding: 20px; background: rgba(3,10,24,.98); border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-links.open { display: grid; gap: 8px; }
  .nav-links > a { padding: 12px 4px; }
  .hero { padding: 70px 0 90px; }
  .hero-grid, .automation-layout, .pricing-layout, .login-layout { grid-template-columns: 1fr; }
  .hero-console { margin-top: 20px; }
  .hero-tour-shell { transform: none; }
  .sector-inner { padding: 20px 0; align-items: flex-start; flex-direction: column; }
  .sector-list { justify-content: flex-start; }
  .section { padding: 82px 0; }
  .system-stage { min-height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 22px; }
  .system-lines { display: none; }
  .system-core, .system-node { position: relative; inset: auto; transform: none; width: 100%; }
  .system-core { grid-column: 1 / -1; }
  .system-caption { position: relative; left: auto; bottom: auto; transform: none; grid-column: 1 / -1; white-space: normal; }
  .product-tabs { grid-template-columns: 1fr 1fr; }
  .product-panel { padding: 28px; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 590px) {
  .announcement .shell { flex-direction: column; gap: 7px; padding-block: 8px; }
  .brand-copy span { display: none; }
  .nav { min-height: 68px; gap: 10px; }
  .brand img { width: 38px; height: 38px; }
  .nav-actions .btn-primary { min-height: 40px; padding: 9px 11px; font-size: .72rem; }
  .nav-links { inset-block-start: 68px; }
  .hero { padding-top: 54px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.4rem); }
  .hero-actions .btn { width: 100%; }
  .hero-tour-shell { border-radius: 17px; }
  .hero-tour-meta { inset: 9px 9px auto; }
  .tour-live, .tour-scene { min-height: 26px; padding: 5px 7px; font-size: .48rem; }
  .hero-tour-note { display: none; }
  .system-console { grid-template-columns: 1fr; min-height: 380px; }
  .console-side { display: none; }
  .console-main { padding: 14px; }
  .console-stats { grid-template-columns: 1fr 1fr; }
  .console-stat:last-child { display: none; }
  .console-grid { grid-template-columns: 1fr; }
  .console-grid .mini-card:last-child { display: none; }
  .app-dock { position: relative; left: auto; right: auto; bottom: auto; grid-template-columns: 1fr 1fr; margin-top: 10px; }
  .console-window { transform: none; }
  .sector-list { gap: 12px; }
  .system-stage, .product-tabs, .value-grid, .footer-grid { grid-template-columns: 1fr; }
  .system-core { grid-column: auto; }
  .system-caption { grid-column: auto; }
  .product-tabs { display: grid; grid-template-columns: 1fr; overflow: visible; padding-bottom: 0; scroll-snap-type: none; }
  .product-tab { width: 100%; min-width: 0; }
  .product-panel { padding: 20px; min-height: 0; }
  .ui-layout { grid-template-columns: 1fr; min-height: 390px; }
  .ui-sidebar { display: none; }
  .ui-stat-grid { grid-template-columns: 1fr 1fr; }
  .ui-stat:last-child { display: none; }
  .scan-screen { grid-template-columns: 1fr; }
  .scan-camera { min-height: 260px; }
  .finance-grid { grid-template-columns: 1fr; }
  .automation-points { grid-template-columns: 1fr; }
  .workflow-step { grid-template-columns: 40px 1fr; }
  .workflow-step > span { grid-column: 2; }
  .suite-card { padding: 27px; }
  .suite-card ul { grid-template-columns: 1fr; }
  .price b { font-size: 3.6rem; }
  .trial-strip { grid-template-columns: 1fr; }
  .login-row { grid-template-columns: 1fr; }
  .login-row input { border-right: 1px solid #cfd9e6; border-bottom: 0; border-radius: 12px 12px 0 0; }
  .login-row .btn { border-radius: 0 0 12px 12px; }
  .final-cta-grid { grid-template-columns: 1fr; }
  .final-actions { width: 100%; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
