@font-face {
  font-family: Inter;
  src: url("../fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --navy: #07162d;
  --ink: #0b1630;
  --blue: #245bf5;
  --accent: #82a7ff;
  --paper: #f6f8fd;
  --muted: #556481;
  --line: #dce4f2;
  --white: #fff;
  --light-text: #becce3;
  --radius: 9px;
  font-family: Inter, Arial, sans-serif;
  font-optical-sizing: auto;
  color: var(--ink);
  background: var(--navy);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
::selection {
  background: #c2d3ff;
  color: var(--ink);
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid #6b96ff;
  outline-offset: 5px;
}
.container {
  width: 88%;
  max-width: 1280px;
  margin-inline: auto;
}
.section-light {
  background: var(--paper);
}
.section-dark,
.site-header,
.hero {
  background: var(--navy);
  color: white;
}
.icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.section-dark .icon,
.site-header .icon,
.hero .icon,
.button .icon {
  filter: brightness(0) invert(1);
}
.text-link .icon {
  width: 21px;
  height: 21px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  padding: 14px 20px;
  background: white;
  color: var(--ink);
  z-index: 100;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: relative;
  z-index: 20;
}
.header-inner {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.wordmark {
  font-size: 42px;
  font-weight: 650;
  letter-spacing: -2px;
  line-height: 1.1;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 15px;
  flex: 1;
  justify-content: center;
}
.site-nav > a:not(.button) {
  padding-block: 13px;
  white-space: nowrap;
  transition: color 0.18s;
}
.site-nav > a:hover {
  color: var(--accent);
}
.site-nav .nav-contact {
  margin-left: auto;
}
.site-nav > a:first-child {
  margin-left: auto;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid #334865;
  border-radius: 8px;
  color: white;
  padding: 11px;
}
.menu-toggle .menu-close {
  display: none;
}
.menu-toggle[aria-expanded="true"] .menu-open {
  display: none;
}
.menu-toggle[aria-expanded="true"] .menu-close {
  display: block;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 66px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 18px 28px;
  background: var(--blue);
  color: white;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}
.button:hover {
  background: #1749d6;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px #0c47d51f;
}
.button:active {
  transform: translateY(0);
}
.button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}
.button-small {
  min-height: 50px;
  padding: 13px 21px;
  font-size: 14px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #144ace;
  min-height: 44px;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.text-link > .icon {
  filter: invert(27%) sepia(89%) saturate(2580%) hue-rotate(217deg)
    brightness(82%);
}
.light-link {
  color: white;
}
.light-link > .icon {
  filter: brightness(0) invert(1);
}
.light-link {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: #60789f;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 13px;
  font-weight: 550;
  line-height: 1.5;
  color: #2257e0;
}
.section-dark .eyebrow,
.hero .eyebrow {
  color: #97b8fa;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 20px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 42px;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero-copy h1 {
  font-size: clamp(48px, 6.05vw, 87px);
  font-weight: 680;
  line-height: 1.015;
  letter-spacing: -0.055em;
  margin: 23px 0 36px;
}
.hero-copy h1 span {
  color: var(--accent);
}
.hero-description {
  font-size: clamp(20px, 2.06vw, 29px);
  line-height: 1.43;
  letter-spacing: -0.022em;
  max-width: 550px;
  color: #eef2fb;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 42px;
}
.hero-visual {
  min-width: 0;
  align-self: center;
}
.slider-frame {
  position: relative;
  container-type: inline-size;
  width: 100%;
  aspect-ratio: 1.18;
  border-radius: 16px;
  background: radial-gradient(120% 90% at 50% 40%, #0c2147 0%, var(--navy) 70%);
  border: 1px solid #1c3160;
  overflow: hidden;
}
.slide,
.slide > div {
  position: absolute;
  inset: 0;
}
.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: lighten;
}
.slider-nav {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-top: 14px;
}
.slider-arrows {
  display: flex;
  gap: 6px;
}
.slider-arrow {
  width: 44px;
  padding: 0;
  border-radius: 9px;
  border: 1px solid #2a3f66;
  background: transparent;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.18s,
    background 0.18s;
}
.slider-arrow:hover {
  border-color: #5b8cff;
  background: #0e2a5e;
}
.slider-arrow .icon {
  width: 16px;
  height: 16px;
}
.slider-arrow[data-dir="-1"] .icon {
  transform: scaleX(-1);
}
.slider-tabs {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.slider-tabs button {
  position: relative;
  overflow: hidden;
  min-height: 44px;
  border: 1px solid #2a3f66;
  border-radius: 9px;
  padding: 11px 12px;
  background: transparent;
  color: var(--light-text);
  font-size: 13px;
  line-height: 1.3;
  text-align: center;
  transition:
    color 0.18s,
    border-color 0.18s,
    background 0.18s;
}
.slider-tabs button:hover {
  color: white;
  border-color: #3b5a92;
}
.slider-tabs button[aria-selected="true"] {
  color: white;
  border-color: #5b8cff;
  background: #0e2a5e;
}
.slider-tabs button[aria-selected="true"]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 60%;
  background: var(--accent);
}
/* Slide artwork */
.sl-label {
  position: absolute;
  left: 8%;
  top: calc(9% - 6px);
  transform: translateY(-100%);
  z-index: 2;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--navy);
  border: 1px solid #2f5fd6;
  border-radius: 20px;
  padding: 5px 11px;
}
/* Hi-fi UI mockups scale with the frame width via container units */
.sl-ui {
  position: absolute;
  left: 8%;
  top: 9%;
  width: 84%;
  height: 82%;
  font-size: 2.05cqw;
  line-height: 1.3;
  border-radius: 0.7em;
  overflow: hidden;
  box-shadow:
    0 0 30px #245bf566,
    0 20px 50px #00000080;
}
.sl-ui svg {
  display: block;
}
.sl-badge {
  position: absolute;
  z-index: 2;
  max-width: 56%;
  background: #0e2a5e;
  border: 1px solid #5b8cff;
  border-radius: 0.8em;
  padding: 0.85em 1.1em;
  font-size: 2.05cqw;
  line-height: 1.35;
  color: #dfe8ff;
  box-shadow: 0 0 30px #3b6fe0aa;
}
.sl-badge b {
  display: block;
  color: white;
  font-weight: 600;
}
.sl-badge small {
  display: block;
  color: var(--light-text);
  font-size: 0.85em;
  margin-top: 0.2em;
}
.sl-cart {
  right: 4%;
  bottom: 2%;
}
.sl-api {
  left: 4%;
  bottom: 5%;
}
.sl-api b {
  font-family: ui-monospace, Menlo, monospace;
  font-weight: 500;
}
/* Slide 1: WordPress admin with WooCommerce orders */
.sl-wp {
  display: flex;
  flex-direction: column;
  background: #f0f0f1;
  color: #1d2327;
}
.wp-bar {
  flex: none;
  height: 2.3em;
  display: flex;
  align-items: center;
  gap: 1.1em;
  padding: 0 0.9em;
  background: #1d2327;
  color: #f0f0f1;
  font-size: 0.82em;
  white-space: nowrap;
}
.wp-bar > b {
  width: 1.5em;
  height: 1.5em;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f0f0f1;
  color: #1d2327;
  font-weight: 700;
  font-size: 0.95em;
}
.wp-bar i {
  display: inline-grid;
  place-items: center;
  min-width: 1.4em;
  height: 1.4em;
  padding: 0 0.3em;
  border-radius: 0.7em;
  background: #3c434a;
  font-size: 0.8em;
  font-style: normal;
}
.wp-bar em {
  margin-left: auto;
  font-style: normal;
  color: #c3c4c7;
}
.wp-body {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 26% 1fr;
}
.wp-menu {
  display: flex;
  flex-direction: column;
  padding: 0.5em 0;
  overflow: hidden;
  background: #1d2327;
  color: #f0f0f1;
  font-size: 0.78em;
}
.wp-menu span {
  display: flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.42em 0.8em;
  white-space: nowrap;
}
.wp-menu span::before {
  content: "";
  flex: none;
  width: 1em;
  height: 1em;
  border-radius: 0.2em;
  background: #9ca2a7;
}
.wp-menu span.on {
  background: #2271b1;
  color: white;
}
.wp-menu span.on::before {
  background: white;
}
.wp-menu .sub {
  padding-left: 2.4em;
  background: #2c3338;
  color: #c3c4c7;
  font-size: 0.95em;
}
.wp-menu .sub::before {
  display: none;
}
.wp-menu .sub.cur {
  color: white;
  font-weight: 600;
}
.wp-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6em;
  padding: 0.9em 1em;
}
.wp-h {
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.wp-h b {
  font-size: 1.2em;
  font-weight: 400;
}
.wp-btn {
  padding: 0.25em 0.6em;
  border: 1px solid #2271b1;
  border-radius: 0.25em;
  background: #f6f7f7;
  color: #2271b1;
  font-size: 0.72em;
}
.wp-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45em;
  font-size: 0.7em;
  color: #2271b1;
  white-space: nowrap;
}
.wp-tabs span + span::before {
  content: "|";
  margin-right: 0.45em;
  color: #c3c4c7;
}
.wp-tabs .cur {
  color: #1d2327;
  font-weight: 600;
}
.wp-table {
  overflow: hidden;
  border: 1px solid #c3c4c7;
  background: white;
  font-size: 0.74em;
}
.wp-tr {
  display: grid;
  grid-template-columns: 1.1em 2.3fr 1.2fr 1.3fr 1fr;
  gap: 0.6em;
  align-items: center;
  padding: 0.55em 0.7em;
  border-top: 1px solid #f0f0f1;
  white-space: nowrap;
}
.wp-tr:nth-child(odd):not(.wp-th) {
  background: #f6f7f7;
}
.wp-tr span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wp-tr i {
  display: block;
  width: 1em;
  height: 1em;
  border: 1px solid #8c8f94;
  border-radius: 0.2em;
  background: white;
}
.wp-th {
  border-top: 0;
  border-bottom: 1px solid #c3c4c7;
  font-weight: 400;
}
.wp-tr b {
  color: #2271b1;
  font-weight: 600;
}
.ws {
  display: inline-block;
  padding: 0.12em 0.6em;
  border-radius: 0.25em;
  font-style: normal;
  font-weight: 500;
}
.ws-proc {
  background: #c6e1c6;
  color: #5b841b;
}
.ws-done {
  background: #c8d7e1;
  color: #2e4453;
}
.ws-hold {
  background: #f8dda7;
  color: #94660c;
}
.ws-ref {
  background: #e5e5e5;
  color: #6b6b6b;
}
.wp-foot {
  display: flex;
  justify-content: space-between;
  font-size: 0.7em;
  color: #50575e;
}
.wp-pages {
  padding: 0.1em 0.5em;
  border: 1px solid #c3c4c7;
  border-radius: 0.25em;
  background: white;
}
.wp-panel {
  margin-top: 0.3em;
  padding: 0.7em 0.9em;
  border: 1px solid #c3c4c7;
  background: white;
}
.wp-panel > b {
  display: block;
  margin-bottom: 0.6em;
  font-size: 0.78em;
  font-weight: 600;
}
.wp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6em;
}
.wp-stats > div {
  min-width: 0;
  padding: 0.5em 0.7em;
  border-left: 3px solid #2271b1;
  background: #f6f7f7;
  white-space: nowrap;
}
.wp-stats small {
  display: block;
  font-size: 0.65em;
  color: #50575e;
}
.wp-stats strong {
  display: block;
  font-size: 1.05em;
  font-weight: 600;
}
.wp-stats em {
  font-size: 0.65em;
  font-style: normal;
  font-weight: 600;
  color: #007017;
}
/* Slide 2: admin panel */
.sl-panel {
  display: grid;
  grid-template-columns: 27% 1fr;
  background: #0b1a33;
  border: 1px solid #2f5fd6;
  color: #dfe8ff;
}
.ad-side {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  padding: 1em 0.8em;
  background: #08142a;
  border-right: 1px solid #1e3560;
}
.ad-side b {
  margin: 0 0 0.9em 0.5em;
  font-size: 0.95em;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
}
.ad-side span {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.5em 0.6em;
  border-radius: 0.4em;
  font-size: 0.82em;
  color: #93a6c9;
}
.ad-side span::before {
  content: "";
  width: 0.7em;
  height: 0.7em;
  border-radius: 0.2em;
  background: #2b4a86;
}
.ad-side span.on {
  background: #16305f;
  color: white;
}
.ad-side span.on::before {
  background: var(--accent);
}
.ad-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9em;
  padding: 0.9em 1em;
}
.ad-top {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.8em;
}
.ad-search {
  flex: 1;
  padding: 0.45em 0.8em;
  border: 1px solid #22458f;
  border-radius: 0.5em;
  background: #10213b;
  color: #7f93b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ad-pill {
  padding: 0.35em 0.7em;
  border: 1px solid #22458f;
  border-radius: 2em;
  color: var(--light-text);
  white-space: nowrap;
}
.ad-avatar {
  width: 2.2em;
  height: 2.2em;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 0.85em;
  font-weight: 600;
}
.ad-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6em;
}
.ad-kpis > div {
  min-width: 0;
  padding: 0.7em 0.8em 0.6em;
  border: 1px solid #1f3f7d;
  border-radius: 0.6em;
  background: #10213b;
}
.ad-kpis small {
  display: block;
  font-size: 0.7em;
  color: #93a6c9;
  white-space: nowrap;
}
.ad-kpis b {
  display: block;
  margin: 0.15em 0;
  font-size: 1.15em;
  font-weight: 700;
  color: white;
  white-space: nowrap;
}
.ad-kpis em {
  font-size: 0.68em;
  font-style: normal;
  font-weight: 600;
  color: #3ac48f;
}
.ad-kpis svg {
  width: 100%;
  height: 1.3em;
  margin-top: 0.4em;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.ad-table {
  overflow: hidden;
  border: 1px solid #1f3f7d;
  border-radius: 0.6em;
  background: #0e2143;
  font-size: 0.78em;
}
.ad-tr {
  display: grid;
  grid-template-columns: 1fr 1.9fr 1.5fr 1fr 1.1fr;
  gap: 0.5em;
  align-items: center;
  padding: 0.6em 0.9em;
  border-top: 1px solid #1a3462;
  white-space: nowrap;
}
.ad-tr span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ad-th {
  border-top: 0;
  background: #0b1a33;
  color: #7f93b8;
  font-size: 0.9em;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.st {
  display: inline-block;
  padding: 0.15em 0.6em;
  border-radius: 2em;
  font-size: 0.9em;
  font-style: normal;
  font-weight: 600;
}
.st-paid {
  background: #123d33;
  color: #5fe0b0;
}
.st-ship {
  background: #2a2f5a;
  color: #a5b4ff;
}
.st-proc {
  background: #3a2f12;
  color: #f3c46b;
}
.st-ref {
  background: #3d1f28;
  color: #ff9eab;
}
.ad-row2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.6em;
}
.ad-chart,
.ad-list {
  min-width: 0;
  padding: 0.7em 0.8em;
  border: 1px solid #1f3f7d;
  border-radius: 0.6em;
  background: #10213b;
}
.ad-chart small,
.ad-list small {
  display: block;
  margin-bottom: 0.5em;
  font-size: 0.7em;
  color: #93a6c9;
}
.ad-chart svg {
  width: 100%;
  height: 3.6em;
  fill: #2f5fd6;
}
.ad-chart .now {
  fill: var(--accent);
}
.ad-list span {
  display: flex;
  justify-content: space-between;
  gap: 0.5em;
  padding: 0.3em 0;
  border-top: 1px solid #1a3462;
  font-size: 0.75em;
  white-space: nowrap;
}
.ad-list span b {
  font-weight: 600;
  color: white;
}
.sl-wire {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.sl-wire path {
  fill: none;
  stroke: #5b8cff;
  stroke-width: 0.5;
}
.sl-node {
  position: absolute;
  background: #0b1d3a;
  border: 1px solid #2f5fd6;
  border-radius: 0.9em;
  padding: 0.9em 1.1em;
  box-shadow: 0 0 22px #245bf555;
  color: white;
  font-size: 2.25cqw;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.sl-node small {
  display: block;
  font-weight: 400;
  color: var(--light-text);
  font-size: 0.85em;
  line-height: 1.3;
  margin-top: 0.15em;
}
.sl-tool {
  top: 7%;
  background: #0a1a35;
  border-color: #22458f;
  font-weight: 500;
  color: #dfe8ff;
}
.sl-tool-left {
  left: 5%;
}
.sl-tool-right {
  right: 5%;
}
.sl-orch {
  left: 50%;
  top: 15%;
  width: 44%;
  transform: translateX(-50%);
  padding: 1em 1.2em;
  font-size: 2.6cqw;
  background: #0e2a5e;
  border-color: #5b8cff;
  box-shadow: 0 0 40px #3b6fe0aa;
}
.sl-orch::before {
  content: "";
  display: block;
  width: 1.7em;
  height: 1.7em;
  margin-bottom: 0.5em;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2382a7ff'><path d='M12 2l2.4 7.6L22 12l-7.6 2.4L12 22l-2.4-7.6L2 12l7.6-2.4z'/></svg>")
    no-repeat center / contain;
}
.sl-agent {
  top: 47%;
  width: 26%;
}
.sl-agent-1 {
  left: 6%;
}
.sl-agent-2 {
  left: 50%;
  transform: translateX(-50%);
}
.sl-agent-3 {
  right: 6%;
}
.sl-human {
  left: 50%;
  top: 76%;
  width: 50%;
  transform: translateX(-50%);
  border-color: #3ac48f;
  box-shadow: 0 0 22px #3ac48f44;
}
.stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  list-style: none;
  padding: 26px 0 48px;
  margin: 0;
}
.stack li {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #2a3f66;
  border-radius: 30px;
  padding: 9px 18px;
  font-size: 15px;
  line-height: 1.4;
  color: #eef2fb;
}
.stack li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.stack-hot::before {
  background: white;
  box-shadow: 0 0 10px var(--accent);
}
h2 {
  font-size: clamp(38px, 4.95vw, 70px);
  font-weight: 670;
  line-height: 1.09;
  letter-spacing: -0.05em;
}
.work {
  padding: 70px 0 58px;
}
.work h2 {
  margin: 23px 0 20px;
}
.section-intro {
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.5;
  letter-spacing: -0.025em;
  color: var(--muted);
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 50px;
}
.project {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 28px 32px 36px 0;
  min-width: 0;
}
.project:nth-child(even) {
  border-left: 1px solid var(--line);
  padding-left: 44px;
  padding-right: 0;
}
.project:nth-child(n + 3) {
  border-top: 1px solid var(--line);
  padding-top: 42px;
  padding-bottom: 26px;
}
.project-image {
  width: clamp(128px, 15vw, 208px);
  height: clamp(128px, 16.8vw, 234px);
  object-fit: cover;
  border-radius: 18px;
  flex-shrink: 0;
}
.project-copy {
  min-width: 0;
}
.project h3 {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 680;
  letter-spacing: -0.05em;
  margin-bottom: 11px;
  line-height: 1.15;
}
.project-type {
  display: inline-block;
  color: #35496e;
  background: #eaf0fb;
  padding: 5px 10px;
  border-radius: 30px;
  font-size: 14px;
  line-height: 1.3;
}
.project p {
  font-size: clamp(16px, 1.55vw, 21px);
  line-height: 1.5;
  letter-spacing: -0.025em;
  color: var(--muted);
  margin: 12px 0 10px;
  max-width: 300px;
}
.project-link {
  font-size: clamp(14px, 1.45vw, 19px);
  gap: 10px;
  overflow-wrap: anywhere;
}
.project-link .icon {
  width: 18px;
  height: 18px;
}
.portfolio-action {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  margin-top: 42px;
}
.portfolio-action > span {
  font-size: 14px;
}
.services {
  padding: 84px 0 100px;
}
.services-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 30px;
}
.services-heading h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.16;
  letter-spacing: -0.04em;
  max-width: 380px;
  margin-top: 28px;
}
.service {
  padding-left: 20px;
  position: relative;
}
.service + .service {
  border-left: 1px solid #30405c;
}
.service > .icon {
  width: 36px;
  height: 36px;
  margin-bottom: 25px;
}
.service h3 {
  font-size: 16px;
  font-weight: 620;
  line-height: 1.4;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}
.service p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--light-text);
}
.expertise {
  padding: 110px 0 100px;
}
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
}
.section-heading h2 {
  font-size: clamp(38px, 4.2vw, 58px);
  margin: 24px 0;
}
.section-heading .section-intro {
  font-size: 20px;
  max-width: 410px;
}
.section-heading .text-link {
  margin-top: 26px;
}
.expertise-list article {
  display: flex;
  gap: 25px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.expertise-list article:first-child {
  padding-top: 0;
}
.item-number {
  font-size: 13px;
  font-weight: 550;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: #4263a4;
}
.expertise-list h3 {
  font-size: 21px;
  letter-spacing: -0.03em;
  font-weight: 620;
  margin-bottom: 12px;
}
.expertise-list p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}
.about {
  padding: 0 0 110px;
}
.faq {
  padding: 0 0 110px;
}
.faq-grid {
  border-top: 1px solid var(--line);
  padding-top: 90px;
}
.faq-list p {
  max-width: 560px;
}
.legal {
  padding: 60px 0 100px;
}
.legal h1 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 670;
  letter-spacing: -0.045em;
  line-height: 1.1;
  margin: 18px 0 28px;
}
.legal h2 {
  font-size: 24px;
  letter-spacing: -0.03em;
  margin: 40px 0 12px;
}
.legal p,
.legal li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 720px;
}
.legal ul {
  padding-left: 22px;
}
.legal a {
  color: #144ace;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.legal .updated {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}
.about-grid {
  border-top: 1px solid var(--line);
  padding-top: 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
}
.about h2 {
  font-size: clamp(34px, 3.75vw, 52px);
  margin-top: 24px;
}
.about-copy p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 20px;
}
.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  list-style: none;
  padding: 65px 0 0;
}
.process-list h3 {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.035em;
  margin: 18px 0 12px;
}
.process-list p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}
.contact {
  padding: 100px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 100px;
}
.contact h2 {
  font-size: clamp(40px, 4.5vw, 64px);
  margin: 28px 0;
}
.contact-copy > p:not(.eyebrow) {
  font-size: 19px;
  line-height: 1.6;
  color: var(--light-text);
  max-width: 440px;
}
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 23px;
  font-weight: 500;
  margin: 28px 0;
}
.contact-copy .contact-next {
  font-size: 15px !important;
  max-width: 340px !important;
  margin-top: 15px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.field label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.field label span {
  color: #9abaff;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 54px;
  padding: 15px 16px;
  background: #10213b;
  border: 1px solid #405473;
  border-radius: 8px;
  color: white;
  transition: border-color 0.18s;
  line-height: 1.5;
}
.field textarea {
  resize: vertical;
  min-height: 144px;
}
.field select {
  appearance: auto;
  color-scheme: dark;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #afbed3;
  font-size: 14px;
}
.field input:hover,
.field textarea:hover,
.field select:hover {
  border-color: #819dc5;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: #9cbbff;
}
.form-note {
  font-size: 13px;
  line-height: 1.65;
  color: var(--light-text);
  margin-bottom: 24px;
}
.form-bottom {
  display: flex;
  align-items: center;
  gap: 22px;
}
.form-bottom .button {
  font-size: 15px;
  min-height: 58px;
  padding: 15px 21px;
}
.form-reassurance {
  font-size: 12px;
  line-height: 1.5;
  color: var(--light-text);
  max-width: 140px;
}
.form-status {
  padding: 16px 18px;
  border: 1px solid #708bab;
  border-radius: 8px;
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.5;
  color: white;
}
.form-status[data-state="error"] {
  border-color: #ff9eab;
  background: #352334;
}
.form-status[data-state="success"] {
  border-color: #83d3ba;
  background: #143731;
}
.form-status[data-state="pending"] {
  background: #142b4d;
}
.site-footer {
  border-top: 1px solid #293b58;
  padding: 34px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-inner .wordmark {
  font-size: 29px;
  letter-spacing: -1.5px;
}
.footer-inner p {
  font-size: 13px;
  color: var(--light-text);
}
.footer-inner > div {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer-inner > div a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  min-height: 44px;
}
.footer-inner a:hover {
  color: var(--accent);
}
@media (min-width: 1600px) {
  .hero-grid {
    padding-top: 90px;
    padding-bottom: 70px;
  }
}
@media (max-width: 1150px) {
  .site-nav {
    gap: 25px;
  }
  .hero-actions {
    gap: 22px;
  }
  .button {
    padding: 17px 22px;
    font-size: 14px;
  }
  .hero-actions .text-link {
    font-size: 14px;
    gap: 12px;
  }
  .project {
    gap: 25px;
  }
  .project:nth-child(even) {
    padding-left: 30px;
  }
  .services-grid {
    gap: 18px;
  }
  .service {
    padding-left: 12px;
  }
  .service h3 {
    font-size: 14px;
  }
  .service p {
    font-size: 13px;
  }
  .services-heading h2 {
    margin-top: 23px;
  }
  .split-section,
  .about-grid,
  .contact-grid {
    gap: 65px;
  }
  .form-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .form-reassurance {
    max-width: none;
  }
  .project-link {
    gap: 6px;
  }
  .hero-grid {
    padding-top: 52px;
  }
  .slider-tabs {
    gap: 6px;
  }
  .slider-tabs button {
    padding: 9px 6px;
    font-size: 12px;
  }
  .slider-arrows {
    display: none;
  }
}
@media (max-width: 900px) {
  .header-inner {
    height: 86px;
    gap: 25px;
  }
  .wordmark {
    font-size: 34px;
  }
  .site-nav {
    gap: 18px;
    font-size: 14px;
  }
  .site-nav .nav-contact {
    display: none;
  }
  .site-nav > a:first-child {
    margin-left: 0;
  }
  .site-nav {
    flex: 0;
  }
  .hero-copy h1 {
    font-size: 5.95vw;
  }
  .hero-description {
    font-size: 21px;
  }
  .hero-actions {
    flex-wrap: wrap;
    gap: 14px 22px;
  }
  .hero-grid {
    gap: 24px;
  }
  .slider-frame {
    aspect-ratio: 1.05;
  }
  .slider-tabs {
    grid-template-columns: 1fr 1fr;
  }
  .slider-tabs button {
    font-size: 12px;
    padding: 9px 8px;
  }
  .sl-label {
    font-size: 10px;
    padding: 4px 9px;
  }
  .sl-ui,
  .sl-badge {
    font-size: 2.4cqw;
  }
  .sl-panel {
    height: auto;
    max-height: 82%;
  }
  .ad-row2,
  .wp-panel {
    display: none;
  }
  .ad-kpis {
    grid-template-columns: repeat(3, 1fr);
  }
  .ad-kpis > div:last-child {
    display: none;
  }
  .ad-tr {
    grid-template-columns: 1fr 1.9fr 1.5fr 1.1fr;
  }
  .ad-tr span:last-child {
    display: none;
  }
  .wp-tr {
    grid-template-columns: 1.1em 2.3fr 1.3fr 1fr;
  }
  .wp-tr span:nth-child(3) {
    display: none;
  }
  .sl-node {
    font-size: 2.8cqw;
  }
  .sl-tool,
  .sl-wire-tool {
    display: none;
  }
  .sl-orch {
    top: 8%;
    width: 58%;
    font-size: 3.1cqw;
  }
  .sl-agent {
    top: 50%;
    width: 29%;
  }
  .sl-human {
    top: 78%;
    width: 66%;
  }
  .stack {
    padding-bottom: 38px;
  }
  .stack li {
    font-size: 14px;
    padding: 8px 15px;
  }
  .project {
    gap: 20px;
    padding-right: 22px;
  }
  .project:nth-child(even) {
    padding-left: 25px;
  }
  .project-image {
    width: 120px;
    height: 145px;
  }
  .project-link {
    font-size: 13px;
  }
  .project h3 {
    font-size: 23px;
  }
  .project p {
    font-size: 16px;
  }
  .project-type {
    font-size: 12px;
  }
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .services-heading {
    grid-column: 1/-1;
    margin-bottom: 20px;
  }
  .services-heading h2 {
    max-width: 500px;
    font-size: 36px;
    margin-top: 16px;
  }
  .service:first-of-type {
    padding-left: 0;
  }
  .service h3 {
    font-size: 15px;
  }
  .service p {
    font-size: 14px;
  }
  .split-section,
  .about-grid,
  .contact-grid {
    gap: 40px;
  }
  .process-list {
    gap: 30px;
  }
  .contact h2 {
    font-size: 42px;
  }
  .contact-email {
    font-size: 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-inner {
    flex-wrap: wrap;
  }
  .footer-inner p {
    order: 3;
    width: 100%;
  }
  .expertise,
  .about-grid,
  .faq-grid,
  .contact {
    padding-top: 75px;
  }
  .about,
  .faq,
  .expertise {
    padding-bottom: 75px;
  }
}
@media (max-width: 680px) {
  html {
    scroll-padding-top: 16px;
  }
  .container {
    width: calc(100% - 44px);
  }
  .header-inner {
    height: auto;
    min-height: 82px;
    flex-wrap: wrap;
    gap: 0;
  }
  .wordmark {
    font-size: 33px;
  }
  .menu-toggle {
    display: block;
  }
  .site-nav {
    width: 100%;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 0 24px;
  }
  .site-nav > a:not(.button) {
    padding: 15px 2px;
    border-bottom: 1px solid #293b58;
  }
  .site-nav .nav-contact {
    display: inline-flex;
    margin: 18px 0 0;
    align-self: flex-start;
  }
  .nav-enhanced .site-nav {
    display: none;
  }
  .nav-enhanced .site-nav.is-open {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 38px;
    padding-bottom: 0;
    gap: 25px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.16em;
  }
  .hero-copy h1 {
    font-size: clamp(39px, 10.85vw, 68px);
    letter-spacing: -0.05em;
    margin: 22px 0 26px;
    line-height: 1.04;
  }
  .hero-description {
    font-size: 20px;
    max-width: 500px;
  }
  .hero-actions {
    margin-top: 29px;
    gap: 16px 24px;
  }
  .hero-actions .button {
    min-height: 56px;
    padding: 15px 20px;
    font-size: 14px;
  }
  .hero-actions .text-link {
    font-size: 14px;
  }
  .hero-visual {
    width: 100%;
    max-width: 540px;
    justify-self: center;
  }
  .slider-frame {
    aspect-ratio: 1;
  }
  .sl-label {
    font-size: 9px;
    padding: 4px 8px;
  }
  .sl-ui,
  .sl-badge {
    font-size: 2.7cqw;
  }
  .sl-ui {
    top: 9%;
    height: 84%;
  }
  .wp-bar-extra {
    display: none;
  }
  .sl-node {
    font-size: 3.2cqw;
  }
  .sl-node small {
    display: none;
  }
  .sl-orch {
    font-size: 3.5cqw;
  }
  .sl-orch::before {
    width: 18px;
    height: 18px;
    margin-bottom: 4px;
  }
  .sl-agent {
    top: 52%;
    width: 29%;
  }
  .sl-human {
    top: 78%;
    width: 70%;
  }
  .stack {
    padding: 24px 0 30px;
    gap: 8px;
  }
  .stack li {
    font-size: 12px;
    padding: 7px 12px;
  }
  .work {
    padding: 52px 0;
  }
  .work h2 {
    font-size: 41px;
    margin: 18px 0 17px;
  }
  .section-intro {
    font-size: 19px;
  }
  .project-grid {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }
  .project,
  .project:nth-child(even),
  .project:nth-child(n + 3) {
    border-left: none;
    padding: 27px 0;
    gap: 24px;
  }
  .project + .project {
    border-top: 1px solid var(--line);
  }
  .project-image {
    width: 116px;
    height: 137px;
    border-radius: 13px;
  }
  .project h3 {
    font-size: 23px;
    margin-bottom: 9px;
  }
  .project p {
    font-size: 15px;
    line-height: 1.5;
    margin: 10px 0 4px;
  }
  .project-type {
    font-size: 11px;
    padding: 4px 8px;
  }
  .project-link {
    font-size: 12px;
    gap: 5px;
    min-height: 36px;
  }
  .project-link .icon {
    width: 15px;
    height: 15px;
  }
  .portfolio-action {
    margin-top: 22px;
  }
  .portfolio-action .button {
    min-height: 58px;
    font-size: 15px;
  }
  .portfolio-action > span {
    font-size: 12px;
  }
  .services {
    padding: 54px 0 58px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .services-heading {
    margin-bottom: 6px;
  }
  .services-heading h2 {
    font-size: 35px;
    max-width: 340px;
  }
  .service,
  .service:first-of-type {
    padding-left: 0;
  }
  .service + .service {
    border-left: none;
  }
  .service > .icon {
    width: 31px;
    height: 31px;
    margin-bottom: 17px;
  }
  .service h3 {
    font-size: 15px;
  }
  .service p {
    font-size: 14px;
  }
  .split-section,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .expertise {
    padding: 58px 0;
  }
  .section-heading h2 {
    font-size: 39px;
    margin: 20px 0;
  }
  .section-heading .section-intro {
    font-size: 18px;
  }
  .expertise-list article {
    gap: 20px;
  }
  .expertise-list h3 {
    font-size: 20px;
  }
  .expertise-list p {
    font-size: 15px;
  }
  .about,
  .faq {
    padding-bottom: 60px;
  }
  .about-grid,
  .faq-grid {
    padding-top: 50px;
    gap: 28px;
  }
  .about h2 {
    font-size: 37px;
  }
  .about-copy p {
    font-size: 16px;
  }
  .process-list {
    grid-template-columns: 1fr;
    padding-top: 40px;
    gap: 32px;
  }
  .process-list h3 {
    margin-top: 11px;
    font-size: 21px;
  }
  .process-list p {
    font-size: 15px;
  }
  .contact {
    padding: 60px 0;
  }
  .contact h2 {
    font-size: 43px;
    margin: 23px 0;
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: 17px;
  }
  .contact-email {
    font-size: 22px;
  }
  .contact-copy .contact-next {
    margin-top: 0;
  }
  .contact-grid {
    gap: 36px;
  }
  .form-bottom .button {
    min-height: 58px;
    font-size: 15px;
  }
  .field input,
  .field textarea,
  .field select {
    font-size: 16px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    gap: 20px;
  }
  .footer-inner > div {
    gap: 20px;
  }
  .footer-inner p {
    font-size: 11px;
  }
  .site-footer {
    padding: 24px 0;
  }
  .button:hover {
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
