﻿:root {
  --ink: #0a1826;
  --ink-soft: #586879;
  --night: #071521;
  --night-2: #0b2131;
  --blue: #147fb9;
  --blue-bright: #2b9ed4;
  --lime: #82aa32;
  --lime-bright: #a5c94a;
  --paper: #f5f7f8;
  --white: #fff;
  --line: rgba(10, 31, 54, .11);
  --line-dark: rgba(255, 255, 255, .11);
  --radius: 20px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --section-space: clamp(88px, 8vw, 132px);
  --content-reading: 64ch;
  --shadow: 0 24px 64px rgba(8, 28, 49, .12);
  --ease: cubic-bezier(.2, .75, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--night); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Avenir Next, Avenir, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
::selection { color: #fff; background: var(--blue); }
:focus-visible { outline: 3px solid var(--lime-bright); outline-offset: 4px; }
.container { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }

.skip-link {
  position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 11px 15px;
  color: #fff; background: var(--night); border-radius: 10px; transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.scroll-progress { position: fixed; z-index: 200; inset: 0 0 auto; height: 3px; pointer-events: none; }
.scroll-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--blue-bright), var(--lime-bright)); }
.ambient { position: fixed; z-index: -2; width: 42vw; aspect-ratio: 1; border-radius: 50%; filter: blur(100px); pointer-events: none; opacity: .12; }
.ambient-one { top: -20vw; right: -12vw; background: var(--blue); }
.ambient-two { bottom: -25vw; left: -18vw; background: var(--lime); }
.cursor-light { position: fixed; z-index: 300; width: 360px; height: 360px; border-radius: 50%; pointer-events: none; opacity: 0; background: radial-gradient(circle, rgba(53, 183, 243, .075), transparent 68%); transform: translate(-50%, -50%); transition: opacity .25s; }
body.has-pointer .cursor-light { opacity: 1; }

/* Header */
.site-header { --header-width: 1240px; --header-height: 72px; --header-radius: 22px; --header-pad: 18px; --header-top: 18px; --header-logo: 44px; --header-nav-gap: 24px; --header-nav-size: 13px; --header-button-height: 44px; --header-detail-opacity: 1; position: fixed; z-index: 100; top: 0; right: 0; left: 0; padding-top: var(--header-top); will-change: padding-top; }
.site-header.is-scrolled { pointer-events: none; }
.site-header.is-scrolled .nav-shell, .site-header.is-scrolled a, .site-header.is-scrolled button { pointer-events: auto; }
.nav-shell {
  width: min(var(--header-width), calc(100% - 32px)); height: var(--header-height); display: flex; align-items: center; gap: 28px; margin-inline: auto; padding: 0 calc(var(--header-pad) - 5px) 0 var(--header-pad);
  border: 1px solid rgba(255,255,255,.72); border-radius: var(--header-radius);
  background: rgba(246, 249, 252, .78); box-shadow: 0 14px 50px rgba(5, 22, 39, .1);
  backdrop-filter: blur(22px) saturate(160%); will-change: width, height, border-radius; transition: background .3s, box-shadow .3s, border-color .3s;
}
.is-scrolled .nav-shell { background: rgba(251,253,255,.93); border-color: rgba(255,255,255,.9); box-shadow: 0 17px 48px rgba(5,22,39,.16); }
.brand { display: flex; align-items: center; gap: 11px; min-width: max-content; }
.brand img { width: var(--header-logo); height: var(--header-logo); object-fit: contain; filter: drop-shadow(0 8px 14px rgba(22,143,226,.2)); }
.brand > span { display: grid; line-height: 1; }
.brand strong { font-size: 13px; letter-spacing: .135em; }
.brand small { margin-top: 5px; color: #748194; font-size: 8px; font-weight: 700; letter-spacing: .145em; text-transform: uppercase; opacity: var(--header-detail-opacity); }
.nav-links { display: flex; align-items: center; gap: var(--header-nav-gap); margin-left: auto; }
.nav-links a { position: relative; padding: calc((var(--header-height) - 18px) / 2) 0; color: #435165; font-size: var(--header-nav-size); font-weight: 700; }
.nav-links a::after { content: ""; position: absolute; right: 100%; bottom: 17px; left: 0; height: 2px; background: linear-gradient(90deg, var(--blue), var(--lime)); transition: right .3s var(--ease); }
.nav-links a:hover::after, .nav-links a.is-active::after { right: 0; }
.nav-links a.is-active { color: var(--ink); }
.menu-button { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.menu-button span { position: absolute; width: 18px; height: 2px; background: var(--ink); transition: transform .25s; }
.menu-button span:first-child { transform: translateY(-4px); }
.menu-button span:last-child { transform: translateY(4px); }
.menu-button[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

/* Buttons */
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 21px; border: 1px solid transparent; border-radius: 999px; font-size: 13px; font-weight: 800; transition: transform .25s var(--ease), box-shadow .25s, background .25s, color .25s; }
.button span { font-size: 17px; transition: transform .25s var(--ease); }
.button:hover span { transform: translate(3px, -2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, #0879cb, #0fa1d9); box-shadow: 0 17px 38px rgba(10,132,207,.29), inset 0 1px rgba(255,255,255,.2); }
.button-primary:hover { box-shadow: 0 22px 48px rgba(10,132,207,.38); }
.button-dark { color: #fff; background: var(--night); box-shadow: 0 14px 30px rgba(6,17,31,.18); }
.button-ghost { border-color: rgba(255,255,255,.16); color: #dfe8f2; background: rgba(255,255,255,.055); backdrop-filter: blur(12px); }
.button-ghost:hover { background: rgba(255,255,255,.1); }
.button-small { min-height: 44px; padding: 0 17px; font-size: 12px; }
.site-header .button-small { min-height: var(--header-button-height); }

/* Hero */
.hero { position: relative; display: grid; align-items: center; padding: 135px 0 0; color: #fff; background: var(--night); overflow: hidden; isolation: isolate; }
.hero::before { content: ""; position: absolute; z-index: -2; width: 820px; height: 820px; top: -250px; right: -180px; border-radius: 50%; background: radial-gradient(circle, rgba(25,145,224,.12), transparent 66%); }
.hero::after { content: ""; position: absolute; z-index: -3; inset: 0; background: linear-gradient(118deg, #06111f 12%, #071522 54%, #0b2030); }
.hero-grid-lines, .platform-lines { position: absolute; z-index: -1; inset: 0; opacity: .55; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom, #000, transparent 95%); }
.hero-layout { display: grid; grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr); align-items: center; gap: clamp(32px, 4vw, 64px); }
.hero-copy { position: relative; z-index: 3; min-width: 0; max-width: 540px; }
.eyebrow { width: max-content; display: flex; align-items: center; gap: 10px; margin: 0; padding: 8px 11px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: #adbdcb; background: rgba(255,255,255,.045); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; backdrop-filter: blur(12px); }
.eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime-bright); box-shadow: 0 0 0 5px rgba(182,223,70,.09), 0 0 18px var(--lime); }
.eyebrow span { margin-left: 8px; padding-left: 12px; border-left: 1px solid rgba(255,255,255,.14); color: #607486; }
.hero h1 { margin: 0 0 42px; font-size: clamp(3.8rem, 5.25vw, 5.2rem); font-weight: 850; letter-spacing: -.065em; line-height: .96; }
.hero h1 > span { display: block; padding-bottom: .07em; }
.hero h1 .kinetic-line { min-height: 1.24em; padding-top: .05em; padding-bottom: .22em; line-height: 1.12; overflow: visible; }
.hero h1 em { display: inline-block; max-width: 100%; padding: .03em .08em .1em 0; font-size: .9em; font-style: normal; line-height: 1.08; letter-spacing: -.055em; white-space: nowrap; color: transparent; background: linear-gradient(95deg, #68b9df 0%, #d8edf5 100%); background-clip: text; -webkit-background-clip: text; filter: none; }
.hero-lead { max-width: 590px; margin: 0; color: #9cafbe; font-size: clamp(1rem, 1.35vw, 1.13rem); line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 28px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 34px; }
.hero-proof span { display: grid; gap: 1px; color: #6f8496; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-proof b { color: #e7eef5; font-size: 16px; letter-spacing: -.02em; }
.hero-visual { position: relative; z-index: 1; min-width: 0; min-height: 600px; display: grid; place-items: center; perspective: 1500px; }
.stage { position: relative; width: min(760px, 106%); transform-style: preserve-3d; will-change: transform; transition: transform .15s ease-out; }
.stage-glow { position: absolute; z-index: -2; inset: 22% 8% 2%; border-radius: 50%; background: radial-gradient(ellipse, rgba(21,152,226,.32), rgba(143,198,48,.13) 36%, transparent 70%); filter: blur(40px); transform: translateZ(-100px); }
.laptop { position: relative; z-index: 1; width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 55px 40px rgba(0,0,0,.43)); transform: translateZ(55px) rotateY(-3deg); user-select: none; -webkit-user-drag: none; }
.orbit { position: absolute; border: 1px solid rgba(75,184,242,.16); border-radius: 50%; pointer-events: none; }
.orbit-outer { width: 610px; height: 610px; animation: spin 22s linear infinite; }
.orbit-outer::before, .orbit-outer::after, .orbit-inner::before { content: ""; position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 15px var(--blue); }
.orbit-outer::before { top: 12%; left: 18%; }.orbit-outer::after { right: 9%; bottom: 23%; background: var(--lime-bright); box-shadow: 0 0 15px var(--lime); }
.orbit-outer i { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.45); }
.orbit-outer i:nth-child(1) { left: 2%; top: 53%; }.orbit-outer i:nth-child(2) { top: 2%; left: 55%; }.orbit-outer i:nth-child(3) { right: 27%; bottom: 3%; }
.orbit-inner { width: 445px; height: 445px; border-style: dashed; border-color: rgba(143,198,48,.12); animation: spinReverse 28s linear infinite; }
.orbit-inner::before { top: 20%; right: 3%; width: 5px; height: 5px; background: var(--lime-bright); }
.data-card { position: absolute; z-index: 5; min-width: 170px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.16); border-radius: 17px; color: #fff; background: rgba(8,25,40,.67); box-shadow: 0 22px 60px rgba(0,0,0,.31); backdrop-filter: blur(18px) saturate(150%); transform: translateZ(115px); animation: float 5s ease-in-out infinite; }
.data-card small { display: block; margin-bottom: 4px; color: #6f879a; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.data-card strong { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.data-card strong i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime-bright); box-shadow: 0 0 12px var(--lime); }
.data-card-one { top: 13%; left: 18%; animation-delay: -1s; }.data-card-two { top: 29%; right: 0; animation-delay: -2.5s; }.data-card-three { right: 7%; bottom: 10%; animation-delay: -.4s; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }
@keyframes float { 50% { transform: translateZ(115px) translateY(-10px); } }

/* Tickers */
.ticker-section { position: relative; padding: 0; color: #183149; background: #f5f8fa; border-block: 1px solid rgba(8,31,49,.1); box-shadow: 0 14px 38px rgba(5,24,40,.07); overflow: hidden; }
.ticker-section::before { content: ""; position: absolute; z-index: 2; top: -1px; right: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--lime), var(--blue)); background-size: 200% 100%; animation: tickerSignal 8s linear infinite; }
.ticker-track { --ticker-distance: 1000px; --ticker-duration: 25s; width: max-content; min-height: 76px; display: flex; align-items: center; animation: ticker var(--ticker-duration) linear infinite; will-change: transform; }
.ticker-group { display: flex; flex: 0 0 auto; align-items: center; gap: 32px; padding-right: 32px; }
.ticker-track span { color: #183149; font-size: 11px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; }
.ticker-track i { width: 6px; height: 6px; flex: 0 0 auto; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--lime)); box-shadow: 0 0 0 5px rgba(21,147,223,.06); }
@keyframes ticker { to { transform: translateX(calc(-1 * var(--ticker-distance))); } }
@keyframes tickerSignal { to { background-position: -200% 0; } }

@media (max-width: 640px) {
  .ticker-track { min-height: 62px; }
  .ticker-group { gap: 24px; padding-right: 24px; }
  .ticker-track span { font-size: 10px; letter-spacing: .13em; }
}

/* Shared sections */
section { position: relative; }
.section-light { background: var(--paper); }
.solutions, .approach, .corporate { padding: 118px 0; }
.solutions { padding-top: 76px; overflow: hidden; isolation: isolate; }
.solutions > .container,.contact > .container { position: relative; z-index: 2; }
.light-particles { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.contact-light-particles { opacity: .94; }
.section-header { display: grid; grid-template-columns: 1fr minmax(320px, .55fr); align-items: end; gap: 70px; margin-bottom: 52px; }
.section-label { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--blue); font-size: 10px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.section-label::before { content: ""; width: 30px; height: 2px; background: linear-gradient(90deg, var(--blue), var(--lime)); }
.section-header h2, .approach-copy h2, .corporate-copy h2, .contact-copy h2 { margin: 0; font-size: clamp(3rem, 5.5vw, 5.5rem); font-weight: 850; letter-spacing: -.065em; line-height: .92; }
.section-header h2 span, .approach-copy h2 span, .corporate-copy h2 span { color: #92a0ae; }
.section-header > p, .approach-copy > p, .corporate-copy > p { max-width: 600px; margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.85; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Solutions */
.solution-showcase { position: relative; display: grid; grid-template-columns: minmax(340px,.82fr) minmax(520px,1.18fr); gap: 34px 48px; min-height: 680px; padding: 54px 54px 32px; border: 1px solid rgba(255,255,255,.12); border-radius: 38px; color: #fff; background: linear-gradient(135deg,#06111f 0%,#071a2a 56%,#0a2634 100%); box-shadow: 0 45px 110px rgba(7,25,43,.22); overflow: hidden; isolation: isolate; }
.solution-showcase::before { content: ""; position: absolute; z-index: -2; inset: 0; opacity: .6; background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(90deg,transparent,#000 25%,#000); }
.solution-ambient { position: absolute; z-index: -1; width: 680px; height: 680px; top: -280px; right: -180px; border-radius: 50%; background: radial-gradient(circle,rgba(44,178,238,.25),rgba(143,198,48,.09) 38%,transparent 68%); filter: blur(6px); }
.solution-content { position: relative; z-index: 4; min-height: 470px; }
.solution-slide { position: absolute; inset: 0; display: flex; flex-direction: column; opacity: 0; visibility: hidden; transform: translateY(22px); transition: opacity .55s var(--ease),transform .55s var(--ease),visibility .55s; pointer-events: none; }
.solution-slide.is-active { position: relative; opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.solution-kicker { display: flex; align-items: center; gap: 11px; margin: 0 0 25px; color: #76cffa; font-size: 10px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.solution-kicker::before { content: ""; width: 28px; height: 2px; background: linear-gradient(90deg,var(--blue-bright),var(--lime-bright)); }
.solution-kicker span { color: #63798c; }
.solution-slide h3 { max-width: 470px; margin: 0 0 20px; font-size: clamp(2.65rem,4vw,4.55rem); font-weight: 850; letter-spacing: -.065em; line-height: .94; }
.solution-slide > p:not(.solution-kicker) { max-width: 470px; margin: 0; color: #9db0bf; font-size: 14px; line-height: 1.82; }
.solution-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.solution-tags span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: #c5d1da; background: rgba(255,255,255,.045); font-size: 9px; font-weight: 800; letter-spacing: .06em; }
.solution-link { width: max-content; display: inline-flex; align-items: center; gap: 18px; margin-top: auto; padding: 15px 0 6px; border-bottom: 1px solid rgba(111,205,250,.4); color: #fff; font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.solution-link b { color: var(--lime-bright); font-size: 20px; transition: transform .25s var(--ease); }.solution-link:hover b { transform: translateX(5px); }
.solution-stage { --stage-rx: 0deg; --stage-ry: -5deg; position: relative; z-index: 3; min-height: 500px; display: grid; place-items: center; perspective: 1600px; transform: rotateX(var(--stage-rx)) rotateY(var(--stage-ry)); transform-style: preserve-3d; transition: transform .18s ease-out; }
.solution-stage::after { content: ""; position: absolute; z-index: -2; width: 86%; height: 34%; bottom: 8%; border-radius: 50%; background: radial-gradient(ellipse,rgba(29,159,226,.3),rgba(143,198,48,.1) 42%,transparent 72%); filter: blur(30px); }
.solution-orbit { position: absolute; width: 500px; height: 500px; border: 1px solid rgba(84,190,245,.15); border-radius: 50%; animation: spin 24s linear infinite; }
.solution-orbit::before,.solution-orbit::after { content: ""; position: absolute; inset: 15%; border: 1px dashed rgba(151,203,55,.12); border-radius: 50%; }.solution-orbit::after { inset: 31%; border-style: solid; border-color: rgba(255,255,255,.07); }
.solution-orbit i { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 15px var(--blue); }.solution-orbit i:nth-child(1){top:11%;left:18%}.solution-orbit i:nth-child(2){right:8%;top:47%;background:var(--lime-bright);box-shadow:0 0 15px var(--lime)}.solution-orbit i:nth-child(3){bottom:5%;left:42%;width:4px;height:4px;background:#fff}
.solution-visual { position: absolute; inset: 3% -5% 7%; display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translate3d(0,24px,-440px) rotateY(74deg) scale(.58); transition: opacity .82s var(--ease),transform 1.05s cubic-bezier(.18,.8,.18,1),visibility 1.05s; transform-style: preserve-3d; }
.solution-visual.is-active { z-index: 3; opacity: 1; visibility: visible; transform: translate3d(0,0,70px) rotateY(0) scale(1); }
.solution-visual.is-queued { z-index: 2; opacity: .18; visibility: visible; transform: translate3d(115px,-14px,-260px) rotateY(42deg) scale(.79); filter: saturate(.8) brightness(.72); }
.solution-visual.is-previous { z-index: 1; opacity: 0; visibility: visible; transform: translate3d(-145px,24px,-390px) rotateY(-64deg) scale(.66); }
.solution-visual img { width: min(720px,105%); max-height: 500px; object-fit: contain; filter: drop-shadow(0 42px 34px rgba(0,0,0,.48)); user-select: none; -webkit-user-drag: none; }
.solution-visual[data-solution-visual="3"] img,.solution-visual[data-solution-visual="4"] img { width: min(590px,88%); max-height: 410px; }
.solution-visual-depot img { transform: rotateY(-2deg) translateY(4px); }
.solution-screen-label { position: absolute; z-index: 5; right: 4%; bottom: 3%; left: 5%; display: flex; justify-content: space-between; gap: 16px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.14); border-radius: 15px; color: #8ca1b2; background: rgba(6,20,32,.7); backdrop-filter: blur(16px); font-size: 9px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.solution-screen-label b { color: var(--lime-bright); }
.solution-controls { position: relative; z-index: 6; grid-column: 1 / -1; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 22px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); }
.solution-tabs { display: flex; gap: 5px; min-width: 0; overflow-x: auto; scrollbar-width: none; }.solution-tabs::-webkit-scrollbar{display:none}
.solution-tab { min-width: max-content; display: flex; align-items: center; gap: 8px; padding: 9px 11px; border: 1px solid transparent; border-radius: 12px; color: #6f8394; background: transparent; font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: color .25s,background .25s,border-color .25s; }
.solution-tab span { color: #4d6274; }.solution-tab:hover,.solution-tab.is-active { border-color: rgba(255,255,255,.11); color: #fff; background: rgba(255,255,255,.065); }.solution-tab.is-active span{color:var(--lime-bright)}
.solution-nav { display: flex; align-items: center; gap: 8px; }
.solution-progress { width: 90px; height: 2px; margin-right: 8px; background: rgba(255,255,255,.12); overflow: hidden; }.solution-progress span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg,var(--blue-bright),var(--lime-bright)); transform: scaleX(0); transform-origin: left; }
.solution-progress span.is-running { animation: solutionTimer 6s linear forwards; }
.solution-showcase.is-paused .solution-progress span { animation-play-state: paused; }
.solution-nav button { width: 38px; height: 38px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; color: #fff; background: rgba(255,255,255,.045); cursor: pointer; transition: transform .25s var(--ease),background .25s; }.solution-nav button:hover { background: rgba(255,255,255,.11); transform: translateY(-2px); }
@keyframes solutionTimer { to { transform: scaleX(1); } }

/* In-page solution detail screens */
body.solution-modal-open { overflow: hidden; }
.solution-modal { position: fixed; z-index: 1200; inset: 0; display: grid; place-items: center; padding: 16px; opacity: 0; visibility: hidden; transition: opacity .34s ease,visibility .34s; }
.solution-modal[hidden] { display: none; }
.solution-modal.is-open { opacity: 1; visibility: visible; }
.solution-modal-backdrop { position: absolute; inset: 0; background: rgba(2,10,18,.76); backdrop-filter: blur(16px) saturate(120%); }
.solution-modal-panel { position: relative; width: min(1250px,100%); max-height: calc(100vh - 32px); overflow: auto; overscroll-behavior: contain; color: #fff; border: 1px solid rgba(255,255,255,.14); border-radius: 34px; background: linear-gradient(145deg,#06111f 0%,#071c2b 58%,#0b2936 100%); box-shadow: 0 48px 140px rgba(0,0,0,.52); opacity: 0; transform: perspective(1400px) translateY(28px) rotateX(-3deg) scale(.975); transform-origin: center top; transition: opacity .38s ease,transform .55s cubic-bezier(.18,.8,.18,1); scrollbar-width: thin; scrollbar-color: #294456 transparent; isolation: isolate; }
.solution-modal.is-open .solution-modal-panel { opacity: 1; transform: perspective(1400px) translateY(0) rotateX(0) scale(1); }
.solution-modal-grid { position: absolute; z-index: -2; inset: 0; opacity: .6; background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(120deg,#000,transparent 78%); pointer-events: none; }
.solution-modal-panel::before { content: ""; position: absolute; z-index: -1; width: 680px; height: 680px; top: -370px; right: -170px; border-radius: 50%; background: radial-gradient(circle,rgba(53,183,243,.27),rgba(143,198,48,.1) 38%,transparent 69%); pointer-events: none; }
.solution-modal-close { position: sticky; z-index: 10; top: 16px; float: right; width: 48px; height: 48px; display: grid; place-items: center; margin: 16px 16px -64px 0; padding: 0; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; color: #fff; background: rgba(5,19,31,.72); box-shadow: 0 14px 35px rgba(0,0,0,.25); backdrop-filter: blur(14px); font-size: 23px; cursor: pointer; transition: transform .25s var(--ease),background .25s,border-color .25s; }
.solution-modal-close span { position: absolute; right: 54px; color: #698093; font-size: 7px; font-weight: 850; letter-spacing: .14em; }
.solution-modal-close:hover { border-color: rgba(143,198,48,.42); background: rgba(143,198,48,.13); transform: rotate(7deg); }
.solution-modal-main { min-height: 500px; display: grid; grid-template-columns: minmax(350px,.82fr) minmax(500px,1.18fr); align-items: center; gap: 40px; padding: 64px 62px 36px; }
.solution-modal-copy { position: relative; z-index: 2; }
.solution-modal-kicker { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; color: #75cdf8; font-size: 10px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.solution-modal-kicker::before { content: ""; width: 30px; height: 2px; background: linear-gradient(90deg,var(--blue-bright),var(--lime-bright)); }.solution-modal-kicker span { color: #60788a; }.solution-modal-kicker b { font: inherit; }
.solution-modal-copy h2 { max-width: 560px; margin: 0; font-size: clamp(3.2rem,5vw,5.8rem); font-weight: 850; letter-spacing: -.065em; line-height: .91; }
.solution-modal-copy > p:not(.solution-modal-kicker) { max-width: 560px; margin: 27px 0 0; color: #9eb0bf; font-size: 14px; line-height: 1.82; }
.solution-modal-metrics { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.solution-modal-metrics span { display: grid; gap: 3px; min-width: 112px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.11); border-radius: 14px; background: rgba(255,255,255,.045); }.solution-modal-metrics b { color: #fff; font-size: 13px; }.solution-modal-metrics small { color: #6e8496; font-size: 7px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.solution-modal-visual { position: relative; min-height: 430px; display: grid; place-items: center; perspective: 1500px; }
.solution-modal-visual::after { content: ""; position: absolute; z-index: -2; width: 86%; height: 30%; bottom: 6%; border-radius: 50%; background: radial-gradient(ellipse,rgba(32,164,229,.35),rgba(143,198,48,.12) 42%,transparent 72%); filter: blur(28px); }
.solution-modal-visual img { position: relative; z-index: 2; width: min(720px,108%); max-height: 470px; object-fit: contain; filter: drop-shadow(0 42px 34px rgba(0,0,0,.5)); transform: translateZ(45px) rotateY(-3deg); animation: solutionDetailFloat 5.5s ease-in-out infinite; }
.solution-modal-visual img[src*="quality-warehouse-laptop"] { width: min(600px,89%); max-height: 410px; }
.solution-modal-orbit { position: absolute; width: 440px; height: 440px; border: 1px solid rgba(79,188,244,.15); border-radius: 50%; animation: spin 25s linear infinite; }.solution-modal-orbit::before,.solution-modal-orbit::after { content: ""; position: absolute; inset: 16%; border: 1px dashed rgba(143,198,48,.14); border-radius: 50%; }.solution-modal-orbit::after { inset: 34%; border-style: solid; border-color: rgba(255,255,255,.065); }.solution-modal-orbit i { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--lime-bright); box-shadow: 0 0 14px rgba(143,198,48,.65); }.solution-modal-orbit i:nth-child(1){top:12%;left:19%}.solution-modal-orbit i:nth-child(2){right:7%;top:52%;background:var(--blue-bright);box-shadow:0 0 14px rgba(53,183,243,.65)}.solution-modal-orbit i:nth-child(3){bottom:8%;left:31%;width:4px;height:4px;background:#fff}
.solution-modal-status { position: absolute; z-index: 4; right: 6%; bottom: 4%; display: flex; align-items: center; gap: 8px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: #9db0bf; background: rgba(5,20,32,.72); backdrop-filter: blur(14px); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }.solution-modal-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime-bright); box-shadow: 0 0 11px var(--lime); }
.solution-modal-lower { display: grid; grid-template-columns: 1fr .9fr .78fr; gap: 16px; padding: 26px 32px 32px; border-top: 1px solid rgba(255,255,255,.09); background: rgba(2,13,22,.34); }
.solution-detail-block,.solution-modal-outcome { padding: 22px; border: 1px solid rgba(255,255,255,.09); border-radius: 21px; background: rgba(255,255,255,.035); }
.solution-detail-label,.solution-modal-outcome small { display: block; margin-bottom: 17px; color: #62798c; font-size: 8px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.solution-detail-features { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }.solution-detail-features article { min-height: 92px; display: grid; align-content: space-between; padding: 13px; border-radius: 14px; color: #b8c7d2; background: rgba(255,255,255,.045); font-size: 10px; font-weight: 750; line-height: 1.4; }.solution-detail-features article span { color: var(--lime-bright); font-size: 9px; letter-spacing: .1em; }
.solution-detail-workflow { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; counter-reset: workflow; }.solution-detail-workflow li { counter-increment: workflow; display: flex; align-items: center; gap: 11px; color: #aebdca; font-size: 10px; }.solution-detail-workflow li::before { content: "0" counter(workflow); width: 29px; height: 29px; display: grid; flex: 0 0 auto; place-items: center; border: 1px solid rgba(111,205,250,.2); border-radius: 50%; color: #71cbf6; font-size: 7px; font-weight: 850; }
.solution-modal-outcome { display: flex; flex-direction: column; }.solution-modal-outcome strong { color: #fff; font-size: 17px; line-height: 1.45; }.solution-modal-outcome a { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: auto; padding-top: 22px; color: #a9bbc8; border-top: 1px solid rgba(255,255,255,.09); font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }.solution-modal-outcome a span { color: var(--lime-bright); font-size: 17px; transition: transform .25s; }.solution-modal-outcome a:hover { color: #fff; }.solution-modal-outcome a:hover span { transform: translate(3px,-3px); }
@keyframes solutionDetailFloat { 50% { transform: translateZ(60px) translateY(-8px) rotateY(2deg); } }

/* Platform */
.platform { padding: 118px 0 130px; color: #fff; background: linear-gradient(135deg, #06111f, #0a1a2a 65%, #082132); overflow: hidden; isolation: isolate; }
.platform::before { content: ""; position: absolute; z-index: -1; width: 700px; height: 700px; bottom: -350px; left: -210px; border-radius: 50%; background: radial-gradient(circle, rgba(22,143,226,.1), transparent 70%); }
.section-header-dark h2 span { color: #63788b; }
.section-header-dark > p { color: #8da0b2; }
.section-header-dark .section-label { color: #63c3f6; }
.platform-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 74px; }
.product-scene { position: relative; min-height: 590px; display: grid; place-items: center; perspective: 1500px; }
.product-halo { position: absolute; width: 510px; height: 510px; border: 1px solid rgba(53,183,243,.09); border-radius: 50%; box-shadow: none; }
.product-halo::before, .product-halo::after { content: ""; position: absolute; border-radius: 50%; border: 1px dashed rgba(143,198,48,.12); }
.product-halo::before { inset: 13%; }.product-halo::after { inset: 28%; border-style: solid; border-color: rgba(255,255,255,.06); }
.product-frame { position: relative; z-index: 2; width: 100%; padding: 10px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.055); box-shadow: 0 34px 76px rgba(0,0,0,.3); transform: rotateY(4deg) rotateX(1deg); transform-style: preserve-3d; transition: transform .15s ease-out; }
.product-frame img { width: 100%; aspect-ratio: 16/10; object-fit: contain; border-radius: 15px; background: #0a121b; }
.mobile-product-scene { min-height: 650px; }
.mobile-frame { width: 112%; padding: 9px; background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.025)); }
.mobile-frame img { width: 100%; max-height: 610px; aspect-ratio: auto; object-fit: contain; border-radius: 17px; background: transparent; filter: drop-shadow(0 35px 35px rgba(0,0,0,.34)); }
.frame-bar { display: flex; align-items: center; justify-content: space-between; padding: 4px 8px 12px; color: #8ea2b4; font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.frame-bar span { display: flex; align-items: center; gap: 7px; }.frame-bar i { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 12px var(--blue); }
.frame-bar b { color: var(--lime-bright); }
.platform-badge { position: absolute; z-index: 4; right: -12px; bottom: 11%; min-width: 190px; padding: 15px 17px; border: 1px solid rgba(255,255,255,.15); border-radius: 17px; background: rgba(8,27,43,.76); box-shadow: 0 25px 65px rgba(0,0,0,.32); backdrop-filter: blur(20px); }
.platform-badge span { display: block; margin-bottom: 3px; color: #6d8295; font-size: 9px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.platform-badge strong { font-size: 13px; }
.feature-stack { display: grid; gap: 9px; }
.feature-item { width: 100%; display: grid; grid-template-columns: 48px 1fr; gap: 15px; padding: 18px; border: 1px solid rgba(255,255,255,.08); border-radius: 18px; color: #fff; background: rgba(255,255,255,.025); text-align: left; cursor: pointer; transition: transform .3s var(--ease), background .3s, border-color .3s; }
.feature-item:hover, .feature-item.is-active { border-color: rgba(53,183,243,.24); background: rgba(255,255,255,.07); transform: translateX(7px); }
.feature-item > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; color: #b4ddfa; background: linear-gradient(145deg, rgba(22,143,226,.22), rgba(143,198,48,.14)); font-size: 12px; font-weight: 900; }
.feature-item h3 { margin: 1px 0 4px; font-size: 16px; }.feature-item p { margin: 0; color: #8599aa; font-size: 11px; line-height: 1.55; }
.text-link { display: flex; justify-content: space-between; margin-top: 15px; padding: 18px 3px; border-bottom: 1px solid rgba(255,255,255,.16); color: #d9e6ef; font-size: 12px; font-weight: 800; }.text-link span { color: var(--lime-bright); }

/* Home solution ecosystem */
.home-ecosystem { position: relative; padding: 120px 0 130px; overflow: hidden; background: radial-gradient(circle at 7% 10%,rgba(143,198,48,.075),transparent 24%),linear-gradient(180deg,#f7fafb,#edf3f6); }
.home-ecosystem::before { content: ""; position: absolute; width: 480px; height: 480px; top: -260px; right: -120px; border: 1px solid rgba(24,145,213,.12); border-radius: 50%; box-shadow: inset 0 0 0 80px rgba(255,255,255,.19); }
.ecosystem-heading { position: relative; display: grid; grid-template-columns: 1fr .72fr; align-items: end; gap: 80px; margin-bottom: 58px; }
.ecosystem-heading h2 { margin: 0; color: #071b2c; font-size: clamp(3.8rem,6.7vw,7rem); font-weight: 850; letter-spacing: -.075em; line-height: .87; }.ecosystem-heading h2 span { color: transparent; background: linear-gradient(90deg,#21a4e4,#9bcf34); background-clip: text; }
.ecosystem-intro { padding-bottom: 7px; }.ecosystem-intro > p { margin: 0 0 28px; color: #62788a; font-size: 13px; line-height: 1.8; }.ecosystem-intro .text-link { width: 100%; justify-content: space-between; color: #0c263b; }
.ecosystem-grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.ecosystem-card { min-height: 395px; display: flex; flex-direction: column; padding: 24px; border: 1px solid #d8e3e9; border-radius: 23px; color: #102a3e; background: rgba(255,255,255,.84); box-shadow: 0 12px 32px rgba(8,34,54,.04); transition: transform .42s var(--ease),box-shadow .42s,border-color .3s; }.ecosystem-card:hover { color: #102a3e; border-color: rgba(22,143,226,.3); box-shadow: 0 25px 58px rgba(8,34,54,.12); transform: translateY(-7px); }
.ecosystem-card-top { display: flex; align-items: center; justify-content: space-between; color: #7890a1; font-size: 9px; font-weight: 850; }.ecosystem-card-top b { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid #dce6eb; border-radius: 50%; color: #158ed5; transition: color .25s,background .25s,transform .25s; }.ecosystem-card:hover .ecosystem-card-top b { color: #fff; background: #092034; transform: translate(2px,-2px); }
.ecosystem-card > p { margin: 70px 0 8px; color: #188ed5; font-size: 8px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }.ecosystem-card h3 { margin: 0; color: #091f32; font-size: 25px; letter-spacing: -.045em; line-height: 1.02; }.ecosystem-card > div:not(.ecosystem-card-top) { margin-top: 17px; color: #687e8f; font-size: 11px; line-height: 1.72; }.ecosystem-card footer { display: flex; justify-content: space-between; margin-top: auto; padding-top: 20px; border-top: 1px solid #e0e7ec; color: #102a3e; font-size: 8px; font-weight: 850; text-transform: uppercase; }.ecosystem-card footer span { color: #8abf28; }

/* Approach */
.approach-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 85px; align-items: start; }
.approach-copy { position: sticky; top: 110px; }
.approach-copy > p { margin: 26px 0; }
.process-list { display: grid; gap: 13px; }
.process-card { position: relative; min-height: 235px; padding: 30px; border: 1px solid var(--line); border-radius: 25px; background: rgba(255,255,255,.75); box-shadow: 0 15px 45px rgba(10,31,54,.055); overflow: hidden; transform-style: preserve-3d; transition: transform .18s ease-out, box-shadow .3s; }
.process-card:hover { box-shadow: 0 28px 70px rgba(10,31,54,.12); }
.process-card > span { color: var(--blue); font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.process-card h3 { margin: 47px 0 9px; font-size: 26px; letter-spacing: -.04em; }.process-card p { max-width: 440px; margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }
.process-card > b { position: absolute; right: 18px; bottom: -45px; color: rgba(8,28,48,.035); font-size: 150px; font-weight: 900; line-height: 1; letter-spacing: -.1em; pointer-events: none; }

/* Corporate */
.corporate { color: #fff; background: #081725; overflow: hidden; }
.corporate::before { content: ""; position: absolute; width: 620px; height: 620px; top: -280px; right: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(22,143,226,.08), transparent 68%); }
.corporate-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.metric-panel { position: relative; min-height: 520px; display: grid; grid-template-columns: 1fr 1fr; gap: 11px; padding: 32px; border: 1px solid rgba(255,255,255,.1); border-radius: 22px; background: rgba(255,255,255,.025); box-shadow: 0 28px 70px rgba(0,0,0,.2); overflow: hidden; }
.metric-panel > div:not(.metric-orbit) { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; border: 1px solid rgba(255,255,255,.075); border-radius: 14px; background: rgba(255,255,255,.025); }
.metric-panel strong { font-size: clamp(2.8rem, 5vw, 5rem); letter-spacing: -.07em; line-height: .9; }.metric-panel span { margin-top: 13px; color: #8297a9; font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.metric-orbit { position: absolute; width: 440px; height: 440px; top: 40px; left: 40px; border: 1px solid rgba(53,183,243,.12); border-radius: 50%; }
.metric-orbit::before { content: ""; position: absolute; inset: 22%; border: 1px dashed rgba(143,198,48,.14); border-radius: 50%; }
.corporate-copy .section-label { color: #67c5f5; }.corporate-copy h2 span { color: #63788b; }.corporate-copy > p { margin: 28px 0; color: #91a4b5; }
.corporate-copy ul { display: grid; gap: 17px; margin: 0; padding: 0; list-style: none; }
.corporate-copy li { display: grid; grid-template-columns: 20px 1fr; gap: 13px; align-items: start; color: #8297a9; font-size: 12px; }
.corporate-copy li i { width: 20px; height: 20px; margin-top: 1px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--lime)); box-shadow: 0 7px 17px rgba(22,143,226,.2); }
.corporate-copy li i::after { content: ""; display: block; width: 6px; height: 3px; margin: 6px 0 0 6px; border-bottom: 2px solid #fff; border-left: 2px solid #fff; transform: rotate(-45deg); }
.corporate-copy li strong { display: block; margin-bottom: 2px; color: #e5edf4; font-size: 14px; }

/* References and contact */
.references { padding: 108px 0 100px; background: linear-gradient(180deg,#f5f8fb,#edf3f7); border-top: 1px solid rgba(10,31,54,.06); overflow: hidden; }
.reference-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 48px; }
.reference-heading .section-label { margin-bottom: 12px; }
.reference-heading h2 { max-width: 600px; margin: 0; font-size: clamp(2.35rem,4.3vw,4.5rem); letter-spacing: -.06em; line-height: .95; text-align: right; }
.reference-count { color: #77889a; font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.logo-showcase { display: grid; gap: 13px; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.logo-rail { overflow: hidden; }
.logo-rail-secondary { transform: translateX(-90px); }
.logo-track { width: max-content; display: flex; gap: 13px; animation: referenceFlow 52s linear infinite; will-change: transform; }
.logo-track-reverse { animation-duration: 58s; animation-direction: reverse; }
.logo-group { display: flex; gap: 13px; padding-right: 13px; }
.logo-card { width: 252px; height: 122px; display: grid; flex: 0 0 auto; place-items: center; margin: 0; padding: 20px 26px; border: 1px solid rgba(10,31,54,.1); border-radius: 24px; background: rgba(255,255,255,.82); box-shadow: 0 13px 35px rgba(10,31,54,.055); transition: transform .35s var(--ease), box-shadow .35s, border-color .35s, background .35s; }
.logo-card img { max-width: 88%; max-height: 68px; object-fit: contain; filter: grayscale(1); opacity: .62; transition: filter .35s, opacity .35s, transform .35s var(--ease); }
.logo-card:hover { z-index: 2; border-color: rgba(22,143,226,.22); background: #fff; box-shadow: 0 22px 55px rgba(10,31,54,.12); transform: translateY(-4px); }
.logo-card:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.035); }
.logo-showcase:hover .logo-track { animation-play-state: paused; }
.reference-foot { display: flex; align-items: center; justify-content: space-between; gap: 35px; margin-top: 42px; padding-top: 26px; border-top: 1px solid var(--line); }
.reference-foot p { max-width: 690px; margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.75; }
.reference-foot a { display: flex; align-items: center; gap: 16px; min-width: max-content; font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.reference-foot a span { color: var(--blue); font-size: 18px; transition: transform .25s; }.reference-foot a:hover span { transform: translate(3px,-2px); }
@keyframes referenceFlow { to { transform: translateX(calc(-50% - 6.5px)); } }
.contact { padding: 100px 0 120px; background: #f3f6f7; overflow: hidden; isolation: isolate; }
.contact-card { position: relative; min-height: 470px; display: grid; grid-template-columns: 1fr .72fr; align-items: end; gap: 60px; padding: 62px; border-radius: 24px; color: #fff; background: linear-gradient(135deg, #081724, #0b2636); box-shadow: 0 30px 76px rgba(7,23,37,.18); overflow: hidden; }
.contact-card::before { content: ""; position: absolute; z-index: 0; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(100deg, transparent, #000); }
.contact-orbit { position: absolute; z-index: 1; width: 580px; height: 580px; top: -330px; right: -60px; border: 1px solid rgba(53,183,243,.12); border-radius: 50%; box-shadow: none; opacity: .7; }
.contact-orbit::before, .contact-orbit::after { content: ""; position: absolute; border-radius: 50%; border: 1px dashed rgba(143,198,48,.16); }.contact-orbit::before { inset: 17%; }.contact-orbit::after { inset: 34%; border-style: solid; border-color: rgba(255,255,255,.06); }
.contact-copy, .contact-actions { position: relative; z-index: 2; }
.contact-copy .section-label { color: #66b7dd; }.contact-copy h2 { max-width: 720px; }.contact-copy h2 span { color: #8fc5dc; }
.contact-copy > p:last-child { max-width: 640px; margin: 24px 0 0; color: #92a5b5; font-size: 14px; line-height: 1.8; }
.contact-actions { display: grid; gap: 10px; }
.contact-link { display: grid; grid-template-columns: 1fr auto; padding: 18px 19px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.055); backdrop-filter: blur(14px); transition: background .3s, border-color .3s, transform .2s; }
.contact-link:hover { border-color: rgba(53,183,243,.28); background: rgba(255,255,255,.095); }
.contact-link small { display: block; margin-bottom: 4px; color: #6f8699; font-size: 9px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }.contact-link strong { font-size: 13px; }.contact-link span { grid-row: 1 / 3; grid-column: 2; align-self: center; color: var(--lime-bright); font-size: 19px; }

/* Footer */
.site-footer { padding: 72px 0 22px; color: #91a3b3; background: #050e18; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, .7fr); gap: 55px; padding-bottom: 55px; }
.brand-footer { width: min(360px, 100%); display: block; padding: 0; border: 0; background: transparent; box-shadow: none; }
.brand-footer .footer-wordmark { width: 100%; height: auto; max-height: 72px; object-fit: contain; object-position: left center; filter: drop-shadow(0 12px 25px rgba(0,0,0,.26)); }
.footer-about > p { max-width: 350px; margin: 22px 0 0; font-size: 12px; line-height: 1.75; }
.telefoncular-signature { position: relative; width: min(335px,100%); min-height: 86px; display: grid; grid-template-columns: minmax(0,1fr) 32px; align-items: center; gap: 15px; margin-top: 24px; padding: 15px 14px 15px 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(255,255,255,.035); box-shadow: none; overflow: hidden; transition: border-color .3s,background .3s; }
.telefoncular-signature::before { content: ""; position: absolute; width: 120px; height: 120px; right: -58px; bottom: -76px; border-radius: 50%; background: rgba(143,198,48,.13); filter: blur(2px); transition: transform .45s var(--ease),background .35s; }
.telefoncular-signature:hover { color: #fff; border-color: rgba(43,158,212,.26); background: rgba(255,255,255,.055); box-shadow: none; transform: none; }
.telefoncular-signature:hover::before { background: rgba(143,198,48,.2); transform: scale(1.16); }
.telefoncular-signature img { position: relative; z-index: 1; width: min(245px,100%); height: auto; object-fit: contain; object-position: left center; filter: drop-shadow(0 8px 18px rgba(0,0,0,.24)); transition: transform .35s var(--ease),filter .35s; }.telefoncular-signature:hover img { filter: drop-shadow(0 10px 22px rgba(0,0,0,.3)); transform: translateX(2px); }
.telefoncular-arrow { position: relative; z-index: 1; width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; color: var(--lime-bright); font-size: 13px; transition: transform .3s var(--ease),background .3s; }.telefoncular-signature:hover .telefoncular-arrow { background: rgba(143,198,48,.12); transform: translate(2px,-2px); }
.footer-store-links { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 22px; }
.footer-store-links a { display: block; border-radius: 8px; transition: transform .25s var(--ease), opacity .25s; }
.footer-store-links a:hover { opacity: .88; transform: translateY(-2px); }
.footer-store-links img { width: auto; height: 40px; }
.footer-column { display: flex; flex-direction: column; gap: 10px; font-size: 11px; }.footer-column h3 { margin: 0 0 10px; color: #fff; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }.footer-column a { transition: color .2s; }.footer-column a:hover { color: #fff; }.footer-column p { margin: 0 0 5px; line-height: 1.75; }
.footer-legal-center { display: grid; grid-template-columns: minmax(260px,.72fr) minmax(540px,1.28fr); gap: 54px; margin-bottom: 42px; padding: 38px; border: 1px solid rgba(255,255,255,.08); border-radius: 18px; background: rgba(255,255,255,.025); box-shadow: none; }
.footer-legal-intro > p { display: flex; align-items: center; gap: 9px; margin: 0 0 15px; color: #67c8f5; font-size: 8px; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }.footer-legal-intro > p::before { content: ""; width: 24px; height: 2px; background: linear-gradient(90deg,var(--blue-bright),var(--lime-bright)); }
.footer-legal-intro h2 { margin: 0; color: #fff; font-size: clamp(2rem,3.2vw,3.4rem); font-weight: 850; letter-spacing: -.055em; line-height: .95; }.footer-legal-intro > span { display: block; max-width: 410px; margin-top: 18px; color: #8296a7; font-size: 11px; line-height: 1.7; }
.footer-legal-intro > a { display: inline-grid; gap: 4px; margin-top: 24px; color: #fff; font-size: 11px; font-weight: 750; }.footer-legal-intro > a small { color: #60788a; font-size: 7px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.footer-legal-links { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }.footer-legal-links a { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 10px; min-height: 60px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.085); border-radius: 15px; background: rgba(255,255,255,.03); transition: border-color .25s,background .25s,transform .25s var(--ease); }.footer-legal-links a:last-child { grid-column: 1 / -1; }.footer-legal-links a:hover { color: #fff; border-color: rgba(143,198,48,.28); background: rgba(255,255,255,.065); transform: translateY(-2px); }.footer-legal-links span { color: #597184; font-size: 8px; font-weight: 850; }.footer-legal-links strong { color: #b8c6d1; font-size: 10px; line-height: 1.35; }.footer-legal-links b { color: var(--lime-bright); font-size: 16px; transition: transform .25s; }.footer-legal-links a:hover b { transform: translate(2px,-2px); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); color: #5e7385; font-size: 9px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }.footer-bottom div { display: flex; gap: 20px; }.footer-legal-mini { flex-wrap: wrap; justify-content: flex-end; }.footer-legal-mini a { position: relative; white-space: nowrap; transition: color .22s; }.footer-legal-mini a:hover { color: #dce7ed; }.footer-legal-mini a + a::before { content: ""; position: absolute; width: 2px; height: 2px; top: 50%; left: -11px; border-radius: 50%; background: #7ea72e; }

/* In-page legal center */
body.legal-modal-open { overflow: hidden; }
.legal-modal { position: fixed; z-index: 1400; inset: 0; display: grid; place-items: center; padding: 16px; opacity: 0; visibility: hidden; transition: opacity .3s,visibility .3s; }.legal-modal[hidden] { display: none; }.legal-modal.is-open { opacity: 1; visibility: visible; }
.legal-modal-backdrop { position: absolute; inset: 0; background: rgba(2,9,16,.82); backdrop-filter: blur(17px) saturate(115%); }
.legal-modal-panel { position: relative; width: min(1280px,100%); height: min(850px,calc(100vh - 32px)); display: grid; grid-template-columns: 290px minmax(0,1fr); overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 32px; color: #fff; background: #071521; box-shadow: 0 50px 150px rgba(0,0,0,.58); opacity: 0; transform: translateY(24px) scale(.98); transition: opacity .34s,transform .5s var(--ease); }.legal-modal.is-open .legal-modal-panel { opacity: 1; transform: none; }
.legal-modal-close { position: absolute; z-index: 5; top: 17px; right: 17px; width: 46px; height: 46px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(7,28,44,.12); border-radius: 50%; color: #0b2235; background: rgba(255,255,255,.88); backdrop-filter: blur(12px); font-size: 22px; cursor: pointer; transition: transform .25s var(--ease),background .25s; }.legal-modal-close span { position: absolute; right: 52px; color: #738696; font-size: 7px; font-weight: 850; letter-spacing: .14em; }.legal-modal-close:hover { background: #fff; transform: rotate(7deg); }
.legal-modal-sidebar { display: flex; flex-direction: column; min-height: 0; padding: 32px 24px 25px; border-right: 1px solid rgba(255,255,255,.08); background: linear-gradient(160deg,#06111f,#0a2232); }.legal-modal-brand { width: 205px; display: block; }.legal-modal-brand img { width: 100%; height: auto; filter: drop-shadow(0 10px 20px rgba(0,0,0,.25)); }.legal-modal-sidebar > p { margin: 45px 0 13px; color: #647b8e; font-size: 8px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.legal-modal-sidebar nav { display: grid; gap: 6px; }.legal-modal-sidebar button { width: 100%; display: grid; grid-template-columns: 27px 1fr; align-items: center; gap: 9px; padding: 12px; border: 1px solid transparent; border-radius: 13px; color: #8da1b1; background: transparent; font-size: 10px; font-weight: 720; line-height: 1.35; text-align: left; cursor: pointer; transition: color .22s,border-color .22s,background .22s; }.legal-modal-sidebar button span { color: #4f687b; font-size: 7px; font-weight: 850; }.legal-modal-sidebar button:hover,.legal-modal-sidebar button.is-active { color: #fff; border-color: rgba(255,255,255,.1); background: rgba(255,255,255,.06); }.legal-modal-sidebar button.is-active span { color: var(--lime-bright); }
.legal-modal-email { display: grid; gap: 5px; margin-top: auto; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.08); color: #d9e4eb; font-size: 10px; font-weight: 750; }.legal-modal-email small { color: #5f788b; font-size: 7px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.legal-modal-document { min-width: 0; overflow-y: auto; color: #172b3d; background: #f6f9fb; scrollbar-width: thin; scrollbar-color: #b8c5cf transparent; }.legal-modal-document > header { position: sticky; z-index: 3; top: 0; padding: 48px 64px 28px; border-bottom: 1px solid rgba(9,34,54,.09); background: rgba(246,249,251,.91); backdrop-filter: blur(18px); }.legal-modal-document > header p { margin: 0 0 13px; color: #168fe2; font-size: 8px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }.legal-modal-document > header h2 { max-width: 760px; margin: 0; color: #071827; font-size: clamp(2.5rem,4vw,4.6rem); font-weight: 850; letter-spacing: -.06em; line-height: .93; }.legal-modal-document > header span { display: block; margin-top: 15px; color: #768998; font-size: 9px; font-weight: 750; }
.legal-modal-document article { max-width: 900px; padding: 36px 64px 70px; }.legal-modal-document article h3 { margin: 38px 0 14px; padding-top: 5px; color: #09223a; font-size: 19px; letter-spacing: -.025em; }.legal-modal-document article h3:first-child { margin-top: 0; }.legal-modal-document article p { margin: 0 0 17px; color: #526879; font-size: 13px; line-height: 1.85; }.legal-modal-document article ul { display: grid; gap: 9px; margin: 0 0 22px; padding: 0; list-style: none; }.legal-modal-document article li { position: relative; padding-left: 20px; color: #526879; font-size: 13px; line-height: 1.7; }.legal-modal-document article li::before { content: ""; position: absolute; width: 6px; height: 6px; top: .72em; left: 0; border-radius: 50%; background: linear-gradient(135deg,var(--blue),var(--lime)); box-shadow: 0 0 0 4px rgba(22,143,226,.07); }.legal-document-loading { opacity: .55; }

/* Responsive */
@media (max-width: 1100px) {
  .nav-links { gap: 16px; }.nav-links a { font-size: 12px; }.nav-cta { display: none; }
  .hero-layout { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 24px; }.hero h1 { font-size: clamp(3.65rem, 6.7vw, 4.75rem); }.hero-visual { min-height: 520px; }.stage { width: min(670px, 108%); }.data-card { min-width: 148px; }.data-card-one { left: 16%; }.data-card-two { right: 1%; }
  .solution-showcase { grid-template-columns: minmax(300px,.8fr) minmax(430px,1.2fr); gap: 28px; padding: 42px 38px 28px; }.solution-slide h3 { font-size: clamp(2.5rem,4.4vw,3.9rem); }.solution-stage { min-height: 470px; }.solution-orbit { width: 430px; height: 430px; }
  .solution-modal-main { grid-template-columns: minmax(310px,.85fr) minmax(420px,1.15fr); gap: 24px; padding-inline: 42px; }.solution-modal-lower { grid-template-columns: 1fr 1fr; }.solution-modal-outcome { grid-column: 1 / -1; min-height: 150px; }
  .platform-grid { gap: 45px; }.product-scene { min-height: 500px; }
  .contact-card { grid-template-columns: 1fr; }.contact-actions { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 32px, 720px); }
  .site-header { --header-width: calc(100% - 16px) !important; --header-height: 62px !important; --header-top: 10px !important; --header-logo: 39px !important; --header-pad: 14px !important; }.nav-shell, .is-scrolled .nav-shell { height: var(--header-height); }
  .menu-button { position: relative; display: grid; place-items: center; margin-left: auto; }
  .nav-links { position: absolute; top: calc(100% + 8px); right: 16px; left: 16px; display: grid; gap: 0; padding: 12px; border: 1px solid rgba(255,255,255,.75); border-radius: 20px; background: rgba(250,252,254,.97); box-shadow: 0 25px 60px rgba(5,22,39,.18); visibility: hidden; opacity: 0; transform: translateY(-10px); transition: opacity .25s, transform .25s, visibility .25s; }
  .nav-links.is-open { visibility: visible; opacity: 1; transform: none; }
  .nav-links a { padding: 12px 11px; border-radius: 10px; }.nav-links a:hover, .nav-links a.is-active { background: #edf3f7; }.nav-links a::after { display: none; }
  .hero { padding: 128px 0 28px; }.hero-layout { grid-template-columns: 1fr; gap: 16px; }.hero-copy { max-width: 650px; }.hero h1 { font-size: clamp(3.8rem, 12vw, 5.8rem); }.hero-visual { min-height: 550px; margin-top: -8px; }.stage { width: min(760px, 108%); }
  .section-header { grid-template-columns: 1fr; gap: 24px; }.section-header > p { max-width: 650px; }
  .solution-showcase { grid-template-columns: 1fr; gap: 8px; padding: 42px 34px 26px; }.solution-content { min-height: 390px; }.solution-slide > p:not(.solution-kicker) { max-width: 610px; }.solution-stage { min-height: 460px; }.solution-visual { inset: 0 -2% 5%; }.solution-controls { grid-template-columns: 1fr; }.solution-nav { justify-content: space-between; }.solution-progress { flex: 1; width: auto; }
  .solution-modal-main { grid-template-columns: 1fr; gap: 10px; padding: 58px 34px 22px; }.solution-modal-copy h2 { max-width: 650px; }.solution-modal-copy > p:not(.solution-modal-kicker) { max-width: 650px; }.solution-modal-visual { min-height: 360px; }.solution-modal-lower { grid-template-columns: 1fr; padding: 22px; }.solution-modal-outcome { grid-column: auto; min-height: 180px; }
  .platform-grid, .approach-layout, .corporate-grid { grid-template-columns: 1fr; }.feature-stack { max-width: 650px; margin-inline: auto; }.approach-copy { position: static; }.process-list { grid-template-columns: repeat(3,1fr); }.process-card { min-height: 290px; }.process-card h3 { margin-top: 42px; }
  .corporate-grid { gap: 60px; }.metric-panel { min-height: 470px; }
  .footer-grid { grid-template-columns: 1.2fr repeat(2,1fr); }.footer-column:last-child { grid-column: 2; }
  .footer-legal-center { grid-template-columns: 1fr; gap: 30px; }.legal-modal-panel { grid-template-columns: 235px minmax(0,1fr); }.legal-modal-sidebar { padding-inline: 17px; }.legal-modal-brand { width: 175px; }.legal-modal-document > header { padding-inline: 38px; }.legal-modal-document article { padding-inline: 38px; }
}

@media (max-width: 620px) {
  .container { width: calc(100% - 28px); }
  .brand img { width: 39px; height: 39px; }.brand strong { font-size: 12px; }
  .hero { padding-top: 112px; }.hero h1 { margin-bottom: 34px; font-size: clamp(3.05rem, 14.5vw, 4.5rem); line-height: .98; }.hero-lead { font-size: 14px; }.hero-actions .button { width: 100%; }.hero-proof { gap: 18px; }.hero-proof span { width: calc(33.33% - 12px); }
  .hero-visual { min-height: 410px; margin-top: 0; }.orbit-outer { width: 400px; height: 400px; }.orbit-inner { width: 295px; height: 295px; }.stage { width: 118%; }.data-card { min-width: 132px; padding: 9px 11px; border-radius: 14px; }.data-card small { font-size: 7px; }.data-card strong { font-size: 10px; }.data-card-one { top: 13%; left: 14%; }.data-card-two { top: 30%; right: 4%; }.data-card-three { right: 9%; bottom: 8%; }
  .solutions, .approach, .corporate, .platform { padding: 88px 0; }.section-header { margin-bottom: 35px; }.section-header h2, .approach-copy h2, .corporate-copy h2, .contact-copy h2 { font-size: clamp(2.75rem, 14vw, 4.3rem); }
  .solution-showcase { min-height: 0; padding: 30px 20px 22px; border-radius: 27px; }.solution-content { min-height: 430px; }.solution-slide h3 { font-size: clamp(2.35rem,11vw,3.5rem); }.solution-slide > p:not(.solution-kicker) { font-size: 13px; line-height: 1.72; }.solution-tags { margin-top: 22px; }.solution-tags span { padding: 7px 9px; font-size: 8px; }.solution-stage { min-height: 335px; margin-inline: -16px; }.solution-orbit { width: 310px; height: 310px; }.solution-visual { inset: -2% -7% 6%; }.solution-visual img { max-height: 335px; }.solution-screen-label { right: 4%; bottom: 0; left: 4%; padding: 10px 11px; font-size: 7px; }.solution-tabs { margin-inline: -5px; }.solution-tab { padding: 8px 9px; }.solution-controls { gap: 16px; }.solution-nav button { width: 36px; height: 36px; }
  .solution-modal { padding: 7px; }.solution-modal-panel { max-height: calc(100vh - 14px); border-radius: 24px; }.solution-modal-close { top: 10px; width: 42px; height: 42px; margin: 10px 10px -52px 0; }.solution-modal-close span { display: none; }.solution-modal-main { padding: 54px 20px 12px; }.solution-modal-kicker { margin-bottom: 18px; }.solution-modal-copy h2 { font-size: clamp(2.7rem,13vw,4.2rem); }.solution-modal-copy > p:not(.solution-modal-kicker) { margin-top: 20px; font-size: 12px; }.solution-modal-metrics { margin-top: 21px; }.solution-modal-metrics span { min-width: calc(50% - 5px); }.solution-modal-visual { min-height: 285px; margin-inline: -12px; }.solution-modal-visual img { max-height: 300px; }.solution-modal-orbit { width: 275px; height: 275px; }.solution-modal-status { right: 5%; bottom: 1%; }.solution-modal-lower { padding: 15px; }.solution-detail-block,.solution-modal-outcome { padding: 18px; border-radius: 17px; }.solution-detail-features { grid-template-columns: 1fr; }.solution-detail-features article { min-height: 66px; }.solution-modal-outcome strong { font-size: 15px; }
  .platform-grid { gap: 20px; }.product-scene { min-height: 385px; }.product-frame { width: 110%; transform: rotateY(4deg) rotateX(1deg); }.product-halo { width: 350px; height: 350px; }.platform-badge { right: -5px; bottom: 5%; min-width: 155px; }.feature-item { padding: 14px; }
  .mobile-frame { width: 118%; }.mobile-frame img { max-height: 430px; }
  .process-list { grid-template-columns: 1fr; }.process-card { min-height: 230px; }
  .metric-panel { min-height: 430px; padding: 15px; }.metric-panel > div:not(.metric-orbit) { padding: 15px; }.metric-panel strong { font-size: 2.7rem; }.metric-panel span { font-size: 8px; }
  .references { padding: 82px 0 76px; }.reference-heading { display: block; }.reference-heading h2 { margin-top: 22px; text-align: left; }.logo-showcase { mask-image: linear-gradient(90deg,transparent,#000 3%,#000 97%,transparent); }.logo-card { width: 190px; height: 96px; padding: 16px 20px; border-radius: 19px; }.logo-card img { max-height: 54px; }.logo-rail-secondary { transform: translateX(-45px); }.reference-foot { align-items: flex-start; flex-direction: column; }.reference-foot a { min-width: 0; }
  .contact { padding: 70px 0 85px; }.contact-card { min-height: 600px; padding: 34px 23px; border-radius: 27px; }.contact-actions { grid-template-columns: 1fr; }.contact-link strong { font-size: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 25px; }.footer-about { grid-column: 1 / -1; }.brand-footer { width: min(330px,100%); }.footer-column:last-child { grid-column: auto; }.footer-bottom { align-items: flex-start; flex-direction: column; }.footer-legal-mini { justify-content: flex-start; gap: 12px 20px!important; }
  .footer-legal-center { margin-inline: -2px; padding: 25px 20px; border-radius: 22px; }.footer-legal-links { grid-template-columns: 1fr; }.footer-legal-links a:last-child { grid-column: auto; }.legal-modal { padding: 6px; }.legal-modal-panel { height: calc(100vh - 12px); grid-template-columns: 1fr; grid-template-rows: auto minmax(0,1fr); border-radius: 23px; }.legal-modal-close { top: 10px; right: 10px; width: 40px; height: 40px; }.legal-modal-close span { display: none; }.legal-modal-sidebar { display: block; padding: 18px 56px 13px 17px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }.legal-modal-brand { width: 145px; }.legal-modal-sidebar > p,.legal-modal-email { display: none; }.legal-modal-sidebar nav { display: flex; gap: 5px; margin-top: 14px; overflow-x: auto; scrollbar-width: none; }.legal-modal-sidebar nav::-webkit-scrollbar { display: none; }.legal-modal-sidebar button { min-width: max-content; grid-template-columns: auto 1fr; padding: 9px 10px; font-size: 8px; }.legal-modal-document > header { padding: 26px 21px 20px; }.legal-modal-document > header h2 { padding-right: 36px; font-size: clamp(2.25rem,11vw,3.4rem); }.legal-modal-document article { padding: 25px 21px 55px; }.legal-modal-document article h3 { font-size: 17px; }.legal-modal-document article p,.legal-modal-document article li { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .cursor-light { display: none; }
}

/* Products catalog and product detail pages */
[hidden] { display: none !important; }
.products-page { min-height: 100vh; color: #10283d; background: #f3f7fa; }
.catalog-container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.catalog-header { position: sticky; z-index: 100; top: 16px; width: min(1220px, calc(100% - 32px)); height: 70px; display: flex; align-items: center; gap: 30px; margin: 16px auto -86px; padding: 8px 12px 8px 18px; border: 1px solid rgba(255,255,255,.85); border-radius: 23px; background: rgba(248,251,253,.9); box-shadow: 0 18px 55px rgba(8,33,53,.14); backdrop-filter: blur(20px) saturate(125%); }
.catalog-brand { display: flex; align-items: center; gap: 10px; margin-right: auto; color: #0c2034; }.catalog-brand img { width: 42px; height: 42px; object-fit: contain; }.catalog-brand span { display: grid; }.catalog-brand strong { font-size: 13px; letter-spacing: .14em; }.catalog-brand small { color: #8797a5; font-size: 7px; font-weight: 750; letter-spacing: .17em; text-transform: uppercase; }
.catalog-header nav { display: flex; align-items: center; gap: 24px; }.catalog-header nav a { position: relative; color: #4d6072; font-size: 11px; font-weight: 780; }.catalog-header nav a::after { content: ""; position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; background: linear-gradient(90deg,#1593df,#91c62d); transform: scaleX(0); transition: transform .25s; }.catalog-header nav a:hover::after,.catalog-header nav a.is-active::after { transform: scaleX(1); }.catalog-header nav a.is-active { color: #0a2236; }
.catalog-cta { display: flex; align-items: center; gap: 14px; padding: 15px 19px; border-radius: 17px; color: #fff; background: #071522; font-size: 11px; font-weight: 820; box-shadow: 0 10px 25px rgba(4,19,31,.16); }.catalog-cta span { color: #b7ed39; font-size: 16px; }
.catalog-hero { position: relative; min-height: 820px; display: flex; align-items: center; overflow: hidden; color: #fff; background: radial-gradient(circle at 85% 25%,rgba(20,139,218,.23),transparent 27%),radial-gradient(circle at 66% 100%,rgba(144,198,45,.12),transparent 30%),linear-gradient(135deg,#06111f,#0a2131); }
.catalog-hero-grid,.product-detail-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(90deg,transparent 5%,#000 45%,#000 90%,transparent); }
.catalog-hero-orbit { position: absolute; width: 620px; height: 620px; top: -150px; right: -70px; border: 1px solid rgba(45,165,229,.17); border-radius: 50%; }.catalog-hero-orbit::before,.catalog-hero-orbit::after { content: ""; position: absolute; border-radius: inherit; border: 1px solid rgba(255,255,255,.07); }.catalog-hero-orbit::before { inset: 18%; }.catalog-hero-orbit::after { inset: 37%; border-color: rgba(144,198,45,.2); }.catalog-hero-orbit i { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: #a7dd32; box-shadow: 0 0 20px rgba(167,221,50,.7); }.catalog-hero-orbit i:nth-child(1) { top: 26%; left: 3%; }.catalog-hero-orbit i:nth-child(2) { top: 65%; left: 13%; }.catalog-hero-orbit i:nth-child(3) { right: 21%; bottom: 7%; background: #3db5ee; }
.catalog-hero-content { position: relative; z-index: 2; padding-top: 170px; padding-bottom: 72px; }.catalog-hero-content > p { display: flex; align-items: center; gap: 10px; margin: 0 0 27px; color: #66c8f6; font-size: 9px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }.catalog-hero-content > p i { width: 28px; height: 2px; background: linear-gradient(90deg,#2db2ed,#b0e637); }.catalog-hero-content > p span { margin-left: 12px; padding-left: 20px; border-left: 1px solid rgba(255,255,255,.13); color: #698195; }
.catalog-hero h1 { max-width: 1040px; margin: 0; font-size: clamp(4rem,7vw,7.3rem); font-weight: 850; letter-spacing: -.075em; line-height: .88; }.catalog-hero h1 em { color: transparent; background: linear-gradient(90deg,#68c8f5 0%,#dcf8e1 45%,#b4eb38 100%); background-clip: text; font-style: normal; }
.catalog-hero-bottom { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-top: 40px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); }.catalog-hero-bottom > span { max-width: 660px; color: #91a5b5; font-size: 14px; line-height: 1.8; }.catalog-hero-bottom a { min-width: 205px; display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.2); color: #fff; font-size: 11px; font-weight: 820; text-transform: uppercase; }.catalog-hero-bottom b { color: #b1e83a; }
.catalog-index { position: sticky; z-index: 50; top: 98px; border-bottom: 1px solid #dce5eb; background: rgba(245,248,250,.9); backdrop-filter: blur(17px); }.catalog-index .catalog-container { display: grid; grid-template-columns: repeat(4,1fr); }.catalog-index a { display: flex; align-items: center; gap: 13px; padding: 19px 16px; border-right: 1px solid #dce5eb; color: #496074; font-size: 10px; font-weight: 820; text-transform: uppercase; }.catalog-index a:first-child { border-left: 1px solid #dce5eb; }.catalog-index span { color: #1995db; font-size: 8px; }
.catalog-group { padding: 105px 0 115px; scroll-margin-top: 155px; background: #f5f8fa; }.catalog-group:nth-child(even) { background: #edf3f6; }.catalog-group-heading { display: grid; grid-template-columns: 55px minmax(280px,.8fr) 1fr; align-items: end; gap: 30px; margin-bottom: 50px; }.catalog-group-heading > span { color: #188ed4; font-size: 11px; font-weight: 850; }.catalog-group-heading div p { margin: 0 0 8px; color: #7990a2; font-size: 8px; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }.catalog-group-heading h2 { margin: 0; color: #081c2d; font-size: clamp(2.5rem,4vw,4.5rem); letter-spacing: -.06em; line-height: .94; }.catalog-group-heading > p { max-width: 520px; justify-self: end; margin: 0; color: #62788a; font-size: 13px; line-height: 1.75; }
.product-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }.product-card { position: relative; min-height: 540px; display: flex; flex-direction: column; padding: 23px; overflow: hidden; border: 1px solid #dbe4ea; border-radius: 25px; color: #102a3e; background: rgba(255,255,255,.82); box-shadow: 0 12px 34px rgba(9,36,56,.045); transition: transform .45s var(--ease),box-shadow .45s,border-color .3s; }.product-card:hover { color: #102a3e; border-color: rgba(24,145,213,.35); box-shadow: 0 28px 65px rgba(8,34,54,.13); transform: translateY(-7px); }.product-card-top { display: flex; justify-content: space-between; color: #7990a1; font-size: 9px; font-weight: 850; }.product-card-top b { width: 30px; height: 30px; display: grid; place-items: center; margin-top: -8px; border: 1px solid #dce5eb; border-radius: 50%; color: #168ed7; font-size: 14px; transition: transform .3s,background .3s; }.product-card:hover .product-card-top b { color: #fff; background: #0a2133; transform: translate(2px,-2px); }
.product-card-visual { position: relative; height: 150px; margin: 20px 0 25px; overflow: hidden; border-radius: 17px; background: radial-gradient(circle at 80% 10%,rgba(159,218,46,.18),transparent 25%),linear-gradient(145deg,#071624,#0c2d43); }.product-card-visual::after { content: ""; position: absolute; width: 180px; height: 180px; right: -55px; bottom: -85px; border: 1px solid rgba(66,180,235,.25); border-radius: 50%; }.product-card-window { position: absolute; top: 31px; right: 28px; left: 28px; height: 100px; padding: 13px 14px; border: 1px solid rgba(255,255,255,.19); border-radius: 11px; background: rgba(241,248,251,.94); box-shadow: 0 19px 35px rgba(0,0,0,.25); transform: perspective(500px) rotateX(4deg) rotateY(-6deg); }.product-card-window i { display: inline-block; width: 5px; height: 5px; margin-right: 3px; border-radius: 50%; background: #91c52f; }.product-card-window i:nth-child(2) { background: #22a1e2; }.product-card-window i:nth-child(3) { background: #c9d3da; }.product-card-window span,.product-card-window strong { display: block; }.product-card-window span { margin-top: 13px; color: #708599; font-size: 7px; font-weight: 800; text-transform: uppercase; }.product-card-window strong { margin-top: 4px; color: #0b2a44; font-size: 12px; }.product-card-visual > em { position: absolute; z-index: 2; top: 13px; right: 13px; color: rgba(255,255,255,.38); font-size: 8px; font-style: normal; font-weight: 850; }
.product-card > p { margin: 0 0 7px; color: #168ed5; font-size: 8px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }.product-card h3 { margin: 0; font-size: 24px; letter-spacing: -.04em; }.product-card-copy { margin-top: 13px; color: #65798a; font-size: 11px; line-height: 1.7; }.product-card ul { display: flex; flex-wrap: wrap; gap: 6px; margin: 18px 0 0; padding: 0; list-style: none; }.product-card li { padding: 6px 8px; border: 1px solid #dbe5ea; border-radius: 99px; color: #52697a; font-size: 7px; font-weight: 800; }.product-card footer { display: flex; justify-content: space-between; margin-top: auto; padding-top: 19px; border-top: 1px solid #e0e7ec; color: #132c40; font-size: 9px; font-weight: 850; text-transform: uppercase; }.product-card footer span { color: #8fc530; font-size: 14px; }
.catalog-contact { color: #fff; background: #071522; }.catalog-contact .catalog-container { position: relative; min-height: 440px; display: grid; align-content: center; padding-block: 65px; }.catalog-contact .catalog-container::after { content: ""; position: absolute; width: 430px; height: 430px; right: 2%; top: 5px; border: 1px solid rgba(45,170,231,.15); border-radius: 50%; box-shadow: inset 0 0 0 80px rgba(255,255,255,.012); }.catalog-contact p { margin: 0 0 14px; color: #63c7f5; font-size: 8px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }.catalog-contact h2 { position: relative; z-index: 2; margin: 0; font-size: clamp(3rem,5.6vw,6rem); letter-spacing: -.065em; line-height: .91; }.catalog-contact a { position: relative; z-index: 2; width: max-content; display: flex; gap: 28px; margin-top: 32px; padding: 16px 21px; border-radius: 15px; color: #071522; background: #b2e83a; font-size: 10px; font-weight: 850; text-transform: uppercase; }
.catalog-footer { padding: 24px 0; color: #63798a; background: #050d16; font-size: 8px; font-weight: 750; text-transform: uppercase; }.catalog-footer .catalog-container,.catalog-footer div div { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.product-detail-hero { position: relative; min-height: 760px; overflow: hidden; color: #fff; background: radial-gradient(circle at 82% 32%,rgba(24,148,211,.2),transparent 28%),linear-gradient(135deg,#06111f,#0a2131); }.product-detail-hero > .catalog-container { position: relative; z-index: 2; padding-top: 140px; padding-bottom: 70px; }.product-breadcrumb { display: flex; gap: 9px; margin-bottom: 38px; color: #71889b; font-size: 8px; font-weight: 800; text-transform: uppercase; }.product-breadcrumb a { color: #66c5f2; }.product-breadcrumb b { color: #95a7b5; }
.product-detail-layout { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 50px; }.product-detail-kicker { display: flex; align-items: center; gap: 9px; margin: 0 0 25px!important; color: #68c8f5!important; font-size: 8px!important; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }.product-detail-kicker i { width: 28px; height: 2px; background: linear-gradient(90deg,#2aaaea,#b1e83a); }.product-detail-copy h1 { max-width: 620px; margin: 0; font-size: clamp(3.4rem,5.8vw,6rem); letter-spacing: -.065em; line-height: .89; }.product-detail-copy h2 { margin: 16px 0 0; color: #b1e83a; font-size: 14px; letter-spacing: .04em; }.product-detail-copy > p:not(.product-detail-kicker) { max-width: 590px; margin: 26px 0 0; color: #9aafbe; font-size: 13px; line-height: 1.8; }.product-detail-copy ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 24px 0 0; padding: 0; list-style: none; }.product-detail-copy li { padding: 8px 10px; border: 1px solid rgba(255,255,255,.13); border-radius: 99px; color: #c8d4dc; font-size: 8px; font-weight: 780; }.product-detail-actions { display: flex; gap: 10px; margin-top: 29px; }.product-detail-actions a { display: flex; gap: 22px; padding: 14px 17px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; font-size: 9px; font-weight: 830; text-transform: uppercase; }.product-detail-actions a:first-child { border-color: #b1e83a; color: #071522; background: #b1e83a; }
.product-detail-scene { position: relative; min-height: 460px; display: grid; place-items: center; perspective: 1100px; }.product-scene-orbit { position: absolute; width: 470px; height: 470px; border: 1px solid rgba(47,173,231,.18); border-radius: 50%; }.product-scene-orbit::before { content: ""; position: absolute; inset: 17%; border: 1px dashed rgba(144,198,47,.19); border-radius: 50%; }.product-scene-orbit i { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #a6db34; }.product-scene-orbit i:first-child { top: 8%; left: 23%; }.product-scene-orbit i:last-child { right: 2%; bottom: 31%; background: #35afe9; }
.product-detail-image { position: relative; z-index: 2; width: min(760px,115%); max-height: 550px; object-fit: contain; image-rendering: auto; filter: drop-shadow(0 30px 34px rgba(0,0,0,.34)); transform: none; }.product-ui-mock { position: relative; z-index: 2; width: min(650px,100%); min-height: 365px; display: grid; grid-template: 42px 1fr / 58px 1fr; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; color: #17344b; background: #eef4f7; box-shadow: 0 38px 70px rgba(0,0,0,.36); transform: rotateY(-7deg) rotateX(2deg); }.product-ui-mock header { grid-column: 1/-1; display: flex; align-items: center; gap: 5px; padding: 0 14px; color: #fff; background: #0b3154; }.product-ui-mock header span { width: 6px; height: 6px; border-radius: 50%; background: #79c3e8; }.product-ui-mock header b { margin-left: 12px; font-size: 8px; }.product-ui-mock header em { margin-left: auto; padding: 5px 7px; border-radius: 8px; color: #c9f273; background: rgba(167,218,55,.11); font-size: 6px; font-style: normal; text-transform: uppercase; }.product-ui-mock aside { display: grid; align-content: start; gap: 12px; padding: 17px; background: #0d2840; }.product-ui-mock aside i { width: 22px; height: 5px; border-radius: 4px; background: rgba(255,255,255,.18); }.product-ui-mock section { padding: 18px; }.mock-toolbar { display: flex; align-items: center; justify-content: space-between; }.mock-toolbar strong { font-size: 11px; }.mock-toolbar button { border: 0; border-radius: 7px; padding: 7px 9px; color: #fff; background: #178dd5; font-size: 6px; }.mock-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin-top: 14px; }.mock-metrics i { height: 42px; border: 1px solid #d7e1e7; border-radius: 8px; background: #fff; }.mock-chart { height: 90px; display: flex; align-items: end; gap: 8px; margin-top: 10px; padding: 13px; border: 1px solid #d7e1e7; border-radius: 9px; background: #fff; }.mock-chart span { flex: 1; height: 35%; border-radius: 3px 3px 0 0; background: linear-gradient(#36a8e4,#1765a6); }.mock-chart span:nth-child(2) { height: 58%; }.mock-chart span:nth-child(3) { height: 42%; }.mock-chart span:nth-child(4) { height: 76%; }.mock-chart span:nth-child(5) { height: 61%; }.mock-chart span:nth-child(6) { height: 88%; background: linear-gradient(#b0e33d,#6c9d1a); }.mock-table { margin-top: 10px; border: 1px solid #d7e1e7; border-radius: 8px; background: #fff; }.mock-table p { display: grid; grid-template-columns: 28px 1fr auto; gap: 10px; margin: 0; padding: 8px 10px; border-bottom: 1px solid #e5ecef; font-size: 6px; }.mock-table p:last-child { border: 0; }.mock-table b { color: #168bd0; }.mock-table em { color: #699326; font-style: normal; }.product-scene-label { position: absolute; z-index: 3; right: 4%; bottom: 6%; min-width: 180px; display: grid; padding: 13px 15px; border: 1px solid rgba(255,255,255,.15); border-radius: 14px; color: #fff; background: rgba(8,27,41,.82); backdrop-filter: blur(15px); }.product-scene-label span { color: #698297; font-size: 7px; font-weight: 850; }.product-scene-label strong { margin-top: 4px; font-size: 10px; }
.product-benefits { padding: 100px 0; background: #f4f7f9; }.detail-section-label { margin: 0 0 30px; color: #168fd7; font-size: 8px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }.product-benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }.product-benefit-grid article { min-height: 255px; padding: 28px; border: 1px solid #dbe4e9; border-radius: 23px; background: #fff; }.product-benefit-grid span { color: #95c92f; font-size: 9px; font-weight: 850; }.product-benefit-grid h3 { margin: 55px 0 13px; color: #0a2236; font-size: 22px; letter-spacing: -.035em; }.product-benefit-grid p { margin: 0; color: #687e8f; font-size: 11px; line-height: 1.7; }
.product-process { padding: 110px 0; color: #fff; background: #081724; }.product-process-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }.product-process h2 { margin: 0; font-size: clamp(3rem,5vw,5rem); letter-spacing: -.065em; line-height: .92; }.product-process h2 em { color: #b0e43b; font-style: normal; }.product-process ol { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }.product-process li { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.1); }.product-process li > span { color: #59bce9; font-size: 8px; font-weight: 850; }.product-process h3 { margin: 0 0 8px; font-size: 18px; }.product-process li p { margin: 0; color: #8298a8; font-size: 11px; line-height: 1.7; }
.related-products { padding: 100px 0; background: #edf3f6; }.related-products header { display: flex; align-items: end; justify-content: space-between; margin-bottom: 35px; }.related-products h2 { margin: 0; color: #0a2236; font-size: clamp(2.8rem,4vw,4.5rem); letter-spacing: -.06em; }.related-products .catalog-container > div { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; }.related-products a { min-height: 210px; display: flex; flex-direction: column; padding: 24px; border: 1px solid #d9e3e9; border-radius: 22px; color: #142d41; background: #fff; transition: transform .3s,box-shadow .3s; }.related-products a:hover { color: #142d41; box-shadow: 0 20px 50px rgba(8,34,54,.1); transform: translateY(-5px); }.related-products a > span { color: #168ed5; font-size: 8px; font-weight: 850; }.related-products a p { margin: 38px 0 6px; color: #718798; font-size: 8px; font-weight: 800; text-transform: uppercase; }.related-products a h3 { margin: 0; font-size: 20px; }.related-products a b { margin-top: auto; color: #729e22; font-size: 8px; text-transform: uppercase; }

@media (max-width: 1000px) {
  .catalog-header nav { display: none; }.catalog-hero { min-height: 650px; }.catalog-index { top: 96px; }.product-card-grid { grid-template-columns: repeat(2,1fr); }.catalog-group-heading { grid-template-columns: 45px 1fr; }.catalog-group-heading > p { grid-column: 2; justify-self: start; }.product-detail-layout { grid-template-columns: 1fr; }.product-detail-copy { max-width: 760px; }.product-detail-scene { min-height: 430px; }.product-process-layout { gap: 45px; }
}
@media (max-width: 720px) {
  .catalog-container { width: calc(100% - 28px); }.catalog-header { top: 8px; width: calc(100% - 16px); height: 62px; margin-top: 8px; margin-bottom: -70px; padding-left: 12px; }.catalog-brand img { width: 38px; height: 38px; }.catalog-brand strong { font-size: 11px; }.catalog-cta { padding: 12px 13px; font-size: 8px; }.catalog-hero { min-height: 590px; }.catalog-hero-content { padding-bottom: 55px; }.catalog-hero h1 { font-size: clamp(3.2rem,15vw,5rem); }.catalog-hero-bottom { align-items: start; flex-direction: column; gap: 15px; }.catalog-hero-bottom > span { font-size: 12px; }.catalog-index { position: relative; top: auto; overflow-x: auto; }.catalog-index .catalog-container { width: max-content; min-width: 100%; grid-template-columns: repeat(4,minmax(160px,1fr)); }.catalog-index a { padding: 16px 13px; }.catalog-group { padding: 75px 0 80px; }.catalog-group-heading { grid-template-columns: 30px 1fr; gap: 18px; }.catalog-group-heading > p { font-size: 12px; }.product-card-grid { grid-template-columns: 1fr; }.product-card { min-height: 510px; }.catalog-contact .catalog-container { min-height: 390px; }.catalog-contact h2 { font-size: clamp(3.1rem,13vw,4.7rem); }.catalog-contact .catalog-container::after { width: 300px; height: 300px; right: -100px; }.catalog-footer .catalog-container { align-items: flex-start; flex-direction: column; }
  .product-detail-hero > .catalog-container { padding-top: 105px; }.product-detail-layout { gap: 30px; }.product-detail-copy h1 { font-size: clamp(3rem,14vw,4.8rem); }.product-detail-actions { flex-direction: column; }.product-detail-actions a { justify-content: space-between; }.product-detail-scene { min-height: 330px; }.product-scene-orbit { width: 300px; height: 300px; }.product-detail-image { max-height: 330px; }.product-ui-mock { min-height: 280px; grid-template: 34px 1fr / 42px 1fr; }.product-ui-mock section { padding: 10px; }.mock-chart { height: 62px; }.product-scene-label { right: 0; bottom: 0; }.product-benefits { padding: 75px 0; }.product-benefit-grid,.product-process-layout,.related-products .catalog-container > div { grid-template-columns: 1fr; }.product-benefit-grid article { min-height: 205px; }.product-benefit-grid h3 { margin-top: 36px; }.product-process { padding: 80px 0; }.product-process-layout { gap: 40px; }.related-products { padding: 75px 0; }
}

/* Scroll-driven 3D ecosystem */
.home-ecosystem.ecosystem-3d { --eco-progress: 0; height: 270vh; padding: 0; color: #fff; background: #040b12; overflow: visible; isolation: isolate; }
.home-ecosystem.ecosystem-3d::before { display: none; }
.ecosystem-sticky { position: sticky; top: 0; height: 100vh; min-height: 680px; overflow: hidden; background: radial-gradient(circle at 78% 35%,rgba(22,143,226,.1),transparent 30%),linear-gradient(120deg,#050d15,#081a27 68%,#091923); perspective: 1500px; }
.ecosystem-space-grid { position: absolute; inset: 0; opacity: .46; background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(90deg,#000,transparent 78%); }
.ecosystem-glow { position: absolute; width: 680px; height: 680px; right: -170px; top: -170px; border: 1px solid rgba(46,176,234,.11); border-radius: 50%; box-shadow: inset 0 0 0 105px rgba(255,255,255,.01); opacity: .7; }
.ecosystem-stage { position: relative; height: 100%; perspective: 1500px; transform-style: preserve-3d; }
.ecosystem-story { position: absolute; z-index: 7; width: min(620px,48vw); top: 50%; left: 0; transform: translateY(-44%); transition: opacity .12s linear; will-change: transform,opacity; }
.ecosystem-story .section-label { color: #69c9f4; }.ecosystem-story h2 { margin: 0; font-size: clamp(4.2rem,7.2vw,7.6rem); font-weight: 850; letter-spacing: -.08em; line-height: .83; }.ecosystem-story h2 span { color: transparent; background: linear-gradient(90deg,#62b9df,#dbeaf0); background-clip: text; }.ecosystem-story > strong { display: block; margin-top: 9px; color: #8ec5dc; font-size: clamp(2.1rem,4.1vw,4.5rem); font-weight: 820; letter-spacing: -.06em; line-height: .92; }
.ecosystem-story > p:not(.section-label) { max-width: 510px; margin: 27px 0 0; color: #8ba0b0; font-size: 13px; line-height: 1.75; }.ecosystem-story > a { width: min(310px,100%); display: flex; align-items: center; justify-content: space-between; margin-top: 28px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.19); color: #fff; font-size: 9px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }.ecosystem-story > a b { color: #b1e63a; font-size: 15px; }
.ecosystem-wordmark { position: absolute; z-index: 3; width: min(760px,54vw); top: 24%; left: 50%; opacity: calc(.35 + var(--eco-progress) * .65); filter: drop-shadow(0 28px 45px rgba(0,0,0,.48)); transform-style: preserve-3d; will-change: transform; }.ecosystem-wordmark::before { content: ""; position: absolute; inset: -35% -18%; z-index: -1; border-radius: 50%; background: radial-gradient(circle,rgba(255,255,255,.11),transparent 62%); filter: blur(20px); }.ecosystem-wordmark img { width: 100%; height: auto; display: block; }
.ecosystem-deck { position: absolute; z-index: 5; inset: 0; transform-style: preserve-3d; pointer-events: none; }
.ecosystem-3d-card { position: absolute; width: clamp(250px,20vw,330px); height: clamp(330px,43vh,420px); top: 49%; left: 50%; display: flex; flex-direction: column; padding: 25px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; color: #fff; background: linear-gradient(145deg,rgba(17,42,58,.98),rgba(7,20,30,.98)); box-shadow: -18px 24px 52px rgba(0,0,0,.38); transform-origin: center; transform-style: preserve-3d; pointer-events: auto; will-change: transform,opacity; }
.ecosystem-3d-card::before { content: ""; position: absolute; width: 240px; height: 240px; top: -100px; right: -95px; border: 1px solid rgba(74,186,235,.27); border-radius: 50%; box-shadow: inset 0 0 0 50px rgba(143,198,48,.035); }.ecosystem-3d-card::after { content: "TF"; position: absolute; right: 16px; bottom: -25px; color: rgba(255,255,255,.035); font-size: 130px; font-weight: 900; letter-spacing: -.1em; }
.ecosystem-3d-card:nth-child(2) { background: linear-gradient(145deg,rgba(16,46,57,.98),rgba(7,20,28,.98)); }.ecosystem-3d-card:nth-child(3) { background: linear-gradient(145deg,rgba(18,39,66,.98),rgba(7,18,28,.98)); }.ecosystem-3d-card:nth-child(4) { background: linear-gradient(145deg,rgba(22,44,52,.98),rgba(7,20,28,.98)); }
.ecosystem-3d-card > span { position: relative; z-index: 2; color: #67c8f4; font-size: 8px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }.ecosystem-3d-card h3 { position: relative; z-index: 2; margin: auto 0 12px; font-size: clamp(2rem,2.55vw,3rem); letter-spacing: -.055em; line-height: .92; }.ecosystem-3d-card p { position: relative; z-index: 2; margin: 0; color: #93a7b5; font-size: 11px; line-height: 1.65; }.ecosystem-3d-card > b { position: relative; z-index: 2; width: 38px; height: 38px; display: grid; place-items: center; margin-top: 20px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: #b3e936; }
.ecosystem-scroll-cue { position: absolute; z-index: 8; right: 0; bottom: 28px; display: grid; grid-template-columns: auto 150px auto; align-items: center; gap: 13px; color: #668093; font-size: 7px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }.ecosystem-scroll-cue i { height: 1px; overflow: hidden; background: rgba(255,255,255,.14); }.ecosystem-scroll-cue i::after { content: ""; display: block; width: calc(var(--eco-progress) * 100%); height: 100%; background: linear-gradient(90deg,#2cafe9,#b0e63a); }.ecosystem-scroll-cue b { color: #9baeBB; font-size: 7px; }

/* Individual solution covers */
.product-cover { --cover-a:#168ed6; --cover-b:#8fc530; isolation: isolate; background: radial-gradient(circle at 85% 15%,color-mix(in srgb,var(--cover-b) 27%,transparent),transparent 33%),linear-gradient(145deg,#061524,#0a2d43); }
.product-cover::before { content: ""; position: absolute; z-index: 0; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px); background-size: 25px 25px; mask-image: linear-gradient(120deg,#000,transparent 75%); }.product-cover::after { z-index: 0; }
.product-cover-image { position: absolute; z-index: 1; inset: 7px; width: calc(100% - 14px); height: calc(100% - 14px); object-fit: cover; object-position: center; border-radius: 12px; image-rendering: auto; filter: saturate(1.04) contrast(1.03); }.product-cover-erp .product-cover-image,.product-cover-mobil .product-cover-image { object-fit: contain; filter: drop-shadow(0 15px 19px rgba(0,0,0,.35)); }
.product-cover-ui { position: absolute; z-index: 1; width: 80%; height: 76%; top: 15%; left: 10%; overflow: hidden; border: 1px solid rgba(255,255,255,.21); border-radius: 12px; color: #17354b; background: rgba(246,250,252,.96); box-shadow: 0 18px 30px rgba(0,0,0,.28); transform: perspective(500px) rotateY(-7deg) rotateX(3deg); }.product-cover-ui header { height: 24px; display: flex; align-items: center; gap: 4px; padding: 0 9px; color: #fff; background: color-mix(in srgb,var(--cover-a) 74%,#061b2d); }.product-cover-ui header i { width: 4px; height: 4px; border-radius: 50%; background: #b5e93e; }.product-cover-ui header b { margin-left: 5px; overflow: hidden; font-size: 6px; white-space: nowrap; text-overflow: ellipsis; }.product-cover-ui section { padding: 12px; }.product-cover-ui section > span { display: block; color: #718797; font-size: 5px; font-weight: 850; text-transform: uppercase; }.product-cover-ui section > strong { display: block; margin-top: 4px; color: #0a2a43; font-size: 10px; }.product-cover-ui section > div { height: 31px; display: flex; align-items: end; gap: 5px; margin-top: 9px; }.product-cover-ui section i { flex: 1; height: 42%; border-radius: 3px 3px 0 0; background: linear-gradient(var(--cover-a),color-mix(in srgb,var(--cover-a) 55%,#061b2d)); }.product-cover-ui section i:nth-child(2) { height: 76%; }.product-cover-ui section i:nth-child(3) { height: 58%; background: linear-gradient(var(--cover-b),color-mix(in srgb,var(--cover-b) 60%,#31510b)); }.product-cover > em { z-index: 3; }
.product-cover-crm,.product-cover-satis-yonetimi,.product-cover-satis-sonrasi-hizmet,.product-cover-bulut-musteri-memnuniyet-anketi { --cover-a:#2178d4; --cover-b:#38c0a4; }.product-cover-satinalma-yonetimi,.product-cover-e-mutabakat,.product-cover-kurumsal-raporlama,.product-cover-is-zekasi { --cover-a:#694fd2; --cover-b:#30a7df; }.product-cover-insan-kaynaklari,.product-cover-filo-yonetimi,.product-cover-yerlesim-analizi { --cover-a:#138f80; --cover-b:#a4d438; }.product-cover-kalite-yonetimi { --cover-a:#178ed1; --cover-b:#61bd78; }.product-cover-depo-yonetimi { --cover-a:#176eb4; --cover-b:#f0a42b; }.product-cover-maliyet-yonetimi { --cover-a:#265bb9; --cover-b:#db614f; }

@media (max-width: 860px) {
  .home-ecosystem.ecosystem-3d { height: auto; }.ecosystem-sticky { position: relative; height: auto; min-height: 0; padding: 110px 0 85px; }.ecosystem-stage { height: auto; }.ecosystem-story { position: relative; width: 100%; top: auto; left: auto; transform: none!important; opacity: 1!important; }.ecosystem-wordmark { position: relative; width: 100%; top: auto; left: auto; margin: 55px 0 30px; transform: none!important; opacity: 1; }.ecosystem-deck { position: relative; inset: auto; display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; perspective: none; }.ecosystem-3d-card { position: relative; width: auto; height: 310px; top: auto; left: auto; opacity: 1!important; transform: none!important; }.ecosystem-scroll-cue { display: none; }
}
@media (max-width: 620px) { .ecosystem-deck { grid-template-columns: 1fr; }.ecosystem-story h2 { font-size: clamp(3.5rem,16vw,5rem); }.ecosystem-story > strong { font-size: 2.55rem; }.ecosystem-3d-card { height: 285px; } }

@media (max-width: 1100px) {
  .ecosystem-heading { gap: 45px; }.ecosystem-grid { grid-template-columns: repeat(2,1fr); }.ecosystem-card { min-height: 350px; }
}
@media (max-width: 720px) {
  .home-ecosystem { padding: 84px 0 90px; }.ecosystem-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 38px; }.ecosystem-heading h2 { font-size: clamp(3.25rem,14vw,4.8rem); }.ecosystem-grid { grid-template-columns: 1fr; }.ecosystem-card { min-height: 325px; }.ecosystem-card > p { margin-top: 45px; }
  .catalog-hero { min-height: 690px; align-items: center; }.catalog-hero-content { padding-top: 135px; padding-bottom: 55px; }
}

/* 2026 agency refinement: calm hierarchy, selective motion, editorial rhythm */
.cursor-light { display: none; }
.container { width: min(1220px, calc(100% - 48px)); }
.button { min-height: 48px; padding-inline: 20px; box-shadow: none; }
.button-primary { background: #108fd0; box-shadow: 0 12px 30px rgba(10,132,207,.2); }
.button-primary:hover { box-shadow: 0 16px 36px rgba(10,132,207,.26); }
.button-dark { box-shadow: none; }

.nav-shell { background: rgba(246,249,252,.86); box-shadow: 0 12px 38px rgba(5,22,39,.1); }
.is-scrolled .nav-shell { box-shadow: 0 12px 34px rgba(5,22,39,.14); }

.hero { min-height: 100svh; padding-top: 124px; }
.hero-layout { grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); }
.hero h1 { max-width: 720px; margin-bottom: 30px; font-size: clamp(3.5rem,5.1vw,4.75rem); line-height: .94; }
.hero h1 .kinetic-line { min-height: 1.16em; }
.hero-lead { max-width: var(--content-reading); font-size: clamp(1rem,1.2vw,1.1rem); line-height: 1.72; }
.hero-visual { min-height: 560px; }
.stage { transition: none; }
.laptop { transform: translateZ(42px) rotateY(-2deg); }
.data-card { animation: none; border-radius: var(--radius-sm); }
.orbit-outer { animation-duration: 42s; }
.orbit-inner { animation-duration: 56s; }

.section-header h2,
.approach-copy h2,
.corporate-copy h2,
.contact-copy h2,
.reference-heading h2 { font-size: clamp(2.4rem,4vw,3.25rem); line-height: .98; letter-spacing: -.05em; }
.section-header > p,
.approach-copy > p,
.corporate-copy > p { max-width: var(--content-reading); font-size: clamp(.98rem,1.2vw,1.08rem); line-height: 1.75; }

/* The 3D ecosystem remains the hero interaction, but settles into a clean deck. */
.home-ecosystem.ecosystem-3d { height: 225vh; }
.ecosystem-sticky { min-height: 640px; perspective: 1300px; }
.ecosystem-story { width: min(540px,43vw); }
.ecosystem-story h2 { font-size: clamp(3.5rem,5.6vw,5.8rem); line-height: .88; }
.ecosystem-story > strong { font-size: clamp(1.9rem,3.2vw,3.3rem); }
.ecosystem-story > p:not(.section-label) { font-size: 15px; line-height: 1.7; }
.ecosystem-wordmark { width: min(550px,39vw); filter: brightness(1.08) saturate(1.02) drop-shadow(0 22px 38px rgba(0,0,0,.42)); }
.ecosystem-3d-card { width: clamp(210px,18vw,286px); height: clamp(310px,40vh,380px); padding: 23px; border-radius: var(--radius-md); box-shadow: 0 24px 58px rgba(0,0,0,.42), inset 0 1px rgba(255,255,255,.12); }
.ecosystem-3d-card h3 { font-size: clamp(1.8rem,2.25vw,2.55rem); }
.ecosystem-3d-card p { font-size: 12px; }

@media (min-width: 961px) {
  .ecosystem-wordmark { top: 11%; }
  .ecosystem-3d-card { top: 67%; }
}

@media (min-width: 961px) and (max-height: 760px) {
  .ecosystem-wordmark { top: 9%; width: min(500px,36vw); }
  .ecosystem-3d-card { top: 66%; height: clamp(290px,41vh,320px); }
}

/* Mobile product story: reveal once, then remain completely static. */
.platform { padding: var(--section-space) 0; }
.platform .section-header { margin-bottom: clamp(44px,5vw,70px); }
.platform .section-header h2 { font-size: clamp(2.65rem,4.3vw,3.8rem); }
.platform-grid { grid-template-columns: minmax(0,1.06fr) minmax(340px,.94fr); gap: clamp(54px,7vw,92px); }
.mobile-product-scene { min-height: 570px; }
.mobile-frame { width: 106%; transform: none; transition: none; }
.mobile-frame img { max-height: 540px; }
.feature-stack { display: grid; gap: 0; align-self: center; }
.feature-item,
.feature-item:hover,
.feature-item.is-active { position: relative; width: 100%; min-height: 0; display: grid; grid-template-columns: 46px 1fr; align-items: start; gap: 18px; padding: 24px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.12); border-radius: 0; background: transparent; box-shadow: none; transform: none; cursor: default; }
.feature-item:first-child { border-top: 1px solid rgba(255,255,255,.12); }
.feature-item > span { width: 38px; height: 38px; border-radius: 50%; color: #d7ebf7; background: rgba(53,183,243,.1); }
.feature-item h3 { margin: 0 0 5px; font-size: clamp(1.25rem,1.8vw,1.55rem); }
.feature-item p { max-width: 46ch; margin: 0; color: #8fa2b2; font-size: 14px; line-height: 1.65; }
.feature-stack .text-link { margin-top: 20px; }
.platform-badge:hover { transform: none; }

/* Editorial process rows instead of floating SaaS cards. */
.approach { padding: var(--section-space) 0; color: var(--ink); background: #f3f7f9; }
.approach::before { width: 480px; height: 480px; top: -300px; right: -120px; border-color: rgba(22,143,226,.1); box-shadow: inset 0 0 0 78px rgba(255,255,255,.26); }
.approach::after { opacity: .25; background-image: linear-gradient(rgba(10,31,54,.022) 1px,transparent 1px),linear-gradient(90deg,rgba(10,31,54,.022) 1px,transparent 1px); }
.approach-layout { grid-template-columns: minmax(300px,.82fr) minmax(480px,1.18fr); align-items: start; gap: clamp(64px,8vw,120px); }
.approach-copy { position: sticky; top: 132px; padding-top: 0; }
.approach-copy .section-label { color: var(--blue); }
.approach-copy h2 { max-width: 560px; color: var(--ink); text-shadow: none; }
.approach-copy h2 span { color: #7b8c9c; background: none; }
.approach-copy > p { margin: 26px 0 30px; color: var(--ink-soft); }
.approach-copy .button-dark { color: #fff; background: var(--night); box-shadow: none; }
.process-list { display: grid; gap: 0; perspective: none; }
.process-list::before { display: none; }
.process-card,
.process-card:nth-child(2),
.process-card:nth-child(3),
.process-card:hover { min-height: 0; margin: 0; padding: 30px 0 32px; border: 0; border-top: 1px solid rgba(10,31,54,.14); border-radius: 0; color: var(--ink); background: transparent; box-shadow: none; backdrop-filter: none; transform: none; transition: border-color .25s; }
.process-card:last-child { border-bottom: 1px solid rgba(10,31,54,.14); }
.process-card::before { width: 32px; height: 2px; top: -1px; left: 0; box-shadow: none; }
.process-card > span { color: var(--blue); }
.process-card h3 { margin: 34px 0 10px; color: var(--ink); font-size: clamp(1.65rem,2.2vw,2rem); }
.process-card p { max-width: 58ch; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.process-card > b { right: 0; bottom: -14px; color: rgba(9,31,48,.035); font-size: 112px; }

/* References are a quiet proof point, not another dark product stage. */
.references { padding: var(--section-space) 0; color: var(--ink); background: #edf3f6; }
.references::before { opacity: .28; background-image: linear-gradient(rgba(10,31,54,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(10,31,54,.025) 1px,transparent 1px); }
.reference-heading { grid-template-columns: .55fr 1.45fr; gap: 64px; margin-bottom: 48px; }
.reference-heading .section-label { color: var(--blue); }
.reference-heading h2 { max-width: 690px; color: var(--ink); }
.logo-showcase,
.logo-track,
.logo-group { gap: 12px; }
.logo-group { padding-right: 12px; }
.logo-card { width: 220px; height: 104px; padding: 18px 22px; border-color: rgba(10,31,54,.09); border-radius: var(--radius-md); background: rgba(255,255,255,.82); box-shadow: none; }
.logo-card img { max-height: 58px; opacity: .68; }
.logo-card:hover { border-color: rgba(22,143,226,.18); box-shadow: none; transform: none; }
.reference-foot { margin-top: 44px; padding-top: 26px; border-color: rgba(10,31,54,.11); }
.reference-foot p { color: var(--ink-soft); }
.reference-foot a { color: var(--ink); }
.logo-track { animation-duration: 72s; }
.logo-rail-secondary .logo-track { animation-duration: 78s; }

.contact { padding: var(--section-space) 0; }
.contact-card { min-height: 480px; border-radius: var(--radius-lg); }
.contact-copy h2 { font-size: clamp(2.8rem,4.4vw,4.35rem); line-height: .95; }
.contact-link:hover { transform: none; }
.contact-light-particles { opacity: .34; }

/* Light-surface particle system: one restrained brand pattern across every pale homepage section. */
.section-light-particles { z-index: 1; opacity: .58; mix-blend-mode: multiply; }
.approach,
.references { position: relative; isolation: isolate; }
.approach > .container,
.references > .container,
.references > .logo-showcase { position: relative; z-index: 2; }

/* The ecosystem keeps its cinematic dark objects, now floating over a bright architectural surface. */
.home-ecosystem.ecosystem-3d { color: var(--ink); background: #eef4f6; }
.ecosystem-sticky {
  background:
    radial-gradient(circle at 13% 18%,rgba(159,207,58,.1),transparent 24%),
    radial-gradient(circle at 82% 34%,rgba(35,167,226,.12),transparent 31%),
    linear-gradient(135deg,#fbfcfd 0%,#f2f7f9 50%,#eaf2f5 100%);
}
.ecosystem-light-particles { z-index: 1; opacity: .64; }
.ecosystem-space-grid {
  z-index: 0;
  opacity: .62;
  background-image:
    linear-gradient(rgba(10,31,54,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(10,31,54,.035) 1px,transparent 1px);
}
.ecosystem-glow { z-index: 0; border-color: rgba(22,143,226,.16); box-shadow: inset 0 0 0 105px rgba(255,255,255,.18); }
.ecosystem-stage { z-index: 2; }
.ecosystem-story .section-label { color: var(--blue); }
.ecosystem-story h2 { color: var(--ink); }
.ecosystem-story h2 span { background: linear-gradient(90deg,#1599d7,#52b6ce); background-clip: text; }
.ecosystem-story > strong { color: #54788e; }
.ecosystem-story > p:not(.section-label) { color: #61798a; }
.ecosystem-story > a { border-bottom-color: rgba(10,31,54,.2); color: var(--ink); }
.ecosystem-wordmark {
  mix-blend-mode: multiply;
  filter: saturate(.88) contrast(1.08) drop-shadow(0 24px 42px rgba(18,74,105,.12));
}
.ecosystem-wordmark::before { background: radial-gradient(circle,rgba(255,255,255,.76),transparent 64%); }
.ecosystem-scroll-cue { color: #557286; }
.ecosystem-scroll-cue i { background: rgba(10,31,54,.16); }
.ecosystem-scroll-cue b { color: #526b7d; }

@media (max-width: 960px) {
  .section-light-particles { opacity: .44; }
  .ecosystem-light-particles { opacity: .5; }
}

@media (prefers-reduced-motion: reduce) {
  .section-light-particles { opacity: .36; }
}

@media (max-width: 960px) {
  .container { width: min(100% - 32px, 760px); }
  .hero { min-height: auto; padding-top: 116px; }
  .hero-layout { grid-template-columns: 1fr; gap: 20px; }
  .hero h1 { font-size: clamp(3.3rem,9vw,4.8rem); }
  .hero-visual { min-height: 500px; }
  .stage { transform: none !important; }
  .platform-grid,
  .approach-layout { grid-template-columns: 1fr; }
  .mobile-product-scene { min-height: 500px; }
  .mobile-frame { width: min(100%,680px); margin-inline: auto; }
  .feature-stack { max-width: 680px; margin-inline: auto; }
  .approach-copy { position: static; }
  .reference-heading { grid-template-columns: 1fr; gap: 18px; }
  .home-ecosystem.ecosystem-3d { height: auto; }
  .ecosystem-sticky { position: relative; height: auto; min-height: 0; padding: 104px 0 84px; overflow: hidden; }
  .ecosystem-stage { height: auto; }
  .ecosystem-story { position: relative; width: 100%; top: auto; left: auto; transform: none !important; opacity: 1 !important; }
  .ecosystem-wordmark { position: relative; width: 100%; top: auto; left: auto; margin: 52px 0 28px; transform: none !important; opacity: .92; filter: brightness(1.05) saturate(1.02) drop-shadow(0 18px 34px rgba(0,0,0,.36)); }
  .ecosystem-deck { position: relative; inset: auto; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
  .ecosystem-3d-card { position: relative; width: auto; height: 300px; top: auto; left: auto; opacity: 1 !important; transform: none !important; }
  .ecosystem-scroll-cue { display: none; }
}

@media (max-width: 620px) {
  .container { width: calc(100% - 28px); }
  .hero { padding-top: 104px; }
  .hero h1 { margin-bottom: 24px; font-size: clamp(3rem,14vw,4.1rem); line-height: .96; }
  .hero h1 em { white-space: normal; }
  .hero-visual { min-height: 360px; }
  .stage { width: 111%; }
  .data-card { display: none; }
  .orbit-outer,.orbit-inner { animation: none; }
  .home-ecosystem.ecosystem-3d { height: auto; }
  .ecosystem-story h2 { font-size: clamp(3.05rem,14vw,4.4rem); }
  .ecosystem-deck { grid-template-columns: 1fr; }
  .ecosystem-3d-card { height: 260px; padding: 21px; }
  .platform { padding: 82px 0; }
  .platform .section-header h2 { font-size: clamp(2.65rem,12vw,3.7rem); }
  .mobile-product-scene { min-height: 350px; }
  .mobile-frame { width: 108%; margin-left: -4%; }
  .mobile-frame img { max-height: 360px; }
  .product-halo { width: 310px; height: 310px; }
  .platform-badge { right: 0; bottom: 0; }
  .feature-item { grid-template-columns: 40px 1fr; gap: 14px; padding: 21px 0; }
  .feature-item p { font-size: 13px; }
  .approach,.references,.contact { padding: 82px 0; }
  .approach-copy h2,.contact-copy h2,.reference-heading h2 { font-size: clamp(2.55rem,11vw,3.55rem); }
  .process-card { padding-block: 26px 28px; }
  .logo-card { width: 184px; height: 88px; padding: 14px 18px; }
  .logo-card img { max-height: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track,
  .ticker-track,
  .ticker-section::before,
  .orbit,
  .process-card { animation: none !important; }
  .stage,
  .ecosystem-story,
  .ecosystem-wordmark,
  .ecosystem-3d-card,
  .product-frame { transform: none !important; }
}

/* Static corporate ecosystem — no scroll-bound transforms or continuous canvas work. */
.home-ecosystem.ecosystem-3d {
  height: auto;
  padding: 0;
  overflow: hidden;
  background: #f2f6f8;
}
.ecosystem-sticky {
  position: relative;
  height: auto;
  min-height: 0;
  padding: clamp(96px,9vw,138px) 0;
  overflow: hidden;
  perspective: none;
  background:
    radial-gradient(circle at 92% 8%,rgba(22,143,226,.08),transparent 28%),
    linear-gradient(180deg,#f8fafb 0%,#eef4f6 100%);
}
.ecosystem-space-grid {
  opacity: .42;
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg,#000,transparent 94%);
}
.ecosystem-glow {
  width: 520px;
  height: 520px;
  top: -300px;
  right: -150px;
  opacity: .45;
  box-shadow: none;
}
.ecosystem-stage {
  height: auto;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(300px,.72fr);
  align-items: center;
  gap: clamp(42px,7vw,96px);
  perspective: none;
  transform-style: flat;
}
.ecosystem-story {
  position: relative;
  width: auto;
  max-width: 640px;
  top: auto;
  left: auto;
  opacity: 1 !important;
  transform: none !important;
  transition: none;
  will-change: auto;
}
.ecosystem-story h2 {
  max-width: 620px;
  font-size: clamp(3.25rem,5vw,5.25rem);
  line-height: .9;
}
.ecosystem-story > strong { font-size: clamp(1.65rem,2.5vw,2.55rem); }
.ecosystem-story > p:not(.section-label) { max-width: 560px; margin-top: 22px; }
.ecosystem-story > a { margin-top: 22px; }
.ecosystem-wordmark {
  position: relative;
  width: 100%;
  max-width: 470px;
  top: auto;
  left: auto;
  justify-self: end;
  opacity: 1 !important;
  transform: none !important;
  will-change: auto;
  filter: saturate(.86) contrast(1.04);
}
.ecosystem-wordmark::before { display: none; }
.ecosystem-deck {
  position: relative;
  grid-column: 1 / -1;
  inset: auto;
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 16px;
  margin-top: clamp(18px,3vw,38px);
  transform-style: flat;
  pointer-events: auto;
}
.ecosystem-3d-card,
.ecosystem-3d-card:nth-child(n) {
  position: relative;
  width: auto;
  height: 310px;
  top: auto;
  left: auto;
  opacity: 1 !important;
  padding: 25px;
  border-color: rgba(20,69,96,.22);
  border-radius: 16px;
  background: #0b2231;
  box-shadow: 0 18px 40px rgba(13,45,64,.13);
  transform: none !important;
  transform-style: flat;
  will-change: auto;
  transition: border-color .22s ease,box-shadow .22s ease;
}
.ecosystem-3d-card:nth-child(2) { background: #0c2b31; }
.ecosystem-3d-card:nth-child(3) { background: #0d2740; }
.ecosystem-3d-card:nth-child(4) { background: #152d29; }
.ecosystem-3d-card:hover {
  border-color: rgba(41,157,210,.42);
  box-shadow: 0 22px 46px rgba(13,45,64,.17);
}
.ecosystem-3d-card h3 { font-size: clamp(1.75rem,2.1vw,2.3rem); }
.ecosystem-3d-card::before { opacity: .55; }
.ecosystem-3d-card::after { opacity: .55; }
.ecosystem-scroll-cue,
.ecosystem-light-particles { display: none; }

@media (max-width: 960px) {
  .ecosystem-sticky { padding: 88px 0; }
  .ecosystem-stage { grid-template-columns: 1fr; gap: 34px; }
  .ecosystem-wordmark { width: min(520px,86%); margin: 0; justify-self: start; }
  .ecosystem-deck { grid-template-columns: repeat(2,minmax(0,1fr)); margin-top: 12px; }
  .ecosystem-3d-card,
  .ecosystem-3d-card:nth-child(n) { height: 280px; }
}

@media (max-width: 620px) {
  .ecosystem-sticky { padding: 76px 0; }
  .ecosystem-story h2 { font-size: clamp(3rem,14vw,4.25rem); }
  .ecosystem-wordmark { width: 100%; }
  .ecosystem-deck { grid-template-columns: 1fr; gap: 12px; }
  .ecosystem-3d-card,
  .ecosystem-3d-card:nth-child(n) { height: 245px; }
}

/* Header uses the official horizontal wordmark instead of reconstructed text. */
.site-header .brand { min-width: 0; flex: 0 0 auto; }
.site-header .brand .header-wordmark {
  width: clamp(156px,13vw,188px);
  height: auto;
  max-height: 35px;
  object-fit: contain;
  object-position: left center;
  filter: none;
}

@media (max-width: 620px) {
  .site-header .brand .header-wordmark {
    width: 142px;
    height: auto;
    max-height: 29px;
  }
}

/* Centered ecosystem introduction after removing the decorative wordmark. */
.ecosystem-stage { grid-template-columns: 1fr; }
.ecosystem-story {
  width: min(760px,100%);
  max-width: 760px;
  justify-self: center;
  text-align: center;
}
.ecosystem-story .section-label { justify-content: center; }
.ecosystem-story h2 { max-width: none; }
.ecosystem-story > p:not(.section-label),
.ecosystem-story > a { margin-right: auto; margin-left: auto; }
.ecosystem-deck { margin-top: clamp(34px,5vw,60px); }

/* Process table: compact, scannable and visibly structured. */
.process-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(10,31,54,.13);
  border-radius: 20px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 20px 48px rgba(20,55,77,.07);
  backdrop-filter: blur(8px);
}
.process-card,
.process-card:nth-child(2),
.process-card:nth-child(3),
.process-card:hover {
  min-height: 156px;
  display: grid;
  grid-template-columns: 120px minmax(0,1fr) 66px;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 24px;
  row-gap: 8px;
  margin: 0;
  padding: 30px 26px;
  border: 0;
  border-bottom: 1px solid rgba(10,31,54,.11);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  transition: background-color .22s ease;
}
.process-card:last-child { border-bottom: 0; }
.process-card:hover { background: rgba(255,255,255,.58); }
.process-card::before { display: none; }
.process-card > span {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: start;
  padding-top: 5px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.process-card h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem,2vw,1.85rem);
  line-height: 1.05;
}
.process-card p {
  grid-column: 2;
  grid-row: 2;
  max-width: 58ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}
.process-card > b {
  position: relative;
  grid-column: 3;
  grid-row: 1 / 3;
  right: auto;
  bottom: auto;
  justify-self: end;
  align-self: center;
  color: rgba(10,31,54,.065);
  font-size: 52px;
  font-weight: 850;
  line-height: 1;
}

@media (max-width: 620px) {
  .process-card,
  .process-card:nth-child(2),
  .process-card:nth-child(3),
  .process-card:hover {
    min-height: 0;
    grid-template-columns: minmax(0,1fr) 48px;
    grid-template-rows: auto auto auto;
    gap: 10px 16px;
    padding: 24px 20px;
  }
  .process-card > span { grid-column: 1; grid-row: 1; padding-top: 0; }
  .process-card h3 { grid-column: 1; grid-row: 2; }
  .process-card p { grid-column: 1; grid-row: 3; }
  .process-card > b { grid-column: 2; grid-row: 1 / 4; font-size: 42px; }
}

/* Blog and support — shared editorial subpage system. */
.subpage { min-height: 100vh; color: #0a2032; background: #eef4f6; }
.subpage-container { width: min(1220px,calc(100% - 48px)); margin-inline: auto; }
.subpage-header {
  position: fixed;
  z-index: 120;
  top: 18px;
  left: 50%;
  width: min(1220px,calc(100% - 36px));
  height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 14px 0 20px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 22px;
  background: rgba(247,250,252,.9);
  box-shadow: 0 16px 46px rgba(5,25,40,.15);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}
.subpage-brand { flex: 0 0 auto; }
.subpage-brand img { width: 182px; height: auto; max-height: 34px; display: block; object-fit: contain; }
.subpage-header nav { display: flex; align-items: center; gap: 23px; margin-left: auto; }
.subpage-header nav a { position: relative; padding: 26px 0; color: #435165; font-size: 12px; font-weight: 750; }
.subpage-header nav a::after { content: ""; position: absolute; right: 100%; bottom: 18px; left: 0; height: 2px; background: linear-gradient(90deg,#168fd7,#91c52d); transition: right .25s; }
.subpage-header nav a:hover::after,.subpage-header nav a.is-active::after { right: 0; }
.subpage-header nav a.is-active { color: #071c2e; }
.subpage-cta { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 0 18px; border-radius: 14px; color: #fff; background: #071827; font-size: 12px; font-weight: 800; white-space: nowrap; }

.subpage-hero { position: relative; min-height: 760px; display: flex; align-items: end; overflow: hidden; color: #fff; background: linear-gradient(125deg,#06121f 0%,#082234 68%,#0a3545 100%); }
.subpage-grid { position: absolute; inset: 0; opacity: .5; background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(90deg,#000,transparent); }
.subpage-orbit { position: absolute; width: 680px; height: 680px; top: -280px; right: -140px; border: 1px solid rgba(46,176,234,.16); border-radius: 50%; box-shadow: inset 0 0 0 110px rgba(255,255,255,.018); }
.subpage-orbit::after { content: ""; position: absolute; inset: 28%; border: 1px solid rgba(145,197,45,.18); border-radius: 50%; }
.subpage-hero-content { position: relative; z-index: 2; padding: 170px 0 82px; }
.subpage-kicker { display: flex; align-items: center; gap: 10px; margin: 0 0 28px; color: #68c8f2; font-size: 10px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.subpage-kicker i { width: 30px; height: 2px; background: linear-gradient(90deg,#2aafe9,#a6dc35); }
.subpage-kicker span { margin-left: auto; color: #7390a3; }
.subpage-hero h1 { max-width: 1040px; margin: 0; font-size: clamp(4.5rem,7.2vw,7.5rem); letter-spacing: -.075em; line-height: .86; }
.subpage-hero h1 em { color: transparent; background: linear-gradient(90deg,#52bde9,#c7ed7c); background-clip: text; font-style: normal; }
.subpage-hero-bottom { display: grid; grid-template-columns: 1fr 270px; align-items: end; gap: 80px; margin-top: 64px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.subpage-hero-bottom p { max-width: 700px; margin: 0; color: #94a8b7; font-size: 15px; line-height: 1.75; }
.subpage-hero-bottom a { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.18); color: #fff; font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.subpage-hero-bottom b { color: #aee337; }

.blog-index,.support-main,.support-info { position: relative; padding: 112px 0 124px; }
.subpage-section-heading { display: grid; grid-template-columns: .65fr 1.35fr; align-items: end; gap: 60px; margin-bottom: 54px; }
.subpage-section-heading > p { margin: 0; color: #168ed5; font-size: 10px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.subpage-section-heading h2 { margin: 0; font-size: clamp(3rem,4.5vw,5rem); letter-spacing: -.065em; line-height: .94; }
.blog-editorial-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
.blog-article-card { min-width: 0; display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(10,31,54,.12); border-radius: 24px; background: rgba(255,255,255,.82); box-shadow: 0 20px 50px rgba(9,40,59,.07); }
.blog-cover { position: relative; min-height: 260px; overflow: hidden; color: #fff; background: radial-gradient(circle at 78% 20%,rgba(77,183,209,.22),transparent 32%),linear-gradient(135deg,#081826,#0a3143); }
.blog-cover::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px); background-size: 38px 38px; }
.blog-cover > span { position: absolute; top: 22px; left: 24px; color: #6bc8ef; font-size: 10px; font-weight: 850; letter-spacing: .15em; }
.blog-cover > strong { position: absolute; left: 24px; bottom: 24px; max-width: 80%; font-size: clamp(1.8rem,3vw,3.25rem); letter-spacing: -.055em; line-height: .95; }
.blog-cover > i { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: #9ed52f; box-shadow: 0 0 20px rgba(158,213,47,.42); }
.blog-cover > i:nth-of-type(1) { top: 25%; right: 18%; }.blog-cover > i:nth-of-type(2) { top: 40%; right: 30%; background: #3fb4e7; }.blog-cover > i:nth-of-type(3) { right: 12%; bottom: 24%; }
.blog-article-card:nth-child(2) .blog-cover { background: radial-gradient(circle at 22% 22%,rgba(137,203,56,.18),transparent 30%),linear-gradient(135deg,#091727,#102b47); }
.blog-article-body { display: flex; flex: 1; flex-direction: column; padding: 30px; }
.blog-meta { display: flex; gap: 12px; color: #7890a1; font-size: 9px; font-weight: 760; text-transform: uppercase; }
.blog-meta span + span::before { content: "·"; margin-right: 12px; }
.blog-article-body > p { margin: 36px 0 9px; color: #168ed5; font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.blog-article-body h2 { margin: 0; font-size: clamp(1.8rem,2.6vw,2.8rem); letter-spacing: -.05em; line-height: 1; }
.blog-excerpt { margin-top: 20px; color: #687f90; font-size: 14px; line-height: 1.75; }
.blog-article-body ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 24px 0 0; padding: 0; list-style: none; }
.blog-article-body li { padding: 7px 9px; border: 1px solid #d8e3e9; border-radius: 99px; color: #587084; font-size: 8px; font-weight: 780; }
.blog-article-body > a { display: flex; justify-content: space-between; margin-top: auto; padding-top: 30px; color: #0b2437; font-size: 10px; font-weight: 850; text-transform: uppercase; }
.blog-article-body > a span { color: #87b924; font-size: 16px; }

.subpage-callout { padding: 110px 0; color: #fff; background: #071724; }
.subpage-callout p { margin: 0 0 22px; color: #64c1e9; font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.subpage-callout h2 { max-width: 850px; margin: 0; font-size: clamp(3.2rem,5.5vw,5.8rem); letter-spacing: -.07em; line-height: .9; }
.subpage-callout a { width: min(310px,100%); display: flex; justify-content: space-between; margin-top: 40px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.18); color: #fff; font-size: 10px; font-weight: 850; text-transform: uppercase; }
.subpage-callout a span { color: #a8dc35; }

.support-main { background: #f3f7f9; }
.support-layout { display: grid; grid-template-columns: minmax(0,.85fr) minmax(500px,1.15fr); gap: clamp(60px,8vw,110px); align-items: start; }
.support-label { margin: 0 0 18px; color: #168ed5; font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.support-copy h2 { margin: 0; font-size: clamp(3rem,4.5vw,4.8rem); letter-spacing: -.065em; line-height: .94; }
.support-copy > p:not(.support-label) { max-width: 560px; margin: 24px 0 34px; color: #687f90; font-size: 15px; line-height: 1.75; }
.support-contact-table { overflow: hidden; border: 1px solid rgba(10,31,54,.13); border-radius: 18px; background: rgba(255,255,255,.64); }
.support-contact-table a { display: grid; grid-template-columns: 1fr auto; padding: 19px 20px; border-bottom: 1px solid rgba(10,31,54,.1); }
.support-contact-table a:last-child { border-bottom: 0; }
.support-contact-table span { color: #718899; font-size: 8px; font-weight: 820; text-transform: uppercase; }
.support-contact-table strong { grid-row: 2; margin-top: 5px; color: #0a2438; font-size: 14px; }
.support-contact-table b { grid-column: 2; grid-row: 1 / 3; align-self: center; color: #8dbe2b; }
.support-form { display: grid; gap: 18px; padding: 34px; border: 1px solid rgba(10,31,54,.12); border-radius: 24px; background: #fff; box-shadow: 0 28px 70px rgba(10,42,61,.1); }
.support-form-head { display: flex; justify-content: space-between; margin-bottom: 4px; color: #168ed5; font-size: 9px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.support-form-head b { color: #709822; }
.support-form label { display: grid; gap: 8px; color: #42596b; font-size: 9px; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.support-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.support-form input,.support-form select,.support-form textarea { width: 100%; border: 1px solid #d5e0e6; border-radius: 12px; padding: 14px 15px; outline: none; color: #0a2438; background: #f7fafb; font: inherit; font-size: 13px; text-transform: none; transition: border-color .2s,box-shadow .2s; }
.support-form textarea { resize: vertical; min-height: 130px; }
.support-form input:focus,.support-form select:focus,.support-form textarea:focus { border-color: #27a3dc; box-shadow: 0 0 0 3px rgba(39,163,220,.11); }
.support-form button { min-height: 52px; display: flex; align-items: center; justify-content: space-between; border: 0; border-radius: 13px; padding: 0 18px; color: #fff; background: #071a29; font-size: 11px; font-weight: 850; text-transform: uppercase; cursor: pointer; }
.support-form button span { color: #a8df34; font-size: 17px; }
.support-form small { color: #8093a1; font-size: 10px; }
.support-info { background: #eaf1f4; }
.support-info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.support-info-grid article { min-height: 280px; display: flex; flex-direction: column; padding: 27px; border: 1px solid rgba(10,31,54,.11); border-radius: 20px; background: rgba(255,255,255,.72); }
.support-info-grid article > span { color: #168ed5; font-size: 9px; font-weight: 850; }.support-info-grid p { margin: 62px 0 10px; color: #758b9b; font-size: 9px; font-weight: 820; text-transform: uppercase; }.support-info-grid h3 { margin: 0; font-size: 18px; line-height: 1.5; }.support-info-grid a { margin-top: auto; padding-top: 24px; color: #658c1e; font-size: 9px; font-weight: 850; text-transform: uppercase; }

.subpage-footer { padding: 88px 0 28px; color: #fff; background: #06131f; }
.subpage-footer-grid { display: grid; grid-template-columns: 1.45fr repeat(3,1fr); gap: 55px; padding-bottom: 70px; }
.subpage-footer-brand img { width: min(310px,100%); height: auto; max-height: 60px; object-fit: contain; object-position: left; }.subpage-footer-brand p { max-width: 340px; margin: 24px 0 0; color: #869cab; font-size: 13px; line-height: 1.75; }
.subpage-footer-grid > div:not(.subpage-footer-brand) { display: grid; align-content: start; gap: 12px; }.subpage-footer-grid strong { margin-bottom: 7px; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }.subpage-footer-grid a,.subpage-footer-grid address { color: #8da2b1; font-size: 12px; font-style: normal; line-height: 1.7; }.subpage-footer-grid a:hover { color: #fff; }
.subpage-footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: #607686; font-size: 9px; text-transform: uppercase; }.subpage-footer-bottom div { display: flex; gap: 22px; }

@media (max-width: 1020px) {
  .subpage-header nav { display: none; }
  .subpage-header { gap: 16px; }.subpage-cta { margin-left: auto; }
  .blog-editorial-grid,.support-layout { grid-template-columns: 1fr; }
  .support-copy { max-width: 720px; }.support-form { max-width: 760px; }
  .subpage-footer-grid { grid-template-columns: 1.2fr repeat(2,1fr); }.subpage-footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 720px) {
  .subpage-container { width: calc(100% - 28px); }
  .subpage-header { top: 8px; width: calc(100% - 16px); height: 62px; padding-inline: 14px 9px; border-radius: 18px; }.subpage-brand img { width: 140px; max-height: 27px; }.subpage-cta { min-height: 44px; padding-inline: 13px; font-size: 9px; }
  .subpage-hero { min-height: 650px; }.subpage-hero-content { padding: 130px 0 60px; }.subpage-kicker span { display: none; }.subpage-hero h1 { font-size: clamp(3.5rem,15vw,5.2rem); }.subpage-hero-bottom { grid-template-columns: 1fr; gap: 24px; margin-top: 48px; }.subpage-hero-bottom a { width: 100%; }
  .blog-index,.support-main,.support-info { padding: 82px 0; }.subpage-section-heading { grid-template-columns: 1fr; gap: 18px; }.blog-editorial-grid { grid-template-columns: 1fr; }.blog-cover { min-height: 220px; }.blog-article-body { padding: 24px; }
  .support-layout { gap: 48px; }.support-form { padding: 24px 20px; }.support-form-row { grid-template-columns: 1fr; }.support-info-grid { grid-template-columns: 1fr; }.support-info-grid article { min-height: 230px; }.support-info-grid p { margin-top: 42px; }
  .subpage-callout { padding: 82px 0; }.subpage-callout h2 { font-size: clamp(3rem,13vw,4.5rem); }
  .subpage-footer { padding-top: 70px; }.subpage-footer-grid { grid-template-columns: 1fr; gap: 38px; }.subpage-footer-grid > div:last-child { grid-column: auto; }.subpage-footer-bottom { align-items: flex-start; flex-direction: column; gap: 16px; }
}

/* 2026 corporate continuity refresh
   One calm presentation canvas, with deep navy used as an intentional inset. */
:root {
  --canvas: #eef3f5;
  --canvas-soft: #f7f9fa;
  --canvas-blue: #e8f0f3;
  --panel-night: #071925;
  --panel-night-2: #0b2b38;
  --blue-soft: #4db5df;
  --lime-soft: #a8d34f;
}

#main {
  background:
    radial-gradient(circle at 88% 20%, rgba(28,151,207,.07), transparent 24%),
    linear-gradient(180deg, var(--canvas-soft) 0%, var(--canvas) 18%, var(--canvas) 100%);
}

.solutions,
.home-ecosystem.ecosystem-3d,
.platform,
.approach,
.corporate,
.references,
.contact {
  position: relative;
  color: var(--ink);
  background: transparent;
}

.solutions,
.home-ecosystem.ecosystem-3d,
.platform,
.approach,
.corporate,
.references {
  border-top: 1px solid rgba(10,31,54,.075);
}

.solutions {
  padding: clamp(108px,9vw,148px) 0;
  overflow: hidden;
}

.solutions::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 760px;
  height: 760px;
  top: -430px;
  right: -280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,159,215,.12), rgba(143,198,48,.035) 42%, transparent 70%);
  pointer-events: none;
}

.solutions > .container {
  position: relative;
  z-index: 1;
}

.section-header,
.reference-heading {
  align-items: end;
}

.section-header h2,
.approach-copy h2,
.reference-heading h2 {
  color: #0a2031;
}

.section-header h2 span,
.approach-copy h2 span {
  color: #72889a;
}

.section-header > p,
.approach-copy > p,
.reference-foot p {
  color: #617585;
}

.solution-showcase {
  border-color: rgba(255,255,255,.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(37,165,221,.16), transparent 28%),
    linear-gradient(145deg, #071824 0%, #0a2634 62%, #0b3038 100%);
  box-shadow: 0 36px 90px rgba(11,41,59,.16);
}

.home-ecosystem.ecosystem-3d {
  padding: 0;
}

.ecosystem-sticky {
  background:
    radial-gradient(circle at 8% 18%, rgba(153,202,59,.075), transparent 22%),
    linear-gradient(180deg, #edf3f5 0%, #e9f0f2 100%);
}

.ecosystem-3d-card,
.ecosystem-3d-card:nth-child(n) {
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 8%, rgba(71,180,220,.12), transparent 28%),
    linear-gradient(145deg, #0a202d, #0b2b35);
  box-shadow: 0 22px 48px rgba(10,36,52,.14);
  transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
}

.ecosystem-3d-card:nth-child(2),
.ecosystem-3d-card:nth-child(3),
.ecosystem-3d-card:nth-child(4) {
  background:
    radial-gradient(circle at 90% 8%, rgba(156,205,63,.08), transparent 30%),
    linear-gradient(145deg, #0a202d, #0c3035);
}

.ecosystem-3d-card:hover {
  border-color: rgba(120,202,235,.3);
  box-shadow: 0 28px 60px rgba(10,36,52,.2);
  transform: translateY(-6px);
}

.platform {
  padding: clamp(96px,8vw,132px) 0;
  overflow: hidden;
}

.platform::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  top: -330px;
  left: -280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,151,207,.08), transparent 68%);
  pointer-events: none;
}

.platform .section-header-dark h2 {
  color: #0a2031;
}

.platform .section-header-dark h2 span {
  color: #708697;
}

.platform .section-header-dark > p {
  color: #607687;
}

.platform .section-header-dark .section-label {
  color: var(--blue);
}

.platform-grid {
  position: relative;
  padding: clamp(28px,4vw,54px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 85%, rgba(143,198,48,.08), transparent 27%),
    radial-gradient(circle at 88% 8%, rgba(49,173,226,.13), transparent 30%),
    linear-gradient(135deg, var(--panel-night), var(--panel-night-2));
  box-shadow: 0 32px 74px rgba(13,45,62,.16);
  overflow: hidden;
}

.platform-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(120deg, transparent 8%, #000 72%, transparent);
  pointer-events: none;
}

.platform-grid > * {
  position: relative;
  z-index: 1;
}

.feature-item {
  border-color: rgba(255,255,255,.11);
}

.feature-item h3 {
  color: #fff;
}

.feature-item p {
  color: #92a8b7;
}

.feature-stack .text-link {
  color: #fff;
  border-color: rgba(255,255,255,.16);
}

.approach {
  padding: clamp(104px,9vw,142px) 0;
  background:
    radial-gradient(circle at 92% 14%, rgba(31,159,215,.06), transparent 22%),
    transparent;
}

.process-list {
  border-color: rgba(12,45,65,.11);
  background: rgba(255,255,255,.68);
  box-shadow: 0 24px 58px rgba(18,56,76,.07);
}

.process-card:hover {
  background: rgba(255,255,255,.78);
}

.corporate {
  padding: clamp(92px,8vw,126px) 0;
  overflow: hidden;
}

.corporate::before {
  display: none;
}

.corporate-grid {
  position: relative;
  padding: clamp(28px,5vw,70px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 10%, rgba(52,174,224,.14), transparent 30%),
    radial-gradient(circle at 8% 92%, rgba(151,199,59,.07), transparent 26%),
    linear-gradient(140deg, #071924 0%, #0a2633 58%, #0d3137 100%);
  box-shadow: 0 34px 80px rgba(12,43,59,.17);
  overflow: hidden;
}

.corporate-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(115deg, transparent 6%, #000 72%, transparent);
  pointer-events: none;
}

.corporate-grid > * {
  position: relative;
  z-index: 1;
}

.metric-panel {
  min-height: 500px;
  border-radius: 20px;
  background: rgba(255,255,255,.025);
  box-shadow: none;
}

.corporate-copy h2 {
  color: #fff;
}

.corporate-copy h2 span {
  color: #87a1b1;
}

.references {
  padding: clamp(100px,8vw,132px) 0;
  background: transparent;
  overflow: hidden;
}

.reference-heading {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
}

.reference-heading h2 {
  text-align: left;
}

.logo-showcase {
  position: relative;
  z-index: 2;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.logo-marquee {
  overflow: hidden;
}

.logo-showcase .logo-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: corporateLogoFlow 38s linear infinite;
  will-change: transform;
}

@keyframes corporateLogoFlow {
  to { transform: translateX(-50%); }
}

.logo-showcase .logo-group.logo-grid {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
  padding-right: 12px;
}

.logo-grid .logo-card {
  width: 192px;
  flex: 0 0 192px;
  height: 112px;
  padding: 20px;
  border: 1px solid rgba(10,31,54,.09);
  border-radius: 16px;
  background: rgba(255,255,255,.76);
  box-shadow: none;
}

.logo-grid .logo-card img {
  max-width: 82%;
  max-height: 58px;
  filter: grayscale(.7);
  opacity: .7;
}

.logo-grid .logo-card:hover {
  border-color: rgba(22,143,226,.22);
  background: #fff;
  box-shadow: 0 18px 42px rgba(14,48,68,.08);
  transform: translateY(-3px);
}

.logo-grid .logo-card:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.logo-showcase:hover .logo-track,
.logo-showcase:focus-within .logo-track {
  animation-play-state: paused;
}

.reference-foot {
  justify-content: flex-end;
}

.contact {
  padding: clamp(92px,8vw,126px) 0 clamp(108px,9vw,144px);
  background: transparent;
}

.contact-card {
  min-height: 450px;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 10%, rgba(52,174,224,.13), transparent 30%),
    linear-gradient(135deg, #071924, #0b2a36);
  box-shadow: 0 34px 80px rgba(12,43,59,.16);
}

.contact-light-particles {
  opacity: .56;
}

.section-header-solo {
  grid-template-columns: 1fr;
}

.approach-copy > h2 + .button {
  margin-top: 30px;
}

.reveal {
  transition:
    opacity .75s var(--ease),
    transform .75s var(--ease);
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 85% 0, rgba(33,145,194,.08), transparent 24%),
    #06131d;
}

@media (max-width: 1000px) {
  .platform-grid,
  .corporate-grid {
    border-radius: 24px;
  }

  .corporate-grid {
    gap: 54px;
  }
}

@media (max-width: 720px) {
  .solutions,
  .platform,
  .approach,
  .corporate,
  .references,
  .contact {
    padding-block: 82px;
  }

  .section-header,
  .reference-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .solution-showcase {
    border-radius: 22px;
  }

  .platform-grid,
  .corporate-grid {
    margin-inline: -4px;
    padding: 24px 18px;
    border-radius: 22px;
  }

  .platform-grid {
    gap: 32px;
  }

  .corporate-grid {
    gap: 40px;
  }

  .metric-panel {
    min-height: 420px;
    padding: 14px;
  }

  .logo-showcase {
    mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
  }

  .logo-showcase .logo-track {
    animation-duration: 32s;
  }

  .logo-showcase .logo-group.logo-grid {
    gap: 9px;
    padding-right: 9px;
  }

  .logo-grid .logo-card {
    width: 156px;
    flex-basis: 156px;
    height: 96px;
    padding: 16px;
  }

  .contact-card {
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ecosystem-3d-card,
  .logo-grid .logo-card {
    transition: none;
  }

  .logo-marquee {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .logo-showcase .logo-track {
    animation: none;
    transform: none;
  }
}
+

/* Tfon Tech brand-discipline pass
   Product evidence leads; decorative effects are reduced to one signature motif. */
:root {
  --canvas: #f1f4f2;
  --canvas-soft: #f8faf8;
  --canvas-blue: #e9eff0;
  --panel-night: #071923;
  --panel-night-2: #0a2631;
  --blue-soft: #42a9d4;
  --lime-soft: #9bc83c;
}

#main {
  background: var(--canvas);
}

.solutions,
.home-ecosystem.ecosystem-3d,
.platform,
.approach,
.corporate,
.references,
.contact {
  border-top: 0;
}

.solutions::before,
.platform::before,
.approach::before,
.approach::after,
.platform-lines,
.solution-ambient,
.solution-orbit,
.product-halo,
.metric-orbit,
.corporate-grid::after,
.platform-grid::after,
.ecosystem-space-grid,
.ecosystem-glow,
.ecosystem-scroll-cue {
  display: none;
}

.section-label {
  letter-spacing: .14em;
}

.section-header h2,
.approach-copy h2,
.corporate-copy h2,
.reference-heading h2 {
  font-weight: 800;
  letter-spacing: -.052em;
}

.solutions {
  padding: clamp(104px,8vw,132px) 0;
  background: var(--canvas-soft);
}

.solution-showcase {
  min-height: 640px;
  gap: 34px 42px;
  padding: 44px 44px 28px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: #071923;
  box-shadow: none;
}

.solution-showcase::before {
  z-index: -1;
  opacity: .3;
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg,transparent,#000 58%,transparent);
}

.solution-content {
  min-height: 438px;
}

.solution-slide h3 {
  max-width: 440px;
  font-size: clamp(2.45rem,3.45vw,3.7rem);
  font-weight: 800;
  letter-spacing: -.052em;
  line-height: .98;
}

.solution-slide > p:not(.solution-kicker) {
  max-width: 430px;
  color: #a4b4bd;
  font-size: 13px;
  line-height: 1.72;
}

.solution-tags span {
  border-radius: 7px;
  background: transparent;
}

.solution-stage {
  min-height: 438px;
  perspective: none;
  transform: none !important;
}

.solution-stage::after {
  display: none;
}

.solution-visual,
.solution-visual.is-active {
  inset: 4% 0 10%;
  transform: none;
}

.solution-visual.is-queued,
.solution-visual.is-previous {
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
}

.solution-visual img,
.solution-visual[data-solution-visual="3"] img,
.solution-visual[data-solution-visual="4"] img {
  width: min(690px,100%);
  max-height: 410px;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px;
  object-fit: contain;
  filter: none;
  box-shadow: 0 24px 54px rgba(0,0,0,.25);
}

.solution-visual-depot img {
  transform: none;
}

.solution-screen-label {
  right: 0;
  bottom: 0;
  left: 0;
  padding: 12px 2px;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.13);
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.solution-tab {
  border-radius: 7px;
}

.solution-nav button {
  border-radius: 9px;
}

/* Static editorial product family: no scroll choreography or floating cards. */
.home-ecosystem.ecosystem-3d {
  height: auto !important;
  padding: clamp(104px,8vw,132px) 0;
  overflow: hidden;
  background: #e7ece8;
}

.ecosystem-sticky {
  position: relative;
  height: auto;
  min-height: 0;
  padding: 0;
  background: transparent;
}

.ecosystem-stage {
  height: auto;
  display: grid;
  grid-template-columns: minmax(280px,.72fr) minmax(600px,1.28fr);
  align-items: start;
  gap: clamp(54px,7vw,96px);
  perspective: none;
}

.ecosystem-story {
  position: sticky;
  width: auto;
  top: 132px;
  left: auto;
  transform: none !important;
  opacity: 1 !important;
  will-change: auto;
}

.ecosystem-story h2 {
  color: var(--ink);
  font-size: clamp(3rem,4.5vw,4.7rem);
  font-weight: 800;
  letter-spacing: -.058em;
  line-height: .92;
}

.ecosystem-story h2 span {
  color: var(--blue);
  background: none;
  -webkit-text-fill-color: initial;
}

.ecosystem-story > strong {
  margin-top: 14px;
  color: #5e7480;
  font-size: clamp(1.45rem,2.2vw,2.2rem);
  font-weight: 700;
  letter-spacing: -.04em;
}

.ecosystem-story > a {
  width: min(300px,100%);
  margin-top: 32px;
  border-bottom-color: rgba(10,31,54,.22);
  color: var(--ink);
}

.ecosystem-deck {
  position: relative;
  inset: auto;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 1px;
  padding: 1px;
  border: 1px solid rgba(10,31,54,.12);
  background: rgba(10,31,54,.12);
  pointer-events: auto;
  perspective: none;
}

.ecosystem-3d-card,
.ecosystem-3d-card:nth-child(n) {
  position: relative;
  width: auto;
  height: 264px;
  top: auto;
  left: auto;
  display: flex;
  padding: 27px;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: #f8faf8;
  box-shadow: none;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transform-style: flat;
  will-change: auto;
}

.ecosystem-3d-card:nth-child(2),
.ecosystem-3d-card:nth-child(3) {
  background: #f1f5f2;
}

.ecosystem-3d-card::before,
.ecosystem-3d-card::after {
  display: none;
}

.ecosystem-3d-card > span {
  color: var(--blue);
}

.ecosystem-3d-card h3 {
  margin: auto 0 10px;
  color: var(--ink);
  font-size: clamp(1.85rem,2.3vw,2.45rem);
  font-weight: 780;
  letter-spacing: -.045em;
}

.ecosystem-3d-card p {
  color: #647985;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.ecosystem-3d-card > b {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: auto;
  height: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  color: var(--lime);
  font-size: 18px;
}

.ecosystem-3d-card:hover {
  color: var(--ink);
  background: #fff;
  box-shadow: inset 0 3px var(--lime);
  transform: none !important;
}

/* One dark product chapter, built around the real mobile interface. */
.platform {
  padding: clamp(104px,8vw,132px) 0;
  background: var(--canvas);
}

.platform-grid {
  gap: clamp(44px,6vw,78px);
  padding: clamp(34px,4.5vw,58px);
  border-radius: 20px;
  background: #071923;
  box-shadow: none;
}

.product-scene,
.mobile-product-scene {
  min-height: 540px;
  perspective: none;
}

.product-frame,
.mobile-frame {
  width: 108%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none !important;
}

.mobile-frame img {
  max-height: 560px;
  border-radius: 10px;
  filter: none;
}

.frame-bar {
  margin-bottom: 12px;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.platform-badge {
  right: -6px;
  bottom: 7%;
  border-radius: 10px;
  background: #0b2b36;
  box-shadow: 0 18px 42px rgba(0,0,0,.22);
  backdrop-filter: none;
}

.feature-stack {
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.13);
}

.feature-item {
  grid-template-columns: 38px 1fr;
  gap: 17px;
  padding: 24px 2px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.13);
  border-radius: 0;
  background: transparent;
}

.feature-item > span {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(80,183,220,.25);
  border-radius: 50%;
  color: #76c7e7;
  background: transparent;
  font-size: 9px;
}

.feature-item:hover,
.feature-item.is-active {
  border-color: rgba(255,255,255,.2);
  background: transparent;
  transform: none;
}

/* Editorial process table. */
.approach {
  padding: clamp(104px,8vw,132px) 0;
  background: #e9eeeb;
}

.process-list {
  border: 1px solid rgba(10,31,54,.13);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.process-card,
.process-card:nth-child(n) {
  min-height: 160px;
  padding: 30px 28px;
  border: 0;
  border-bottom: 1px solid rgba(10,31,54,.13);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none !important;
}

.process-card:last-child {
  border-bottom: 0;
}

.process-card:hover {
  background: rgba(255,255,255,.32);
  box-shadow: none;
}

.process-card h3 {
  margin: 26px 0 8px;
}

.process-card > b {
  display: none;
}

/* Company proof is an open editorial spread, not another dark card. */
.corporate {
  padding: clamp(104px,8vw,132px) 0;
  color: var(--ink);
  background: var(--canvas-soft);
}

.corporate-grid {
  gap: clamp(54px,7vw,96px);
  padding: 64px 0;
  border: 0;
  border-top: 1px solid rgba(10,31,54,.15);
  border-bottom: 1px solid rgba(10,31,54,.15);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.metric-panel {
  min-height: 430px;
  padding: 1px;
  gap: 1px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: rgba(255,255,255,.12);
  box-shadow: none;
}

.metric-panel > div:not(.metric-orbit) {
  padding: 22px;
  border: 0;
  border-radius: 0;
  background: #071923;
}

.metric-panel > div:nth-child(2) {
  border-radius: 15px 0 0;
}

.metric-panel > div:nth-child(3) {
  border-radius: 0 15px 0 0;
}

.metric-panel > div:nth-child(4) {
  border-radius: 0 0 0 15px;
}

.metric-panel > div:nth-child(5) {
  border-radius: 0 0 15px;
}

.corporate-copy h2 {
  color: var(--ink);
}

.corporate-copy h2 span {
  color: var(--blue);
}

.corporate-copy > p {
  max-width: 520px;
  margin-top: 28px;
  color: #5f7480;
  font-size: 15px;
  line-height: 1.75;
}

/* Quiet proof wall. Motion remains, but the cards no longer compete with the brands. */
.references {
  padding: clamp(104px,8vw,132px) 0;
  background: #edf1ee;
}

.logo-grid .logo-card {
  height: 108px;
  border-color: rgba(10,31,54,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.64);
}

.logo-grid .logo-card:hover {
  border-color: rgba(10,31,54,.16);
  box-shadow: none;
  transform: none;
}

.reference-foot {
  margin-top: 34px;
}

/* The only decorative particle field now signs the closing section. */
.contact {
  padding: clamp(104px,8vw,132px) 0;
  background: var(--canvas-soft);
}

.contact-card {
  min-height: 390px;
  padding: clamp(36px,5vw,62px);
  border-radius: 20px;
  background: #071923;
  box-shadow: none;
}

.contact-copy h2 {
  font-size: clamp(2.85rem,4.4vw,4.3rem);
  font-weight: 800;
  letter-spacing: -.052em;
}

.contact-link {
  border-radius: 10px;
  background: #0b2b36;
  backdrop-filter: none;
}

.contact-light-particles {
  opacity: .42;
}

.site-footer {
  background: #05131d;
}

.reveal {
  transition-duration: .55s;
}

@media (max-width: 1000px) {
  .ecosystem-stage {
    grid-template-columns: 1fr;
  }

  .ecosystem-story {
    position: relative;
    top: auto;
    max-width: 620px;
  }

  .platform-grid {
    border-radius: 18px;
  }

  .product-frame,
  .mobile-frame {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .solution-showcase {
    padding: 28px 20px 22px;
    border-radius: 16px;
  }

  .solution-stage {
    min-height: 330px;
  }

  .solution-visual img,
  .solution-visual[data-solution-visual="3"] img,
  .solution-visual[data-solution-visual="4"] img {
    max-height: 300px;
  }

  .ecosystem-deck {
    grid-template-columns: 1fr;
  }

  .ecosystem-3d-card,
  .ecosystem-3d-card:nth-child(n) {
    height: 215px;
  }

  .platform-grid {
    margin-inline: 0;
    padding: 28px 20px;
    border-radius: 16px;
  }

  .product-scene,
  .mobile-product-scene {
    min-height: 380px;
  }

  .corporate-grid {
    margin-inline: 0;
    padding: 44px 0;
  }

  .metric-panel {
    min-height: 390px;
  }

  .contact-card {
    border-radius: 16px;
  }
}

/* Accessible navigation for catalog and editorial pages on tablet/mobile. */
.catalog-mobile-nav,
.subpage-mobile-nav {
  display: none;
  position: relative;
  margin-left: auto;
}

.products-page,
.catalog-hero {
  overflow-x: clip;
}

.catalog-mobile-nav summary,
.subpage-mobile-nav summary {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(10,31,54,.12);
  border-radius: 13px;
  background: rgba(255,255,255,.82);
  cursor: pointer;
  list-style: none;
}

.catalog-mobile-nav summary::-webkit-details-marker,
.subpage-mobile-nav summary::-webkit-details-marker {
  display: none;
}

.catalog-mobile-nav summary span,
.subpage-mobile-nav summary span {
  position: absolute;
  width: 17px;
  height: 2px;
  border-radius: 99px;
  background: #0a2031;
  transition: transform .22s ease;
}

.catalog-mobile-nav summary span:first-child,
.subpage-mobile-nav summary span:first-child {
  transform: translateY(-3px);
}

.catalog-mobile-nav summary span:last-child,
.subpage-mobile-nav summary span:last-child {
  transform: translateY(3px);
}

.catalog-mobile-nav[open] summary span:first-child,
.subpage-mobile-nav[open] summary span:first-child {
  transform: rotate(45deg);
}

.catalog-mobile-nav[open] summary span:last-child,
.subpage-mobile-nav[open] summary span:last-child {
  transform: rotate(-45deg);
}

.catalog-mobile-nav > div,
.subpage-mobile-nav > div {
  position: absolute;
  z-index: 20;
  top: calc(100% + 10px);
  right: 0;
  width: min(280px, calc(100vw - 28px));
  display: grid;
  gap: 3px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 17px;
  background: rgba(249,251,252,.98);
  box-shadow: 0 24px 58px rgba(8,32,49,.18);
}

.catalog-mobile-nav > div a,
.subpage-mobile-nav > div a {
  padding: 12px 13px;
  border-radius: 10px;
  color: #31495b;
  font-size: 12px;
  font-weight: 750;
}

.catalog-mobile-nav > div a:hover,
.subpage-mobile-nav > div a:hover {
  color: #0a2031;
  background: #eaf1f4;
}

@media (max-width: 1020px) {
  .catalog-mobile-nav,
  .subpage-mobile-nav {
    display: block;
  }

  .catalog-header .catalog-mobile-nav {
    margin-left: auto;
  }

  .subpage-header .subpage-mobile-nav {
    margin-left: auto;
  }

  .catalog-cta,
  .subpage-cta {
    margin-left: 0;
  }
}

@media (max-width: 460px) {
  .catalog-cta,
  .subpage-cta {
    display: none;
  }
}

/* Fluid responsive frame — keeps the homepage substantial on large displays
   and prevents any component from escaping the viewport on small screens. */
html,
body {
  width: 100%;
  max-width: 100%;
}

#main {
  width: 100%;
  overflow-x: clip;
}

.container {
  width: min(1600px, calc(100% - clamp(32px, 6vw, 120px)));
}

.site-header {
  --header-width: 1600px;
}

.hero-layout > *,
.section-header > *,
.solution-showcase > *,
.platform-grid > *,
.approach-layout > *,
.corporate-grid > *,
.contact-card > *,
.ecosystem-stage > * {
  min-width: 0;
}

.contact-link strong,
.footer-column a,
.footer-column p {
  overflow-wrap: anywhere;
}

@media (min-width: 1440px) {
  .hero-layout {
    grid-template-columns: minmax(520px, .92fr) minmax(680px, 1.08fr);
    gap: clamp(64px, 5vw, 112px);
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero h1 {
    max-width: 800px;
    font-size: clamp(5rem, 4.9vw, 6.35rem);
  }

  .hero-lead {
    max-width: 660px;
    font-size: clamp(1.08rem, 1.05vw, 1.28rem);
  }

  .hero-visual {
    min-height: clamp(640px, 40vw, 760px);
  }

  .stage {
    width: min(920px, 100%);
  }

  .orbit-outer {
    width: clamp(650px, 39vw, 790px);
    height: clamp(650px, 39vw, 790px);
  }

  .orbit-inner {
    width: clamp(470px, 28vw, 575px);
    height: clamp(470px, 28vw, 575px);
  }

  .section-header h2,
  .approach-copy h2,
  .corporate-copy h2,
  .reference-heading h2 {
    font-size: clamp(3.2rem, 3.55vw, 4.7rem);
  }

  .solution-showcase {
    grid-template-columns: minmax(420px, .82fr) minmax(0, 1.18fr);
    min-height: 700px;
    padding: 58px 58px 34px;
  }

  .solution-stage,
  .solution-content {
    min-height: 500px;
  }

  .solution-visual img,
  .solution-visual[data-solution-visual="3"] img,
  .solution-visual[data-solution-visual="4"] img {
    width: min(820px, 100%);
    max-height: 490px;
  }

  .platform-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(430px, .88fr);
  }

  .contact-card {
    grid-template-columns: minmax(0, 1.2fr) minmax(420px, .8fr);
  }
}

@media (max-width: 960px) {
  .container {
    width: min(100% - 32px, 820px);
  }

  .site-header .nav-shell {
    width: calc(100% - 20px);
  }

  .hero-layout,
  .platform-grid,
  .approach-layout,
  .corporate-grid,
  .contact-card,
  .ecosystem-stage {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    width: 100%;
    max-width: 720px;
  }

  .hero h1,
  .hero-lead {
    max-width: 100%;
  }

  .hero-visual {
    width: 100%;
    overflow: hidden;
  }

  .stage {
    width: min(760px, 100%);
    margin-inline: auto;
  }

  .solution-showcase,
  .solution-stage,
  .platform-grid,
  .corporate-grid,
  .metric-panel,
  .contact-card {
    width: 100%;
    max-width: 100%;
  }

  .contact-actions {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .container {
    width: calc(100% - 24px);
  }

  .site-header .nav-shell {
    width: calc(100% - 16px);
  }

  .hero {
    padding: 104px 0 22px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
    overflow-wrap: normal;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-proof span {
    min-width: 0;
    font-size: 8px;
    letter-spacing: .07em;
  }

  .hero-visual {
    min-height: clamp(300px, 92vw, 390px);
  }

  .stage {
    width: 100%;
  }

  .laptop {
    transform: none;
  }

  .orbit-outer {
    width: min(100%, 390px);
    height: auto;
    aspect-ratio: 1;
  }

  .orbit-inner {
    width: min(72%, 285px);
    height: auto;
    aspect-ratio: 1;
  }

  .section-header h2,
  .approach-copy h2,
  .corporate-copy h2,
  .contact-copy h2,
  .reference-heading h2 {
    font-size: clamp(2.35rem, 11.5vw, 3.5rem);
    overflow-wrap: break-word;
  }

  .solution-showcase {
    padding: 28px 16px 20px;
  }

  .solution-content {
    min-height: 400px;
  }

  .solution-stage {
    min-height: 300px;
    margin-inline: 0;
  }

  .solution-visual,
  .solution-visual.is-active {
    inset: 0 0 8%;
  }

  .solution-visual img,
  .solution-visual[data-solution-visual="3"] img,
  .solution-visual[data-solution-visual="4"] img {
    width: 100%;
    max-height: 280px;
  }

  .platform-grid,
  .contact-card {
    padding-inline: 18px;
  }

  .mobile-frame,
  .product-frame {
    width: 100%;
    margin-inline: 0;
  }

  .metric-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .metric-panel > div:nth-child(n) {
    min-height: 150px;
    border-radius: 0;
  }

  .metric-panel > div:first-of-type {
    border-radius: 15px 15px 0 0;
  }

  .metric-panel > div:last-child {
    border-radius: 0 0 15px 15px;
  }

  .contact-link {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (max-width: 380px) {
  .site-header .brand .header-wordmark {
    width: 124px;
  }

  .nav-cta {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13.5vw, 3.25rem);
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }
}
