:root {
  --navy-950: #040c1d;
  --navy-900: #061329;
  --navy-850: #091a36;
  --navy-800: #0e2243;
  --blue-700: #1450c9;
  --blue-600: #1679ff;
  --cyan-500: #35c7ff;
  --cyan-300: #82e6ff;
  --ink: #101b37;
  --muted: #61708a;
  --line: #dce4ef;
  --surface: #f3f6fa;
  --white: #fff;
  --orange: #ff5a2a;
  --shadow: 0 24px 70px rgba(6, 19, 41, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.site-shell { overflow: hidden; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(1420px, calc(100% - 64px));
  height: 100px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { width: 43px; height: 43px; filter: drop-shadow(0 7px 15px rgba(22,121,255,.25)); }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word strong { font-size: 24px; letter-spacing: .1em; font-style: italic; }
.brand-word small { margin-top: 6px; font-size: 7px; font-weight: 800; letter-spacing: .17em; }
.site-nav { display: flex; align-items: center; gap: 35px; }
.site-nav > a { color: rgba(255,255,255,.72); font-size: 14px; font-weight: 600; transition: color .2s; }
.site-nav > a:hover { color: var(--white); }
.menu-toggle { display: none; background: none; border: 0; color: white; }

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 18px; font-size: 13px; }
.button-primary { color: #041125; background: var(--cyan-500); box-shadow: 0 13px 35px rgba(53,199,255,.2); }
.button-primary:hover { background: #63d8ff; box-shadow: 0 17px 45px rgba(53,199,255,.3); }
.button-outline { color: white; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.04); }
.button-dark { color: white; background: var(--navy-900); }
.button-white { color: var(--navy-900); background: white; }

.hero {
  position: relative;
  min-height: 860px;
  padding: 182px max(32px, calc((100vw - 1420px) / 2)) 105px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  gap: 70px;
  color: white;
  background:
    radial-gradient(circle at 80% 22%, rgba(16,91,194,.25), transparent 28%),
    linear-gradient(135deg, var(--navy-950), #061833 64%, #071225);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 135px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(3,11,25,.7));
}
.hero-copy { position: relative; z-index: 3; max-width: 620px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan-300);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow > span { width: 25px; height: 2px; background: var(--cyan-500); }
.hero h1 {
  max-width: 610px;
  margin: 24px 0 25px;
  font-size: clamp(54px, 5.2vw, 82px);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero h1 em, .section-heading h2 em, .results-intro h2 em, .cta-copy h2 em {
  color: var(--cyan-500);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.hero-copy > p { max-width: 600px; color: #aebbd0; font-size: 18px; line-height: 1.8; }
.hero-actions { margin-top: 36px; display: flex; align-items: center; gap: 28px; }
.text-link { display: inline-flex; gap: 12px; color: rgba(255,255,255,.82); font-size: 14px; font-weight: 700; }
.hero-proof { margin-top: 48px; display: flex; align-items: center; gap: 16px; }
.proof-avatars { display: flex; padding-left: 8px; }
.proof-avatars span {
  width: 36px; height: 36px; margin-left: -8px;
  display: grid; place-items: center;
  border: 2px solid var(--navy-900);
  border-radius: 50%;
  color: white; background: #17498b;
  font-size: 9px; font-weight: 800;
}
.proof-avatars span:nth-child(2) { background: #0e7297; }
.proof-avatars span:nth-child(3) { background: #3f368f; font-size: 15px; }
.hero-proof p { margin: 0; color: #93a4be; font-size: 12px; line-height: 1.5; }
.hero-proof strong { color: white; }

.grid-field {
  position: absolute; inset: 0;
  opacity: .14;
  background-image: linear-gradient(rgba(53,199,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(53,199,255,.18) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, transparent 20%, black 100%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); }
.hero-glow-one { width: 500px; height: 500px; right: -180px; top: 30px; background: rgba(22,121,255,.1); }
.hero-glow-two { width: 280px; height: 280px; left: 42%; bottom: -130px; background: rgba(53,199,255,.08); }
.hero-visual { position: relative; z-index: 2; min-width: 0; perspective: 1200px; }
.dashboard {
  position: relative;
  width: min(790px, 100%);
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(109,195,255,.22);
  border-radius: 18px;
  background: #0c1a2d;
  box-shadow: 0 50px 100px rgba(0,0,0,.48), 0 0 0 8px rgba(255,255,255,.025);
  transform: rotateY(-4deg) rotateX(1deg);
}
.dashboard-topbar {
  height: 58px;
  padding: 0 18px;
  display: flex; align-items: center; justify-content: space-between;
  background: #0b192c;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.dash-brand { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; letter-spacing: .06em; }
.dash-brand b { color: var(--cyan-500); }
.dash-logo { width: 18px; height: 18px; border: 4px solid var(--cyan-500); border-right-color: transparent; border-radius: 50%; }
.dash-status { padding: 7px 12px; border: 1px solid rgba(255,255,255,.07); border-radius: 20px; color: #8fa1ba; font-size: 9px; }
.dash-status span, .pulse-dot { display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: #31e6a2; box-shadow: 0 0 0 5px rgba(49,230,162,.08); }
.dash-user { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; color: #bfeeff; background: #164d72; font-size: 9px; font-weight: 800; }
.dashboard-body { min-height: 525px; display: flex; }
.dash-sidebar { width: 54px; padding-top: 28px; display: flex; align-items: center; flex-direction: column; gap: 28px; color: #536781; border-right: 1px solid rgba(255,255,255,.06); }
.dash-sidebar span { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 7px; font-size: 13px; }
.dash-sidebar .active { color: var(--cyan-500); background: rgba(53,199,255,.1); }
.dash-content { min-width: 0; flex: 1; padding: 26px; background: radial-gradient(circle at 70% 20%, rgba(22,121,255,.11), transparent 40%); }
.dash-heading { display: flex; justify-content: space-between; align-items: center; }
.dash-heading small, .card-title small { display: block; color: var(--cyan-500); font-size: 8px; font-weight: 800; letter-spacing: .15em; }
.dash-heading h2 { margin: 6px 0 0; font-size: 21px; letter-spacing: -.02em; }
.date-pill { padding: 7px 10px; border-radius: 5px; color: #8da1bd; background: rgba(255,255,255,.04); font-size: 8px; }
.metric-row { margin-top: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.metric-card { min-width: 0; padding: 14px; display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: center; border: 1px solid rgba(255,255,255,.06); border-radius: 9px; background: rgba(255,255,255,.035); }
.metric-card > b { grid-column: 2; color: #4de2aa; font-size: 8px; }
.metric-card > b.warm { color: #ff9e77; }
.metric-card small { display: block; color: #667b98; font-size: 7px; font-weight: 800; }
.metric-card strong { font-size: 17px; }
.metric-icon { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 7px; font-size: 11px; font-weight: 800; }
.metric-icon.blue { color: #77b4ff; background: rgba(22,121,255,.13); }
.metric-icon.cyan { color: #62defa; background: rgba(53,199,255,.11); }
.metric-icon.orange { color: #ff996e; background: rgba(255,90,42,.11); }
.dash-grid { margin-top: 13px; display: grid; grid-template-columns: 1.35fr .9fr; gap: 12px; }
.chart-card, .orders-card { min-width: 0; padding: 16px; border: 1px solid rgba(255,255,255,.06); border-radius: 9px; background: rgba(255,255,255,.028); }
.card-title { display: flex; align-items: flex-start; justify-content: space-between; }
.card-title strong { display: block; margin-top: 3px; font-size: 11px; }
.card-title > span { color: #657996; font-size: 7px; }
.chart-wrap { height: 210px; margin-top: 16px; display: flex; }
.chart-labels { padding: 0 7px 25px 0; display: flex; flex-direction: column; justify-content: space-between; color: #536681; font-size: 7px; }
.chart-bars {
  position: relative; flex: 1;
  display: flex; align-items: flex-end; justify-content: space-around; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,.05) 0 1px, transparent 1px 50px);
}
.chart-bars i { position: relative; width: 23px; height: var(--h); border-radius: 3px 3px 0 0; background: linear-gradient(180deg, #275cba, #173364); box-shadow: inset 0 1px rgba(255,255,255,.12); }
.chart-bars i.highlight { background: linear-gradient(180deg, #43d9ff, #1679ff); box-shadow: 0 0 25px rgba(53,199,255,.22); }
.chart-bars i span { position: absolute; left: 50%; bottom: -21px; transform: translateX(-50%); color: #586d89; font-size: 7px; font-style: normal; }
.orders-card { display: flex; flex-direction: column; }
.order-item { flex: 1; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 9px; border-bottom: 1px solid rgba(255,255,255,.05); }
.order-item:last-child { border-bottom: 0; }
.order-code { width: 28px; height: 28px; display: grid; place-items: center; color: #79dfff; border-radius: 6px; background: rgba(53,199,255,.1); font-size: 8px; font-weight: 800; }
.order-code.purple { color: #ba9eff; background: rgba(139,92,246,.11); }
.order-code.green { color: #4de2aa; background: rgba(49,230,162,.1); }
.order-item strong { display: block; font-size: 9px; }
.order-item small { display: block; color: #677b97; font-size: 7px; }
.status { padding: 4px 6px; border-radius: 10px; font-size: 6px; }
.status.running { color: #6ce7ff; background: rgba(53,199,255,.1); }
.status.review { color: #bea7ff; background: rgba(139,92,246,.1); }
.status.done { color: #5ae7b2; background: rgba(49,230,162,.1); }
.float-card { position: absolute; z-index: 3; padding: 12px 15px; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(125,219,255,.2); border-radius: 10px; background: rgba(9,26,54,.9); box-shadow: 0 20px 50px rgba(0,0,0,.34); backdrop-filter: blur(14px); }
.float-card-one { left: -35px; bottom: 55px; animation: float 5s ease-in-out infinite; }
.float-card-two { right: -35px; top: 80px; animation: float 6s 1s ease-in-out infinite; }
.float-card > span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: #05152a; background: #3fe1a4; font-weight: 900; }
.float-card strong, .float-card small { display: block; }
.float-card strong { font-size: 10px; }
.float-card small { color: #7790ae; font-size: 7px; }
.mini-donut { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--cyan-500) 0 99%, rgba(255,255,255,.1) 99%); }
.mini-donut::before { content: ""; position: absolute; width: 29px; height: 29px; border-radius: 50%; background: #0c203d; }
.mini-donut span { z-index: 1; font-size: 7px; font-weight: 800; }
.orbit { position: absolute; border: 1px solid rgba(53,199,255,.08); border-radius: 50%; }
.orbit-one { width: 510px; height: 510px; right: -220px; top: -110px; }
.orbit-two { width: 350px; height: 350px; left: -80px; bottom: -150px; }
@keyframes float { 50% { transform: translateY(-10px); } }

.signal-strip {
  min-height: 110px;
  padding: 25px max(32px, calc((100vw - 1420px) / 2));
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  color: #b6c2d2; background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,.06);
}
.signal-strip p { color: white; font-size: 17px; }
.signal-strip strong { color: var(--cyan-500); }
.signal-list { display: flex; align-items: center; gap: 30px; }
.signal-list span { display: flex; align-items: center; gap: 8px; white-space: nowrap; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.signal-list i { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan-500); box-shadow: 0 0 0 4px rgba(53,199,255,.1); }

.section { padding: 125px max(32px, calc((100vw - 1320px) / 2)); }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 90px; }
.section-index { color: var(--blue-700); font-size: 11px; font-weight: 850; letter-spacing: .17em; }
.section-heading h2, .results-intro h2, .cta-copy h2 {
  margin: 17px 0 0;
  font-size: clamp(43px, 4.5vw, 67px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.section-heading h2 em, .results-intro h2 em { color: var(--blue-600); }
.section-heading > p { margin: 0 0 4px; color: var(--muted); font-size: 17px; line-height: 1.8; }

.problem-section { background: white; }
.problem-layout { margin-top: 75px; display: grid; grid-template-columns: .95fr 1.05fr; gap: 24px; }
.problem-stack { display: flex; flex-direction: column; gap: 12px; }
.problem-card {
  min-height: 118px;
  padding: 24px 22px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px;
  border: 1px solid var(--line); border-radius: 11px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.problem-card:hover { transform: translateX(6px); border-color: #b9dff2; box-shadow: 0 16px 45px rgba(9,32,67,.08); }
.problem-number { color: var(--blue-600); font-family: Georgia, serif; font-size: 18px; font-style: italic; }
.problem-card h3 { margin: 0 0 5px; font-size: 17px; }
.problem-card p { margin: 0; color: var(--muted); font-size: 13px; }
.problem-arrow { color: #90a0b5; }
.solution-panel { position: relative; overflow: hidden; padding: 50px; color: white; border-radius: 12px; background: linear-gradient(145deg, #07152d, #0e2e59); box-shadow: var(--shadow); }
.solution-panel::before { content: ""; position: absolute; width: 340px; height: 340px; right: -150px; top: -150px; border-radius: 50%; background: rgba(53,199,255,.1); }
.solution-grid { position: absolute; inset: 0; opacity: .09; background-image: linear-gradient(rgba(53,199,255,.4) 1px, transparent 1px), linear-gradient(90deg, rgba(53,199,255,.4) 1px, transparent 1px); background-size: 50px 50px; }
.solution-panel > *:not(.solution-grid) { position: relative; z-index: 1; }
.solution-kicker { color: var(--cyan-500); font-size: 10px; font-weight: 850; letter-spacing: .17em; }
.solution-panel h3 { margin: 15px 0 17px; font-size: 44px; line-height: 1.08; letter-spacing: -.04em; }
.solution-panel > p { max-width: 530px; margin: 0; color: #a7b9d1; font-size: 15px; }
.flow-map { margin-top: 55px; display: grid; grid-template-columns: repeat(5, auto); align-items: center; gap: 15px; }
.flow-map div { min-width: 115px; }
.flow-map span, .flow-map b, .flow-map small { display: block; }
.flow-map span { color: var(--cyan-500); font-size: 9px; }
.flow-map b { margin-top: 12px; font-size: 16px; }
.flow-map small { margin-top: 4px; color: #7890ae; font-size: 9px; }
.flow-map i { color: var(--cyan-500); font-style: normal; }
.panel-link { position: absolute !important; right: 45px; bottom: 38px; display: inline-flex; align-items: center; gap: 12px; color: #c5d4e6; font-size: 12px; font-weight: 700; }
.panel-link span { color: var(--cyan-500); }

.modules-section { color: white; background: var(--navy-900); }
.section-heading.light .section-index { color: var(--cyan-500); }
.section-heading.light h2 em { color: var(--cyan-500); }
.section-heading.light > p { color: #8fa1ba; }
.module-tabs { margin-top: 65px; display: flex; overflow-x: auto; border-bottom: 1px solid rgba(255,255,255,.1); scrollbar-width: none; }
.module-tab { position: relative; min-width: 150px; padding: 18px 18px 22px; color: #788ba5; border: 0; background: none; font-size: 13px; font-weight: 750; cursor: pointer; }
.module-tab::after { content: ""; position: absolute; left: 18px; right: 18px; bottom: -1px; height: 2px; transform: scaleX(0); background: var(--cyan-500); transition: transform .25s; }
.module-tab.active { color: white; }
.module-tab.active::after { transform: scaleX(1); }
.module-stage { min-height: 565px; margin-top: 48px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.module-symbol { width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid rgba(53,199,255,.3); border-radius: 15px; color: var(--cyan-500); background: rgba(53,199,255,.08); font-size: 24px; font-weight: 800; }
.module-copy > span { display: block; margin-top: 28px; color: var(--cyan-500); font-size: 10px; font-weight: 850; letter-spacing: .17em; }
.module-copy h3 { max-width: 480px; margin: 13px 0 18px; font-size: 40px; line-height: 1.1; letter-spacing: -.035em; }
.module-copy > p { color: #9aabc2; font-size: 15px; }
.module-copy ul { margin: 26px 0 0; padding: 0; list-style: none; }
.module-copy li { margin: 12px 0; color: #d3deea; font-size: 13px; }
.module-copy li::before { content: "✓"; margin-right: 10px; color: var(--cyan-500); }
.module-preview { position: relative; }
.module-preview::before { content: ""; position: absolute; inset: -60px; background: radial-gradient(circle, rgba(22,121,255,.22), transparent 62%); }
.preview-window { position: relative; z-index: 1; overflow: hidden; padding: 28px; border: 1px solid rgba(104,196,255,.17); border-radius: 15px; background: #0c1d38; box-shadow: 0 35px 80px rgba(0,0,0,.32); }
.preview-top { padding-bottom: 25px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,.07); }
.preview-top small { display: block; color: var(--cyan-500); font-size: 8px; font-weight: 850; letter-spacing: .14em; }
.preview-top strong { display: block; margin-top: 7px; font-size: 17px; }
.preview-top button { padding: 9px 14px; color: #051225; border: 0; border-radius: 5px; background: var(--cyan-500); font-size: 9px; font-weight: 800; }
.pipeline { margin-top: 25px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pipeline-column { min-height: 330px; padding: 13px; border: 1px solid rgba(255,255,255,.06); border-radius: 8px; background: rgba(255,255,255,.025); }
.pipeline-column > span { display: flex; justify-content: space-between; color: #7085a2; font-size: 7px; font-weight: 850; letter-spacing: .1em; }
.pipeline-column > span b { color: var(--cyan-500); }
.pipeline-column article { margin-top: 13px; padding: 14px 10px; display: flex; gap: 9px; align-items: center; border: 1px solid rgba(255,255,255,.06); border-radius: 7px; background: #102440; }
.pipeline-column article i { flex: 0 0 auto; width: 27px; height: 27px; display: grid; place-items: center; color: #d7c9ff; border-radius: 50%; background: #433380; font-size: 7px; font-style: normal; font-weight: 800; }
.pipeline-column article i.cyan { color: #b8f2ff; background: #135e78; }
.pipeline-column article i.green { color: #c8ffeb; background: #17674e; }
.pipeline-column article strong { display: block; font-size: 8px; }
.pipeline-column article small { display: block; margin-top: 3px; color: #71849e; font-size: 6px; }

.results-section { display: grid; grid-template-columns: .76fr 1.24fr; gap: 90px; background: var(--surface); }
.results-intro { padding-top: 18px; }
.results-intro h2 em { color: var(--blue-600); }
.results-intro > p { margin: 25px 0 32px; color: var(--muted); }
.results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.result-card { min-height: 290px; padding: 32px; border: 1px solid #dbe3ee; border-radius: 10px; background: white; box-shadow: 0 14px 40px rgba(6,19,41,.05); }
.result-card.result-featured { color: white; border-color: transparent; background: linear-gradient(145deg, #0a1d3d, #123c73); }
.result-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 8px; color: var(--blue-600); background: #edf4ff; font-weight: 850; }
.result-featured .result-icon { color: var(--cyan-500); background: rgba(53,199,255,.1); }
.result-card > strong { display: block; margin-top: 26px; color: var(--blue-700); font-size: 49px; line-height: 1; letter-spacing: -.04em; }
.result-featured > strong { color: var(--cyan-500); }
.result-card h3 { margin: 17px 0 8px; font-size: 15px; }
.result-card p { margin: 0; color: var(--muted); font-size: 12px; }
.result-featured p { color: #9fb1c9; }

.why-section { background: white; }
.why-grid { margin-top: 70px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.why-grid article { position: relative; min-height: 260px; padding: 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .25s, background .25s; }
.why-grid article:hover { color: white; background: var(--navy-900); }
.why-grid article > span { width: 48px; height: 48px; display: grid; place-items: center; color: var(--blue-600); border-radius: 50%; background: #eff5ff; font-size: 20px; font-weight: 800; }
.why-grid article > small { position: absolute; top: 38px; right: 38px; color: #9eabbd; font-family: Georgia, serif; font-style: italic; }
.why-grid h3 { margin: 30px 0 9px; font-size: 19px; }
.why-grid p { max-width: 320px; margin: 0; color: var(--muted); font-size: 13px; }
.why-grid article:hover p { color: #9fb0c7; }

.cta-section {
  position: relative;
  padding: 105px max(32px, calc((100vw - 1320px) / 2));
  display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px;
  color: white; background: linear-gradient(115deg, #075bbd, #0b2b68 70%, #071a3b);
}
.cta-grid { position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.28) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.28) 1px, transparent 1px); background-size: 55px 55px; mask-image: linear-gradient(90deg, transparent, black); }
.cta-section > *:not(.cta-grid) { position: relative; z-index: 1; }
.cta-copy > span { color: var(--cyan-300); font-size: 10px; font-weight: 850; letter-spacing: .18em; }
.cta-copy h2 { font-size: clamp(46px, 5vw, 70px); }
.cta-copy h2 em { color: var(--cyan-300); }
.cta-copy p { max-width: 620px; margin: 24px 0 0; color: #b9d3ef; }
.cta-action { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
.cta-action small { color: #93b0d2; }

.site-footer { padding: 75px max(32px, calc((100vw - 1320px) / 2)) 25px; color: white; background: var(--navy-950); }
.footer-main { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.footer-brand > p { max-width: 430px; margin-top: 25px; color: #7e90a9; font-size: 14px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-links div { display: flex; flex-direction: column; gap: 11px; }
.footer-links strong { margin-bottom: 5px; color: white; font-size: 12px; }
.footer-links a { color: #7e90a9; font-size: 12px; }
.footer-links a:hover { color: var(--cyan-500); }
.footer-bottom { margin-top: 60px; padding-top: 22px; display: flex; justify-content: space-between; color: #596b84; border-top: 1px solid rgba(255,255,255,.08); font-size: 10px; }

.demo-modal { width: min(980px, calc(100% - 30px)); padding: 0; overflow: hidden; color: var(--ink); border: 0; border-radius: 14px; box-shadow: 0 40px 100px rgba(0,0,0,.45); }
.demo-modal::backdrop { background: rgba(3,10,24,.78); backdrop-filter: blur(8px); }
.modal-close { position: absolute; z-index: 5; top: 14px; right: 16px; width: 34px; height: 34px; border: 0; border-radius: 50%; color: #7b8da6; background: rgba(255,255,255,.08); font-size: 22px; cursor: pointer; }
.modal-layout { min-height: 590px; display: grid; grid-template-columns: .8fr 1.2fr; }
.modal-aside { padding: 58px 45px; color: white; background: linear-gradient(145deg, #07152d, #0d3670); }
.modal-aside h2 { margin: 24px 0 15px; font-size: 38px; line-height: 1.08; letter-spacing: -.04em; }
.modal-aside p { color: #a4b6ce; font-size: 14px; }
.modal-aside ul { margin: 38px 0 0; padding: 0; list-style: none; }
.modal-aside li { margin: 17px 0; color: #d1deeb; font-size: 12px; }
.modal-aside li span { margin-right: 9px; color: var(--cyan-500); }
.demo-form { padding: 58px 45px 35px; display: grid; grid-template-columns: 1fr 1fr; align-content: center; gap: 18px; background: white; }
.demo-form label { display: flex; flex-direction: column; gap: 7px; color: #43516a; font-size: 11px; font-weight: 750; }
.demo-form input, .demo-form select { width: 100%; height: 47px; padding: 0 13px; color: var(--ink); border: 1px solid #d8e0eb; border-radius: 6px; outline: 0; background: white; font-size: 13px; }
.demo-form input:focus, .demo-form select:focus { border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(22,121,255,.1); }
.demo-form .full { grid-column: 1 / -1; }
.form-note { color: #8794a7; text-align: center; font-size: 9px; }
.form-success { padding: 80px 60px; align-self: center; text-align: center; }
.form-success > span { width: 64px; height: 64px; margin: 0 auto; display: grid; place-items: center; border-radius: 50%; color: #075633; background: #bdffe1; font-size: 28px; font-weight: 900; }
.form-success h3 { margin: 25px 0 10px; font-size: 28px; }
.form-success p { color: var(--muted); }
.form-success .button { margin-top: 15px; }

@media (max-width: 1180px) {
  .hero { grid-template-columns: 1fr 1.15fr; gap: 35px; }
  .hero h1 { font-size: 58px; }
  .dashboard-body { min-height: 470px; }
  .dash-content { padding: 18px; }
  .chart-wrap { height: 180px; }
  .float-card-two { right: 0; }
  .signal-list { gap: 15px; }
  .signal-list span { font-size: 9px; }
  .section-heading { gap: 55px; }
  .problem-layout { grid-template-columns: 1fr; }
  .solution-panel { min-height: 500px; }
  .results-section { gap: 45px; }
}

@media (max-width: 900px) {
  .site-header { width: calc(100% - 40px); height: 82px; }
  .menu-toggle { position: relative; z-index: 30; width: 42px; height: 42px; display: grid; place-content: center; gap: 5px; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { width: 21px; height: 2px; display: block; background: white; }
  .site-nav {
    position: fixed; inset: 0 0 auto; min-height: 100vh; padding: 125px 40px 40px;
    display: flex; flex-direction: column; align-items: flex-start; gap: 25px;
    opacity: 0; visibility: hidden; pointer-events: none;
    color: white; background: rgba(4,12,29,.98);
    transition: opacity .25s, visibility .25s;
  }
  .site-nav.open { opacity: 1; visibility: visible; pointer-events: auto; }
  .site-nav > a { font-size: 25px; }
  .hero { padding-top: 145px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; }
  .hero h1 { max-width: 760px; font-size: clamp(50px, 10vw, 76px); }
  .hero-visual { width: min(760px, 100%); margin: 30px auto 0; }
  .dashboard { margin: 0; transform: none; }
  .signal-strip { flex-direction: column; align-items: flex-start; }
  .signal-list { width: 100%; overflow-x: auto; }
  .section { padding-top: 90px; padding-bottom: 90px; }
  .section-heading, .results-section, .cta-section { grid-template-columns: 1fr; gap: 35px; }
  .section-heading > p { max-width: 650px; }
  .module-stage { grid-template-columns: 1fr; }
  .module-copy { max-width: 600px; }
  .results-grid { max-width: 800px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-action { margin-top: 5px; }
  .footer-main { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 650px) {
  .site-header { width: calc(100% - 30px); }
  .brand-word strong { font-size: 20px; }
  .brand-word small { font-size: 5px; }
  .hero { min-height: auto; padding: 125px 20px 80px; }
  .hero h1 { font-size: 47px; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .text-link { justify-content: center; }
  .dashboard { border-radius: 11px; }
  .dashboard-topbar { height: 45px; }
  .dashboard-body { min-height: 370px; }
  .dash-sidebar { display: none; }
  .dash-content { padding: 14px; }
  .dash-heading h2 { font-size: 14px; }
  .metric-row { grid-template-columns: repeat(2, 1fr); }
  .metric-card:nth-child(3) { display: none; }
  .dash-grid { grid-template-columns: 1fr; }
  .orders-card { display: none; }
  .chart-wrap { height: 170px; }
  .float-card-one { left: -5px; bottom: -25px; }
  .float-card-two { display: none; }
  .signal-strip { padding: 28px 20px; }
  .section { padding: 78px 20px; }
  .section-heading h2, .results-intro h2 { font-size: 41px; }
  .section-heading { gap: 25px; }
  .problem-layout { margin-top: 45px; }
  .problem-card { padding: 20px 15px; grid-template-columns: auto 1fr; gap: 14px; }
  .problem-arrow { display: none; }
  .solution-panel { min-height: 550px; padding: 34px 25px; }
  .solution-panel h3 { font-size: 37px; }
  .flow-map { grid-template-columns: 1fr; gap: 8px; }
  .flow-map i { transform: rotate(90deg); }
  .panel-link { position: static !important; margin-top: 30px; }
  .module-tabs { margin-right: -20px; }
  .module-tab { min-width: 128px; }
  .module-stage { margin-top: 35px; gap: 45px; }
  .module-copy h3 { font-size: 34px; }
  .preview-window { padding: 18px 13px; }
  .preview-top strong { font-size: 13px; }
  .pipeline { gap: 6px; }
  .pipeline-column { min-height: 285px; padding: 8px 5px; }
  .pipeline-column article { padding: 10px 6px; }
  .pipeline-column article i { display: none; }
  .pipeline-column article strong { font-size: 7px; }
  .results-grid { grid-template-columns: 1fr; }
  .result-card { min-height: 250px; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 80px 20px; }
  .cta-copy h2 { font-size: 45px; }
  .site-footer { padding: 65px 20px 25px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .demo-modal{
        width: calc(100vw - 30px);
        max-width: 420px;      /* keeps it looking like a modal */
        height: auto;
        max-height: 80vh;      /* only 80% of screen height */
        margin: auto;
        padding: 0;
        overflow-y: auto;
        border-radius: 18px;
        -webkit-overflow-scrolling: touch;
    }

    .modal-layout{
        display: flex;
        flex-direction: column;
    }

    .modal-aside{
        padding: 22px;
        flex-shrink: 0;
    }

    .modal-aside ul{
        display: none;
    }
.modal-aside h2 {
    font-size: 28px;
    margin: 15px 0 10px;
}

.modal-aside p {
    font-size: 14px;
    margin-bottom: 0;
}
      .demo-form,
    .form-success{
        padding: 22px;
    }

    .demo-form{
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

   .modal-close{
        position: absolute;
        top: 12px;
        right: 12px;
    }
}

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

.button:disabled {
    opacity: .8;
    cursor: not-allowed;
}

.btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    border: 2px solid rgba(255,255,255,.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .8s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}