:root {
  --ink: #050505;
  --paper: #f2f0e9;
  --white: #ffffff;
  --muted: #aaa8a2;
  --line: rgba(255, 255, 255, 0.13);
  --acid: #c9ff4b;
  --blue: #5ee8ff;
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

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

.shell {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 82px;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
}

.brand {
  display: block;
  width: 190px;
  height: 48px;
  overflow: hidden;
}

.brand-image {
  display: block;
  width: 100%;
  height: 100%;
  background: url("./assets/compilexpert-logo.png") center center / 120% auto no-repeat;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 34px;
  color: #d0cec8;
  font-size: 13px;
}

.desktop-nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--acid);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-small {
  justify-self: end;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--white);
  font-size: 13px;
}

.button-small:hover {
  background: var(--acid);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 850px;
  padding: 160px 0 96px;
  overflow: hidden;
  background: radial-gradient(circle at 88% 56%, rgba(94, 232, 255, 0.08), transparent 26%), var(--ink);
}

.hero-grid {
  position: absolute;
  inset: 82px 0 0;
  opacity: 0.34;
  background-image: linear-gradient(rgba(255, 255, 255, 0.042) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.042) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.7) 62%, transparent 100%);
}

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

.hero-glow-one {
  width: 420px;
  height: 420px;
  right: 8%;
  top: 25%;
  background: rgba(201, 255, 75, 0.04);
  box-shadow: 0 0 180px rgba(201, 255, 75, 0.1);
}

.hero-glow-two {
  width: 200px;
  height: 200px;
  left: -100px;
  bottom: 10%;
  background: rgba(94, 232, 255, 0.08);
  box-shadow: 0 0 160px rgba(94, 232, 255, 0.12);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(480px, 0.85fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #c8c6c0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(201, 255, 75, 0.12);
}

.hero h1 {
  margin: 31px 0 26px;
  max-width: 800px;
  font-size: clamp(58px, 6.3vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.068em;
  font-weight: 800;
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
}

.hero-lede {
  max-width: 660px;
  margin: 0;
  color: #b8b6b0;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.button-primary {
  padding: 16px 23px;
  background: var(--acid);
  color: var(--ink);
  font-size: 14px;
  box-shadow: 0 16px 45px rgba(201, 255, 75, 0.13);
}

.button-primary:hover {
  background: var(--white);
}

.text-link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  color: #e5e3dc;
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  color: var(--acid);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 720px;
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 20px 20px 0 0;
}

.hero-proof strong {
  color: var(--acid);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.hero-proof span {
  max-width: 150px;
  color: #aaa8a1;
  font-size: 12px;
  line-height: 1.45;
}

.hero-system {
  position: relative;
  min-height: 620px;
}

.system-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 470px;
  height: 470px;
  animation: spin 36s linear infinite;
}

.orbit-one::before,
.orbit-two::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  top: 46px;
  right: 74px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 20px var(--acid);
}

.orbit-two {
  width: 320px;
  height: 320px;
  border-style: dashed;
  animation: spinBack 28s linear infinite;
}

.orbit-two::before {
  top: auto;
  right: auto;
  bottom: 26px;
  left: 82px;
  background: var(--blue);
  box-shadow: 0 0 20px var(--blue);
}

.system-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 142px;
  height: 142px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #292a26, #0a0a09 65%);
  box-shadow: 0 0 80px rgba(201, 255, 75, 0.09), inset 0 0 34px rgba(255, 255, 255, 0.04);
  transform: translate(-50%, -50%);
}

.core-mark {
  font-size: 39px;
  font-weight: 900;
  letter-spacing: -0.1em;
}

.core-state {
  position: absolute;
  bottom: 28px;
  color: var(--acid);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
  letter-spacing: 0.2em;
}

.system-card {
  position: absolute;
  padding: 19px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(15, 15, 14, 0.84);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
}

.system-card strong {
  display: block;
  margin-top: 17px;
  font-size: 16px;
}

.system-card p {
  margin: 7px 0 0;
  color: #8f8d87;
  font-size: 10px;
  line-height: 1.5;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #77756f;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: 0.13em;
}

.live-pill {
  padding: 4px 6px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--acid);
  font-weight: 800;
}

.card-ai {
  width: 228px;
  top: 80px;
  left: -8px;
  animation: float 6s ease-in-out infinite;
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 28px;
  margin-top: 14px;
}

.mini-bars span {
  display: block;
  width: 20%;
  border-radius: 3px 3px 0 0;
  background: #383a34;
}

.mini-bars span:nth-child(1) { height: 25%; }
.mini-bars span:nth-child(2) { height: 50%; }
.mini-bars span:nth-child(3) { height: 38%; }
.mini-bars span:nth-child(4) { height: 78%; background: var(--acid); }
.mini-bars span:nth-child(5) { height: 100%; background: #92bb38; }

.card-product {
  width: 235px;
  right: -22px;
  bottom: 90px;
  animation: float 7s ease-in-out -2s infinite;
}

.progress-track {
  height: 4px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: #2c2c29;
}

.progress-track span {
  display: block;
  width: 82%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--acid));
}

.card-mobile {
  width: 145px;
  padding-top: 26px;
  left: 30px;
  bottom: 62px;
  text-align: center;
  animation: float 8s ease-in-out -4s infinite;
}

.phone-notch {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 38px;
  height: 4px;
  border-radius: 999px;
  background: #393936;
  transform: translateX(-50%);
}

.mobile-pulse {
  width: 44px;
  height: 44px;
  margin: 5px auto 0;
  border: 1px solid rgba(94, 232, 255, 0.35);
  border-radius: 50%;
  background: radial-gradient(circle, var(--blue) 0 12%, rgba(94, 232, 255, 0.1) 13% 45%, transparent 46%);
  box-shadow: 0 0 30px rgba(94, 232, 255, 0.16);
}

.card-mobile strong {
  margin-top: 14px;
  font-size: 11px;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spinBack {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.capability-ticker {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--acid);
  color: var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 17px 30px 16px 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track i {
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.expertise {
  padding: 110px 0 125px;
  background: var(--paper);
  color: var(--ink);
}

.slice-grid {
  display: grid;
  grid-template-columns: 0.55fr 2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.section-kicker {
  margin: 12px 0 0;
  color: #696762;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.slice-grid h2 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.slice-grid > p:last-child {
  margin: 12px 0 0;
  color: #68665f;
  font-size: 14px;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 86px;
  overflow: hidden;
  border: 1px solid #d3d0c7;
  border-radius: 24px;
  background: #d3d0c7;
}

.service-card {
  --service-accent: var(--acid);
  position: relative;
  min-height: 365px;
  padding: 28px;
  overflow: hidden;
  background: #faf9f5;
  transition: background 220ms ease, color 220ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -95px;
  bottom: -95px;
  border-radius: 50%;
  background: var(--service-accent);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 280ms ease, transform 280ms ease;
}

.service-card:hover {
  background: #11110f;
  color: var(--white);
}

.service-card:hover::after {
  opacity: 0.92;
  transform: scale(1);
}

.accent-blue { --service-accent: var(--blue); }
.accent-warm { --service-accent: #ff9a62; }
.accent-violet { --service-accent: #a995ff; }
.accent-white { --service-accent: #ffffff; }

.service-number {
  color: #77746d;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.service-icon {
  position: relative;
  width: 62px;
  height: 62px;
  margin: 45px 0 35px;
  border: 1px solid #d5d2ca;
  border-radius: 50%;
  transition: border-color 220ms ease;
}

.service-icon::before,
.service-icon::after,
.service-icon span {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 28px;
  height: 1px;
  background: var(--ink);
  transform-origin: center;
  transition: background 220ms ease;
}

.service-icon::before { transform: translate(-50%, -50%) rotate(45deg); }
.service-icon::after { transform: translate(-50%, -50%) rotate(-45deg); }
.service-icon span { transform: translate(-50%, -50%) rotate(90deg); }

.service-card:hover .service-icon {
  border-color: var(--service-accent);
  background: var(--service-accent);
}

.service-card:hover .service-icon::before,
.service-card:hover .service-icon::after,
.service-card:hover .service-icon span {
  background: var(--ink);
}

.service-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 270px;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.service-card > p {
  position: relative;
  z-index: 2;
  max-width: 310px;
  margin: 16px 0 28px;
  color: #6d6a64;
  font-size: 13px;
  line-height: 1.7;
  transition: color 220ms ease;
}

.service-card:hover > p {
  color: #bcb9b2;
}

.tag-row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-row span {
  padding: 6px 8px;
  border: 1px solid #d8d5ce;
  border-radius: 999px;
  color: #6d6a64;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: border-color 220ms ease, color 220ms ease;
}

.service-card:hover .tag-row span {
  border-color: rgba(255, 255, 255, 0.17);
  color: #dedbd4;
}

.product-section {
  padding: 120px 0;
  background: #0b0b0a;
  color: var(--white);
}

.product-head {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 80px;
  align-items: start;
}

.section-kicker-dark {
  color: #85827c;
}

.section-kicker-light {
  color: #97948d;
}

.owned-label {
  display: inline-flex;
  margin-top: 25px;
  padding: 7px 10px;
  border: 1px solid rgba(201, 255, 75, 0.35);
  border-radius: 999px;
  color: var(--acid);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-head h2 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.product-head > div:last-child > p {
  max-width: 560px;
  margin: 28px 0 0;
  color: #a9a69f;
  font-size: 16px;
  line-height: 1.7;
}

.product-stage {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  min-height: 650px;
  margin-top: 80px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--acid);
  color: var(--ink);
}

.vesma-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 56px;
}

.vesma-wordmark {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.vesma-wordmark span {
  color: #4e6618;
}

.vesma-copy h3 {
  margin: 68px 0 34px;
  max-width: 420px;
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.feature-list {
  width: 100%;
  margin: 0 0 42px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid rgba(5, 5, 5, 0.19);
  font-size: 12px;
  font-weight: 700;
}

.feature-list li:last-child {
  border-bottom: 1px solid rgba(5, 5, 5, 0.19);
}

.feature-list span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  opacity: 0.55;
}

.button-dark {
  margin-top: auto;
  padding: 15px 22px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
}

.button-dark:hover {
  background: var(--white);
  color: var(--ink);
}

.vesma-console {
  align-self: center;
  margin: 48px 48px 48px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: #11110f;
  color: var(--white);
  box-shadow: 0 35px 80px rgba(33, 47, 5, 0.35);
}

.console-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #78766f;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.console-dots {
  display: flex;
  gap: 5px;
}

.console-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #383833;
}

.console-secure {
  justify-self: end;
  color: #8cab44;
}

.console-body {
  display: grid;
  grid-template-columns: 58px 1fr;
  min-height: 500px;
}

.console-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.console-sidebar strong {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--acid);
  color: var(--ink);
  font-size: 13px;
}

.console-sidebar span {
  width: 16px;
  height: 16px;
  border: 1px solid #44443e;
  border-radius: 5px;
}

.console-sidebar span.active {
  border-color: var(--acid);
  background: rgba(201, 255, 75, 0.2);
}

.conversation {
  padding: 26px 26px 30px;
}

.conversation-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.conversation-head > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.conversation-head strong {
  font-size: 14px;
}

.conversation-head span {
  color: #77756f;
  font-size: 9px;
}

.hot-lead {
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(201, 255, 75, 0.14);
  color: var(--acid) !important;
  font-size: 8px !important;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.message {
  max-width: 75%;
  margin-bottom: 14px;
  padding: 15px 16px;
  border-radius: 14px;
  font-size: 11px;
  line-height: 1.6;
}

.message.inbound {
  background: #23231f;
  color: #cac7bf;
  border-bottom-left-radius: 4px;
}

.message.outbound {
  margin-left: auto;
  background: var(--acid);
  color: var(--ink);
  border-bottom-right-radius: 4px;
}

.message small {
  display: block;
  margin-top: 9px;
  color: #536b1e;
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
}

.lead-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 34px;
}

.lead-data div {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.lead-data span,
.lead-data strong {
  display: block;
}

.lead-data span {
  margin-bottom: 8px;
  color: #66645e;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 6px;
  letter-spacing: 0.1em;
}

.lead-data strong {
  color: #d6d3cb;
  font-size: 10px;
}

.booking-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
  padding: 13px;
  border: 1px solid rgba(94, 232, 255, 0.15);
  border-radius: 10px;
  background: rgba(94, 232, 255, 0.06);
}

.booking-check {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.booking-line div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.booking-line strong {
  font-size: 9px;
}

.booking-line small {
  color: #6f8587;
  font-size: 7px;
}

.engagement-section {
  padding: 120px 0;
  background: #151513;
}

.section-heading-row {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 90px;
  align-items: end;
}

.section-heading-row h2 {
  max-width: 750px;
  margin: 24px 0 0;
  font-size: clamp(44px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section-heading-row > p {
  margin: 0 0 6px;
  color: #9f9c95;
  font-size: 14px;
  line-height: 1.7;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 70px;
}

.engagement-card {
  display: flex;
  min-height: 525px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: #1c1c19;
}

.engagement-card.featured {
  border-color: rgba(201, 255, 75, 0.4);
  background: #20231a;
}

.engagement-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6f6d67;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.recommended {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.engagement-card h3 {
  margin: 90px 0 15px;
  font-size: 31px;
  letter-spacing: -0.045em;
}

.engagement-card > p {
  min-height: 68px;
  margin: 0;
  color: #a7a49d;
  font-size: 13px;
  line-height: 1.65;
}

.engagement-card ul {
  display: grid;
  gap: 12px;
  margin: 30px 0;
  padding: 0;
  color: #d7d4cc;
  font-size: 11px;
  list-style: none;
}

.engagement-card li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.engagement-card li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acid);
}

.engagement-card > a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--acid);
  font-size: 12px;
  font-weight: 800;
}

.process-section {
  padding: 125px 0;
  background: var(--paper);
  color: var(--ink);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 110px;
}

.process-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.process-intro h2 {
  margin: 24px 0;
  font-size: clamp(48px, 5.2vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.process-intro > p {
  max-width: 430px;
  color: #65625c;
  font-size: 14px;
  line-height: 1.75;
}

.text-link-dark {
  margin-top: 25px;
  color: var(--ink);
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #c9c5bc;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 45px 1fr 30px;
  gap: 20px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid #c9c5bc;
}

.process-list > li > span {
  color: #817e76;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.process-list h3 {
  margin: 0 0 9px;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.process-list p {
  max-width: 520px;
  margin: 0;
  color: #65625c;
  font-size: 12px;
  line-height: 1.65;
}

.process-list i {
  font-style: normal;
}

.about-section {
  position: relative;
  padding: 125px 0 80px;
  overflow: hidden;
  background: #090909;
}

.about-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 70% 45%, black 0%, transparent 66%);
}

.about-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.about-layout h2 {
  max-width: 650px;
  margin: 25px 0 0;
  font-size: clamp(48px, 5.7vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.062em;
}

.about-copy {
  padding-top: 30px;
}

.about-copy > p {
  color: #8f8c85;
  font-size: 14px;
  line-height: 1.78;
}

.about-copy .about-lede {
  margin-top: 0;
  color: #dedbd4;
  font-size: 21px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.principle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 45px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
}

.principle-grid div {
  min-height: 125px;
  padding: 18px;
  background: rgba(9, 9, 9, 0.95);
}

.principle-grid span {
  display: block;
  margin-bottom: 30px;
  color: var(--acid);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.principle-grid strong {
  max-width: 180px;
  font-size: 12px;
  line-height: 1.5;
}

.tech-line {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  align-items: start;
  margin-top: 100px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #77746e;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.tech-line > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.tech-line i {
  color: #bbb8b0;
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0;
}

.fit-section {
  padding: 115px 0;
  background: #dbd8cf;
  color: var(--ink);
}

.fit-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.fit-layout h2 {
  margin: 25px 0 0;
  font-size: clamp(48px, 5.4vw, 75px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.fit-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fit-cards article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid #c5c1b8;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.4);
}

.fit-cards article > span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
}

.fit-cards p {
  margin: 55px 0 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.fit-cards article.not-fit {
  background: #1a1a18;
  color: #dfdcd5;
}

.fit-cards article.not-fit > span {
  background: #ff776d;
  color: var(--ink);
}

.contact-section {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  background: #070707;
}

.contact-orb {
  position: absolute;
  width: 650px;
  height: 650px;
  top: 50%;
  left: -420px;
  border: 1px solid rgba(201, 255, 75, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 160px rgba(201, 255, 75, 0.06);
  transform: translateY(-50%);
}

.contact-orb::after,
.contact-orb::before {
  content: "";
  position: absolute;
  inset: 90px;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.contact-orb::after {
  inset: 190px;
  border-style: solid;
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.contact-copy h2 {
  margin: 25px 0 28px;
  font-size: clamp(56px, 6vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.contact-copy > p {
  max-width: 510px;
  color: #9b9891;
  font-size: 15px;
  line-height: 1.75;
}

.contact-meta {
  display: grid;
  gap: 22px;
  margin-top: 65px;
}

.contact-meta div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-meta span {
  color: #63615c;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.contact-meta a,
.contact-meta strong {
  color: #d8d5ce;
  font-size: 13px;
}

.contact-meta a {
  text-decoration: underline;
  text-decoration-color: rgba(201, 255, 75, 0.5);
  text-underline-offset: 5px;
}

.contact-form {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: rgba(19, 19, 17, 0.88);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 9px;
  color: #8e8b84;
  font-size: 10px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  outline: none;
  background: #0d0d0c;
  color: var(--white);
  font: inherit;
  font-size: 13px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 130px;
  padding: 13px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #55534f;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--acid);
  box-shadow: 0 0 0 3px rgba(201, 255, 75, 0.08);
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 12px 0 0;
  color: #66645f;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.site-footer {
  padding: 60px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #050505;
}

.footer-top {
  display: grid;
  grid-template-columns: 230px 1fr 52px;
  gap: 40px;
  align-items: center;
  padding-bottom: 55px;
}

.footer-brand {
  width: 210px;
  height: 52px;
}

.footer-top > p {
  justify-self: center;
  max-width: 470px;
  margin: 0;
  color: #8b8881;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.footer-up {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--acid);
  transition: background 180ms ease, color 180ms ease;
}

.footer-up:hover {
  background: var(--acid);
  color: var(--ink);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #66645f;
  font-size: 9px;
}

.footer-bottom nav {
  display: flex;
  gap: 22px;
  color: #aaa79f;
}

.footer-bottom > span:last-child {
  justify-self: end;
}

@media (max-width: 1100px) {
  .nav-wrap {
    grid-template-columns: 190px 1fr 190px;
  }

  .hero-layout {
    grid-template-columns: 1fr 390px;
    gap: 30px;
  }

  .hero-system {
    transform: scale(0.84);
    transform-origin: center;
  }

  .slice-grid {
    grid-template-columns: 0.45fr 1.65fr;
  }

  .slice-grid > p:last-child {
    grid-column: 2;
  }

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

  .product-stage {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .vesma-copy {
    padding: 42px;
  }

  .vesma-console {
    margin: 34px 34px 34px 0;
  }

  .engagement-card {
    padding: 24px;
  }

  .process-layout,
  .about-layout,
  .fit-layout,
  .contact-layout {
    gap: 65px;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 40px, 680px);
  }

  .nav-wrap {
    height: 72px;
    display: flex;
    justify-content: space-between;
  }

  .brand {
    width: 164px;
    height: 42px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    display: grid;
    place-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
  }

  .menu-button span {
    display: block;
    width: 16px;
    height: 1px;
    background: white;
    transform-origin: center;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 45;
    inset: 72px 0 0;
    display: flex;
    align-items: flex-start;
    min-height: calc(100dvh - 72px);
    padding: clamp(40px, 9vh, 84px) 20px 40px;
    overflow-y: auto;
    background: rgba(8, 8, 8, 0.985);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .mobile-menu nav {
    display: grid;
    width: min(100%, 680px);
    margin: 0 auto;
  }

  .mobile-menu a {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.04em;
  }

  .mobile-menu a span {
    color: var(--acid);
  }

  .hero {
    min-height: auto;
    padding: 128px 0 80px;
  }

  .hero-layout {
    display: block;
  }

  .hero h1 {
    margin-top: 28px;
    font-size: clamp(54px, 13.5vw, 82px);
  }

  .hero-system {
    width: min(100%, 520px);
    min-height: 530px;
    margin: 30px auto -10px;
    transform: scale(0.86);
  }

  .hero-proof {
    margin-top: 52px;
  }

  .slice-grid {
    display: block;
  }

  .slice-grid h2 {
    margin-top: 24px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .service-card {
    min-height: 340px;
  }

  .product-head,
  .section-heading-row,
  .process-layout,
  .about-layout,
  .fit-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .product-head {
    gap: 35px;
  }

  .product-stage {
    grid-template-columns: 1fr;
  }

  .vesma-copy {
    min-height: 560px;
  }

  .vesma-console {
    margin: 0 24px 24px;
  }

  .engagement-grid {
    grid-template-columns: 1fr;
  }

  .engagement-card {
    min-height: 480px;
  }

  .process-intro {
    position: static;
  }

  .about-copy {
    padding-top: 0;
  }

  .tech-line {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    gap: 60px;
  }

  .footer-top {
    grid-template-columns: 1fr auto;
  }

  .footer-top > p {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    text-align: left;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-bottom nav {
    grid-row: 1;
  }

  .footer-bottom > span:last-child {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .shell {
    width: calc(100% - 32px);
  }

  .hero {
    padding-top: 116px;
  }

  .eyebrow {
    font-size: 9px;
  }

  .hero h1 {
    font-size: 15vw;
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-proof div {
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 16px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .hero-proof span {
    max-width: none;
  }

  .hero-system {
    left: 50%;
    width: 500px;
    margin-left: -250px;
    transform: scale(0.68);
  }

  .expertise {
    padding: 80px 0 90px;
  }

  .slice-grid h2 {
    font-size: 43px;
  }

  .service-card {
    min-height: 360px;
    padding: 24px;
  }

  .product-section,
  .engagement-section,
  .process-section,
  .about-section,
  .fit-section,
  .contact-section {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .product-stage {
    margin-top: 52px;
    border-radius: 20px;
  }

  .vesma-copy {
    min-height: auto;
    padding: 34px 24px 42px;
  }

  .vesma-copy h3 {
    margin-top: 50px;
  }

  .vesma-console {
    margin: 0 10px 10px;
    border-radius: 15px;
  }

  .console-body {
    grid-template-columns: 42px 1fr;
  }

  .console-sidebar {
    gap: 19px;
  }

  .conversation {
    padding: 20px 14px 22px;
  }

  .conversation-head {
    margin-bottom: 26px;
  }

  .message {
    max-width: 90%;
    font-size: 10px;
  }

  .lead-data {
    grid-template-columns: 1fr;
  }

  .engagement-card h3 {
    margin-top: 65px;
  }

  .process-list li {
    grid-template-columns: 34px 1fr;
  }

  .process-list i {
    display: none;
  }

  .principle-grid,
  .fit-cards,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .fit-cards article {
    min-height: 160px;
  }

  .fit-cards p {
    margin-top: 38px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
