:root {
  --ink: #071b2d;
  --ink-soft: #294256;
  --blue: #0b8fc4;
  --blue-dark: #08749f;
  --cyan: #62d8ef;
  --paper: #ffffff;
  --mist: #f2f7fa;
  --line: #d9e5eb;
  --warm: #ff9f68;
  --shadow: 0 22px 60px rgba(7, 27, 45, .12);
  --radius: 24px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Avenir-Book', 'Segoe UI', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: 'Avenir-Heavy', 'Segoe UI', Arial, sans-serif; letter-spacing: -.035em; line-height: 1.08; }
h1 { font-size: clamp(3rem, 6.4vw, 6rem); }
h2 { font-size: clamp(2.25rem, 4.2vw, 4rem); }
h3 { font-size: 1.35rem; }
p { color: var(--ink-soft); }

.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 780px); margin-inline: auto; }
.section { padding: 112px 0; }
.section-compact { padding: 76px 0; }
.section-tint { background: var(--mist); }
.section-dark { color: #fff; background: var(--ink); }
.section-dark p { color: #bcd0dc; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--blue-dark);
  font-family: 'Avenir-Heavy', 'Segoe UI', sans-serif;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before { width: 24px; height: 2px; content: ''; background: currentColor; }
.section-dark .eyebrow { color: var(--cyan); }
.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading h2 { margin-bottom: 20px; }
.section-heading p { max-width: 680px; margin-bottom: 0; font-size: 1.13rem; }
.centered { margin-inline: auto; text-align: center; }
.centered .eyebrow { justify-content: center; }
.centered .section-heading, .centered p { margin-inline: auto; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 25px rgba(11, 143, 196, .22);
  font-family: 'Avenir-Heavy', 'Segoe UI', sans-serif;
  font-size: .94rem;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button::after { content: '→'; }
.button:hover, .button:focus-visible { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(11, 143, 196, .3); }
.button-secondary { border-color: var(--line); color: var(--ink); background: #fff; box-shadow: none; }
.button-secondary:hover, .button-secondary:focus-visible { color: var(--blue-dark); background: var(--mist); box-shadow: none; }
.button-small { min-height: 43px; padding: 0 19px; font-size: .86rem; }
.text-link { color: var(--blue-dark); font-family: 'Avenir-Heavy', sans-serif; }
.text-link::after { margin-left: 6px; content: '→'; }

.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 15px; color: #fff; background: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(205,222,230,.82);
  background: rgba(255,255,255,.92);
  box-shadow: 0 4px 22px rgba(7,27,45,.035);
  backdrop-filter: blur(22px) saturate(145%);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { background: rgba(255,255,255,.97); box-shadow: 0 10px 32px rgba(7,27,45,.09); }
.header-inner {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  transition: min-height .25s ease;
}
.site-header.is-scrolled .header-inner { min-height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); line-height: 1; }
.brand img { width: 40px; height: 40px; object-fit: contain; transition: transform .25s ease; }
.brand:hover img { transform: rotate(-3deg) scale(1.04); }
.brand span { display: grid; gap: 4px; }
.brand strong { font-family: 'Avenir-Heavy', sans-serif; font-size: 1.12rem; letter-spacing: -.02em; }
.brand small { color: #607789; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 34px; }
.nav-cluster { display: flex; align-items: center; gap: 28px; }
.nav-group { position: relative; }
.nav-group::after { position: absolute; right: 3px; bottom: -18px; left: 12px; height: 2px; content: ''; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.nav-parent-row { display: flex; min-height: 46px; align-items: center; }
.nav-parent, .nav-direct { color: #385367; font-family: 'Avenir-Medium', sans-serif; font-size: .84rem; white-space: nowrap; }
.nav-parent { padding: 12px 2px 12px 0; }
.nav-direct { position: relative; display: flex; min-height: 46px; align-items: center; padding: 0; transition: color .2s ease; }
.nav-direct::after { position: absolute; right: 0; bottom: -18px; left: 0; height: 2px; content: ''; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.nav-caret { display: grid; width: 24px; height: 40px; place-items: center; padding: 0; border: 0; color: #718695; background: transparent; cursor: pointer; }
.nav-caret span { width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform .2s ease; }
.nav-group:hover .nav-parent-row, .nav-group:focus-within .nav-parent-row, .nav-group.is-open .nav-parent-row, .nav-group.is-active .nav-parent-row, .nav-direct:hover, .nav-direct:focus-visible, .nav-direct.is-active { color: var(--ink); }
.nav-group.is-active .nav-parent, .nav-direct.is-active { color: var(--blue-dark); }
.nav-group:hover::after,.nav-group.is-open::after,.nav-group.is-active::after,.nav-direct:hover::after,.nav-direct:focus-visible::after,.nav-direct.is-active::after { transform: scaleX(1); }
.nav-group.is-open .nav-caret span { transform: translateY(2px) rotate(225deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 17px);
  right: -120px;
  display: grid;
  width: 670px;
  grid-template-columns: .82fr 1.18fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(205,222,230,.95);
  border-radius: 0;
  background: rgba(255,255,255,.97);
  box-shadow: 0 28px 75px rgba(7,27,45,.2);
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(.98);
  transform-origin: top center;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.nav-dropdown::before { position: absolute; top: -18px; right: 0; left: 0; height: 20px; content: ''; }
.nav-dropdown-mobile { right: -160px; width: 630px; }
.nav-dropdown-lead { display: flex; min-height: 250px; flex-direction: column; align-items: flex-start; padding: 24px; color: #fff; background: linear-gradient(145deg,#071b2d,#0b334b); }
.nav-dropdown-lead::after { width: 100px; height: 100px; margin: auto 0 -12px auto; border: 1px solid rgba(98,216,239,.24); border-radius: 50%; content: ''; box-shadow: 0 0 0 24px rgba(98,216,239,.05), 0 0 0 48px rgba(98,216,239,.035); }
.nav-menu-kicker { margin-bottom: 12px; color: var(--cyan); font-family: 'Avenir-Heavy', sans-serif; font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; }
.nav-dropdown-lead strong { max-width: 240px; font-family: 'Avenir-Heavy', sans-serif; font-size: 1.18rem; line-height: 1.25; }
.nav-dropdown-lead p { margin: 10px 0 16px; color: #a9c0cd; font-size: .75rem; line-height: 1.55; }
.nav-dropdown-lead a { color: #fff; font-family: 'Avenir-Heavy', sans-serif; font-size: .72rem; }
.nav-dropdown-lead a::after { margin-left: 6px; content: '→'; color: var(--cyan); }
.nav-menu-links { display: grid; align-content: center; gap: 3px; padding: 5px; }
.nav-menu-links > a { display: grid; grid-template-columns: 30px 1fr; align-items: center; gap: 11px; padding: 12px 11px; border-left: 2px solid transparent; transition: background .18s ease, border-color .18s ease, transform .18s ease; }
.nav-menu-links > a:hover, .nav-menu-links > a:focus-visible { border-left-color: var(--blue); background: var(--mist); transform: translateX(3px); }
.nav-link-icon { display: block; width: 27px; padding-bottom: 4px; border-bottom: 1px solid #b9d8e4; color: var(--blue-dark); font-family: 'Avenir-Heavy', sans-serif; font-size: .62rem; }
.nav-menu-links strong, .nav-menu-links small { display: block; }
.nav-menu-links strong { color: var(--ink); font-size: .78rem; line-height: 1.25; }
.nav-menu-links small { margin-top: 3px; color: #708694; font-size: .67rem; line-height: 1.25; }
.nav-cta { min-height: 44px; padding-inline: 18px; border-radius: 0; border-color: #087ba8; background: #087fae; box-shadow: none; white-space: nowrap; }
.nav-cta:hover,.nav-cta:focus-visible { background: var(--ink); box-shadow: none; transform: translateY(-1px); }
.nav-cta.is-current { outline: 2px solid rgba(11,143,196,.24); outline-offset: 3px; }
.nav-cta-dot { width: 7px; height: 7px; border: 2px solid rgba(255,255,255,.72); border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.12); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); border-radius: 0; background: transparent; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; margin: 4px auto; border-radius: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 901px) {
  .nav-group:hover .nav-dropdown, .nav-group.is-open .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
}

.hero { position: relative; min-height: 780px; overflow: hidden; padding: 160px 0 96px; color: #fff; background: radial-gradient(circle at 76% 42%,rgba(11,143,196,.17),transparent 31%), radial-gradient(circle at 15% 8%,rgba(98,216,239,.08),transparent 24%), linear-gradient(135deg,#04111c 0%,#071b2d 47%,#09253a 100%); }
.hero::before { position: absolute; inset: 0; content: ''; background-image: linear-gradient(rgba(98,216,239,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(98,216,239,.035) 1px,transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom,rgba(0,0,0,.65),transparent 88%); }
.hero::after { position: absolute; right: -15%; bottom: -65%; width: 820px; height: 820px; border: 1px solid rgba(98,216,239,.1); border-radius: 50%; content: ''; box-shadow: 0 0 0 90px rgba(98,216,239,.025),0 0 0 180px rgba(98,216,239,.018); }
.hero-grid { position: relative; z-index: 3; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 48px; }
.hero-copy { position: relative; z-index: 4; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px; padding: 8px 13px; border: 1px solid rgba(98,216,239,.2); border-radius: 999px; color: #a9dce8; background: rgba(98,216,239,.065); font-family: 'Avenir-Heavy',sans-serif; font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; backdrop-filter: blur(10px); }
.hero-kicker i { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(98,216,239,.1),0 0 18px rgba(98,216,239,.75); }
.hero-copy h1 { max-width: 720px; margin-bottom: 27px; color: #fff; font-size: clamp(3.35rem,5.6vw,5.65rem); letter-spacing: -.055em; }
.hero-copy h1 span { color: transparent; background: linear-gradient(100deg,#fff 0%,#9ce8f5 45%,#41c4df 100%); -webkit-background-clip: text; background-clip: text; }
.hero-copy > p { max-width: 650px; margin-bottom: 35px; color: #aec3cf; font-size: clamp(1.06rem,1.5vw,1.23rem); line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .button { border-color: #22a9d2; background: linear-gradient(135deg,#0b9fd3,#087fae); box-shadow: 0 14px 34px rgba(11,143,196,.28); }
.hero .button:hover,.hero .button:focus-visible { background: linear-gradient(135deg,#19addb,#0a8abc); box-shadow: 0 18px 40px rgba(11,143,196,.38); }
.hero .button-secondary { border-color: rgba(199,227,238,.22); color: #fff; background: rgba(255,255,255,.055); box-shadow: none; backdrop-filter: blur(10px); }
.hero .button-secondary:hover,.hero .button-secondary:focus-visible { border-color: rgba(199,227,238,.42); color: #fff; background: rgba(255,255,255,.1); box-shadow: none; }
.trust-line { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 31px; color: #a7bdc9; font-size: .76rem; }
.trust-line span { padding: 7px 11px; border: 1px solid rgba(181,211,223,.13); border-radius: 999px; background: rgba(255,255,255,.035); }
.trust-line span::before { display: inline-block; width: 6px; height: 6px; margin-right: 8px; border-radius: 50%; content: ''; background: var(--cyan); box-shadow: 0 0 10px rgba(98,216,239,.6); }
.hero-visual { position: relative; z-index: 3; width: calc(100% + 125px); margin-left: -62px; }
.hero-visual::before { position: absolute; z-index: -1; top: 12%; right: 8%; bottom: 10%; left: 18%; border-radius: 50%; content: ''; background: rgba(36,182,221,.2); filter: blur(78px); }
.hero-visual::after { position: absolute; inset: 0; content: ''; background: linear-gradient(90deg,#071b2d 0%,rgba(7,27,45,.72) 6%,transparent 23%),linear-gradient(180deg,rgba(7,27,45,.55),transparent 15%,transparent 82%,rgba(7,27,45,.72)); pointer-events: none; }
.hero-visual img { width: 100%; min-height: 520px; object-fit: cover; -webkit-mask-image: linear-gradient(90deg,transparent 0%,#000 13%,#000 94%,transparent 100%); mask-image: linear-gradient(90deg,transparent 0%,#000 13%,#000 94%,transparent 100%); }
.hero-orbit { position: absolute; z-index: 1; border: 1px solid rgba(98,216,239,.12); border-radius: 50%; pointer-events: none; }
.hero-orbit-one { top: 18%; right: 6%; width: 430px; height: 430px; animation: hero-orbit 18s linear infinite; }
.hero-orbit-two { right: 27%; bottom: -180px; width: 330px; height: 330px; border-style: dashed; animation: hero-orbit 25s linear infinite reverse; }
@keyframes hero-orbit { to { transform: rotate(360deg); } }
.product-stage { position: relative; min-height: 520px; }
.phone {
  position: absolute;
  z-index: 2;
  top: 4px;
  left: 50%;
  width: 272px;
  height: 518px;
  padding: 12px;
  border: 8px solid #0b1d2b;
  border-radius: 46px;
  background: #0b1d2b;
  box-shadow: 0 30px 70px rgba(7, 27, 45, .25);
  transform: translateX(-50%) rotate(3deg);
}
.phone::before { position: absolute; z-index: 3; top: 8px; left: 50%; width: 82px; height: 21px; border-radius: 20px; content: ''; background: #0b1d2b; transform: translateX(-50%); }
.phone-screen { height: 100%; overflow: hidden; border-radius: 31px; background: linear-gradient(180deg, #eaf8fc, #fff); }
.screen-head { height: 118px; padding: 40px 20px 18px; color: #fff; background: linear-gradient(135deg, #057eaf, #2ec6df); }
.screen-head small { display: block; opacity: .75; }
.screen-head strong { display: block; margin-top: 4px; font-size: 1.35rem; }
.screen-body { display: grid; gap: 12px; padding: 22px 16px; }
.screen-metric { padding: 15px; border: 1px solid #dcebf0; border-radius: 16px; background: #fff; box-shadow: 0 8px 20px rgba(7, 27, 45, .06); }
.screen-metric small { color: #69808f; }
.screen-metric b { display: block; margin-top: 2px; font-size: 1.18rem; }
.screen-route { height: 105px; border-radius: 16px; background: linear-gradient(145deg, #dff4e7, #edf6fa); }
.screen-route::before { display: block; width: 70%; height: 55px; margin: 24px auto 0; border: 4px solid var(--blue); border-top-color: transparent; border-radius: 50%; content: ''; transform: rotate(-12deg); }
.float-card { position: absolute; z-index: 3; min-width: 185px; padding: 15px 18px; border: 1px solid rgba(217, 229, 235, .9); border-radius: 17px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.float-card small { display: block; color: #6b8190; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.float-card strong { display: block; margin-top: 4px; font-size: .95rem; }
.float-card-one { top: 90px; right: -10px; }
.float-card-two { bottom: 70px; left: -12px; }
.float-dot { display: inline-block; width: 8px; height: 8px; margin-right: 7px; border-radius: 50%; background: #27bb81; }

.solution-stage { position: relative; min-height: 500px; }
.solution-stage::before { position: absolute; top: 42px; right: 30px; bottom: 34px; left: 30px; border: 1px solid rgba(11,143,196,.14); border-radius: 50%; content: ''; }
.platform-board { position: absolute; z-index: 2; top: 66px; right: 14px; left: 14px; overflow: hidden; border: 7px solid #0b1d2b; border-radius: 22px; background: #fff; box-shadow: 0 30px 70px rgba(7,27,45,.23); transform: rotate(1.5deg); }
.platform-top { display: flex; height: 48px; align-items: center; gap: 6px; padding: 0 16px; color: #dceaf0; background: #0b1d2b; }
.platform-top > span { width: 8px; height: 8px; border-radius: 50%; background: #355063; }
.platform-top > span:first-child { background: var(--warm); }
.platform-top b { margin-left: 12px; font-size: .76rem; letter-spacing: .04em; }
.platform-content { display: grid; grid-template-columns: 72px 1fr; min-height: 310px; }
.platform-sidebar { display: grid; align-content: start; gap: 18px; padding: 25px 20px; background: #edf5f8; }
.platform-sidebar i { display: block; height: 10px; border-radius: 6px; background: #b9d1dc; }
.platform-sidebar i:first-child { background: var(--blue); }
.platform-main { display: grid; gap: 18px; padding: 25px; }
.platform-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.platform-stats span { padding: 14px; border: 1px solid var(--line); border-radius: 13px; background: #fbfdfe; }
.platform-stats small { display: block; color: #728895; font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
.platform-stats strong { display: block; margin-top: 4px; font-size: .92rem; }
.platform-chart { display: flex; height: 115px; align-items: end; gap: 10px; padding: 14px 18px 0; border-radius: 14px; background: linear-gradient(180deg,#edf9fc,#f8fbfc); }
.platform-chart i { display: block; width: 17%; border-radius: 7px 7px 0 0; background: linear-gradient(180deg,var(--cyan),var(--blue)); }
.platform-chart i:nth-child(1) { height: 32%; }.platform-chart i:nth-child(2) { height: 56%; }.platform-chart i:nth-child(3) { height: 43%; }.platform-chart i:nth-child(4) { height: 78%; }.platform-chart i:nth-child(5) { height: 66%; }
.platform-row { display: grid; grid-template-columns: 1.3fr .8fr 1fr; gap: 10px; }
.platform-row span { height: 38px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.system-card { position: absolute; z-index: 4; min-width: 178px; padding: 14px 17px; border: 1px solid rgba(217,229,235,.9); border-radius: 16px; background: rgba(255,255,255,.95); box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.system-card small { display: block; color: #6b8190; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.system-card strong { display: block; margin-top: 4px; font-size: .88rem; }
.system-card-server { top: 4px; left: -12px; }
.system-card-web { right: -18px; bottom: 34px; }
.system-card-mobile { bottom: -10px; left: 26px; }

.proof-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { padding: 30px 28px; border-right: 1px solid var(--line); }
.proof-item:first-child { padding-left: 0; }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; margin-bottom: 3px; font-family: 'Avenir-Heavy', sans-serif; font-size: 1rem; }
.proof-item span { color: #647b8b; font-size: .85rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card-grid-four { grid-template-columns: repeat(4, 1fr); }
.service-card { min-height: 300px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { border-color: #b7dbe8; box-shadow: var(--shadow); transform: translateY(-5px); }
.card-number { display: flex; width: 46px; height: 46px; align-items: center; justify-content: center; margin-bottom: 42px; border-radius: 14px; color: var(--blue-dark); background: #e8f7fb; font-family: 'Avenir-Heavy', sans-serif; font-size: .78rem; }
.service-card h3 { margin-bottom: 14px; }
.service-card p { margin-bottom: 0; font-size: .94rem; }

.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.work-card { position: relative; grid-column: span 6; overflow: hidden; border-radius: 28px; color: #fff; background: var(--ink); box-shadow: var(--shadow); }
.work-card:first-child { grid-column: span 7; }
.work-card:nth-child(2) { grid-column: span 5; }
.work-image { position: relative; height: 340px; overflow: hidden; background: #eaf4f7; }
.work-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.work-card:hover .work-image img { transform: scale(1.035); }
.work-body { padding: 30px; }
.work-meta { display: flex; justify-content: space-between; gap: 15px; margin-bottom: 14px; color: #8dddf1; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.work-body h3 { margin-bottom: 12px; font-size: 1.8rem; }
.work-body p { margin-bottom: 18px; color: #bcd0dc; font-size: .94rem; }
.work-body .text-link { color: #fff; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.split-media { position: relative; overflow: hidden; border-radius: 28px; background: var(--mist); box-shadow: var(--shadow); }
.split-media img { width: 100%; min-height: 450px; object-fit: cover; }
.check-list { display: grid; gap: 18px; margin: 28px 0 34px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 32px; color: var(--ink-soft); }
.check-list li::before { position: absolute; top: 2px; left: 0; display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; color: var(--blue-dark); background: #e5f6fb; content: '✓'; font-size: .7rem; font-weight: 700; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.process-step { position: relative; padding: 0 30px; border-left: 1px solid #315064; counter-increment: step; }
.process-step:first-child { padding-left: 0; border-left: 0; }
.process-step::before { display: block; margin-bottom: 50px; color: var(--cyan); content: '0' counter(step); font-family: 'Avenir-Heavy', sans-serif; font-size: .78rem; letter-spacing: .1em; }
.process-step h3 { color: #fff; }
.process-step p { font-size: .9rem; }

.cta-panel { position: relative; overflow: hidden; padding: 68px; border-radius: 32px; color: #fff; background: linear-gradient(125deg, #086d98, #0b9dc5 60%, #36c6d8); box-shadow: var(--shadow); }
.cta-panel::after { position: absolute; right: -90px; bottom: -120px; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; content: ''; box-shadow: 0 0 0 60px rgba(255,255,255,.06), 0 0 0 120px rgba(255,255,255,.04); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { max-width: 720px; margin-bottom: 20px; }
.cta-panel p { max-width: 660px; margin-bottom: 30px; color: #e5f8fc; font-size: 1.1rem; }
.cta-panel .button { border-color: #fff; color: var(--ink); background: #fff; box-shadow: none; }

.page-hero { position: relative; overflow: hidden; padding: 180px 0 100px; background: var(--ink); }
.page-hero::after { position: absolute; top: -180px; right: -80px; width: 520px; height: 520px; border: 1px solid rgba(98,216,239,.18); border-radius: 50%; content: ''; box-shadow: 0 0 0 75px rgba(98,216,239,.04), 0 0 0 150px rgba(98,216,239,.025); }
.page-hero-content { position: relative; z-index: 1; max-width: 880px; }
.page-hero h1 { margin-bottom: 24px; color: #fff; font-size: clamp(3rem, 6vw, 5.3rem); }
.page-hero p { max-width: 700px; margin-bottom: 0; color: #bcd0dc; font-size: 1.2rem; }

.feature-row { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; padding: 70px 0; border-top: 1px solid var(--line); }
.feature-row:first-child { padding-top: 0; border-top: 0; }
.feature-row h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
.feature-copy p { margin-bottom: 22px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.tag { padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; color: #496376; background: #fff; font-size: .78rem; }

.case-study { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center; padding: 50px; border: 1px solid var(--line); border-radius: 30px; background: #fff; box-shadow: 0 15px 45px rgba(7,27,45,.06); }
.case-study + .case-study { margin-top: 30px; }
.case-study:nth-child(even) .case-visual { order: 2; }
.case-visual { height: 420px; overflow: hidden; border-radius: 22px; background: var(--mist); }
.case-visual img { width: 100%; height: 100%; object-fit: cover; }
.case-copy h2 { margin-bottom: 16px; font-size: clamp(2rem, 3vw, 3rem); }
.case-label { color: var(--blue-dark); font-family: 'Avenir-Heavy', sans-serif; font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; }
.case-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 26px 0; }
.case-facts div { padding-top: 14px; border-top: 1px solid var(--line); }
.case-facts strong { display: block; margin-bottom: 4px; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.case-facts span { color: #5d7585; font-size: .85rem; }

.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.value-grid-three { grid-template-columns: repeat(3, 1fr); }
.value-card { padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.value-card h3 { margin-bottom: 12px; }
.value-card p { margin-bottom: 0; font-size: .94rem; }

.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; }
.contact-details { padding-top: 10px; }
.contact-details h2 { margin-bottom: 24px; font-size: 2.5rem; }
.contact-method { padding: 22px 0; border-top: 1px solid var(--line); }
.contact-method strong { display: block; margin-bottom: 5px; }
.contact-method a { color: var(--blue-dark); }
.inquiry-form { padding: 42px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--ink); font-family: 'Avenir-Medium', sans-serif; font-size: .85rem; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #cddce4; border-radius: 12px; color: var(--ink); background: #fbfdfe; outline: none; }
.field input, .field select { min-height: 52px; padding: 0 14px; }
.field textarea { min-height: 150px; padding: 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11,143,196,.12); }
.form-note { margin: 18px 0 0; font-size: .78rem; }
.form-status { margin-bottom: 24px; padding: 14px 16px; border-radius: 12px; }
.form-status-success { color: #0d684a; background: #e6f7f0; }
.form-status-error { color: #922e34; background: #fff0f1; }
.honeypot { position: absolute; left: -9999px; }

.site-footer { position: relative; overflow: hidden; padding: 0 0 26px; color: #fff; background: #04131f; }
.site-footer::before { position: absolute; top: -360px; left: 55%; width: 720px; height: 720px; border: 1px solid rgba(98,216,239,.07); border-radius: 50%; content: ''; box-shadow: 0 0 0 100px rgba(98,216,239,.018),0 0 0 200px rgba(98,216,239,.012); pointer-events: none; }
.footer-cta { position: relative; display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: 60px; padding-top: 76px; padding-bottom: 70px; border-bottom: 1px solid #1c3444; }
.footer-label { margin: 0 0 18px; color: #62d8ef; font-family: 'Avenir-Heavy',sans-serif; font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; }
.footer-cta h2 { max-width: 810px; margin: 0; color: #fff; font-size: clamp(2.25rem,4.2vw,4.5rem); letter-spacing: -.045em; line-height: 1.02; }
.footer-cta-link { display: flex; align-items: center; gap: 22px; min-width: 230px; padding: 18px 0; border-top: 1px solid #426071; border-bottom: 1px solid #426071; color: #fff; font-family: 'Avenir-Heavy',sans-serif; font-size: .88rem; }
.footer-cta-link span:last-child { margin-left: auto; color: var(--cyan); font-size: 1.35rem; transition: transform .22s ease; }
.footer-cta-link:hover,.footer-cta-link:focus-visible { border-color: var(--cyan); color: var(--cyan); }
.footer-cta-link:hover span:last-child,.footer-cta-link:focus-visible span:last-child { transform: translate(3px,-3px); }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.55fr .8fr .72fr 1.05fr; gap: clamp(34px,5vw,76px); padding-top: 62px; padding-bottom: 58px; }
.brand-light { color: #fff; }
.brand-light small { color: #91a8b7; }
.footer-brand p { max-width: 410px; margin: 23px 0 25px; color: #8fa7b5; font-size: .92rem; }
.footer-position { display: flex; align-items: center; gap: 9px; color: #7892a1; font-size: .75rem; }
.footer-position i { width: 7px; height: 7px; border-radius: 50%; background: #46d49d; box-shadow: 0 0 12px rgba(70,212,157,.58); }
.footer-grid h2 { margin: 5px 0 22px; color: #698493; font-family: 'Avenir-Heavy',sans-serif; font-size: .66rem; letter-spacing: .15em; text-transform: uppercase; }
.footer-links,.footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-grid a:not(.brand) { position: relative; color: #c4d4dc; font-size: .86rem; }
.footer-links a::after { position: absolute; right: 0; bottom: -3px; left: 0; height: 1px; content: ''; background: var(--cyan); transform: scaleX(0); transform-origin: right; transition: transform .24s ease; }
.footer-links a:hover::after,.footer-links a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.footer-grid a:hover,.footer-grid a:focus-visible { color: #fff; }
.footer-contact { color: #849ba8; font-size: .84rem; }
.footer-contact .footer-email { margin-bottom: 2px; color: #fff; font-family: 'Avenir-Heavy',sans-serif; }
.footer-contact address { margin-top: 9px; color: #7892a1; font-style: normal; line-height: 1.7; }
.footer-bottom { position: relative; display: flex; justify-content: space-between; gap: 24px; padding-top: 25px; border-top: 1px solid #1c3444; }
.footer-bottom p { margin: 0; color: #637e8d; font-size: .73rem; }
.footer-bottom a { color: #879eaa; font-size: .74rem; }
.footer-bottom a span { display: inline-block; margin-left: 8px; color: var(--cyan); transition: transform .2s ease; }
.footer-bottom a:hover,.footer-bottom a:focus-visible { color: #fff; }
.footer-bottom a:hover span,.footer-bottom a:focus-visible span { transform: translateY(-3px); }

@media (max-width: 980px) {
  .hero { min-height: auto; padding-top: 145px; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 56px; }
  .hero-copy { text-align: center; }
  .hero-copy > p, .hero-copy h1 { margin-inline: auto; }
  .hero-actions, .trust-line { justify-content: center; }
  .hero-visual { width: min(100%,760px); margin-inline: auto; }
  .hero-visual img { min-height: auto; }
  .product-stage, .solution-stage { width: min(100%, 540px); margin-inline: auto; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid-three { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .proof-item:nth-child(3) { padding-left: 0; }
  .work-card, .work-card:first-child, .work-card:nth-child(2) { grid-column: span 6; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 50px 0; }
  .case-study { grid-template-columns: 1fr; }
  .case-study:nth-child(even) .case-visual { order: 0; }
  .footer-cta { align-items: center; }
  .footer-grid { grid-template-columns: 1.35fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .site-header, .site-header.is-scrolled { top: 0; }
  .header-inner, .site-header.is-scrolled .header-inner { min-height: 68px; padding: 0; }
  .brand img { width: 38px; height: 38px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 98px);
    overflow-y: auto;
    padding: 14px;
    border-top: 1px solid rgba(205,222,230,.95);
    border-bottom: 1px solid rgba(205,222,230,.95);
    background: rgba(255,255,255,.98);
    box-shadow: 0 28px 75px rgba(7,27,45,.22);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .site-nav.is-open { display: flex; }
  .nav-cluster { width: 100%; padding: 0; border: 0; background: transparent; flex-direction: column; align-items: stretch; gap: 3px; }
  .nav-parent-row { min-height: 52px; justify-content: space-between; border-bottom: 1px solid var(--line); }
  .nav-parent { flex: 1; padding: 15px 6px 15px 15px; font-size: 1rem; }
  .nav-caret { width: 46px; height: 46px; margin-right: 3px; background: transparent; }
  .nav-direct { min-height: 52px; padding: 0 15px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-group::after,.nav-direct::after { display: none; }
  .nav-group.is-active .nav-parent-row, .nav-direct.is-active { border-bottom-color: var(--blue); background: transparent; box-shadow: none; }
  .nav-dropdown, .nav-dropdown-mobile {
    position: static;
    display: block;
    width: auto;
    max-height: 0;
    margin: 0;
    overflow: hidden;
    padding: 0 9px;
    border: 0;
    border-radius: 0;
    background: var(--mist);
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: max-height .28s ease, opacity .2s ease, visibility .2s ease, padding .2s ease, margin .2s ease;
  }
  .nav-group.is-open .nav-dropdown { max-height: 430px; margin: 0 0 9px; padding: 9px; opacity: 1; visibility: visible; }
  .nav-dropdown-lead { display: none; }
  .nav-menu-links { padding: 0; }
  .nav-menu-links > a { padding: 10px; }
  .nav-menu-links strong { font-size: .82rem; }
  .nav-menu-links small { font-size: .7rem; }
  .nav-cta { width: 100%; min-height: 50px; margin-top: 3px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .shell, .narrow { width: min(calc(100% - 32px), var(--shell)); }
  .section { padding: 78px 0; }
  .section-compact { padding: 56px 0; }
  .hero { padding: 124px 0 66px; }
  .hero-copy h1 { font-size: clamp(3rem,14vw,4rem); }
  .hero-kicker { margin-bottom: 21px; padding: 7px 10px; font-size: .59rem; letter-spacing: .1em; }
  .hero-copy > p { margin-bottom: 29px; font-size: 1rem; }
  .hero-visual { width: calc(100% + 10px); margin-left: -5px; }
  .hero-visual img { min-height: 330px; object-fit: cover; -webkit-mask-image: linear-gradient(90deg,transparent,#000 7%,#000 96%,transparent); mask-image: linear-gradient(90deg,transparent,#000 7%,#000 96%,transparent); }
  .hero-orbit { display: none; }
  .product-stage, .solution-stage { min-height: 450px; transform: scale(.86); transform-origin: top center; margin-bottom: -60px; }
  .float-card-one { right: -20px; }
  .float-card-two { left: -20px; }
  .proof-grid, .card-grid, .value-grid, .value-grid-three, .form-grid { grid-template-columns: 1fr; }
  .proof-item, .proof-item:first-child, .proof-item:nth-child(3) { padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .work-grid { display: block; }
  .work-card + .work-card { margin-top: 22px; }
  .work-image { height: 280px; }
  .split { gap: 42px; }
  .split-media img { min-height: 320px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step, .process-step:first-child { padding: 0 0 28px 50px; border: 0; border-left: 1px solid #315064; }
  .process-step::before { position: absolute; top: 0; left: 14px; margin: 0; }
  .cta-panel { padding: 42px 28px; }
  .page-hero { padding: 145px 0 78px; }
  .feature-row { grid-template-columns: 1fr; gap: 14px; padding: 48px 0; }
  .case-study { gap: 30px; padding: 20px; }
  .case-visual { height: 290px; }
  .case-facts { grid-template-columns: 1fr; }
  .contact-grid { gap: 45px; }
  .inquiry-form { padding: 26px 20px; }
  .field-full { grid-column: auto; }
  .footer-cta { grid-template-columns: 1fr; gap: 34px; padding-top: 60px; padding-bottom: 54px; }
  .footer-cta-link { width: 100%; min-width: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px 30px; padding-top: 50px; }
  .footer-brand,.footer-contact { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
