:root {
  color-scheme: light;
  --navy: #061426;
  --navy-soft: #0d223c;
  --ink: #102035;
  --muted: #66768a;
  --line: #d9e2ec;
  --paper: #f6f8fb;
  --white: #fff;
  --blue: #087cf0;
  --blue-bright: #1e96ff;
  --cyan: #39d8ff;
  --green: #23c983;
  --orange: #ff9e2c;
  --red: #ff5d66;
  --radius: 22px;
  --shadow: 0 24px 70px rgb(3 19 38 / 18%);
  --shell: min(1180px, calc(100vw - 48px));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--navy); }
body { margin: 0; min-width: 320px; color: var(--ink); background: var(--paper); overflow-x: clip; }
body, button, input, select, textarea { font: inherit; }
button, input, select, textarea { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { border: 0; }
fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
[hidden] { display: none !important; }

:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 14px; border-radius: 10px; color: var(--white); background: var(--blue); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }
#demo, main section[id] { scroll-margin-top: 110px; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  width: min(1260px, calc(100vw - 32px));
  min-height: 80px;
  padding: 10px 12px 10px 18px;
  color: var(--white);
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 18px;
  background: rgb(6 20 38 / 76%);
  box-shadow: 0 18px 48px rgb(0 0 0 / 22%);
  backdrop-filter: blur(18px) saturate(140%);
  transform: translateX(-50%);
  transition: top .25s ease, background .25s ease, border-radius .25s ease;
}
.site-header.is-compact { top: 8px; background: rgb(6 20 38 / 92%); border-radius: 14px; }
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: max-content; }
.brand img { width: 42px; height: 42px; border-radius: 10px; }
.brand-logo { position: relative; display: block; flex: 0 0 58px; width: 58px; height: 58px; overflow: hidden; border: 1px solid rgb(255 255 255 / 24%); border-radius: 14px; background: #071426; box-shadow: 0 10px 28px rgb(0 0 0 / 24%); }
.brand-logo img { position: absolute; top: 50%; left: 50%; width: 170%; max-width: none; height: auto; border-radius: 0; transform: translate(-50%, -50%); }
.brand span { display: grid; line-height: 1; letter-spacing: .02em; }
.brand b { color: #fff; font-size: 1.18rem; font-weight: 850; letter-spacing: .045em; text-shadow: 0 1px 16px rgb(255 255 255 / 16%); }
.brand small { margin-top: 6px; color: #b9cde0; font-size: .7rem; font-weight: 800; letter-spacing: .24em; }
.site-nav { display: flex; justify-content: center; gap: clamp(15px, 2vw, 30px); }
.site-nav a { position: relative; color: #dce9f6; font-size: .86rem; font-weight: 650; }
.site-nav a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--cyan); transform: scaleX(0); transition: transform .2s ease; }
.site-nav a:hover::after { transform: scaleX(1); }
.menu-toggle { display: none; background: transparent; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 48px; padding: 0 22px; border: 1px solid transparent; border-radius: 10px; font-size: .92rem; font-weight: 760; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: linear-gradient(135deg, var(--blue), #0a67ef); box-shadow: 0 12px 28px rgb(8 124 240 / 28%); }
.button-primary:hover { box-shadow: 0 16px 36px rgb(8 124 240 / 42%); }
.button-white { color: var(--navy); background: var(--white); box-shadow: 0 14px 34px rgb(0 0 0 / 18%); }
.button-large { min-height: 58px; padding-inline: 26px; font-size: 1rem; }
.button-ghost { color: var(--white); border-color: rgb(255 255 255 / 32%); background: rgb(255 255 255 / 8%); backdrop-filter: blur(10px); }
.button-back { color: #536276; border-color: #d8e0e9; background: #f5f7fa; }
.header-cta { min-height: 46px; padding-inline: 19px; }
.language-switch { display: inline-flex; align-items: center; gap: 3px; padding: 4px; border: 1px solid rgb(255 255 255 / 24%); border-radius: 11px; background: rgb(4 18 35 / 58%); box-shadow: inset 0 1px 0 rgb(255 255 255 / 8%); }
.language-switch a { display: grid; place-items: center; min-width: 38px; min-height: 34px; padding: 0 9px; color: #c4d6e7; border-radius: 8px; font-size: .72rem; font-weight: 850; letter-spacing: .04em; transition: color .2s ease, background .2s ease, box-shadow .2s ease; }
.language-switch a:hover { color: var(--white); background: rgb(255 255 255 / 10%); }
.language-switch a.is-active { color: var(--navy); background: var(--white); box-shadow: 0 6px 16px rgb(0 0 0 / 18%); }
.header-language { margin-inline: 12px 8px; }
.hero-language { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; padding: 6px 7px 6px 13px; border: 1px solid rgb(255 255 255 / 20%); border-radius: 13px; background: rgb(4 18 35 / 45%); backdrop-filter: blur(12px); }
.hero-language > span { color: #b9cde0; font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero-language .language-switch { border: 0; background: transparent; padding: 0; }
.hero-language .language-switch a { min-width: 80px; }

.hero { position: relative; min-height: max(880px, 100svh); isolation: isolate; display: grid; align-items: center; padding: 122px 0 74px; color: var(--white); background: var(--navy); overflow: hidden; }
.hero-media, .hero-shade { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.045); animation: hero-drift 18s ease-in-out infinite alternate; }
.hero-shade { z-index: -1; background: linear-gradient(90deg, rgb(3 13 28 / 96%) 0%, rgb(3 13 28 / 74%) 43%, rgb(3 13 28 / 38%) 72%, rgb(3 13 28 / 54%) 100%), linear-gradient(0deg, rgb(3 13 28 / 85%) 0%, transparent 38%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(390px, .76fr); align-items: center; gap: clamp(48px, 6vw, 92px); }
.hero-copy h1 { max-width: 740px; margin: 18px 0 24px; font-size: clamp(3.3rem, 5.3vw, 6.2rem); line-height: .93; letter-spacing: -.065em; }
.hero-copy h1 em { display: block; color: var(--cyan); font-style: normal; }
.hero-lead { max-width: 680px; margin: 0; color: #d7e4f0; font-size: clamp(1.04rem, 1.4vw, 1.24rem); line-height: 1.65; }
.eyebrow { margin: 0; color: #a9eaff; font-size: .72rem; font-weight: 820; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 22px; height: 2px; margin-right: 10px; vertical-align: middle; background: var(--cyan); }
.eyebrow-dark { color: #0874d8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 22px; margin: 40px 0 0; padding: 0; list-style: none; color: #d9e7f3; font-size: .76rem; font-weight: 650; }
.hero-proof li { display: flex; align-items: center; gap: 8px; }
.hero-proof strong { color: var(--cyan); font-size: .66rem; letter-spacing: .1em; }
.hero-scroll { position: absolute; bottom: 22px; left: 50%; display: flex; align-items: center; gap: 10px; color: #abc0d3; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; transform: translateX(-50%); }
.hero-scroll span { width: 1px; height: 28px; background: linear-gradient(var(--cyan), transparent); animation: scroll-pulse 1.8s infinite; }

.demo-card { color: var(--ink); border: 1px solid rgb(255 255 255 / 72%); border-radius: var(--radius); background: rgb(255 255 255 / 95%); box-shadow: 0 30px 90px rgb(0 0 0 / 30%); overflow: hidden; backdrop-filter: blur(16px); }
.demo-card-head { padding: 26px 28px 18px; border-bottom: 1px solid #e6ebf1; }
.demo-card-head h2 { margin: 8px 0 5px; font-size: 1.55rem; letter-spacing: -.035em; }
.demo-card-head > p:last-child { margin: 0; color: var(--muted); font-size: .82rem; }
.demo-form { padding: 20px 28px 24px; }
.form-progress { display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto; align-items: center; margin-bottom: 22px; }
.form-progress span { display: grid; place-items: center; width: 26px; height: 26px; color: #8593a4; border: 1px solid #d7e0e9; border-radius: 50%; background: #f4f7fa; font-size: .67rem; font-weight: 800; transition: .25s ease; }
.form-progress span.is-active, .form-progress span.is-done { color: var(--white); border-color: var(--blue); background: var(--blue); }
.form-progress i { height: 1px; background: #dce3eb; }
.demo-step legend { width: 100%; margin-bottom: 16px; font-size: 1.08rem; font-weight: 820; letter-spacing: -.02em; }
.demo-step legend small { display: block; margin-bottom: 4px; color: var(--blue); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; }
.demo-step label { display: grid; gap: 7px; margin-bottom: 13px; }
.demo-step label > span { color: #34455a; font-size: .76rem; font-weight: 720; }
.demo-step input, .demo-step select, .demo-step textarea { width: 100%; min-height: 46px; padding: 11px 13px; border: 1px solid #ced8e3; border-radius: 9px; outline: 0; background: var(--white); transition: border .2s, box-shadow .2s; }
.demo-step textarea { min-height: 74px; resize: vertical; }
.demo-step input:focus, .demo-step select:focus, .demo-step textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgb(8 124 240 / 12%); }
.demo-step [aria-invalid="true"] { border-color: var(--red); box-shadow: 0 0 0 3px rgb(255 93 102 / 10%); }
.field-grid.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-hint { margin: -10px 0 13px; color: var(--muted); font-size: .72rem; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-bottom: 14px; }
.choice-grid label { margin: 0; }
.choice-grid input { position: absolute; opacity: 0; pointer-events: none; }
.choice-grid label span { display: flex; align-items: center; min-height: 42px; padding: 9px 11px; color: #4b5c6f; border: 1px solid #d6dee7; border-radius: 8px; background: #f8fafc; cursor: pointer; transition: .2s; }
.choice-grid input:checked + span { color: #0567c4; border-color: var(--blue); background: #edf7ff; box-shadow: inset 0 0 0 1px var(--blue); }
.choice-grid input:focus-visible + span { outline: 3px solid var(--cyan); outline-offset: 2px; }
.form-next { width: 100%; margin-top: 3px; }
.form-controls { display: grid; grid-template-columns: auto 1fr; gap: 10px; margin-top: 4px; }
.form-controls .button-primary { width: 100%; }
.form-message { min-height: 19px; margin-top: 12px; color: var(--red); font-size: .75rem; font-weight: 650; }
.form-message.is-success { color: #078f5a; }
.form-privacy { margin: 5px 0 0; color: #8b98a6; font-size: .64rem; line-height: 1.45; }
.honey { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.demo-form.is-busy { pointer-events: none; opacity: .72; }

.problem-section { position: relative; padding: 120px 0 110px; background: #f7f8fa; }
.problem-section::before { content: ""; position: absolute; top: 0; left: 50%; width: 1px; height: 90px; background: #bdc9d4; }
.problem-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(54px, 9vw, 140px); }
.problem-intro h2, .section-head h2, .journey-head h2, .final-cta h2 { margin: 15px 0 20px; font-size: clamp(2.25rem, 4vw, 4.5rem); line-height: .98; letter-spacing: -.055em; }
.problem-intro > p:last-child, .section-head > p:last-child, .journey-head > p:last-child { color: var(--muted); line-height: 1.75; }
.problem-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid #cfd8e1; }
.problem-list li { display: grid; grid-template-columns: 54px 1fr; align-items: center; min-height: 80px; border-bottom: 1px solid #cfd8e1; }
.problem-list span { color: var(--blue); font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.problem-list p { margin: 0; font-size: clamp(.95rem, 1.4vw, 1.13rem); line-height: 1.45; }
.before-after { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 22px; margin-top: 92px; padding: 28px 34px; color: var(--white); border-radius: 16px; background: var(--navy); box-shadow: var(--shadow); }
.before-after div { display: grid; gap: 8px; }
.before-after div:last-child { text-align: right; }
.before-after small { color: #8fa6bd; font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.before-after span { color: var(--cyan); font-size: 1.7rem; }

.journey { background: #eaf0f5; }
.journey-head { padding: 120px 0 80px; text-align: center; }
.journey-head > p:last-child { max-width: 650px; margin: 0 auto; }
.journey-scene { --scene-progress: 0; position: relative; min-height: 130vh; }
.scene-stage { position: sticky; top: 0; height: 100svh; min-height: 650px; color: var(--white); background: var(--navy); overflow: hidden; isolation: isolate; }
.scene-media, .scene-vignette { position: absolute; inset: 0; z-index: -2; }
.scene-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(calc(1.12 - var(--scene-progress) * .08)) translate3d(0, calc((.5 - var(--scene-progress)) * 2.8%), 0); filter: saturate(.92) contrast(1.04); will-change: transform; }
.scene-vignette { z-index: -1; background: linear-gradient(90deg, rgb(3 14 29 / 92%) 0%, rgb(3 14 29 / 68%) 45%, rgb(3 14 29 / 18%) 72%), linear-gradient(0deg, rgb(3 14 29 / 82%) 0%, transparent 50%); }
.scene-copy { position: absolute; z-index: 3; top: 50%; left: max(24px, calc((100vw - 1180px) / 2)); width: min(500px, calc(100vw - 48px)); opacity: calc(.52 + var(--scene-progress) * .48); transform: translate3d(0, calc((.55 - var(--scene-progress)) * 70px), 0); will-change: transform, opacity; }
.scene-number { margin: 0 0 20px; color: var(--cyan); font-size: .68rem; font-weight: 850; letter-spacing: .16em; }
.scene-kicker { color: #a9eaff; font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.scene-copy h3 { margin: 13px 0 18px; font-size: clamp(2.5rem, 4.6vw, 5.4rem); line-height: .95; letter-spacing: -.06em; }
.scene-copy > p:not(.scene-number) { margin: 0; color: #d4e1ed; font-size: 1rem; line-height: 1.7; }
.scene-copy ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; }
.scene-copy li { padding: 8px 11px; color: #e4f7ff; border: 1px solid rgb(117 216 255 / 32%); border-radius: 999px; background: rgb(5 22 42 / 55%); font-size: .69rem; font-weight: 700; backdrop-filter: blur(8px); }
.order-signal, .delivery-proof { position: absolute; right: max(28px, calc((100vw - 1180px) / 2)); bottom: 11vh; display: grid; min-width: 270px; padding: 22px; border: 1px solid rgb(255 255 255 / 28%); border-radius: 14px; background: rgb(5 22 42 / 76%); box-shadow: 0 22px 54px rgb(0 0 0 / 30%); backdrop-filter: blur(18px); transform: translate3d(calc((1 - var(--scene-progress)) * 55px), 0, 0); opacity: var(--scene-progress); }
.order-signal span, .delivery-proof span { color: var(--cyan); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.order-signal strong, .delivery-proof strong { margin: 9px 0 4px; font-size: 1.55rem; }
.order-signal small, .delivery-proof small { color: #9eb3c7; }
.order-signal i { position: absolute; top: 24px; right: 22px; width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 8px rgb(35 201 131 / 13%); }
.delivery-proof b { position: absolute; top: -22px; right: -22px; display: grid; place-items: center; width: 48px; height: 48px; color: var(--navy); border-radius: 50%; background: var(--green); }
.product-window { position: absolute; right: max(22px, calc((100vw - 1180px) / 2)); top: 52%; width: min(48vw, 760px); margin: 0; border: 1px solid rgb(255 255 255 / 25%); border-radius: 13px; background: #fff; box-shadow: 0 28px 90px rgb(0 0 0 / 44%); overflow: hidden; opacity: calc(var(--scene-progress) * 1.25); transform: perspective(1300px) rotateY(calc(-8deg + var(--scene-progress) * 8deg)) translate3d(calc((1 - var(--scene-progress)) * 9%), -50%, 0) scale(calc(.9 + var(--scene-progress) * .1)); transform-origin: right center; }
.window-bar { display: flex; align-items: center; gap: 6px; min-height: 34px; padding: 0 12px; color: #6f7d8c; background: #e9edf2; font-size: .66rem; }
.window-bar i { width: 8px; height: 8px; border-radius: 50%; background: #ff6565; }
.window-bar i:nth-child(2) { background: #ffc24b; }
.window-bar i:nth-child(3) { background: #35cc72; }
.window-bar span { margin-left: 7px; }
.process-rail { position: absolute; right: max(28px, calc((100vw - 1180px) / 2)); bottom: 12vh; display: flex; align-items: center; gap: 0; opacity: var(--scene-progress); transform: translateY(calc((1 - var(--scene-progress)) * 35px)); }
.process-rail span { position: relative; min-width: 150px; padding: 13px 18px 13px 36px; color: #c6d2de; border: 1px solid rgb(255 255 255 / 22%); background: rgb(5 22 42 / 78%); font-size: .72rem; font-weight: 760; backdrop-filter: blur(14px); }
.process-rail span::before { content: ""; position: absolute; top: 50%; left: 15px; width: 9px; height: 9px; border-radius: 50%; background: #668097; transform: translateY(-50%); }
.process-rail .is-done::before { background: var(--green); }
.process-rail .is-live { color: var(--white); border-color: var(--cyan); }
.process-rail .is-live::before { background: var(--cyan); box-shadow: 0 0 0 6px rgb(57 216 255 / 15%); }
.vision-overlay { position: absolute; inset: 0; pointer-events: none; opacity: calc(var(--scene-progress) * 1.2); }
.vbox { position: absolute; display: block; border: 2px solid var(--cyan); border-radius: 5px; box-shadow: inset 0 0 25px rgb(57 216 255 / 12%); transform: scale(calc(.78 + var(--scene-progress) * .22)); }
.vbox span { position: absolute; top: -26px; left: -2px; min-width: max-content; padding: 5px 7px; color: var(--navy); background: var(--cyan); font-size: .62rem; font-style: normal; font-weight: 820; }
.v1 { top: 32%; right: 28%; width: 13%; height: 18%; }
.v2 { top: 52%; right: 12%; width: 18%; height: 16%; border-color: var(--orange); }
.v2 span { background: var(--orange); }
.v3 { top: 60%; right: 38%; width: 11%; height: 13%; border-color: var(--green); }
.v3 span { background: var(--green); }

.capabilities { padding: 130px 0; background: var(--white); }
.section-head { max-width: 760px; }
.capability-map { position: relative; display: grid; grid-template-columns: 270px 1fr; gap: 42px; align-items: center; margin-top: 70px; padding: 42px; color: var(--white); border-radius: 24px; background: radial-gradient(circle at 24% 48%, #123c69 0, var(--navy) 40%, #06101f 100%); box-shadow: var(--shadow); overflow: hidden; }
.capability-map::after { content: ""; position: absolute; width: 380px; height: 380px; border: 1px solid rgb(73 211 255 / 18%); border-radius: 50%; transform: translateX(-52%); }
.cap-core { position: relative; z-index: 1; display: grid; justify-items: center; gap: 8px; padding: 36px 18px; text-align: center; border: 1px solid rgb(255 255 255 / 14%); border-radius: 50%; background: rgb(255 255 255 / 5%); aspect-ratio: 1; align-content: center; }
.cap-core img { border-radius: 14px; }
.cap-core strong { font-size: 1.25rem; }
.cap-core span { color: #9db0c4; font-size: .68rem; }
.capability-map ol { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin: 0; padding: 0; list-style: none; background: rgb(255 255 255 / 12%); }
.capability-map li { display: grid; grid-template-columns: 38px 1fr; gap: 2px 10px; padding: 18px; background: var(--navy); }
.capability-map li > span { grid-row: 1 / 3; color: var(--cyan); font-size: .65rem; font-weight: 850; letter-spacing: .1em; }
.capability-map b { font-size: .84rem; }
.capability-map small { color: #8fa5ba; }

.product-section { padding: 130px 0; color: var(--white); background: #061426; }
.section-head.light > p:last-child { color: #9bb0c5; }
.product-tabs { display: flex; gap: 8px; margin-top: 50px; }
.product-tabs button { padding: 11px 18px; color: #9bb0c5; border: 1px solid #263c53; border-radius: 999px; background: transparent; font-size: .78rem; font-weight: 750; cursor: pointer; }
.product-tabs button.is-active { color: var(--navy); border-color: var(--cyan); background: var(--cyan); }
.product-browser { margin: 20px 0 0; border: 1px solid #27405a; border-radius: 18px; background: #102238; box-shadow: 0 45px 110px rgb(0 0 0 / 35%); overflow: hidden; }
.product-browser .window-bar { min-height: 44px; background: #122a43; color: #8ea5ba; }
.product-screen { min-height: 520px; padding: 18px; background: #092038; }
.product-screen img { width: 100%; height: 100%; min-height: 484px; object-fit: contain; object-position: top center; border-radius: 8px; background: #eaf7fa; transition: opacity .18s ease, transform .25s ease; }
.product-screen img.is-changing { opacity: 0; transform: translateY(8px); }
.product-browser figcaption { display: flex; justify-content: space-between; gap: 30px; padding: 20px 24px 22px; border-top: 1px solid #263d55; }
.product-browser figcaption strong { color: var(--cyan); }
.product-browser figcaption span { max-width: 650px; color: #9db1c5; text-align: right; font-size: .82rem; }

.mobile-product { position: relative; padding: 130px 0; background: linear-gradient(145deg, #f8fbfd, #e8f6fa); overflow: hidden; }
.mobile-product::before { content: ""; position: absolute; top: 8%; right: -11%; width: 46vw; height: 46vw; border-radius: 50%; background: radial-gradient(circle, rgb(42 202 240 / 18%), transparent 68%); }
.mobile-product-grid { position: relative; display: grid; grid-template-columns: minmax(0, .88fr) minmax(420px, .72fr); align-items: center; gap: clamp(50px, 9vw, 130px); }
.mobile-product-copy h2 { margin: 15px 0 22px; font-size: clamp(2.4rem, 4.5vw, 5rem); line-height: .96; letter-spacing: -.06em; }
.mobile-product-copy > p:not(.eyebrow) { max-width: 610px; margin: 0; color: var(--muted); line-height: 1.75; }
.mobile-product-copy ul { margin: 38px 0; padding: 0; list-style: none; border-top: 1px solid #cbd8e2; }
.mobile-product-copy li { display: grid; grid-template-columns: 42px 1fr; gap: 4px 10px; padding: 18px 0; border-bottom: 1px solid #cbd8e2; }
.mobile-product-copy li > span { grid-row: 1 / 3; color: var(--blue); font-size: .68rem; font-weight: 850; letter-spacing: .1em; }
.mobile-product-copy li strong { font-size: .9rem; }
.mobile-product-copy li small { color: var(--muted); line-height: 1.5; }
.mobile-shot { position: relative; width: min(100%, 440px); margin: 0 auto; padding: 11px; border: 1px solid #cddce6; border-radius: 34px; background: #fff; box-shadow: 0 34px 90px rgb(18 58 83 / 25%); transform: rotate(1.2deg); }
.mobile-shot::before { content: ""; position: absolute; z-index: 2; top: 17px; left: 50%; width: 76px; height: 6px; border-radius: 99px; background: #192c3e; transform: translateX(-50%); }
.mobile-shot-frame { position: relative; width: 100%; aspect-ratio: 696 / 922; border-radius: 25px; background: #eaf3f6; overflow: hidden; }
.mobile-shot-frame img { position: absolute; top: 0; left: 50%; width: auto; max-width: none; height: 100%; transform: translateX(-50%); }
.mobile-shot figcaption { display: grid; gap: 4px; padding: 15px 8px 7px; text-align: center; }
.mobile-shot figcaption span { color: var(--blue); font-size: .62rem; font-weight: 820; letter-spacing: .13em; text-transform: uppercase; }
.mobile-shot figcaption strong { font-size: .84rem; }

.why-section { padding: 130px 0; background: #eef3f7; }
.why-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.why-section .button { margin-top: 22px; }
.signal-panel { border-top: 1px solid #becbd8; }
.signal-panel > div { display: grid; grid-template-columns: 1fr auto; gap: 3px 30px; align-items: center; padding: 21px 4px; border-bottom: 1px solid #becbd8; }
.signal-panel span { font-size: .9rem; font-weight: 720; }
.signal-panel strong { grid-row: 1 / 3; grid-column: 2; color: var(--blue); font-size: 1.45rem; }
.signal-panel small { color: var(--muted); }

.about-section { padding: 120px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: .55fr 1fr; gap: 80px; align-items: center; }
.about-mark { display: grid; place-items: center; min-height: 360px; padding: 40px; border-radius: 50%; background: radial-gradient(circle, #fff 0 31%, #ebf7ff 32% 45%, #f4f7fa 46% 63%, transparent 64%), linear-gradient(135deg, #edf8ff, #fff); box-shadow: inset 0 0 0 1px #dce7f0; }
.about-mark img { width: 96px; height: 96px; border-radius: 22px; }
.about-mark span { margin-top: -90px; color: var(--muted); font-size: .7rem; font-weight: 760; letter-spacing: .1em; text-transform: uppercase; }

.final-cta { position: relative; isolation: isolate; padding: 110px 0; color: var(--white); background: linear-gradient(135deg, #0677e6, #054cb7 58%, #092456); overflow: hidden; }
.final-glow { position: absolute; z-index: -1; right: -7%; bottom: -100%; width: 50vw; height: 50vw; border-radius: 50%; background: radial-gradient(circle, rgb(58 225 255 / 45%), transparent 68%); }
.final-grid { display: grid; grid-template-columns: 1fr auto; gap: 70px; align-items: center; }
.final-cta h2 { max-width: 850px; }
.final-cta p:not(.eyebrow) { max-width: 650px; color: #d6e9ff; line-height: 1.7; }

.site-footer { padding: 48px 0 88px; color: #a5b7c9; background: #04101f; }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 36px; }
.brand-footer { color: var(--white); }
.footer-grid > p { margin: 0; font-size: .82rem; }
.footer-grid nav { display: flex; gap: 22px; font-size: .75rem; }
.footer-grid > small { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid #1c3045; }
.mobile-sticky-cta { display: none; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.65,.25,1), transform .7s cubic-bezier(.2,.65,.25,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes hero-drift { to { transform: scale(1.085) translate3d(-.8%, -.8%, 0); } }
@keyframes scroll-pulse { 0%,100% { opacity: .25; transform: scaleY(.5); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

@media (max-width: 1060px) {
  .site-nav { display: none; position: absolute; top: 84px; right: 0; left: 0; padding: 22px; border: 1px solid rgb(255 255 255 / 14%); border-radius: 16px; background: rgb(6 20 38 / 97%); box-shadow: var(--shadow); }
  .site-nav.is-open { display: grid; gap: 18px; }
  .site-nav a { font-size: 1rem; }
  .menu-toggle { display: grid; place-items: center; gap: 5px; width: 44px; height: 44px; margin-left: auto; cursor: pointer; }
  .menu-toggle span { display: block; width: 20px; height: 2px; background: var(--white); }
  .site-header { grid-template-columns: auto 1fr auto auto; }
  .header-language { justify-self: end; }
  .header-cta { margin-left: 10px; }
  .hero-grid { grid-template-columns: 1fr .85fr; gap: 36px; }
  .hero-copy h1 { font-size: clamp(3.2rem, 6vw, 5rem); }
  .product-window { width: 52vw; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 32px, 680px); }
  .site-header { top: 10px; width: calc(100% - 20px); min-height: 72px; padding: 8px 9px 8px 12px; }
  .site-header .brand { gap: 10px; }
  .site-header .brand-logo { flex-basis: 52px; width: 52px; height: 52px; border-radius: 12px; }
  .site-header .brand-logo img { width: 170%; height: auto; }
  .site-header .brand span { display: grid; }
  .site-header .brand b { font-size: 1rem; }
  .site-header .brand small { margin-top: 4px; font-size: .58rem; letter-spacing: .2em; }
  .site-nav { top: 76px; }
  .header-cta { min-height: 42px; padding-inline: 13px; font-size: .75rem; }
  .hero { min-height: auto; padding: 100px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-shade { background: linear-gradient(180deg, rgb(3 13 28 / 82%) 0%, rgb(3 13 28 / 76%) 35%, rgb(3 13 28 / 94%) 70%, rgb(3 13 28 / 98%) 100%); }
  .hero-copy { padding-top: 40px; }
  .hero-copy h1 { font-size: clamp(3rem, 11vw, 5.3rem); }
  .hero-proof { gap: 12px 18px; }
  .demo-card { width: min(100%, 620px); }
  .hero-scroll { display: none; }
  .problem-grid, .why-grid, .about-grid { grid-template-columns: 1fr; }
  .problem-section, .capabilities, .product-section, .mobile-product, .why-section, .about-section { padding-block: 90px; }
  .before-after { margin-top: 65px; }
  .journey-head { padding-block: 90px 60px; }
  .journey-scene { min-height: 115vh; }
  .scene-stage { min-height: 620px; }
  .scene-copy { top: 18%; left: 24px; width: min(500px, calc(100vw - 48px)); transform: translateY(calc((.45 - var(--scene-progress)) * 45px)); }
  .scene-copy h3 { max-width: 580px; font-size: clamp(2.5rem, 8vw, 4.4rem); }
  .scene-copy > p:not(.scene-number) { max-width: 520px; }
  .order-signal, .delivery-proof, .process-rail { right: 24px; bottom: 7vh; }
  .product-window { top: auto; right: 24px; bottom: 6vh; width: calc(100vw - 48px); transform: perspective(1300px) rotateX(calc(5deg - var(--scene-progress) * 5deg)) translate3d(0, calc((1 - var(--scene-progress)) * 6%), 0) scale(calc(.92 + var(--scene-progress) * .08)); }
  .capability-map { grid-template-columns: 1fr; }
  .cap-core { max-width: 250px; margin-inline: auto; }
  .product-screen { min-height: 360px; }
  .product-screen img { min-height: 324px; }
  .mobile-product-grid { grid-template-columns: 1fr; gap: 56px; }
  .mobile-shot { width: min(76vw, 440px); }
  .about-mark { min-height: 300px; }
  .final-grid { grid-template-columns: 1fr; gap: 25px; }
  .footer-grid { grid-template-columns: auto 1fr; }
  .footer-grid nav { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 28px); --radius: 17px; }
  .header-cta { display: none; }
  .site-header { grid-template-columns: auto 1fr auto; }
  .site-header .brand-logo { flex-basis: 46px; width: 46px; height: 46px; }
  .site-header .brand { gap: 8px; }
  .site-header .brand b { font-size: .9rem; }
  .site-header .brand small { font-size: .52rem; }
  .header-language { margin-inline: 5px; }
  .header-language a { min-width: 34px; min-height: 32px; padding-inline: 7px; font-size: .67rem; }
  .menu-toggle { width: 40px; height: 40px; }
  .hero { padding: 96px 0 52px; }
  .hero-grid { gap: 28px; }
  .hero-copy { padding-top: 20px; }
  .hero-language { margin-bottom: 19px; }
  .hero-language > span { display: none; }
  .hero-language .language-switch a { min-width: 108px; min-height: 40px; font-size: .76rem; }
  .hero-copy h1 { margin: 13px 0 18px; font-size: clamp(2.45rem, 12vw, 3.7rem); line-height: .96; }
  .hero-lead { font-size: .96rem; line-height: 1.55; }
  .hero-actions { margin-top: 25px; }
  .hero-proof { gap: 10px; margin-top: 25px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; }
  .demo-card-head { padding: 22px 19px 16px; }
  .demo-card-head h2 { font-size: 1.35rem; }
  .demo-form { padding: 18px 19px 21px; }
  .field-grid.two { grid-template-columns: 1fr; gap: 0; }
  .choice-grid { grid-template-columns: 1fr; }
  .form-controls { grid-template-columns: 1fr; }
  .form-controls .button-back { order: 2; }
  .problem-intro h2, .section-head h2, .journey-head h2, .mobile-product-copy h2, .final-cta h2 { font-size: clamp(2.1rem, 10vw, 3.2rem); }
  .problem-list li { grid-template-columns: 42px 1fr; min-height: 88px; }
  .before-after { grid-template-columns: 1fr; gap: 14px; padding: 23px; }
  .before-after div:last-child { text-align: left; }
  .before-after > span { transform: rotate(90deg); width: max-content; }
  .journey-head { padding-block: 72px 42px; }
  .journey-scene { min-height: auto; }
  .scene-stage { position: relative; top: auto; height: auto; min-height: 740px; }
  .scene-vignette { background: linear-gradient(180deg, rgb(3 14 29 / 90%) 0%, rgb(3 14 29 / 65%) 48%, rgb(3 14 29 / 91%) 100%); }
  .scene-media img { transform: none; }
  .scene-copy { top: 58px; left: 14px; width: calc(100% - 28px); opacity: 1; transform: none; }
  .scene-copy h3 { margin-block: 10px 13px; font-size: clamp(2rem, 10vw, 3.2rem); }
  .scene-copy > p:not(.scene-number) { font-size: .9rem; line-height: 1.55; }
  .scene-number { margin-bottom: 13px; }
  .scene-copy ul { margin-top: 17px; }
  .scene-copy ul { gap: 5px; }
  .order-signal, .delivery-proof { right: 18px; bottom: 5vh; left: 18px; min-width: 0; }
  .process-rail { right: 18px; bottom: 5vh; left: 18px; display: grid; }
  .process-rail span { min-width: 0; }
  .product-window { right: 14px; bottom: 30px; width: calc(100% - 28px); opacity: 1; transform: none; }
  .office-window .window-bar { display: none; }
  .capability-map { gap: 26px; margin-top: 45px; padding: 22px; }
  .capability-map ol { grid-template-columns: 1fr; }
  .cap-core { width: 210px; }
  .product-tabs { overflow-x: auto; }
  .product-screen { min-height: 230px; padding: 7px; }
  .product-screen img { min-height: 216px; }
  .product-browser figcaption { display: grid; gap: 7px; }
  .product-browser figcaption span { text-align: left; }
  .mobile-shot { width: min(100%, 440px); }
  .about-grid { gap: 45px; }
  .about-mark { min-height: 250px; }
  .final-cta { padding-block: 80px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid nav { display: grid; grid-template-columns: 1fr 1fr; }
  .mobile-sticky-cta { position: fixed; z-index: 90; right: 12px; bottom: max(12px, env(safe-area-inset-bottom)); left: 12px; display: flex; justify-content: space-between; padding: 15px 18px; color: var(--white); border: 1px solid rgb(255 255 255 / 20%); border-radius: 12px; background: rgb(8 124 240 / 94%); box-shadow: 0 18px 40px rgb(3 20 38 / 30%); font-size: .86rem; font-weight: 800; backdrop-filter: blur(14px); transition: transform .25s ease, opacity .25s ease; }
  .mobile-sticky-cta.is-hidden { opacity: 0; pointer-events: none; transform: translateY(130%); }
  .site-footer { padding-bottom: 105px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .scene-media img, .scene-copy, .order-signal, .delivery-proof, .process-rail, .product-window, .vbox { transform: none; opacity: 1; }
}
