:root {
  --ink: #071019;
  --ink-soft: #0b1824;
  --paper: #f5f7f9;
  --white: #ffffff;
  --text: #122231;
  --muted: #60707e;
  --line: #dbe2e8;
  --line-dark: rgba(255, 255, 255, .13);
  --blue: #2f78ff;
  --cyan: #31d7d0;
  --lime: #b8ff5a;
  --amber: #ffcb6b;
  --display: "Space Grotesk", Inter, sans-serif;
  --body: Inter, Arial, sans-serif;
  --shell: min(1320px, calc(100vw - 64px));
  --shadow: 0 30px 80px rgba(5, 15, 24, .15);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }

button,
input,
select,
textarea { font: inherit; }

button { color: inherit; }

img { display: block; max-width: 100%; }

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -.05em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  color: var(--white);
  background: rgba(7, 16, 25, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  backdrop-filter: blur(18px);
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.site-header.scrolled {
  background: rgba(7, 16, 25, .94);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .18);
}

.nav-shell {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.legacy-logo {
  align-items: baseline;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}

.legacy-logo span { color: var(--blue); }
.legacy-logo b { color: var(--white); font-weight: 800; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  font-weight: 600;
  transition: color .2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--lime);
  transition: right .22s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible { color: var(--white); }

.main-nav a:hover::after,
.main-nav a:focus-visible::after { right: 0; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-control {
  display: flex;
  align-items: center;
  padding: 3px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
}

.lang-button {
  min-width: 35px;
  min-height: 32px;
  padding: 0 8px;
  color: rgba(255, 255, 255, .6);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.lang-button.active {
  color: var(--ink);
  background: var(--white);
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 0;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  width: 19px;
  height: 1.5px;
  background: var(--white);
  transition: transform .2s ease;
}

.menu-button span:first-child { transform: translateY(-4px); }
.menu-button span:last-child { transform: translateY(4px); }
.menu-button.open span:first-child { transform: rotate(45deg); }
.menu-button.open span:last-child { transform: rotate(-45deg); }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.button i,
.text-button i {
  font-style: normal;
  transition: transform .2s ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-2px); }

.button:hover i,
.button:focus-visible i,
.text-button:hover i,
.text-button:focus-visible i { transform: translate(3px, -2px); }

.button-small {
  min-height: 42px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 16px 38px rgba(47, 120, 255, .22);
}

.button-primary:hover,
.button-primary:focus-visible { background: #1f68ee; }

.button-light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.text-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.text-button.dark { color: var(--text); }

.hero {
  position: relative;
  min-height: 900px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 150px 0 38px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(47, 120, 255, .2), transparent 30%),
    linear-gradient(140deg, #071019 0%, #081521 52%, #061018 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  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: 58px 58px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-orb-one {
  width: 380px;
  height: 380px;
  top: 12%;
  right: 4%;
  background: rgba(49, 215, 208, .12);
}

.hero-orb-two {
  width: 420px;
  height: 420px;
  left: 30%;
  bottom: -16%;
  background: rgba(47, 120, 255, .14);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(560px, 1.1fr);
  align-items: center;
  gap: 64px;
  flex: 1;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.kicker > span:first-child {
  width: 30px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
}

.hero .kicker,
.solutions-section .kicker,
.proof-section .kicker,
.contact-section .kicker { color: var(--cyan); }

.hero-copy h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(50px, 5.2vw, 83px);
  font-weight: 600;
  line-height: .98;
}

h1 em,
h2 em {
  color: var(--cyan);
  font-style: normal;
}

.hero-lead {
  max-width: 630px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .66);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 42px;
  color: rgba(255, 255, 255, .56);
  font-size: 13px;
  font-weight: 600;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-proof span::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--lime);
  border-radius: 50%;
}

.product-stage {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
}

.hero-laptop-stage {
  position: relative;
  min-width: 0;
  min-height: 590px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-laptop-stage::before {
  content: "";
  position: absolute;
  inset: 12% 4% 8%;
  background: radial-gradient(circle at 60% 48%, rgba(54, 228, 215, .15), rgba(47, 120, 255, .08) 42%, transparent 72%);
  filter: blur(30px);
}

.hero-laptop-stage img {
  position: relative;
  z-index: 1;
  width: min(780px, 112%);
  max-width: none;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .43), 0 8px 24px rgba(0, 0, 0, .28);
  transform: perspective(1400px) rotateY(-2deg) rotateZ(-.35deg);
}

.stage-halo {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(47, 120, 255, .19), transparent 68%);
  border-radius: 50%;
}

.product-window {
  position: relative;
  width: 100%;
  max-width: 720px;
  overflow: hidden;
  background: rgba(245, 247, 249, .98);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 13px;
  box-shadow: 0 50px 120px rgba(0, 0, 0, .43), 0 0 0 1px rgba(255,255,255,.05);
  transform: rotateY(-5deg) rotateX(2deg);
}

.window-bar {
  min-height: 51px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  color: rgba(255, 255, 255, .67);
  background: #0a1722;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 11px;
  font-weight: 600;
}

.window-dots { display: flex; gap: 6px; }

.window-dots i {
  width: 7px;
  height: 7px;
  background: rgba(255,255,255,.24);
  border-radius: 50%;
}

.window-bar > b {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #bce98a;
  font-weight: 600;
}

.window-bar > b i {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(184,255,90,.7);
}

.window-layout {
  min-height: 470px;
  display: grid;
  grid-template-columns: 62px 1fr;
}

.mock-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  padding: 17px 10px;
  background: #0a1722;
}

.mock-logo {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 13px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 8px 2px 8px 2px;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
}

.mock-sidebar > span {
  width: 27px;
  height: 27px;
  position: relative;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 7px;
}

.mock-sidebar > span::after {
  content: "";
  position: absolute;
  inset: 8px;
  background: rgba(255,255,255,.27);
  border-radius: 2px;
}

.mock-sidebar > span.active {
  background: var(--blue);
  border-color: var(--blue);
}

.mock-sidebar > span.active::after { background: var(--white); }

.mock-content { padding: 24px; color: var(--text); }

.mock-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.mock-heading small,
.mock-metrics small {
  display: block;
  margin-bottom: 2px;
  color: #81909c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mock-heading strong { display: block; font-family: var(--display); font-size: 18px; letter-spacing: -.03em; }

.mock-heading button {
  min-height: 34px;
  padding: 0 12px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
}

.mock-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.mock-metrics > div {
  position: relative;
  min-height: 90px;
  padding: 14px;
  background: var(--white);
  border: 1px solid #e1e7ec;
  border-radius: 9px;
  box-shadow: 0 8px 20px rgba(9, 28, 43, .04);
}

.mock-metrics strong { display: block; margin-top: 8px; font-family: var(--display); font-size: 24px; letter-spacing: -.05em; }
.mock-metrics span { position: absolute; right: 10px; bottom: 12px; color: #2e9762; font-size: 8px; font-weight: 700; }

.mock-workspace { display: grid; grid-template-columns: 1.25fr .75fr; gap: 14px; }

.mock-chart,
.mock-activity {
  min-height: 224px;
  padding: 16px;
  background: var(--white);
  border: 1px solid #e1e7ec;
  border-radius: 9px;
  box-shadow: 0 8px 20px rgba(9, 28, 43, .04);
}

.chart-head { display: flex; justify-content: space-between; gap: 12px; font-size: 10px; }
.chart-head span { color: #81909c; font-size: 8px; }

.bars {
  height: 158px;
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 18px 6px 0;
  background-image: linear-gradient(#edf1f4 1px, transparent 1px);
  background-size: 100% 38px;
}

.bars i {
  flex: 1;
  height: var(--h);
  min-width: 9px;
  background: linear-gradient(to top, var(--blue), #65b8ff);
  border-radius: 4px 4px 1px 1px;
}

.mock-activity > strong { display: block; margin-bottom: 15px; font-size: 10px; }
.mock-activity > div { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-top: 1px solid #edf1f4; }
.mock-activity > div > i { width: 7px; height: 7px; margin-top: 4px; flex: 0 0 auto; background: var(--blue); border-radius: 50%; }
.mock-activity > div:nth-child(3) > i { background: var(--cyan); }
.mock-activity > div:nth-child(4) > i { background: var(--lime); }
.mock-activity b { display: block; font-size: 8px; }
.mock-activity small { display: block; color: #81909c; font-size: 7px; }

.floating-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  color: var(--text);
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0,0,0,.24);
}

.floating-chip > span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 7px;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
}

.floating-chip small,
.floating-chip strong { display: block; line-height: 1.25; }
.floating-chip small { color: var(--muted); font-size: 8px; text-transform: uppercase; letter-spacing: .09em; }
.floating-chip strong { margin-top: 2px; font-size: 10px; }
.chip-one { top: 72px; right: -18px; }
.chip-two { left: -32px; bottom: 55px; }

.hero-foot {
  position: relative;
  z-index: 2;
  min-height: 68px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  color: rgba(255,255,255,.46);
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
}

.hero-foot p { margin: 0; }
.hero-foot a { display: inline-flex; gap: 13px; color: rgba(255,255,255,.72); font-weight: 600; }
.hero-foot a i { color: var(--lime); font-style: normal; }

.signal-strip {
  color: var(--white);
  background: var(--blue);
}

.signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); }

.signal-grid > div {
  min-height: 132px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  column-gap: 15px;
  padding: 22px 26px;
  border-left: 1px solid rgba(255,255,255,.2);
}

.signal-grid > div:last-child { border-right: 1px solid rgba(255,255,255,.2); }
.signal-grid span { grid-row: 1 / 3; color: rgba(255,255,255,.5); font-size: 11px; font-weight: 700; }
.signal-grid strong { font-family: var(--display); font-size: 16px; letter-spacing: -.02em; }
.signal-grid small { color: rgba(255,255,255,.65); font-size: 12px; }

.section { padding: 132px 0; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 58px;
}

.section-heading h2,
.process-copy h2,
.about-statement h2,
.faq-heading h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5.4vw, 76px);
  font-weight: 600;
  line-height: 1;
}

.section-heading p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.filter {
  min-height: 42px;
  padding: 0 16px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: .2s ease;
}

.filter:hover,
.filter:focus-visible,
.filter.active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.project-card {
  grid-column: span 6;
  min-height: 530px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  cursor: pointer;
  isolation: isolate;
  transition: transform .32s ease, box-shadow .32s ease, opacity .2s ease;
}

.project-card:nth-child(4n + 1),
.project-card:nth-child(4n + 4) { grid-column: span 7; }
.project-card:nth-child(4n + 2),
.project-card:nth-child(4n + 3) { grid-column: span 5; }

.project-card:hover,
.project-card:focus-within {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.project-card[hidden] { display: none; }

.project-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}

.project-image.contain {
  padding: 92px;
  object-fit: contain;
  background: radial-gradient(circle at 50% 35%, #174f72, #081826 70%);
}

.project-card:hover .project-image,
.project-card:focus-within .project-image { transform: scale(1.045); }

.project-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(to top, rgba(4,12,19,.98) 0%, rgba(4,12,19,.56) 48%, rgba(4,12,19,.15) 78%);
}

.project-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: inherit;
  pointer-events: none;
}

.project-card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
}

.project-topline,
.project-bottom { position: relative; z-index: 1; }
.project-topline { display: flex; align-items: center; justify-content: space-between; gap: 18px; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 31px;
  padding: 0 11px;
  color: var(--white);
  background: rgba(7,16,25,.65);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 700;
}

.status-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
}

.status-pill.development::before { background: var(--amber); }

.project-number { color: rgba(255,255,255,.68); font-family: var(--display); font-size: 12px; }
.project-category { display: block; margin-bottom: 10px; color: var(--cyan); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.project-card h3 { max-width: 620px; margin-bottom: 10px; font-size: clamp(30px, 3.1vw, 46px); font-weight: 600; line-height: 1; }
.project-card p { max-width: 610px; margin-bottom: 22px; color: rgba(255,255,255,.66); font-size: 14px; line-height: 1.55; }

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 17px;
  border-top: 1px solid rgba(255,255,255,.16);
}

.project-meta span { color: rgba(255,255,255,.7); font-size: 12px; font-weight: 600; }

.project-open {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 50%;
  font-size: 17px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.project-card:hover .project-open,
.project-open:focus-visible { background: var(--lime); transform: rotate(45deg); }

.solutions-section {
  color: var(--white);
  background: var(--ink);
}

.section-heading.light p:last-child { color: rgba(255,255,255,.57); }

.solution-stack { border-top: 1px solid var(--line-dark); }

.solution-row {
  display: grid;
  grid-template-columns: 44px minmax(230px, .85fr) minmax(260px, 1fr) minmax(230px, .75fr);
  gap: 30px;
  align-items: start;
  padding: 42px 0;
  border-bottom: 1px solid var(--line-dark);
}

.solution-number { color: rgba(255,255,255,.35); font-family: var(--display); font-size: 12px; }
.solution-title { display: flex; gap: 17px; align-items: flex-start; }
.solution-icon { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; color: var(--ink); background: var(--lime); border-radius: 6px; font-style: normal; }
.solution-title h3 { margin: 1px 0 0; font-size: 25px; font-weight: 500; line-height: 1.15; }
.solution-row > p { margin: 0; color: rgba(255,255,255,.58); line-height: 1.65; }
.solution-row ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.solution-row li { position: relative; padding-left: 17px; color: rgba(255,255,255,.78); font-size: 13px; }
.solution-row li::before { content: ""; position: absolute; left: 0; top: .7em; width: 5px; height: 5px; background: var(--cyan); border-radius: 50%; }

.process-section { background: var(--white); }

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(520px, 1.2fr);
  gap: 100px;
  align-items: start;
}

.process-copy { position: sticky; top: 130px; }
.process-copy > p:not(.kicker) { max-width: 560px; margin: 26px 0 30px; color: var(--muted); font-size: 17px; }

.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 52px 1fr; gap: 25px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--blue); font-family: var(--display); font-size: 12px; font-weight: 700; }
.process-list h3 { margin-bottom: 8px; font-size: 28px; font-weight: 600; }
.process-list p { margin: 0; color: var(--muted); }

.proof-section { padding: 0 0 132px; background: var(--white); }

.proof-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 35px 90px;
  align-items: end;
  padding: 68px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(49, 215, 208, .2), transparent 27%),
    linear-gradient(135deg, #0b1a27, #071019);
  border-radius: 12px;
  box-shadow: 0 35px 90px rgba(7,16,25,.16);
}

.proof-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.proof-card > * { position: relative; z-index: 1; }
.proof-badge { grid-column: 1 / -1; display: inline-flex; width: max-content; align-items: center; gap: 11px; padding: 8px 12px; background: rgba(255,255,255,.08); border: 1px solid var(--line-dark); border-radius: 999px; }
.proof-badge span { width: 22px; height: 22px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: 11px; font-weight: 800; }
.proof-badge small { color: rgba(255,255,255,.76); font-size: 11px; font-weight: 700; }
.proof-card h2 { max-width: 820px; margin: 0; font-size: clamp(39px, 4.4vw, 66px); font-weight: 600; line-height: 1.02; }
.proof-card > p { margin: 0; color: rgba(255,255,255,.61); font-size: 16px; }
.proof-card .button { justify-self: start; }

.about-section { background: var(--paper); }

.about-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr); gap: 100px; align-items: start; }
.about-statement h2 em { color: var(--blue); }
.about-copy { padding-top: 46px; }
.about-copy > p { color: var(--muted); font-size: 17px; }
.about-copy > p:first-child { color: var(--text); font-size: 20px; font-weight: 500; }
.about-principles { display: grid; gap: 0; margin-top: 32px; border-top: 1px solid var(--line); }
.about-principles span { padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--text); font-size: 13px; font-weight: 700; }
.about-principles span::before { content: "↳"; margin-right: 12px; color: var(--blue); }

.faq-section { padding-top: 0; background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: minmax(0, .7fr) minmax(520px, 1.3fr); gap: 100px; }
.faq-heading h2 em { color: var(--blue); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 0; cursor: pointer; list-style: none; font-family: var(--display); font-size: 19px; font-weight: 600; letter-spacing: -.025em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { color: var(--blue); font-size: 20px; font-style: normal; transition: transform .2s ease; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details p { max-width: 720px; margin: -3px 48px 22px 0; color: var(--muted); }

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 132px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 30%, rgba(47,120,255,.19), transparent 30%),
    var(--ink);
}

.contact-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(520px, 1.2fr); gap: 100px; align-items: start; }
.contact-copy h2 { max-width: 620px; margin-bottom: 25px; font-size: clamp(43px, 5vw, 72px); font-weight: 600; line-height: 1; }
.contact-copy > p:not(.kicker) { max-width: 570px; margin-bottom: 36px; color: rgba(255,255,255,.58); font-size: 17px; }
.contact-direct { display: grid; gap: 0; border-top: 1px solid var(--line-dark); }
.contact-direct > * { display: grid; gap: 3px; padding: 14px 0; border-bottom: 1px solid var(--line-dark); }
.contact-direct small { color: rgba(255,255,255,.44); font-size: 11px; text-transform: uppercase; letter-spacing: .09em; }
.contact-direct strong { font-size: 14px; font-weight: 600; overflow-wrap: anywhere; }
.contact-direct a:hover strong { color: var(--lime); }

.contact-form { padding: 42px; color: var(--text); background: var(--white); border-radius: 10px; box-shadow: 0 32px 90px rgba(0,0,0,.2); }
.contact-form .trap-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: block; margin-bottom: 18px; }
.contact-form label > span { display: block; margin-bottom: 7px; color: #314354; font-size: 12px; font-weight: 700; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 51px;
  padding: 12px 13px;
  color: var(--text);
  background: #f7f9fb;
  border: 1px solid #dce3e8;
  border-radius: 5px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form textarea { min-height: 126px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(47,120,255,.12); }
.contact-form input.invalid,
.contact-form textarea.invalid { border-color: #d84747; }
.form-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 5px; }
.form-bottom p { max-width: 300px; margin: 0; color: #7b8994; font-size: 11px; line-height: 1.5; }
.form-bottom p.error { color: #b52d2d; font-weight: 600; }
.form-bottom p.success { color: #23714c; font-weight: 600; }

.site-footer { padding: 72px 0 26px; color: var(--white); background: #040b11; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 70px; padding-bottom: 55px; }
.footer-brand { margin-bottom: 18px; }
.footer-grid > div:first-child p { max-width: 320px; color: rgba(255,255,255,.45); font-size: 13px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-grid small { margin-bottom: 8px; color: var(--cyan); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid a,
.footer-grid > div > span { color: rgba(255,255,255,.6); font-size: 13px; overflow-wrap: anywhere; }
.footer-grid a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; color: rgba(255,255,255,.35); border-top: 1px solid rgba(255,255,255,.09); font-size: 11px; }

.project-dialog {
  width: min(1080px, calc(100vw - 44px));
  max-height: min(820px, calc(100vh - 44px));
  padding: 0;
  color: var(--text);
  background: var(--white);
  border: 0;
  border-radius: 12px;
  box-shadow: 0 40px 130px rgba(0,0,0,.45);
}

.project-dialog[open] { display: grid; grid-template-columns: minmax(360px, .9fr) minmax(430px, 1.1fr); }
.project-dialog::backdrop { background: rgba(1,7,12,.82); backdrop-filter: blur(10px); }
.dialog-close { position: fixed; z-index: 4; top: 16px; right: 17px; width: 40px; height: 40px; color: var(--white); background: rgba(7,16,25,.65); border: 1px solid rgba(255,255,255,.2); border-radius: 50%; font-size: 25px; line-height: 1; cursor: pointer; }
.dialog-media { min-height: 100%; background: var(--ink); }
.dialog-media img { width: 100%; height: 100%; object-fit: cover; }
.dialog-body { overflow-y: auto; padding: 52px; }
.dialog-topline { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.dialog-topline span { display: inline-flex; align-items: center; gap: 7px; color: #2f744f; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.dialog-topline span::before { content: ""; width: 6px; height: 6px; background: #49a86f; border-radius: 50%; }
.dialog-topline span.development { color: #8a6012; }
.dialog-topline span.development::before { background: var(--amber); }
.dialog-topline small { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .09em; }
.dialog-body h2 { margin-bottom: 4px; font-size: clamp(37px, 4vw, 54px); font-weight: 600; line-height: 1; }
.dialog-client { margin-bottom: 26px; color: var(--blue); font-size: 13px; font-weight: 700; }
.dialog-description { color: var(--muted); font-size: 16px; }
.dialog-points { display: grid; gap: 0; margin: 28px 0 34px; border-top: 1px solid var(--line); }
.dialog-point { display: grid; grid-template-columns: 30px 1fr; gap: 13px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.dialog-point span { color: var(--blue); font-family: var(--display); font-size: 10px; font-weight: 700; }
.dialog-point p { margin: 0; font-size: 13px; }
.dialog-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.noscript { padding: 20px; color: var(--muted); background: var(--white); border: 1px solid var(--line); }

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

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

@media (max-width: 1180px) {
  :root { --shell: min(100% - 44px, 1120px); }
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; gap: 38px; }
  .hero-copy { max-width: 900px; }
  .product-stage { width: min(820px, 100%); min-height: 540px; margin-inline: auto; }
  .hero-laptop-stage { width: min(820px, 100%); min-height: 540px; margin-inline: auto; }
  .hero-foot { margin-top: 25px; }
  .solution-row { grid-template-columns: 40px minmax(220px, .8fr) minmax(250px, 1fr); }
  .solution-row ul { grid-column: 2 / -1; grid-template-columns: repeat(3, 1fr); padding-left: 53px; }
  .process-layout,
  .contact-layout { gap: 60px; }
  .about-layout,
  .faq-layout { gap: 65px; }
  .chip-one { right: -8px; }
  .chip-two { left: -8px; }
}

@media (max-width: 960px) {
  .main-nav {
    position: fixed;
    inset: 80px 0 auto;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 18px 22px 26px;
    background: rgba(7,16,25,.98);
    border-bottom: 1px solid rgba(255,255,255,.1);
    transform: translateY(-130%);
    transition: transform .25s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 16px; }
  .main-nav a::after { display: none; }
  .menu-button { display: grid; }
  .nav-actions .button-small { display: none; }
  .signal-grid { grid-template-columns: repeat(2, 1fr); }
  .signal-grid > div:nth-child(3) { border-top: 1px solid rgba(255,255,255,.2); }
  .signal-grid > div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.2); border-right: 1px solid rgba(255,255,255,.2); }
  .section { padding: 100px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .project-card,
  .project-card:nth-child(4n + 1),
  .project-card:nth-child(4n + 2),
  .project-card:nth-child(4n + 3),
  .project-card:nth-child(4n + 4) { grid-column: span 6; min-height: 470px; }
  .solution-row { grid-template-columns: 34px 1fr; }
  .solution-row > p,
  .solution-row ul { grid-column: 2; padding-left: 0; }
  .solution-row ul { grid-template-columns: 1fr; }
  .process-layout,
  .about-layout,
  .faq-layout,
  .contact-layout { grid-template-columns: 1fr; }
  .process-copy { position: static; }
  .about-copy { padding-top: 0; }
  .proof-card { grid-template-columns: 1fr; padding: 52px; }
  .proof-badge { grid-column: 1; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
  .project-dialog[open] { grid-template-columns: 1fr; }
  .dialog-media { min-height: 290px; max-height: 340px; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 32px); }
  .nav-shell { min-height: 70px; gap: 10px; }
  .brand { gap: 9px; }
  .legacy-logo { gap: 0; font-size: 22px; }
  .brand-name { font-size: 17px; }
  .main-nav { top: 70px; }
  .language-control { display: flex; }
  .hero { min-height: auto; padding: 125px 0 28px; }
  .hero-copy h1 { font-size: clamp(43px, 13vw, 66px); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 13px; }
  .hero-actions .button { width: 100%; }
  .hero-proof { gap: 8px 16px; }
  .product-stage { min-height: 390px; margin-top: 12px; }
  .hero-laptop-stage { min-height: 360px; margin-top: 12px; }
  .hero-laptop-stage img { width: 100%; max-width: 680px; border-radius: 12px; transform: none; }
  .product-window { transform: none; }
  .window-bar { grid-template-columns: 1fr 1fr; }
  .window-bar > span { display: none; }
  .window-layout { min-height: 330px; grid-template-columns: 45px 1fr; }
  .mock-sidebar { padding: 12px 5px; gap: 13px; }
  .mock-logo { width: 29px; height: 29px; margin-bottom: 7px; }
  .mock-sidebar > span { width: 24px; height: 24px; }
  .mock-content { padding: 14px; }
  .mock-heading { margin-bottom: 12px; }
  .mock-heading button span:last-child { display: none; }
  .mock-metrics { gap: 7px; }
  .mock-metrics > div { min-height: 72px; padding: 9px; }
  .mock-metrics strong { font-size: 18px; }
  .mock-metrics span { display: none; }
  .mock-workspace { grid-template-columns: 1fr; }
  .mock-chart { min-height: 150px; }
  .mock-activity { display: none; }
  .bars { height: 100px; }
  .floating-chip { display: none; }
  .hero-foot { align-items: flex-start; flex-direction: column; }
  .signal-grid { grid-template-columns: 1fr 1fr; }
  .signal-grid > div { min-height: 112px; grid-template-columns: 28px 1fr; padding: 16px 12px; }
  .signal-grid small { font-size: 10px; }
  .section { padding: 78px 0; }
  .section-heading h2,
  .process-copy h2,
  .about-statement h2,
  .faq-heading h2 { font-size: clamp(38px, 11vw, 54px); }
  .filter-bar { flex-wrap: nowrap; overflow-x: auto; margin-right: -16px; padding-right: 16px; scrollbar-width: none; }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter { flex: 0 0 auto; }
  .project-grid { gap: 16px; }
  .project-card,
  .project-card:nth-child(4n + 1),
  .project-card:nth-child(4n + 2),
  .project-card:nth-child(4n + 3),
  .project-card:nth-child(4n + 4) { grid-column: 1 / -1; min-height: 455px; }
  .project-card-inner { padding: 20px; }
  .project-card h3 { font-size: 34px; }
  .solution-row { gap: 18px; padding: 32px 0; }
  .solution-title { gap: 12px; }
  .solution-title h3 { font-size: 22px; }
  .process-list li { grid-template-columns: 39px 1fr; gap: 12px; }
  .proof-section { padding-bottom: 78px; }
  .proof-card { gap: 24px; padding: 34px 24px; }
  .proof-card h2 { font-size: 39px; }
  .proof-card .button { width: 100%; }
  .faq-list summary { font-size: 17px; }
  .contact-section { padding: 78px 0; }
  .contact-form { padding: 26px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-bottom { align-items: stretch; flex-direction: column; }
  .form-bottom .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .project-dialog { width: calc(100vw - 18px); max-height: calc(100vh - 18px); }
  .dialog-media { min-height: 210px; max-height: 250px; }
  .dialog-body { padding: 30px 22px; }
  .dialog-actions { align-items: stretch; flex-direction: column; }
  .dialog-actions .button { width: 100%; }
}

@media (max-width: 380px) {
  .brand-name { display: none; }
  .hero-copy h1 { font-size: 43px; }
  .signal-grid { grid-template-columns: 1fr; }
  .signal-grid > div { border-right: 1px solid rgba(255,255,255,.2); }
  .signal-grid > div:nth-child(2) { border-top: 1px solid rgba(255,255,255,.2); }
  .project-card { min-height: 420px !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
}
