:root {
  --navy-950: #050d18;
  --navy-900: #071426;
  --navy-800: #0b2038;
  --navy-700: #11304e;
  --blue: #087df0;
  --cyan: #17c8ff;
  --cyan-light: #8ee9ff;
  --ink: #0a1b2d;
  --muted: #617083;
  --line: #dce5ee;
  --surface: #f3f7fa;
  --white: #fff;
  --green: #22c989;
  --shadow: 0 28px 70px rgba(7, 25, 46, .13);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "DM Sans", Arial, sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
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%; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; }
.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: 10px; left: 10px; z-index: 999; padding: 10px 16px; color: white; background: var(--blue); border-radius: 8px; transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: absolute; top: 0; z-index: 20; width: 100%; border-bottom: 1px solid rgba(255,255,255,.1); }
.header-inner { height: 84px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--white); font: 800 1.24rem/1 "Manrope", sans-serif; letter-spacing: -.03em; }
.brand > span:last-child > span { color: var(--cyan); }
.brand-mark { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(23,200,255,.52); border-radius: 10px; color: var(--cyan); background: rgba(23,200,255,.1); font-size: 1rem; }
.main-nav { display: flex; align-items: center; gap: 30px; color: #cbd8e5; font-size: .92rem; font-weight: 600; }
.main-nav > a:not(.button) { transition: color .2s; }
.main-nav > a:not(.button):hover { color: var(--white); }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 9px; border: 0; background: transparent; }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: #fff; border-radius: 4px; transition: transform .2s, opacity .2s; }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border: 1px solid transparent; border-radius: 12px; font-weight: 700; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: linear-gradient(135deg, var(--blue), #00a9ef); box-shadow: 0 14px 30px rgba(2, 128, 236, .26); }
.button-primary:hover { box-shadow: 0 18px 36px rgba(2, 128, 236, .36); }
.button-small { min-height: 42px; padding: 0 17px; font-size: .88rem; }
.button-ghost { color: #dae7f3; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.04); }
.button-ghost:hover { background: rgba(255,255,255,.09); }
.button-light { color: var(--navy-900); background: var(--white); box-shadow: 0 14px 36px rgba(0,0,0,.15); }

.hero { position: relative; min-height: 850px; overflow: hidden; padding: 175px 0 110px; color: white; background: radial-gradient(circle at 78% 46%, #123a5f 0, var(--navy-900) 36%, var(--navy-950) 76%); }
.hero::before { position: absolute; inset: 0; content: ""; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to right, transparent 0, black 65%, transparent); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.hero-copy { max-width: 590px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--cyan-light); font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 1px; background: var(--cyan); }
.eyebrow.dark { color: var(--blue); }
.hero h1 { max-width: 640px; margin: 0; font: 800 clamp(2.7rem, 4.7vw, 4.85rem)/1.04 "Manrope", sans-serif; letter-spacing: -.052em; }
.hero-text { max-width: 570px; margin: 28px 0 32px; color: #bdcede; font-size: 1.12rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.13); }
.hero-proof div { display: flex; flex-direction: column; }
.hero-proof strong { font-size: .91rem; }
.hero-proof span { color: #8095aa; font-size: .76rem; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(5px); pointer-events: none; }
.hero-glow-one { right: -170px; top: 80px; width: 500px; height: 500px; border: 1px solid rgba(23,200,255,.13); box-shadow: 0 0 100px rgba(23,200,255,.08) inset; }
.hero-glow-two { left: 40%; bottom: -260px; width: 480px; height: 480px; background: rgba(2,124,240,.06); }

.dashboard-shell { position: relative; min-width: 670px; overflow: hidden; border: 1px solid rgba(255,255,255,.17); border-radius: 22px; background: #f6f9fc; box-shadow: 0 45px 110px rgba(0,0,0,.38); transform: perspective(1300px) rotateY(-4deg) rotateX(1deg); transform-origin: left center; }
.dashboard-shell::after { position: absolute; inset: 0; content: ""; pointer-events: none; box-shadow: inset 0 1px rgba(255,255,255,.8); }
.dashboard-topbar { display: flex; height: 47px; align-items: center; gap: 18px; padding: 0 17px; color: #627387; background: white; border-bottom: 1px solid #e4ebf1; font-size: .68rem; font-weight: 600; }
.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 7px; height: 7px; border-radius: 50%; background: #dce3e9; }
.live-pill { display: inline-flex; align-items: center; gap: 5px; margin-left: auto; color: #258863; }
.live-pill i, .card-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(34,201,137,.12); }
.dashboard-body { display: grid; grid-template-columns: 56px 1fr; min-height: 440px; }
.dashboard-nav { display: flex; flex-direction: column; align-items: center; gap: 29px; padding-top: 18px; background: var(--navy-900); }
.dashboard-nav span { width: 17px; height: 5px; border-radius: 5px; background: #5c7188; }
.dashboard-nav span.active { width: 24px; background: var(--cyan); }
.mini-brand { display: grid; place-items: center; width: 25px; height: 25px; margin-bottom: 5px; color: var(--cyan); border: 1px solid rgba(23,200,255,.5); border-radius: 7px; font-size: .6rem; font-weight: 800; }
.dashboard-content { padding: 25px 28px; color: var(--ink); }
.dash-heading { display: flex; align-items: end; justify-content: space-between; }
.dash-heading div { display: flex; flex-direction: column; }
.dash-heading small { color: #7d8da0; font-size: .58rem; letter-spacing: .12em; }
.dash-heading strong { font: 700 1.15rem "Manrope", sans-serif; }
.dash-heading > span { color: #8190a0; font-size: .62rem; }
.metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; margin: 21px 0; }
.metrics-grid article { display: grid; padding: 15px; background: white; border: 1px solid #e4ebf1; border-radius: 10px; box-shadow: 0 6px 15px rgba(14,34,56,.03); }
.metrics-grid span { color: #6d7b8c; font-size: .58rem; }
.metrics-grid strong { margin: 4px 0 2px; font: 700 1.23rem "Manrope", sans-serif; }
.metrics-grid small { color: #788697; font-size: .55rem; }
.metrics-grid .positive { color: #16a06d; }
.chart-panel { padding: 16px 18px 10px; border: 1px solid #e4ebf1; border-radius: 11px; background: white; }
.chart-header { display: flex; align-items: center; justify-content: space-between; }
.chart-header > div { display: flex; flex-direction: column; }
.chart-header span { color: #7c8998; font-size: .53rem; }
.chart-header strong { font-size: .71rem; }
.legend { display: inline-flex; align-items: center; gap: 5px; }
.legend i { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); }
.chart { position: relative; height: 190px; margin-top: 7px; }
.chart-lines { position: absolute; inset: 8px 0 26px; display: flex; flex-direction: column; justify-content: space-between; }
.chart-lines i { width: 100%; height: 1px; background: #edf1f5; }
.chart svg { position: absolute; inset: 0 0 21px; width: 100%; height: calc(100% - 21px); overflow: visible; }
.chart .area { fill: url(#area); }
.chart .line { fill: none; stroke: var(--cyan); stroke-width: 3; stroke-linecap: round; }
.chart-labels { position: absolute; right: 0; bottom: 0; left: 0; display: flex; justify-content: space-between; color: #98a4b0; font-size: .49rem; }

.section-heading { margin-bottom: 50px; }
.section-heading h2, .value-copy h2, .process h2, .cta-panel h2 { margin: 0; font: 800 clamp(2rem, 4vw, 3.3rem)/1.12 "Manrope", sans-serif; letter-spacing: -.04em; }
.section-heading-split { display: grid; grid-template-columns: 1fr .65fr; gap: 100px; align-items: end; }
.section-heading-split > p { max-width: 490px; margin: 0 0 4px; color: var(--muted); }
.systems { background: var(--surface); }
.system-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.system-card { position: relative; min-height: 318px; padding: 30px; overflow: hidden; background: white; border: 1px solid #dde6ee; border-radius: var(--radius); transition: transform .25s, box-shadow .25s, border-color .25s; }
.system-card:hover { transform: translateY(-6px); border-color: #b9daee; box-shadow: var(--shadow); }
.system-card.featured::before { position: absolute; top: 0; right: 0; left: 0; height: 3px; content: ""; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.system-icon { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 28px; border-radius: 14px; }
.system-icon svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.system-icon.blue { color: #087df0; background: #e9f4ff; }
.system-icon.purple { color: #7158e8; background: #f0edff; }
.system-icon.green { color: #0d9e6d; background: #e8f9f2; }
.card-status { position: absolute; top: 33px; right: 28px; display: flex; align-items: center; gap: 8px; color: #617083; font-size: .7rem; }
.system-card h3 { margin: 0 0 11px; font: 700 1.3rem "Manrope", sans-serif; }
.system-card p { min-height: 72px; margin: 0 0 22px; color: var(--muted); font-size: .93rem; }
.system-link { display: inline-flex; align-items: center; gap: 12px; padding: 0; border: 0; color: var(--blue); background: transparent; font-weight: 700; cursor: pointer; }
.system-link span { transition: transform .2s; }
.system-link:hover span { transform: translateX(4px); }
.access-note { margin: 24px 0 0; color: #788698; font-size: .83rem; text-align: center; }

.value { overflow: hidden; }
.value-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.value-copy > p:not(.eyebrow) { max-width: 550px; margin: 23px 0 36px; color: var(--muted); font-size: 1.03rem; }
.check-list { display: grid; gap: 22px; padding: 0; margin: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 50px 1fr; gap: 17px; align-items: start; }
.check-list li > span { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid #d9e7f1; border-radius: 50%; color: var(--blue); font-size: .71rem; font-weight: 700; }
.check-list strong { font-family: "Manrope", sans-serif; }
.check-list p { margin: 4px 0 0; color: var(--muted); font-size: .89rem; }
.insight-composition { position: relative; min-height: 520px; display: grid; place-items: center; }
.insight-composition::before { position: absolute; width: 440px; height: 440px; content: ""; border-radius: 50%; background: radial-gradient(circle, #e8f5fc 0, #f7fbfd 52%, transparent 71%); }
.orbit { position: absolute; border: 1px dashed #cfe0eb; border-radius: 50%; }
.orbit-one { width: 450px; height: 450px; }
.orbit-two { width: 340px; height: 340px; }
.insight-main { position: relative; z-index: 2; width: 315px; min-height: 360px; padding: 28px; color: white; background: linear-gradient(160deg, var(--navy-800), var(--navy-950)); border-radius: 26px; box-shadow: 0 38px 80px rgba(7,20,38,.28); }
.insight-main > span { display: block; margin-top: 31px; color: var(--cyan-light); font-size: .65rem; font-weight: 700; letter-spacing: .13em; }
.insight-main > strong { display: block; max-width: 230px; margin-top: 10px; font: 700 1.55rem/1.3 "Manrope", sans-serif; }
.insight-icon { display: grid; width: 46px; height: 46px; place-items: center; margin-left: auto; border: 1px solid rgba(23,200,255,.35); border-radius: 14px; color: var(--cyan); background: rgba(23,200,255,.08); font-size: 1.3rem; }
.mini-bars { position: absolute; right: 28px; bottom: 28px; left: 28px; height: 96px; display: flex; align-items: end; gap: 10px; padding-top: 15px; border-bottom: 1px solid rgba(255,255,255,.17); }
.mini-bars i { flex: 1; height: var(--h); border-radius: 5px 5px 0 0; background: linear-gradient(to top, #087df0, var(--cyan)); opacity: .92; }
.floating-card { position: absolute; z-index: 3; padding: 17px 19px; border: 1px solid #e4edf3; border-radius: 16px; background: rgba(255,255,255,.93); box-shadow: 0 18px 45px rgba(10,30,50,.13); backdrop-filter: blur(10px); }
.floating-card span, .floating-card small { display: block; color: var(--muted); font-size: .69rem; }
.floating-card strong { font: 700 1.35rem "Manrope", sans-serif; }
.card-a { top: 55px; right: 2px; width: 155px; }
.card-a strong { color: #0e9b6c; }
.card-b { bottom: 54px; left: -5px; display: flex; align-items: center; gap: 12px; }
.card-b strong { display: block; font-size: .85rem; }
.donut { display: grid; width: 55px; height: 55px; place-items: center; border-radius: 50%; background: conic-gradient(var(--cyan) 0 92%, #e7eef3 92%); }
.donut::before { grid-area: 1/1; width: 42px; height: 42px; content: ""; border-radius: 50%; background: white; }
.donut span { z-index: 1; grid-area: 1/1; color: var(--ink); font-size: .68rem; font-weight: 700; }

.process { background: #f7fafc; border-top: 1px solid #e8eef3; }
.section-heading.centered { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.process-grid article { position: relative; min-height: 285px; padding: 30px; background: white; border: 1px solid #e0e8ef; border-radius: var(--radius); }
.process-grid article > span { position: absolute; top: 22px; right: 25px; color: #d1dbe3; font: 700 1rem "Manrope", sans-serif; }
.process-icon { display: grid; width: 52px; height: 52px; place-items: center; margin-bottom: 29px; color: var(--blue); background: #eaf5ff; border-radius: 15px; font-size: 1.55rem; font-weight: 600; }
.process-grid h3 { margin: 0 0 10px; font: 700 1.12rem "Manrope", sans-serif; }
.process-grid p { margin: 0; color: var(--muted); font-size: .92rem; }

.cta-section { padding: 86px 0; background: white; }
.cta-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; min-height: 300px; padding: 58px 64px; color: white; background: linear-gradient(125deg, #087df0 0%, #006bcf 45%, #004c9c 100%); border-radius: 26px; box-shadow: 0 26px 55px rgba(0,105,207,.22); }
.cta-panel::before { position: absolute; right: -100px; bottom: -250px; width: 500px; height: 500px; content: ""; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.035), 0 0 0 120px rgba(255,255,255,.025); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { max-width: 740px; font-size: clamp(2rem, 3.5vw, 3rem); }

.site-footer { padding: 72px 0 28px; color: #9baec0; background: var(--navy-950); }
.footer-main { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding-bottom: 58px; }
.brand-footer { margin-bottom: 20px; }
.footer-main > div:first-child > p { max-width: 430px; margin: 0; font-size: .91rem; }
.footer-links { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; }
.footer-links > div { display: flex; flex-direction: column; gap: 8px; }
.footer-links strong { margin-bottom: 8px; color: white; font-size: .85rem; }
.footer-links a, .footer-links span { font-size: .87rem; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.09); font-size: .75rem; }

.toast { position: fixed; right: 22px; bottom: 22px; z-index: 50; display: grid; width: min(380px, calc(100% - 44px)); padding: 20px 45px 20px 20px; color: var(--ink); background: white; border: 1px solid #dce5ee; border-radius: 14px; box-shadow: 0 18px 55px rgba(4,18,31,.2); opacity: 0; pointer-events: none; transform: translateY(18px); transition: opacity .2s, transform .2s; }
.toast.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.toast strong { font-family: "Manrope", sans-serif; }
.toast span { color: var(--muted); font-size: .84rem; }
.toast button { position: absolute; top: 10px; right: 12px; border: 0; color: #7d8996; background: transparent; font-size: 1.4rem; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-copy { min-width: 0; max-width: 760px; }
  .dashboard-shell { width: 760px; min-width: 0; max-width: 100%; transform: none; }
  .hero { padding-bottom: 90px; }
  .value-grid { gap: 60px; }
}

@media (max-width: 820px) {
  .section { padding: 80px 0; }
  .site-header { position: absolute; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 0; z-index: -1; flex-direction: column; align-items: stretch; justify-content: center; padding: 90px 30px 40px; color: white; background: rgba(5,13,24,.98); opacity: 0; pointer-events: none; transition: opacity .2s; }
  .main-nav a { padding: 7px 0; font-size: 1.2rem; }
  .main-nav .button { margin-top: 15px; }
  .menu-open .main-nav { z-index: 30; opacity: 1; pointer-events: auto; }
  .menu-open .menu-toggle { position: fixed; top: 20px; right: 20px; z-index: 31; }
  .menu-open .menu-toggle > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle > span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 145px; }
  .hero-grid { gap: 55px; }
  .hero h1 { font-size: clamp(2.65rem, 9vw, 4rem); }
  .section-heading-split, .value-grid, .cta-panel, .footer-main { grid-template-columns: 1fr; }
  .section-heading-split { gap: 20px; }
  .system-grid, .process-grid { grid-template-columns: 1fr; }
  .system-card { min-height: 0; }
  .value-grid { gap: 75px; }
  .insight-composition { min-height: 500px; }
  .cta-panel { padding: 45px 38px; }
  .footer-main { gap: 45px; }
}

@media (max-width: 650px) {
  .dashboard-shell { display: none; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { height: 72px; }
  .hero { min-height: 0; padding: 126px 0 65px; }
  .hero h1 { font-size: 2.7rem; }
  .hero-text { margin-top: 22px; font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; gap: 13px; margin-top: 38px; }
  .section { padding: 68px 0; }
  .section-heading { margin-bottom: 35px; }
  .section-heading h2, .value-copy h2, .process h2 { font-size: 2rem; }
  .system-card { padding: 25px; }
  .system-card p { min-height: 0; }
  .insight-composition { min-height: 450px; transform: scale(.92); }
  .insight-main { width: 285px; }
  .orbit-one { width: 380px; height: 380px; }
  .orbit-two { width: 300px; height: 300px; }
  .card-a { right: -18px; }
  .card-b { left: -17px; }
  .cta-section { padding: 55px 0; }
  .cta-panel { gap: 30px; min-height: 0; padding: 34px 26px; border-radius: 20px; }
  .cta-panel h2 { font-size: 2rem; }
  .button-light { width: 100%; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

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