@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --accent: oklch(62.04% 0.195 214.79);
  --accent-strong: #0d6bb4;
  --accent-soft: #dff4ff;
  --navy: #071d3b;
  --navy-2: #123e72;
  --ink: #111d2d;
  --muted: #657184;
  --background: #f7f9fa;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-solid: #fff;
  --line: rgba(7, 29, 59, 0.12);
  --line-strong: rgba(7, 29, 59, 0.2);
  --radius: 14px;
  --radius-lg: 26px;
  --container: min(1240px, calc(100vw - 40px));
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Manrope", system-ui, sans-serif;
  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(7, 29, 59, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 29, 59, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
  content: "";
  pointer-events: none;
}

button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 9px 14px;
  border-radius: 9px;
  background: var(--navy);
  color: #fff;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.site-shell { overflow: clip; }
.container { width: var(--container); margin-inline: auto; }

.nav-wrap {
  position: sticky;
  z-index: 100;
  top: 0;
  padding-top: 14px;
}

.nav {
  width: var(--container);
  min-height: 70px;
  margin-inline: auto;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(7, 29, 59, 0.1);
  border-radius: 18px;
  background: rgba(250, 252, 253, 0.82);
  box-shadow: 0 18px 60px rgba(4, 24, 49, 0.06);
  backdrop-filter: blur(18px) saturate(140%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { width: 36px; height: 36px; }
.brand-name {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .18em;
}

.nav-links { display: flex; align-items: center; gap: 7px; }
.nav-link {
  position: relative;
  min-width: 82px;
  padding: 10px 18px;
  border-radius: 10px;
  text-align:center;
  color: #4e5d70;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active { background: rgba(13, 107, 180, .07); color: var(--navy); }
.nav-link.active::after {
  position: absolute;
  right: 18px;
  bottom: 5px;
  left: 18px;
  height: 1px;
  background: var(--accent);
  content: "";
}

.nav-actions { display: flex; align-items: center; gap: 8px; }
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 11px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #415066;
  cursor: pointer;
}
.language-switcher:hover { background: rgba(7, 29, 59, .05); }
.language-switcher svg { width: 16px; }

.button {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 24px rgba(7, 29, 59, .16);
}
.button-primary:hover { background: #0b2a54; box-shadow: 0 13px 30px rgba(7, 29, 59, .22); }
.button-accent { background: var(--accent); color: #fff; box-shadow: 0 10px 28px rgba(0, 163, 224, .22); }
.button-outline { border-color: var(--line-strong); background: rgba(255,255,255,.64); color: var(--navy); }
.button-ghost { background: transparent; color: var(--navy); }
.button-sm { min-height: 42px; padding-inline: 15px; font-size: 14px; }
.button svg { width: 17px; height: 17px; }

.menu-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 11px;
  background: rgba(7,29,59,.05);
  display: none;
  place-items: center;
  color: var(--navy);
  cursor: pointer;
}

.mega-menu {
  position: absolute;
  top: 92px;
  right: 0;
  left: 0;
  width: min(1480px, calc(100vw - 40px));
  max-height: 0;
  margin-inline: auto;
  border: 1px solid transparent;
  border-radius: 15px;
  background: #fbfcfd;
  box-shadow: 0 35px 90px rgba(4, 24, 49, .16);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-12px) scaleY(.94);
  transform-origin: top center;
  transition: max-height .48s cubic-bezier(.22, .8, .2, 1), opacity .22s ease, transform .42s cubic-bezier(.22, .8, .2, 1), border-color .25s ease;
}

.mega-menu::before {
  position: absolute;
  top: -10px;
  left: var(--mega-pointer-x, 50%);
  width: 20px;
  height: 20px;
  background: #fbfcfd;
  content: "";
  opacity: 0;
  transform: translateX(-50%) rotate(45deg);
  transition: opacity .15s ease, left .32s cubic-bezier(.22,.8,.2,1);
}

.mega-menu.open {
  max-height: 530px;
  border-color: rgba(7, 29, 59, .1);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scaleY(1);
}
.mega-menu.open::before { opacity: 1; }

.mega-menu-inner { position:relative; min-height:420px; padding:0; overflow:hidden; }
.mega-panel { min-height: 420px; display: none; grid-template-columns: minmax(300px, 25%) minmax(0, 75%); gap: 0; }
.mega-panel.active { display:grid; }
.mega-panel-switching { position:absolute; inset:0; width:100%; display:grid; will-change:transform; }
.mega-panel-switching.mega-enter-from-right { animation:megaPanelEnterRight 380ms cubic-bezier(.72,0,.2,1) both; }
.mega-panel-switching.mega-enter-from-left { animation:megaPanelEnterLeft 380ms cubic-bezier(.72,0,.2,1) both; }
.mega-panel-switching.mega-exit-to-left { animation:megaPanelExitLeft 380ms cubic-bezier(.72,0,.2,1) both; }
.mega-panel-switching.mega-exit-to-right { animation:megaPanelExitRight 380ms cubic-bezier(.72,0,.2,1) both; }
@keyframes megaPanelEnterRight { from { transform:translateX(100%); } to { transform:translateX(0); } }
@keyframes megaPanelEnterLeft { from { transform:translateX(-100%); } to { transform:translateX(0); } }
@keyframes megaPanelExitLeft { from { transform:translateX(0); } to { transform:translateX(-100%); } }
@keyframes megaPanelExitRight { from { transform:translateX(0); } to { transform:translateX(100%); } }

.mega-feature { position: relative; padding: 34px 34px 30px; border-right: 0; background: radial-gradient(circle at 85% 16%, rgba(109,214,255,.34), transparent 30%), linear-gradient(145deg, #123e72, #071d3b 72%); color: #fff; overflow: hidden; }
.mega-feature::after { position: absolute; right: -70px; bottom: -105px; width: 230px; height: 230px; border: 1px solid rgba(255,255,255,.16); border-radius: 45% 55% 58% 42%; box-shadow: 0 0 0 28px rgba(255,255,255,.03), 0 0 0 58px rgba(255,255,255,.025); content:""; }
.mega-feature-top { margin-bottom: 29px; display: flex; align-items: center; gap: 18px; color: #acd2e8; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.mega-number { color: #6dd6ff; font-variant-numeric: tabular-nums; }
.mega-terminal { width: fit-content; margin-bottom: 31px; padding: 8px 10px; border: 1px solid rgba(109,214,255,.27); border-radius: 7px; background: rgba(1,12,28,.33); display: flex; align-items:center; gap:7px; color:#b9ebff; font: 11px/1 ui-monospace,SFMono-Regular,Menlo,monospace; }
.mega-terminal i { width:6px; height:13px; background:#6dd6ff; animation:terminalBlink 1.1s steps(1) infinite; }
@keyframes terminalBlink { 50% { opacity:0; } }
.mega-feature h2 { position:relative; z-index:1; max-width: 430px; margin: 0; color: #fff; font-family: var(--font-display); font-size: clamp(25px, 2.2vw, 36px); font-weight: 500; letter-spacing: -.045em; line-height: 1.08; }
.mega-feature p { position:relative; z-index:1; max-width: 420px; margin: 17px 0 23px; color: #b9cada; font-size: 13px; line-height: 1.6; }
.mega-cta { position:relative; z-index:1; width: fit-content; display: inline-flex; align-items: center; gap: 9px; color: #fff; font-size: 13px; font-weight: 600; }
.mega-cta svg { width: 17px; transition: transform .2s; }
.mega-cta:hover svg { transform: translateX(4px); }

.mega-cards { padding: 34px 24px 30px; display: grid; grid-template-columns: repeat(4, 1fr); background:#fbfcfd; }
.mega-card { min-height: 350px; padding: 9px 24px 16px; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; transition: background .25s, transform .25s; }
.mega-card:first-child { border-left: 0; }
.mega-card:last-child { border-right:0; }
.mega-card:hover { background: #fff; transform: translateY(-3px); }
.mega-card-index { color: #9aa7b5; font-size: 11px; }
.mega-card strong { margin-bottom: 9px; display: block; color: var(--navy); font-family: var(--font-display); font-size: 17px; font-weight: 600; line-height: 1.3; }
.mega-card small { display: block; color: var(--muted); font-size: 12px; line-height: 1.5; }
.mega-card i { width: 35px; height: 35px; margin-top: 22px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--accent-strong); font-style: normal; transition: color .2s, background .2s, transform .2s; }
.mega-card:hover i { background: var(--navy); color: #fff; transform: rotate(8deg); }

.cookie-console {
  position: fixed;
  z-index: 300;
  bottom: 18px;
  left: 50%;
  width: min(880px, calc(100vw - 30px));
  border: 1px solid rgba(7,29,59,.13);
  border-radius: 16px;
  background:
    radial-gradient(circle at 94% 105%, rgba(216,255,79,.18), transparent 28%),
    rgba(253,254,254,.97);
  box-shadow: 0 24px 75px rgba(7,29,59,.18), 0 3px 12px rgba(7,29,59,.06);
  color: var(--ink);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translate(-50%, 24px);
  transition: opacity .28s ease, transform .35s cubic-bezier(.22,.8,.2,1);
  backdrop-filter: blur(22px) saturate(1.15);
}
.cookie-console[hidden] { display:none; }
.cookie-console.visible { opacity:1; pointer-events:auto; transform:translate(-50%,0); }
.cookie-console-head { min-height:40px; padding:0 12px; border-bottom:1px solid rgba(7,29,59,.1); background:rgba(243,246,247,.9); display:flex; align-items:center; gap:12px; }
.cookie-console-head code { color:#59677a; font:600 10px/1 ui-monospace,SFMono-Regular,Menlo,monospace; letter-spacing:.035em; }
.console-dots { display:flex; gap:7px; }
.console-dots i { width:9px; height:9px; border:1px solid rgba(0,0,0,.08); border-radius:50%; box-shadow:inset 0 -1px 1px rgba(0,0,0,.12); }
.console-dots i:nth-child(1) { background:#ff5f57; }.console-dots i:nth-child(2) { background:#febc2e; }.console-dots i:nth-child(3) { background:#28c840; }
.cookie-close { width:28px; height:28px; margin-left:auto; padding:0; border:0; border-radius:8px; background:transparent; color:#8a96a6; font-size:20px; line-height:1; cursor:pointer; transition:background .2s,color .2s; }
.cookie-close:hover { background:rgba(7,29,59,.07); color:var(--navy); }
.cookie-console-body { padding:19px 20px 18px; display:grid; grid-template-columns:minmax(0,1fr) auto; align-items:center; gap:15px 24px; }
.cookie-message { display:flex; align-items:flex-start; gap:12px; }
.console-prompt { flex:0 0 auto; margin-top:1px; padding:2px 6px; border-radius:6px; background:var(--navy); color:#d8ff4f; font:700 11px/1.55 ui-monospace,SFMono-Regular,Menlo,monospace; }
.cookie-message p { max-width:535px; margin:0; color:#526073; font:13px/1.55 var(--font-sans); }
.cookie-actions { display:flex; align-items:center; flex-wrap:wrap; justify-content:flex-end; gap:8px; }
.console-button,.console-link { min-height:38px; padding:0 14px; border:1px solid rgba(7,29,59,.13); border-radius:10px; background:#fff; color:#344257; font:600 11px/1 var(--font-sans); box-shadow:0 1px 2px rgba(7,29,59,.04); cursor:pointer; transition:transform .18s ease,box-shadow .18s ease,background .18s ease,border-color .18s ease; }
.console-button:hover,.console-link:hover { border-color:rgba(7,29,59,.22); background:#f7f9fa; box-shadow:0 4px 12px rgba(7,29,59,.07); transform:translateY(-1px); }
.console-button-primary { border-color:#c5ea3d; background:#d8ff4f; color:#132106; box-shadow:0 5px 15px rgba(164,204,22,.2); }
.console-button-primary:hover { border-color:#bde335; background:#cefa36; color:#132106; box-shadow:0 7px 20px rgba(164,204,22,.27); }
.console-link { padding-inline:10px; border-color:transparent; background:transparent; box-shadow:none; color:#697689; }
.console-link span { color:#1c640d; }
.cookie-settings { grid-column:1/-1; max-height:0; border-top:1px solid transparent; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)) auto; gap:10px; opacity:0; overflow:hidden; transition:max-height .35s ease,opacity .25s ease,padding .35s ease,border-color .25s; }
.cookie-settings.open { max-height:126px; padding-top:15px; border-color:rgba(7,29,59,.09); opacity:1; }
.cookie-settings label { min-height:64px; padding:10px 11px; border:1px solid rgba(7,29,59,.1); border-radius:12px; background:rgba(246,248,249,.9); display:flex; align-items:center; justify-content:space-between; gap:12px; transition:border-color .2s,background .2s,box-shadow .2s; }
.cookie-settings label:has(input:checked) { border-color:rgba(145,181,15,.34); background:rgba(216,255,79,.1); box-shadow:inset 0 0 0 1px rgba(216,255,79,.12); }
.cookie-settings strong,.cookie-settings small { display:block; font-family:var(--font-sans); }
.cookie-settings strong { color:var(--navy); font-size:12px; }.cookie-settings small { margin-top:3px; color:#7a8797; font-size:10px; line-height:1.3; }
.cookie-settings input { position:relative; flex:0 0 auto; width:36px; height:21px; margin:0; border:1px solid #cbd2da; border-radius:999px; appearance:none; background:#dfe4e9; cursor:pointer; transition:background .22s,border-color .22s; }
.cookie-settings input::after { position:absolute; top:2px; left:2px; width:15px; height:15px; border-radius:50%; background:#fff; box-shadow:0 1px 3px rgba(7,29,59,.25); content:""; transition:transform .22s cubic-bezier(.22,.8,.2,1); }
.cookie-settings input:checked { border-color:#b5d937; background:#d8ff4f; }
.cookie-settings input:checked::after { transform:translateX(15px); }
.cookie-settings input:disabled { cursor:default; opacity:1; }
.cookie-settings > .console-button { min-height:64px; align-self:stretch; }

.hero { position: relative; min-height: calc(100svh - 84px); padding: clamp(28px,5vh,70px) 0; display: grid; align-items: center; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr); align-items: center; gap: 68px; }
.eyebrow {
  width: fit-content;
  margin: 0 0 23px;
  padding: 6px 10px;
  border: 1px solid rgba(13, 107, 180, .16);
  border-radius: 8px;
  background: rgba(226, 246, 255, .7);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero h1, .page-hero h1 {
  max-width: 800px;
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1.04;
}
.hero h1 { font-size: clamp(50px, min(6vw,9.2svh), 86px); }
.hero h1 em { color: var(--accent-strong); font-style: normal; }
.hero-copy > p { max-width: 620px; margin: clamp(15px,2.6svh,26px) 0 0; color: var(--muted); font-size: clamp(16px,2svh,19px); line-height: 1.65; }
.hero-actions { margin-top: clamp(18px,3.4svh,34px); display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { margin-top: clamp(22px,4.7svh,48px); padding-top: clamp(13px,2.1svh,21px); border-top: 1px solid var(--line); display: flex; align-items: center; gap: 24px; color: var(--muted); font-size: 13px; }
.hero-proof strong { color: var(--navy); font-size: 18px; font-weight: 600; }
.proof-item { display: grid; }
.proof-divider { width: 1px; height: 32px; background: var(--line); }

.hero-visual { position: relative; min-height: clamp(390px,58svh,520px); perspective: 1200px; }
.visual-frame {
  position: absolute;
  inset: 34px 0 34px 32px;
  border: 1px solid rgba(7,29,59,.13);
  background: rgba(255,255,255,.55);
  box-shadow: 0 35px 90px rgba(7,29,59,.09);
  backdrop-filter: blur(14px);
  transform: rotateY(-4deg) rotateX(2deg);
}
.visual-frame::before, .visual-frame::after {
  position: absolute;
  background: var(--line);
  content: "";
}
.visual-frame::before { top: 46px; right: 0; left: 0; height: 1px; }
.visual-frame::after { top: 0; bottom: 0; left: 46px; width: 1px; }
.frame-dots { position: absolute; top: 18px; left: 66px; display: flex; gap: 6px; }
.frame-dots i { width: 7px; height: 7px; border-radius: 50%; background: #d3dbe3; }
.frame-content { position: absolute; inset: 82px 42px 42px 84px; }
.frame-label { margin-bottom: 20px; color: #8190a1; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.frame-title { max-width: 360px; color: var(--navy); font-family: var(--font-display); font-size: clamp(30px, 3vw, 45px); line-height: 1.08; letter-spacing: -.045em; }
.frame-title span { color: var(--accent-strong); }
.frame-line { width: 62%; height: 7px; margin-top: 34px; background: #e7edf2; }
.frame-line.short { width: 42%; margin-top: 10px; }
.frame-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 180px;
  padding: 17px;
  border: 1px solid rgba(7,29,59,.1);
  border-radius: 15px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 20px 40px rgba(7,29,59,.1);
}
.frame-card-top { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 11px; }
.frame-card-number { margin-top: 8px; color: var(--navy); font-size: 27px; font-weight: 600; }
.mini-chart { height: 38px; margin-top: 8px; }
.mini-chart svg { overflow: visible; }

.orb {
  position: absolute;
  border-radius: 45% 55% 58% 42% / 55% 42% 58% 45%;
  filter: blur(.1px);
  pointer-events: none;
  animation: drift 12s ease-in-out infinite alternate;
}
.orb-one { width: 235px; height: 210px; top: -38px; right: -76px; background: radial-gradient(circle at 30% 30%, rgba(178,235,255,.92), rgba(62,177,226,.08) 68%); }
.orb-two { width: 155px; height: 140px; bottom: 3px; left: -40px; background: radial-gradient(circle at 35% 30%, rgba(198,235,255,.86), rgba(18,62,114,.05) 72%); animation-delay: -4s; }
.orb-three { width: 82px; height: 72px; top: 4px; left: 14px; border: 1px solid rgba(13,107,180,.16); background: rgba(226,246,255,.36); animation-delay: -8s; }
@keyframes drift { to { transform: translate3d(18px, -16px, 0) rotate(8deg); } }

.marquee-line { border-block: 1px solid var(--line); background: rgba(255,255,255,.46); overflow: hidden; }
.marquee-track { min-width: max-content; padding: 17px 0; display: flex; gap: 58px; align-items: center; color: #7b8796; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; animation: marquee 30s linear infinite; }
.marquee-track span { display: inline-flex; align-items: center; gap: 58px; }
.marquee-track span::after { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); content: ""; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 120px 0; }
.section-tight { padding: 88px 0; }
.section-dark { position: relative; background: var(--navy); color: #fff; }
.section-dark::before { position: absolute; inset: 0; opacity: .4; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px); background-size: 64px 64px; content: ""; }
.section-dark > .container { position: relative; }
.section-kicker { margin: 0 0 18px; color: var(--accent-strong); font-size: 12px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.section-dark .section-kicker { color: #6dd6ff; }
.section-head { margin-bottom: 50px; display: flex; align-items: end; justify-content: space-between; gap: 32px; }
.section-title { max-width: 700px; margin: 0; color: var(--navy); font-family: var(--font-display); font-size: clamp(36px, 4vw, 60px); font-weight: 500; letter-spacing: -.045em; line-height: 1.08; }
.section-dark .section-title { color: #fff; }
.section-description { max-width: 460px; margin: 0; color: var(--muted); }
.section-dark .section-description { color: #aebed2; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--navy); font-weight: 600; }
.text-link::after { content: "↗"; transition: transform .2s; }
.text-link:hover::after { transform: translate(3px, -3px); }

.services-grid { border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(2, 1fr); }
.service-item { min-height: 260px; padding: 38px 42px 36px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 64px 1fr; gap: 26px; }
.service-item:nth-child(odd) { border-right: 1px solid var(--line); }
.service-item:nth-child(even) { padding-left: 42px; }
.service-number { padding-top: 4px; color: #9eabb9; font-size: 13px; }
.service-icon { width: 44px; height: 44px; margin-bottom: 28px; border: 1px solid rgba(13,107,180,.18); border-radius: 12px; background: #e7f7ff; display: grid; place-items: center; color: var(--accent-strong); }
.service-icon svg { width: 21px; height: 21px; }
.service-item h3 { margin: 0 0 11px; color: var(--navy); font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: -.025em; }
.service-item p { max-width: 410px; margin: 0; color: var(--muted); }

.projects-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.project-card { position: relative; min-height: 510px; border: 1px solid rgba(255,255,255,.13); overflow: hidden; color: #fff; isolation: isolate; }
.project-card:nth-child(1), .project-card:nth-child(4) { grid-column: span 7; }
.project-card:nth-child(2), .project-card:nth-child(3) { grid-column: span 5; }
.project-art { position: absolute; inset: 0; z-index: -1; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.project-card:hover .project-art { transform: scale(1.04); }
.project-art::after { position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,15,32,.92), rgba(3,15,32,.06) 65%); content: ""; }
.art-atlas { background: radial-gradient(circle at 70% 28%, #49b8dc 0 5%, transparent 6%), radial-gradient(circle at 74% 32%, transparent 0 16%, rgba(139,224,255,.5) 17% 17.5%, transparent 18%), linear-gradient(145deg,#17466a,#081d38 67%); }
.art-atlas::before { position:absolute; width:320px; height:320px; top:40px; right:28px; border:1px solid rgba(180,239,255,.45); border-radius:50%; box-shadow: 0 0 0 38px rgba(132,216,250,.05),0 0 0 78px rgba(132,216,250,.04); content:""; }
.art-luma { background: linear-gradient(135deg,#ddd8ce,#f7f5ef); }
.art-luma::before { position:absolute; inset:12% 18%; background:linear-gradient(135deg,#102c4d 0 49.5%,#77d2ef 50%); clip-path:polygon(0 0,100% 0,72% 100%,0 76%); box-shadow:0 30px 50px rgba(7,29,59,.22); content:""; }
.art-luma::after { background: linear-gradient(to top,rgba(3,15,32,.78),transparent 70%); }
.art-nova { background: linear-gradient(150deg,#d6f3ff,#80cde9); }
.art-nova::before { position:absolute; width:76%; height:72%; left:12%; top:12%; border:1px solid rgba(7,29,59,.17); background:rgba(255,255,255,.32); box-shadow:16px 18px 0 rgba(7,29,59,.08); transform:rotate(-5deg); content:""; }
.art-terra { background: radial-gradient(circle at 50% 45%,#83d5ed 0 11%,transparent 11.5%),radial-gradient(circle at 50% 45%,transparent 0 26%,rgba(126,211,238,.3) 26.5% 27%,transparent 27.5%),linear-gradient(135deg,#0a2548,#06162d); }
.project-content { position: absolute; right: 0; bottom: 0; left: 0; padding: 34px; display: flex; align-items: end; justify-content: space-between; gap: 25px; }
.project-meta { margin-bottom: 8px; color: #b8cfe1; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.project-card h3 { margin: 0; font-family: var(--font-display); font-size: 30px; font-weight: 500; letter-spacing: -.035em; }
.project-arrow { flex: 0 0 auto; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; display: grid; place-items: center; transition: background .2s, color .2s; }
.project-card:hover .project-arrow { background: #fff; color: var(--navy); }

.process-grid { border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); }
.process-step { min-height: 300px; padding: 34px 30px 24px; border-right: 1px solid var(--line); }
.process-step:last-child { border-right: 0; }
.process-index { margin-bottom: 75px; color: var(--accent-strong); font-size: 13px; }
.process-step h3 { margin: 0 0 12px; color: var(--navy); font-family: var(--font-display); font-size: 24px; font-weight: 600; }
.process-step p { margin: 0; color: var(--muted); font-size: 15px; }

.stats { border-block: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 38px 22px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat-number { display: block; color: var(--navy); font-family: var(--font-display); font-size: 43px; font-weight: 500; letter-spacing: -.04em; }
.stat-label { color: var(--muted); font-size: 13px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card { border: 1px solid var(--line); background: rgba(255,255,255,.57); transition: transform .25s, box-shadow .25s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 22px 55px rgba(7,29,59,.08); }
.blog-cover { position: relative; height: 220px; overflow: hidden; background: #e8f4fa; }
.blog-cover::before, .blog-cover::after { position:absolute; content:""; }
.cover-grid::before { inset:0; background-image:linear-gradient(rgba(7,29,59,.1) 1px,transparent 1px),linear-gradient(90deg,rgba(7,29,59,.1) 1px,transparent 1px);background-size:34px 34px;transform:perspective(500px) rotateX(55deg) scale(1.3); }
.cover-grid::after { width:95px;height:95px;left:calc(50% - 47px);top:calc(50% - 47px);border-radius:24px;background:var(--navy);box-shadow:0 20px 50px rgba(7,29,59,.24);transform:rotate(15deg); }
.cover-orbit { background:var(--navy); }
.cover-orbit::before { width:140px;height:140px;left:calc(50% - 70px);top:38px;border:1px solid rgba(123,217,250,.65);border-radius:50%;box-shadow:0 0 0 25px rgba(123,217,250,.07),0 0 0 48px rgba(123,217,250,.04); }
.cover-orbit::after { width:18px;height:18px;left:67%;top:45px;border-radius:50%;background:#6dd6ff;box-shadow:0 0 34px #6dd6ff; }
.cover-type::before { content:"Aa";inset:0;display:grid;place-items:center;color:var(--navy);font-family:var(--font-display);font-size:88px;letter-spacing:-.09em; }
.blog-body { padding: 25px; }
.blog-meta { margin-bottom: 13px; display: flex; gap: 12px; color: #7d8b9d; font-size: 12px; }
.blog-card h3 { margin: 0 0 22px; color: var(--navy); font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -.025em; line-height: 1.3; }
.blog-card .text-link { font-size: 14px; }

.cta-panel { position: relative; padding: 74px; border: 1px solid var(--line); background: rgba(255,255,255,.62); overflow:hidden; display:grid; grid-template-columns: 1fr auto; align-items:center; gap:45px; }
.cta-panel::after { position:absolute;width:290px;height:290px;right:9%;bottom:-200px;border:1px solid rgba(13,107,180,.15);border-radius:45% 55% 60% 40%;background:rgba(152,220,247,.15);content:""; }
.cta-panel h2 { max-width: 700px; margin:0; color:var(--navy);font-family:var(--font-display);font-size:clamp(36px,4vw,58px);font-weight:500;letter-spacing:-.045em;line-height:1.1; }
.cta-panel p { max-width:620px;margin:18px 0 0;color:var(--muted); }
.cta-panel .button { position:relative;z-index:1; }

.page-hero { padding: 120px 0 85px; }
.page-hero-grid { display:grid; grid-template-columns: minmax(0,1fr) 360px; gap:70px; align-items:end; }
.page-hero h1 { font-size:clamp(52px,7vw,92px); }
.page-hero p { margin:0;color:var(--muted);font-size:18px; }
.breadcrumb { margin-bottom: 34px; display:flex;align-items:center;gap:10px;color:#8390a1;font-size:13px; }
.breadcrumb a:hover { color:var(--accent-strong); }
.breadcrumb i { width:4px;height:4px;border-radius:50%;background:#aeb8c3; }

.filter-bar { margin-bottom:36px;padding-bottom:17px;border-bottom:1px solid var(--line);display:flex;justify-content:space-between;align-items:center;gap:20px; }
.filters { display:flex;gap:7px;flex-wrap:wrap; }
.filter-chip { padding:8px 13px;border:1px solid transparent;border-radius:9px;background:transparent;color:var(--muted);font-size:13px;cursor:pointer; }
.filter-chip:hover,.filter-chip.active { border-color:var(--line);background:#fff;color:var(--navy); }
.result-count { color:#8995a4;font-size:13px; }

.about-intro { display:grid;grid-template-columns:5fr 7fr;gap:100px; }
.large-copy { margin:0;color:var(--navy);font-family:var(--font-display);font-size:clamp(30px,3.5vw,48px);font-weight:500;letter-spacing:-.04em;line-height:1.22; }
.body-copy p { margin:0 0 20px;color:var(--muted);font-size:17px; }
.values-grid { display:grid;grid-template-columns:repeat(3,1fr);border:1px solid rgba(255,255,255,.14); }
.value-card { min-height:300px;padding:36px;border-right:1px solid rgba(255,255,255,.14); }
.value-card:last-child { border:0; }
.value-card .value-icon { width:48px;height:48px;margin-bottom:75px;border:1px solid rgba(109,214,255,.35);display:grid;place-items:center;color:#6dd6ff; }
.value-card h3 { margin:0 0 12px;font-family:var(--font-display);font-size:24px;font-weight:600; }
.value-card p { margin:0;color:#9eb0c6; }

.contact-layout { display:grid;grid-template-columns:5fr 7fr;gap:90px; }
.contact-details { border-top:1px solid var(--line); }
.contact-row { padding:20px 0;border-bottom:1px solid var(--line);display:grid;grid-template-columns:120px 1fr;gap:20px; }
.contact-label { color:#8b97a6;font-size:13px; }
.contact-value { color:var(--navy); }
.contact-form { padding:42px;border:1px solid var(--line);background:rgba(255,255,255,.68); }
.form-grid { display:grid;grid-template-columns:1fr 1fr;gap:20px; }
.field { display:grid;gap:8px; }
.field.full { grid-column:1/-1; }
.field label { color:#526074;font-size:13px;font-weight:600; }
.field input,.field textarea,.field select { width:100%;border:1px solid rgba(7,29,59,.13);border-radius:11px;outline:0;background:#fff;color:var(--ink);transition:border .2s,box-shadow .2s; }
.field input,.field select { height:50px;padding:0 14px; }
.field textarea { min-height:148px;padding:14px;resize:vertical; }
.field input:focus,.field textarea:focus,.field select:focus { border-color:var(--accent);box-shadow:0 0 0 3px rgba(0,163,224,.12); }
.form-footer { margin-top:24px;display:flex;align-items:center;justify-content:space-between;gap:20px; }
.form-note { max-width:320px;color:#8b97a6;font-size:12px; }
.form-success { margin-top:20px;padding:12px 14px;border:1px solid rgba(35,171,105,.2);border-radius:10px;background:#eafaf1;color:#167947;display:none; }
.form-success.show { display:block; }

.case-hero { min-height:570px;padding:115px 0 70px;background:var(--navy);color:#fff; }
.case-hero .breadcrumb { color:#91a7c1; }
.case-meta { margin-bottom:24px;color:#6dd6ff;font-size:12px;letter-spacing:.12em;text-transform:uppercase; }
.case-hero h1 { max-width:890px;margin:0;font-family:var(--font-display);font-size:clamp(55px,8vw,108px);font-weight:500;letter-spacing:-.06em;line-height:.96; }
.case-summary { margin-top:52px;padding-top:26px;border-top:1px solid rgba(255,255,255,.14);display:grid;grid-template-columns:2fr repeat(3,1fr);gap:40px; }
.case-summary p { max-width:480px;margin:0;color:#b4c4d5; }
.case-fact span { display:block;color:#7e94ae;font-size:11px;text-transform:uppercase;letter-spacing:.1em; }
.case-fact strong { display:block;margin-top:8px;font-weight:500; }
.case-visual { height:620px;background:radial-gradient(circle at 70% 30%,#6dd6ff 0 3%,transparent 3.3%),radial-gradient(circle at 70% 30%,transparent 0 18%,rgba(109,214,255,.25) 18.2% 18.4%,transparent 18.6%),linear-gradient(140deg,#143f66,#06172e);position:relative;overflow:hidden; }
.case-visual::before { position:absolute;width:550px;height:550px;right:8%;top:35px;border:1px solid rgba(109,214,255,.3);border-radius:50%;box-shadow:0 0 0 70px rgba(109,214,255,.04),0 0 0 140px rgba(109,214,255,.025);content:""; }
.case-content { display:grid;grid-template-columns:4fr 8fr;gap:90px; }
.case-content h2 { position:sticky;top:120px;margin:0;color:var(--navy);font-family:var(--font-display);font-size:38px;font-weight:500;letter-spacing:-.04em; }
.case-text h3 { margin:45px 0 12px;color:var(--navy);font-family:var(--font-display);font-size:26px; }
.case-text h3:first-child { margin-top:0; }
.case-text p { color:var(--muted);font-size:17px; }
.quote { margin:50px 0;padding:34px;border-left:2px solid var(--accent);background:#fff;color:var(--navy);font-family:var(--font-display);font-size:25px;line-height:1.45; }

.article-layout { display:grid;grid-template-columns:260px minmax(0,760px);gap:80px;justify-content:center; }
.article-aside { position:sticky;top:120px;height:fit-content; }
.article-aside h4 { margin:0 0 15px;color:#8a97a6;font-size:11px;letter-spacing:.12em;text-transform:uppercase; }
.article-aside a { padding:7px 0;display:block;color:var(--muted);font-size:14px; }
.article-aside a:hover { color:var(--accent-strong); }
.article { color:#4d5b6d;font-size:18px;line-height:1.85; }
.article .lead { color:var(--navy);font-family:var(--font-display);font-size:28px;line-height:1.5; }
.article h2 { margin:62px 0 18px;color:var(--navy);font-family:var(--font-display);font-size:36px;font-weight:600;letter-spacing:-.035em;line-height:1.2; }
.article ul { padding-left:22px; }
.article-callout { margin:38px 0;padding:27px;border:1px solid var(--line);background:#fff;color:var(--navy); }

.site-footer { padding:70px 0 28px;background:#06172e;color:#fff; }
.footer-top { padding-bottom:62px;display:grid;grid-template-columns:minmax(280px,2fr) repeat(3,minmax(120px,1fr));gap:60px; }
.footer-brand .brand-name { color:#fff; }
.footer-brand p { max-width:340px;margin:22px 0 0;color:#8fa4bc; }
.footer-title { margin:0 0 18px;color:#6f87a1;font-size:11px;letter-spacing:.12em;text-transform:uppercase; }
.footer-links { display:grid;gap:9px; }
.footer-links a { width:fit-content;color:#c5d0dd;font-size:14px; }
.footer-links a:hover { color:#6dd6ff; }
.footer-bottom { padding-top:22px;border-top:1px solid rgba(255,255,255,.11);display:flex;justify-content:space-between;color:#70879f;font-size:12px; }
.social-links { display:flex;flex-wrap:wrap;gap:10px 18px; }

.reveal { opacity:0;transform:translateY(22px);transition:opacity .7s ease,transform .7s ease; }
.reveal.visible { opacity:1;transform:none; }

body.route-slide-body-lock { overflow:hidden!important; }
.route-slide-page-old {
  position:fixed;
  right:0;
  left:0;
  z-index:90;
  width:100%;
  min-height:100vh;
  background:var(--background);
  pointer-events:none;
  will-change:transform;
  contain:paint;
}
.route-slide-view.route-slide-page-new { position:relative; z-index:1; min-height:100vh; background:var(--background); will-change:transform; }
.route-slide-page-old.route-slide-forward { box-shadow:18px 0 44px rgba(7,29,59,.1); }
.route-slide-page-old.route-slide-back { box-shadow:-18px 0 44px rgba(7,29,59,.1); }
.route-slide-page-new.route-slide-forward { box-shadow:-18px 0 44px rgba(7,29,59,.08); }
.route-slide-page-new.route-slide-back { box-shadow:18px 0 44px rgba(7,29,59,.08); }
.route-slide-page-new.route-slide-forward:not(.route-slide-animate) { transform:translateX(100%); }
.route-slide-page-new.route-slide-back:not(.route-slide-animate) { transform:translateX(-100%); }
.route-slide-page-old.route-slide-forward.route-slide-animate { animation:route-slide-old-forward 560ms cubic-bezier(.4,0,.2,1) both; }
.route-slide-page-new.route-slide-forward.route-slide-animate { animation:route-slide-new-forward 560ms cubic-bezier(.4,0,.2,1) both; }
.route-slide-page-old.route-slide-back.route-slide-animate { animation:route-slide-old-back 560ms cubic-bezier(.4,0,.2,1) both; }
.route-slide-page-new.route-slide-back.route-slide-animate { animation:route-slide-new-back 560ms cubic-bezier(.4,0,.2,1) both; }
@keyframes route-slide-old-forward { from { transform:translateX(0); } to { transform:translateX(-100%); } }
@keyframes route-slide-new-forward { from { transform:translateX(100%); } to { transform:translateX(0); } }
@keyframes route-slide-old-back { from { transform:translateX(0); } to { transform:translateX(100%); } }
@keyframes route-slide-new-back { from { transform:translateX(-100%); } to { transform:translateX(0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important; }
  .reveal { opacity:1;transform:none; }
  .route-slide-page-old { display:none!important; }
  .route-slide-page-new { animation:none!important; transform:none!important; }
}

@media (max-width: 1024px) {
  .mega-menu { display:none; }
  .nav-links { position:fixed;top:94px;right:20px;left:20px;padding:14px;border:1px solid var(--line);border-radius:16px;background:rgba(255,255,255,.97);box-shadow:0 25px 60px rgba(7,29,59,.16);display:none;flex-direction:column;align-items:stretch; }
  .nav-links.open { display:flex; }
  .nav-link { padding:13px 14px; }
  .menu-toggle { display:grid; }
  .nav-actions .button { display:none; }
  .hero { min-height:calc(100svh - 84px);padding:clamp(28px,5vh,56px) 0; }
  .hero-grid { grid-template-columns:1fr;gap:52px; }
  .hero-copy { max-width:780px; }
  .hero-visual { display:none; }
  .page-hero-grid { grid-template-columns:1fr;gap:28px; }
  .section-head { align-items:start;flex-direction:column; }
  .process-grid { grid-template-columns:repeat(2,1fr); }
  .process-step:nth-child(2) { border-right:0; }
  .process-step { border-bottom:1px solid var(--line); }
  .blog-grid { grid-template-columns:repeat(2,1fr); }
  .blog-card:last-child { display:none; }
  .about-intro,.contact-layout { grid-template-columns:1fr;gap:55px; }
  .footer-top { grid-template-columns:minmax(220px,1.45fr) repeat(3,minmax(110px,1fr));gap:42px 28px; }
  .case-summary { grid-template-columns:1fr 1fr; }
  .case-summary p { grid-column:1/-1; }
  .article-layout { grid-template-columns:1fr; }
  .article-aside { position:static;display:none; }
}

@media (max-width: 720px) {
  :root { --container:min(100% - 28px,1240px); }
  .nav-wrap { padding-top:8px; }
  .nav { min-height:62px;padding:8px 8px 8px 14px;border-radius:14px; }
  .brand-mark { width:31px;height:31px; }
  .brand-name { font-size:17px; }
  .language-switcher span { display:none; }
  .hero { min-height:calc(100svh - 70px);padding:clamp(22px,5.4svh,46px) 0 clamp(20px,5svh,42px); }
  .hero h1 { font-size:clamp(38px,min(12.5vw,6.8svh),58px); }
  .hero-copy > p { font-size:clamp(15px,2.1svh,17px);line-height:1.6; }
  .hero-actions .button { width:100%;min-height:clamp(42px,6svh,46px); }
  .hero-proof { gap:14px;font-size:clamp(11px,1.65svh,13px); }
  .hero-proof strong { font-size:16px; }
  .hero-visual { min-height:410px; }
  .visual-frame { inset:20px 0 20px 10px; }
  .frame-content { inset:75px 24px 30px 56px; }
  .frame-card { width:145px;padding:13px; }
  .section { padding:82px 0; }
  .section-tight { padding:62px 0; }
  .section-head { margin-bottom:34px; }
  .services-grid { grid-template-columns:1fr; }
  .service-item,.service-item:nth-child(even) { padding:30px 0;border-right:0;grid-template-columns:42px 1fr; }
  .service-icon { margin-bottom:17px; }
  .projects-grid { grid-template-columns:1fr; }
  .project-card:nth-child(n) { grid-column:auto;min-height:430px; }
  .project-content { padding:24px; }
  .project-card h3 { font-size:26px; }
  .process-grid { grid-template-columns:1fr; }
  .process-step { min-height:0;padding:30px 0;border-right:0; }
  .process-index { margin-bottom:45px; }
  .stats { grid-template-columns:repeat(2,1fr); }
  .stat { border-bottom:1px solid var(--line); }
  .stat:nth-child(2) { border-right:0; }
  .blog-grid { grid-template-columns:1fr; }
  .blog-card:last-child { display:block; }
  .cta-panel { padding:45px 25px;grid-template-columns:1fr; }
  .cta-panel .button { width:100%; }
  .page-hero { padding:90px 0 65px; }
  .page-hero h1 { font-size:clamp(48px,15vw,72px); }
  .filter-bar { align-items:flex-start;flex-direction:column; }
  .values-grid { grid-template-columns:1fr; }
  .value-card { min-height:0;border-right:0;border-bottom:1px solid rgba(255,255,255,.14); }
  .value-card .value-icon { margin-bottom:45px; }
  .contact-form { padding:25px 18px; }
  .form-grid { grid-template-columns:1fr; }
  .form-footer { align-items:stretch;flex-direction:column; }
  .form-footer .button { width:100%; }
  .case-hero { padding-top:90px; }
  .case-summary { grid-template-columns:1fr 1fr;gap:24px; }
  .case-visual { height:420px; }
  .case-content { grid-template-columns:1fr;gap:35px; }
  .case-content h2 { position:static; }
  .article { font-size:16px; }
  .article .lead { font-size:23px; }
  .footer-top { grid-template-columns:1fr 1fr;gap:42px 28px; }
  .footer-brand { grid-column:1/-1; }
  .footer-col:last-child { grid-column:auto; }
  .footer-bottom { gap:14px;align-items:flex-start;flex-direction:column; }
  .cookie-console { bottom:10px; width:calc(100vw - 20px); }
  .cookie-console-body { grid-template-columns:1fr; padding:15px; }
  .cookie-actions { justify-content:flex-start; }
  .cookie-settings { grid-template-columns:1fr; }
  .cookie-settings.open { max-height:330px; }
}
