:root {
  --bg: #07090d;
  --bg-soft: #0d1117;
  --panel: #111820;
  --panel-raised: #151d26;
  --surface: #fbfaf5;
  --surface-soft: #eef5ee;
  --ink: #f7f4ec;
  --ink-soft: #c6c2b8;
  --ink-muted: #838982;
  --dark: #11161d;
  --dark-soft: #39424c;
  --line: rgba(247, 244, 236, 0.12);
  --line-strong: rgba(247, 244, 236, 0.22);
  --line-light: rgba(17, 22, 29, 0.12);
  --lime: #d8ff3f;
  --mint: #62e0c1;
  --amber: #ffb45f;
  --cyan: #8cc8ff;
  --max: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 8px;
  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #07090d 0%, #0c1117 48%, #07090d 100%);
  background-size: 120px 100%, auto;
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

figure {
  margin: 0;
}

a {
  color: inherit;
}

::selection {
  background: var(--lime);
  color: var(--dark);
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  top: -60px;
  left: 18px;
  z-index: 200;
  background: var(--lime);
  color: var(--dark);
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 12px;
  text-decoration: none;
}

.skip:focus {
  top: 18px;
}

.shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.mono {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--mint);
}

.h1,
.h2,
.h3 {
  margin: 0;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.98;
}

.h1 {
  max-width: 13ch;
  font-size: 5.2rem;
}

.h2 {
  max-width: 12ch;
  font-size: 4.1rem;
}

.h3 {
  font-size: 2rem;
  line-height: 1.08;
}

.lead {
  max-width: 66ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.62;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--lime);
  color: var(--dark);
  box-shadow: 0 14px 42px rgba(216, 255, 63, 0.13);
}

.btn--ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.02);
}

.btn--ghost:hover {
  border-color: rgba(216, 255, 63, 0.44);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid transparent;
  background: rgba(7, 9, 13, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
}

.nav.is-scrolled {
  border-bottom-color: var(--line);
}

.nav__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--lime), var(--mint));
  color: var(--dark);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.brand__name {
  font-size: 20px;
  font-weight: 850;
  letter-spacing: 0;
}

.nav__links,
.nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__link {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav__link:hover,
.nav__link.active {
  color: var(--ink);
}

.statuschip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  white-space: nowrap;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(216, 255, 63, 0.1);
}

.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
}

.nav__burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.mmenu {
  position: fixed;
  inset: 70px 0 auto 0;
  z-index: 70;
  display: none;
  border-bottom: 1px solid var(--line);
  background: #07090d;
}

.mmenu.is-open {
  display: block;
}

.mmenu a {
  display: block;
  padding: 18px var(--gutter);
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 23px;
  font-weight: 850;
  text-decoration: none;
}

.hero {
  padding: 40px 0 34px;
}

.hero__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  color: var(--ink-muted);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(470px, 0.92fr);
  gap: 34px;
  align-items: center;
}

.hero__copy {
  display: grid;
  min-width: 0;
  gap: 16px;
}

.hero .h1 {
  max-width: 13.5ch;
  font-size: 4.45rem;
  overflow-wrap: break-word;
}

.hero .lead {
  max-width: 55ch;
  font-size: 1.04rem;
  line-height: 1.56;
}

.hero__actions,
.action-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.product-shot {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
}

.product-shot img {
  width: 100%;
  min-height: 230px;
  max-height: 340px;
  object-fit: cover;
  object-position: center;
}

.hero-shot {
  background: #101720;
}

.hero-shot img {
  min-height: 0;
  max-height: none;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.product-shot__cap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.stat {
  min-height: 104px;
  padding: 22px 20px;
  border-left: 1px solid var(--line);
}

.stat:first-child {
  border-left: 0;
}

.stat b {
  display: block;
  color: var(--ink);
  font-size: 2.45rem;
  line-height: 1;
}

.stat span {
  display: block;
  max-width: 18ch;
  margin-top: 10px;
  color: var(--ink-soft);
  line-height: 1.35;
}

.sec {
  padding: 92px 0;
  border-top: 1px solid var(--line);
}

.sec--light {
  background: var(--surface);
  color: var(--dark);
}

.sec--light .lead {
  color: #555f68;
}

.sec--engage {
  background:
    linear-gradient(180deg, rgba(216, 255, 63, 0.045) 0%, transparent 32%),
    var(--bg-soft);
}

.section-head {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 34px;
  margin-bottom: 46px;
}

.section-kicker {
  color: var(--ink-muted);
}

.sec--light .section-kicker {
  color: #68727c;
}

.section-copy {
  display: grid;
  gap: 18px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.sec--light .card {
  background: #fffdfa;
  border-color: var(--line-light);
  box-shadow: 0 16px 42px rgba(17, 22, 29, 0.05);
}

.card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.18;
}

.sec--light .card h3 {
  color: var(--dark);
}

.card p {
  margin: 0;
  color: var(--ink-soft);
}

.sec--light .card p {
  color: #59636d;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sec--light .tag {
  color: #3e4851;
  border-color: var(--line-light);
}

.capability {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
}

.capability__num {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(216, 255, 63, 0.34);
  border-radius: var(--radius);
  color: var(--lime);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.visual-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-raised);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.visual-card--wide {
  grid-column: 1 / -1;
}

.visual-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  background: #f4f7fb;
}

.visual-card figcaption {
  display: grid;
  gap: 8px;
  padding: 18px 20px 20px;
  border-top: 1px solid var(--line);
}

.visual-card figcaption span {
  color: var(--mint);
}

.visual-card b {
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.1;
}

.visual-card p {
  margin: 0;
  color: var(--ink-soft);
}

.mini-shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-raised);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
}

.mini-shot img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: top center;
  background: #f4f7fb;
}

.mini-shot:nth-child(1) img,
.mini-shot:nth-child(2) img {
  object-position: bottom center;
}

.mini-shot:nth-child(3) img,
.mini-shot:nth-child(4) img,
.mini-shot:nth-child(5) img {
  object-position: right top;
}

.mini-shot figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 52px;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.mini-shot b {
  color: var(--ink);
  font-size: 14px;
}

.industry-list {
  border-top: 1px solid var(--line);
}

.industry-row {
  display: grid;
  grid-template-columns: 56px minmax(180px, 0.95fr) minmax(0, 1.3fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.industry-row b {
  font-size: 1.7rem;
  line-height: 1.08;
}

.industry-row p {
  margin: 0;
  color: var(--ink-soft);
}

.engine {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  align-items: stretch;
}

.router {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 24px;
}

.router__flow {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.router__step {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.router__step b {
  color: var(--mint);
  font-size: 0.96rem;
}

.router__step span {
  color: var(--ink-soft);
}

.migration {
  display: grid;
  grid-template-columns: 1fr 62px 1fr;
  gap: 18px;
  align-items: stretch;
}

.stack {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #fffdfa;
  padding: 24px;
}

.stack--after {
  background: var(--dark);
  color: var(--ink);
}

.stack h3 {
  margin: 0 0 18px;
  font-size: 1.2rem;
}

.stack-row {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid var(--line-light);
}

.stack--after .stack-row {
  border-top-color: var(--line);
}

.stack-row:first-of-type {
  border-top: 0;
}

.stack-row span:first-child {
  color: #68727c;
}

.stack--after .stack-row span:first-child {
  color: var(--ink-muted);
}

.arrow {
  display: grid;
  place-items: center;
  color: #64707b;
  font-size: 28px;
  font-weight: 850;
}

.about-grid,
.engage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 52px;
  align-items: start;
}

.engage-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.78fr);
}

.engage-grid .grid--3 {
  margin-top: 10px;
  gap: 14px;
}

.engage-grid .card {
  min-height: 188px;
  background: rgba(255, 255, 255, 0.045);
}

.engage-grid .h2 {
  max-width: 9ch;
}

.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 24px;
}

.info-row {
  display: grid;
  grid-template-columns: 122px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.info-row:first-child {
  border-top: 0;
}

.info-row span:first-child {
  color: var(--ink-muted);
}

.brief {
  border: 1px solid rgba(17, 22, 29, 0.12);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--dark);
  padding: 24px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}

.brief-row {
  display: grid;
  grid-template-columns: 136px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line-light);
}

.brief-row:first-child {
  border-top: 0;
}

.brief-row span:first-child {
  color: #66717c;
}

.footer {
  border-top: 1px solid var(--line);
  background: #06080b;
  font-size: 15px;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(140px, 0.75fr));
  gap: 34px;
  padding: 42px 0 34px;
}

.footer h4 {
  margin: 0 0 14px;
  color: var(--ink-muted);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer a {
  color: var(--ink-soft);
  text-decoration: none;
}

.footer a:hover {
  color: var(--ink);
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 900;
  font-size: 22px;
}

.footer__desc {
  max-width: 60ch;
  margin: 0 0 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.footer__bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
}

.footer__bar span:first-child {
  max-width: 82ch;
}

.subhero {
  padding: 72px 0 62px;
}

.subhero .h1 {
  max-width: 16ch;
  font-size: 4.4rem;
}

.subhero .lead {
  margin-top: 22px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0d1117;
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .nav__right .statuschip {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(430px, 1.06fr);
    gap: 34px;
  }

  .hero .h1 {
    font-size: 4.35rem;
  }

  .h2 {
    font-size: 3.45rem;
  }

  .image-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-card--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .nav__links,
  .nav__right {
    display: none;
  }

  .nav__burger {
    display: block;
  }

  .hero__grid,
  .engine,
  .about-grid,
  .engage-grid,
  .migration,
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }

  .hero .h1,
  .h1 {
    max-width: 14ch;
    font-size: 4rem;
  }

  .h2,
  .subhero .h1 {
    font-size: 3.2rem;
  }

  .arrow {
    transform: rotate(90deg);
    min-height: 54px;
  }

  .stats,
  .footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat:nth-child(odd) {
    border-left: 0;
  }

  .section-head,
  .industry-row {
    grid-template-columns: 1fr;
  }

  .industry-row {
    gap: 12px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero .h1,
  .h1 {
    max-width: 100%;
    font-size: 3rem;
    overflow-wrap: break-word;
  }

  .h2,
  .subhero .h1 {
    max-width: 100%;
    font-size: 2.35rem;
  }

  .lead,
  .hero .lead {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .stats,
  .image-grid,
  .visual-grid,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .visual-card--wide {
    grid-column: auto;
  }

  .stat {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .stat:first-child {
    border-top: 0;
  }

  .capability,
  .stack-row,
  .info-row,
  .brief-row {
    grid-template-columns: 1fr;
  }

  .product-shot img {
    min-height: 220px;
  }

  .mini-shot img {
    height: 180px;
  }
}
