:root {
  --ink: #07142f;
  --ink-2: #0e2147;
  --blue: #3294ff;
  --cyan: #6fd5ff;
  --mint: #79efcc;
  --paper: #f5f8fc;
  --white: #fff;
  --muted: #64728b;
  --line: #dfe7f2;
  --shadow: 0 28px 80px rgba(7, 20, 47, .14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; left: 16px; top: -60px; padding: 12px 18px; background: var(--white); border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }
.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; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 40; border-bottom: 1px solid transparent; transition: background .25s, border-color .25s, box-shadow .25s; }
.site-header.scrolled { background: rgba(7, 20, 47, .92); border-color: rgba(255,255,255,.1); box-shadow: 0 12px 40px rgba(0,0,0,.16); backdrop-filter: blur(18px); }
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 9px; color: var(--white); font-size: 28px; font-weight: 750; letter-spacing: -.05em; }
.brand img { filter: drop-shadow(0 5px 12px rgba(50,148,255,.25)); }
.nav-links { display: flex; align-items: center; gap: 32px; color: rgba(255,255,255,.75); font-size: 14px; font-weight: 600; }
.nav-links > a:not(.button):hover { color: var(--white); }
.product-menu { position: relative; }
.product-menu-toggle { display: inline-flex; align-items: center; gap: 7px; padding: 10px 0; border: 0; color: inherit; background: transparent; font: inherit; cursor: pointer; }
.product-menu-toggle:hover, .product-menu-toggle[aria-expanded="true"] { color: var(--white); }
.product-menu-toggle span { font-size: 16px; line-height: 1; transition: transform .2s; }
.product-menu-toggle[aria-expanded="true"] span { transform: rotate(180deg); }
.product-submenu { position: absolute; top: calc(100% + 15px); left: -22px; width: 350px; padding: 10px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; visibility: hidden; opacity: 0; transform: translateY(-7px); background: rgba(7,20,47,.98); box-shadow: 0 22px 55px rgba(0,0,0,.3); transition: opacity .18s, transform .18s, visibility .18s; }
.product-submenu.open { visibility: visible; opacity: 1; transform: translateY(0); }
.product-submenu a { display: grid; grid-template-columns: 28px 1fr; column-gap: 9px; padding: 13px 12px; border-radius: 10px; color: var(--white); }
.product-submenu a:hover, .product-submenu a:focus-visible { background: rgba(50,148,255,.15); }
.product-submenu a > span { grid-row: 1 / 3; padding-top: 3px; color: var(--cyan); font: 700 10px/1 ui-monospace, SFMono-Regular, Consolas, monospace; }
.product-submenu strong { font-size: 14px; }
.product-submenu small { margin-top: 4px; color: #9fb1cc; font-size: 11px; font-weight: 500; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 0; background: transparent; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--white); border-radius: 2px; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 52px; padding: 0 22px; border: 1px solid var(--blue); border-radius: 12px; color: var(--white); background: var(--blue); font-weight: 700; box-shadow: 0 12px 30px rgba(50,148,255,.22); transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); background: #1684fa; box-shadow: 0 16px 36px rgba(50,148,255,.3); }
.button-small { min-height: 40px; padding-inline: 17px; border-radius: 9px; }
.button-light { color: var(--ink); background: var(--white); border-color: var(--white); box-shadow: none; }
.button-light:hover { background: #eef7ff; }
.text-link { display: inline-flex; gap: 10px; align-items: center; color: rgba(255,255,255,.8); font-weight: 650; }
.text-link:hover { color: var(--white); }

.hero { position: relative; overflow: hidden; min-height: 900px; padding: 166px 0 0; color: var(--white); background: radial-gradient(circle at 65% 20%, #163b76 0, transparent 37%), linear-gradient(145deg, #061128 0%, #071b3d 60%, #08234a 100%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 170px; background: linear-gradient(to bottom, transparent, rgba(5,18,40,.5)); pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(4px); opacity: .48; pointer-events: none; }
.hero-glow-one { width: 560px; height: 560px; right: -300px; top: 90px; background: radial-gradient(circle, rgba(64,163,255,.32), transparent 68%); }
.hero-glow-two { width: 420px; height: 420px; left: -250px; bottom: -120px; background: radial-gradient(circle, rgba(88,239,197,.14), transparent 68%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 74px; }
.eyebrow { margin: 0 0 20px; display: flex; align-items: center; gap: 11px; color: #2f78c6; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { width: 25px; height: 1px; background: currentColor; }
.hero .eyebrow, .eyebrow.light { color: var(--cyan); }
.hero h1 { margin: 0; max-width: 690px; font-size: clamp(48px, 5.6vw, 78px); line-height: .99; letter-spacing: -.055em; }
.hero h1 em { color: var(--cyan); font-style: normal; font-weight: 550; }
.hero-lead { max-width: 640px; margin: 28px 0 32px; color: #b8c8e3; font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 26px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 17px 26px; margin: 34px 0 0; padding: 0; list-style: none; color: #a7bad9; font-size: 12px; font-weight: 650; }
.trust-list li::before { content: "✓"; margin-right: 7px; color: var(--mint); }

.hero-console { position: relative; padding: 1px; border-radius: 25px; background: linear-gradient(145deg, rgba(119,213,255,.6), rgba(255,255,255,.08) 55%, rgba(110,238,203,.28)); box-shadow: 0 40px 100px rgba(0,0,0,.35); transform: perspective(1200px) rotateY(-3deg) rotateX(1deg); }
.hero-console::before { content: ""; position: absolute; inset: 10% -15% -20% 20%; z-index: -1; background: rgba(45,145,255,.22); filter: blur(70px); }
.console-topbar { height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; border-radius: 24px 24px 0 0; background: rgba(9,28,61,.96); }
.console-brand { display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 750; }
.status-pill { display: flex; align-items: center; gap: 6px; padding: 7px 9px; color: #a8b9d3; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; font-size: 9px; }
.status-pill i { width: 6px; height: 6px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 0 4px rgba(121,239,204,.1); }
.console-body { padding: 26px; border-radius: 0 0 24px 24px; color: var(--ink); background: #f8fbff; }
.console-label { margin: 0 0 9px; color: #71809a; font-size: 10px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.prompt-box { min-height: 82px; padding: 19px; border: 1px solid #d8e3f1; border-radius: 13px; background: var(--white); font-size: 15px; font-weight: 650; line-height: 1.5; }
.prompt-cursor { display: inline-block; width: 2px; height: 18px; margin-left: 3px; vertical-align: -4px; background: var(--blue); animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
.plan-row { display: grid; grid-template-columns: auto 1fr auto 1fr; gap: 5px 9px; margin: 14px 2px 20px; color: #7b899e; font-size: 9px; }
.plan-row strong { color: #34435c; font-size: 10px; }
.result-card { padding: 18px; border: 1px solid #d8e6f4; border-radius: 15px; background: linear-gradient(145deg,#fff,#f1f8ff); box-shadow: 0 14px 30px rgba(27,60,103,.08); }
.result-heading { display: flex; justify-content: space-between; align-items: flex-start; }
.result-heading div { display: grid; gap: 3px; }
.result-heading small { color: #71809a; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.result-heading strong { font-size: 15px; }
.result-heading > span { padding: 5px 8px; color: #168269; background: #dbf8ef; border-radius: 10px; font-size: 8px; font-weight: 750; }
.mini-chart { height: 96px; display: flex; align-items: flex-end; gap: 10px; padding: 18px 4px 0; border-bottom: 1px solid #dce6f2; }
.mini-chart span { flex: 1; height: var(--h); border-radius: 4px 4px 0 0; background: linear-gradient(to top, #328fff, #73d9ff); }
.result-footer { display: flex; justify-content: space-between; padding-top: 12px; color: #728198; font-size: 8px; font-weight: 650; }
.result-footer span::before { content: "✓"; margin-right: 4px; color: #22a683; }
.proof-strip { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; margin-top: 105px; padding: 28px 0 34px; border-top: 1px solid rgba(255,255,255,.12); color: #7f94b6; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.proof-strip div { display: flex; gap: 38px; color: #b7c6de; }

.section { padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: end; margin-bottom: 58px; }
.section-heading h2, .approach h2, .security h2, .contact h2 { margin: 0; font-size: clamp(38px, 4.2vw, 60px); line-height: 1.05; letter-spacing: -.045em; }
.section-heading > p, .sticky-heading > p, .security-copy > p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.product-feature { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; padding: 66px; border: 1px solid #cfe1f5; border-radius: 32px; background: linear-gradient(145deg,#f9fcff,#edf6ff); overflow: hidden; }
.product-feature, .product-card { scroll-margin-top: 105px; }
.product-number { color: #92a0b5; font: 600 11px/1 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .12em; }
.product-kicker { margin: 24px 0 8px; color: #2683dd; font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.product-copy h3, .product-card h3 { margin: 0; font-size: clamp(29px, 3vw, 43px); line-height: 1.1; letter-spacing: -.038em; }
.product-copy > p:not(.product-kicker), .product-card > p:not(.product-kicker) { color: var(--muted); font-size: 16px; line-height: 1.65; }
.feature-list, .compact-list { padding: 0; list-style: none; }
.feature-list { margin: 30px 0 0; }
.feature-list li { display: grid; grid-template-columns: 105px 1fr; gap: 15px; padding: 17px 0; border-top: 1px solid #d7e4f1; }
.feature-list strong { font-size: 14px; }
.feature-list span { color: var(--muted); font-size: 13px; line-height: 1.5; }
.product-visual { align-self: center; min-height: 430px; padding: 24px; border: 1px solid rgba(255,255,255,.5); border-radius: 22px; color: var(--white); background: linear-gradient(145deg,#0b2048,#0f3c72); box-shadow: 0 30px 60px rgba(10,36,76,.22); }
.visual-title { display: flex; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 13px; font-weight: 700; }
.visual-title i { color: var(--mint); font-size: 9px; font-style: normal; text-transform: uppercase; }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 22px 0; }
.metric-grid div { display: grid; gap: 6px; padding: 17px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; background: rgba(255,255,255,.05); }
.metric-grid small { color: #93a8c9; font-size: 9px; }
.metric-grid b { font-size: 29px; }
.metric-grid span { color: #8ca3c4; font-size: 9px; }.metric-grid .trend { color: var(--mint); }
.workflow-line { display: flex; align-items: center; gap: 13px; padding: 16px 5px; border-top: 1px solid rgba(255,255,255,.1); }
.workflow-line i { width: 27px; height: 27px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid #49658d; border-radius: 50%; color: #8ca2c3; font-size: 10px; font-style: normal; }
.workflow-line i.done { color: #05283a; border-color: var(--mint); background: var(--mint); }.workflow-line i.active { color: var(--white); border-color: var(--blue); background: var(--blue); box-shadow: 0 0 0 5px rgba(50,148,255,.13); }
.workflow-line span { display: grid; gap: 3px; }.workflow-line b { font-size: 11px; }.workflow-line small { color: #8299ba; font-size: 9px; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
.product-card { position: relative; min-height: 590px; padding: 50px; border: 1px solid var(--line); border-radius: 28px; background: var(--white); box-shadow: 0 15px 45px rgba(16,43,82,.06); }
.mdm-card { background: linear-gradient(150deg,#fbfffe,#effcf8); border-color: #cfece4; }
.card-icon { width: 100%; height: 165px; position: relative; margin: 34px 0; border-radius: 18px; overflow: hidden; background: linear-gradient(145deg,#081a3b,#104d84); }
.document-icon::before, .document-icon::after { content: ""; position: absolute; width: 92px; height: 112px; top: 27px; border: 1px solid rgba(255,255,255,.35); border-radius: 9px; background: rgba(255,255,255,.07); transform: rotate(-8deg); }
.document-icon::before { left: calc(50% - 62px); }.document-icon::after { left: calc(50% - 30px); transform: rotate(8deg); }
.document-icon span { position: absolute; z-index: 2; width: 130px; height: 2px; left: calc(50% - 65px); top: 81px; background: var(--cyan); box-shadow: 0 18px var(--cyan), 0 -18px var(--cyan); }
.mdm-icon { display: flex; justify-content: center; align-items: center; gap: 37px; background: linear-gradient(145deg,#09293d,#0b5a5b); }
.mdm-icon span { position: relative; width: 48px; height: 48px; border: 2px solid #75e8cb; border-radius: 50%; box-shadow: 0 0 0 10px rgba(117,232,203,.08); }
.mdm-icon span::after { content: ""; position: absolute; top: 22px; left: 46px; width: 39px; height: 2px; background: #75e8cb; opacity: .7; }
.mdm-icon span:last-child::after { display: none; }
.compact-list { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin: 28px 0; color: #44536c; font-size: 12px; }
.compact-list li::before { content: "✓"; margin-right: 7px; color: #2ba486; font-weight: 800; }
.availability { position: absolute; bottom: 34px; left: 50px; padding: 7px 10px; color: #146c59; border-radius: 20px; background: #dff9f2; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.availability-preview { color: #7a5a0d; background: #fff1c8; }

.approach { color: var(--white); background: var(--ink); }
.approach-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.sticky-heading { align-self: start; position: sticky; top: 120px; }
.sticky-heading > p { margin-top: 24px; color: #91a5c5; }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 55px 1fr; gap: 24px; padding: 32px 0; border-top: 1px solid rgba(255,255,255,.12); }
.steps > li > span { color: var(--cyan); font: 600 11px/1.5 ui-monospace, Consolas, monospace; }
.steps h3 { margin: 0 0 10px; font-size: 24px; letter-spacing: -.025em; }
.steps p { margin: 0; color: #93a7c7; line-height: 1.65; }

.security { overflow: hidden; background: #f3f7fb; }
.security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.security-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.core { z-index: 2; width: 116px; height: 116px; padding: 20px; border-radius: 50%; background: var(--white); box-shadow: 0 20px 60px rgba(22,66,111,.2); }
.orbit { position: absolute; border: 1px solid #bcd3e9; border-radius: 50%; }.orbit-one { width: 310px; height: 310px; }.orbit-two { width: 480px; height: 480px; border-style: dashed; }
.orbit-label { position: absolute; padding: 10px 14px; border: 1px solid #d7e5f1; border-radius: 10px; background: rgba(255,255,255,.9); box-shadow: 0 8px 24px rgba(20,52,89,.08); font-size: 10px; font-weight: 750; }
.label-one { top: 19%; left: 4%; }.label-two { top: 12%; right: 12%; }.label-three { bottom: 17%; right: 1%; }.label-four { bottom: 8%; left: 13%; }
.security-copy > p { margin: 24px 0 32px; }
.security-points { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.security-points div { display: grid; gap: 8px; padding: 20px 0; border-top: 1px solid #d9e4ef; }
.security-points b { font-size: 13px; }.security-points span { color: var(--muted); font-size: 12px; line-height: 1.55; }

.contact { padding-top: 80px; }
.contact-panel { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; padding: 70px; color: var(--white); border-radius: 32px; background: linear-gradient(135deg,#0a1d42,#0c4e78); box-shadow: var(--shadow); }
.contact-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.contact-copy p { margin: 0 0 28px; color: #bad0e7; line-height: 1.65; }.contact-copy small { margin-top: 14px; color: #89a6c5; }
footer { padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; }
.footer-brand { color: var(--ink); }.footer-grid > div > p { max-width: 360px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.footer-links { display: flex; gap: 26px; color: #526078; font-size: 12px; font-weight: 650; }.footer-links a:hover { color: var(--blue); }
.copyright { grid-column: 1 / -1; margin: 28px 0 0; padding-top: 25px; border-top: 1px solid var(--line); color: #8b96a8; font-size: 10px; }

.privacy-main { min-height: 75vh; padding: 150px 0 100px; background: var(--paper); }
.privacy-card { max-width: 820px; padding: 56px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: 0 18px 50px rgba(12,38,74,.07); }
.privacy-card h1 { margin: 0 0 15px; font-size: 50px; letter-spacing: -.04em; }.privacy-card h2 { margin-top: 38px; font-size: 21px; }.privacy-card p, .privacy-card li { color: var(--muted); line-height: 1.7; }.privacy-card .updated { font-size: 12px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; transition-delay: calc(var(--delay, 0) * 100ms); }
.reveal.visible { opacity: 1; transform: none; }
[data-delay="1"] { --delay: 1; } [data-delay="2"] { --delay: 2; }

@media (max-width: 960px) {
  .hero { min-height: auto; padding-top: 140px; }.hero-grid, .product-feature, .section-heading, .approach-grid, .security-grid, .contact-panel { grid-template-columns: 1fr; }
  .hero-grid { gap: 60px; }.hero-console { max-width: 650px; transform: none; }.proof-strip { margin-top: 70px; }
  .product-feature { padding: 45px; }.product-grid { grid-template-columns: 1fr; }.product-card { min-height: 560px; }
  .sticky-heading { position: static; }.approach-grid { gap: 55px; }.security-grid { gap: 25px; }.security-visual { order: 2; }
  .contact-panel { gap: 35px; }.section-heading { gap: 20px; }.section-heading > p { max-width: 650px; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 30px, 1180px); }.site-header { background: rgba(7,20,47,.94); }.nav { height: 66px; }.brand { font-size: 24px; }
  .nav-toggle { display: block; }.nav-links { position: fixed; inset: 66px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; max-height: calc(100vh - 66px); overflow-y: auto; padding: 18px 15px 26px; color: var(--white); background: rgba(7,20,47,.98); border-top: 1px solid rgba(255,255,255,.1); }
  .nav-links.open { display: flex; }.nav-links > a { padding: 15px; }.nav-links .button { margin-top: 9px; }
  .product-menu-toggle { width: 100%; justify-content: space-between; padding: 15px; }
  .product-submenu { position: static; width: auto; max-height: 0; padding: 0 6px; border: 0; visibility: visible; opacity: 1; overflow: hidden; transform: none; background: rgba(255,255,255,.04); box-shadow: none; transition: max-height .25s, padding .25s; }
  .product-submenu.open { max-height: 260px; padding-block: 6px; }
  .product-submenu a { padding: 13px 10px; }
  .hero { padding-top: 120px; }.hero h1 { font-size: 46px; }.hero-lead { font-size: 16px; }.hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }.text-link { justify-content: center; }
  .console-body { padding: 17px; }.plan-row { grid-template-columns: auto 1fr; }.proof-strip { align-items: flex-start; flex-direction: column; gap: 24px; }.proof-strip div { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px; }
  .section { padding: 80px 0; }.section-heading h2, .approach h2, .security h2, .contact h2 { font-size: 39px; }
  .product-feature { padding: 30px 24px; border-radius: 23px; }.feature-list li { grid-template-columns: 1fr; gap: 6px; }.product-card { min-height: 0; padding: 30px 24px 95px; }.product-card h3 { font-size: 32px; }.availability { left: 24px; }
  .compact-list, .security-points { grid-template-columns: 1fr; }.product-visual { min-height: 0; padding: 17px; }.metric-grid { grid-template-columns: 1fr; }
  .security-visual { min-height: 390px; transform: scale(.78); margin: -40px; }.contact-panel { padding: 42px 25px; border-radius: 23px; }
  .footer-grid { grid-template-columns: 1fr; }.footer-links { flex-wrap: wrap; }.privacy-card { padding: 35px 24px; }.privacy-card h1 { font-size: 38px; }
}

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