:root {
  --navy: #050d18;
  --navy-2: #0a1628;
  --navy-3: #12233a;
  --ink: #0c1726;
  --muted: #5d6d7e;
  --line: #d7e0ea;
  --soft: #f3f6f9;
  --white: #ffffff;
  --teal: #14c8b8;
  --teal-deep: #0d9f93;
  --blue: #1f5fd6;
  --blue-deep: #1747a8;
  --mist: #9eb0c2;
  --radius: 22px;
  --shadow: 0 28px 80px rgba(5, 13, 24, .16);
  --shadow-soft: 0 18px 50px rgba(5, 13, 24, .08);
  --font-display: "Syne", sans-serif;
  --font-body: "Sora", sans-serif;
  --container: 1240px;
  --header-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
p { line-height: 1.75; color: var(--muted); margin: 0 0 1rem; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin: 0;
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  z-index: 200;
  border-radius: 8px;
}
.skip-link:focus { left: 12px; }

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 120px 0; }
.section.soft { background: var(--soft); }
.section.dark-section {
  background:
    radial-gradient(circle at 85% 10%, rgba(20, 200, 184, .12), transparent 28%),
    linear-gradient(160deg, #071422 0%, #050d18 55%, #08182a 100%);
  color: var(--white);
}
.section.dark-section p { color: var(--mist); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--teal-deep);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow.light { color: #6ee7d8; }
.eyebrow.center { justify-content: center; width: 100%; margin-bottom: 28px; }
.display {
  font-size: clamp(2.4rem, 4.6vw, 4.6rem);
  margin: 0 0 18px;
}
.lead { font-size: 1.15rem; color: #405466; max-width: 38rem; }
.hero-lede { font-size: 1.12rem; color: #a9bac9; max-width: 36rem; line-height: 1.7; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-weight: 700;
  color: var(--teal-deep);
}
.text-link svg { width: 17px; height: 17px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: .92rem;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease;
  cursor: pointer;
}
.btn svg { width: 17px; height: 17px; }
.btn-sm { padding: 11px 16px; font-size: .84rem; }
.btn-primary {
  background: linear-gradient(110deg, var(--blue) 0%, var(--teal) 100%);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(31, 95, 214, .28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 48px rgba(20, 200, 184, .28); }
.btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.04);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); }
.btn-outline {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal-deep); }

.mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(120, 180, 210, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 180, 210, .07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 70% 40%, #000 20%, transparent 75%);
  pointer-events: none;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 14px 0;
  transition: padding .3s ease, background .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  padding: 8px 0;
  background: rgba(5, 13, 24, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(2px);
}
.brand { width: min(250px, 42vw); flex-shrink: 0; }
.brand img {
  width: 100%;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
}
.main-nav > a,
.nav-drop > button {
  font-size: calc(.88rem + .6px);
  font-weight: 600;
  color: var(--white);
  opacity: .78;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 12px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.main-nav > .btn-sm {
  font-size: calc(.84rem + .6px);
}
.main-nav > a:hover,
.nav-drop > button:hover,
.main-nav .active { opacity: 1; }
.nav-drop { position: relative; }
.nav-drop > button svg { width: 15px; height: 15px; }
.drop-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: -180px;
  width: min(680px, 80vw);
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: .25s ease;
}
.nav-drop:hover .drop-panel,
.nav-drop:focus-within .drop-panel,
.nav-drop.open .drop-panel {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.drop-panel a {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  color: var(--ink);
}
.drop-panel a:hover { background: #eef7f7; }
.drop-panel svg { width: 22px; height: 22px; color: var(--teal-deep); flex-shrink: 0; margin-top: 2px; }
.drop-panel b { display: block; font-size: .9rem; margin-bottom: 4px; letter-spacing: -.01em; }
.drop-panel small { display: block; color: var(--muted); font-size: .72rem; line-height: 1.4; }
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: .25s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 48px) 0 0;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 78% 35%, rgba(20, 200, 184, .18), transparent 42%),
    radial-gradient(ellipse at 15% 80%, rgba(31, 95, 214, .22), transparent 40%),
    linear-gradient(145deg, #06101c 0%, #071a2d 42%, #050d18 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,13,24,.15) 0%, rgba(5,13,24,.72) 55%, rgba(5,13,24,.94) 100%),
    url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=2200&q=80") center/cover no-repeat;
  opacity: .55;
  animation: heroDrift 28s ease-in-out infinite alternate;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 72px;
  /* Same .container width/margins as header logo — do not shrink+center */
  max-width: none;
}
.brand-mark {
  display: block;
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  background: linear-gradient(100deg, #ffffff 20%, #6ee7d8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  max-width: 14ch;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, #45ded3, #7ae39b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.hero-ticker {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 0;
  overflow: hidden;
  color: #7f94a6;
  font-size: .7rem;
  letter-spacing: .2em;
  white-space: nowrap;
}
.hero-ticker-track {
  display: inline-block;
  animation: marquee 28s linear infinite;
}

.page-hero,
.service-hero {
  position: relative;
  padding: 180px 0 100px;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(20, 200, 184, .16), transparent 32%),
    linear-gradient(145deg, #06101c, #071a2d 50%, #050d18);
}
.page-hero.compact { padding-bottom: 80px; }
.page-hero .container,
.service-hero .container { position: relative; z-index: 2; }
.page-hero h1,
.service-hero h1 {
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  max-width: 16ch;
  margin-bottom: 20px;
}
.page-hero h1 em,
.service-hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, #45ded3, #7ae39b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero p { max-width: 42rem; color: #a9bac9; font-size: 1.08rem; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 48px;
  margin-bottom: 52px;
}
.section-head > div { max-width: 820px; }
.section-head > p { max-width: 360px; margin: 0; }

/* Proof strip */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.proof-strip div {
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}
.proof-strip div:last-child { border-right: 0; }
.proof-strip b {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: -.04em;
  color: var(--teal-deep);
  margin-bottom: 6px;
}
.proof-strip span { color: var(--muted); font-size: .9rem; }

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 340px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(160deg, rgba(18, 35, 58, .9), rgba(8, 20, 36, .95));
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(20, 200, 184, .45);
  box-shadow: 0 30px 70px rgba(0,0,0,.28);
}
.service-card .num {
  color: #6d8498;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.service-card > svg {
  width: 40px;
  height: 40px;
  color: var(--teal);
  margin: 42px 0 22px;
}
.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}
.service-card p { flex: 1; color: #9eb0c2; }
.service-card .arrow {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  display: grid;
  place-items: center;
}
.service-card .arrow svg { width: 18px; height: 18px; margin: 0; color: var(--white); }

.service-list { display: flex; flex-direction: column; }
.service-row {
  display: grid;
  grid-template-columns: 55px 55px 1fr 48px;
  gap: 24px;
  align-items: start;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .3s ease;
}
.service-row:hover { padding-left: 8px; }
.service-row > span { color: #9baeba; font-weight: 700; }
.service-row > svg { width: 38px; height: 38px; color: var(--teal-deep); }
.service-row h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 10px; }
.service-row ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}
.service-row li {
  font-size: .74rem;
  padding: 7px 11px;
  background: var(--soft);
  border-radius: 999px;
  color: #60717f;
}
.service-row > b {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.service-row > b svg { width: 18px; height: 18px; margin: 0; color: var(--ink); }

/* AI / feature */
.ai-showcase {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.ai-console {
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, #28d7c8, #2347b8);
  box-shadow: var(--shadow);
}
.console-top {
  height: 52px;
  border-radius: 27px 27px 0 0;
  background: #0a1a28;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #7f9aab;
  font-size: .7rem;
}
.console-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #315166;
}
.console-top b { margin-left: auto; letter-spacing: .08em; }
.console-body {
  min-height: 430px;
  background: radial-gradient(circle at center, #143d55, #071724 70%);
  border-radius: 0 0 27px 27px;
  padding: 42px;
}
.pulse-ring {
  width: 140px;
  height: 140px;
  margin: 0 auto 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid #29cfc2;
  box-shadow: 0 0 0 18px rgba(42,210,196,.06), 0 0 0 38px rgba(42,210,196,.03);
  animation: pulse 2.8s ease-in-out infinite;
}
.pulse-ring svg { width: 56px; height: 56px; color: #47dfd4; }
.code-lines span {
  display: block;
  height: 7px;
  width: var(--w);
  background: linear-gradient(90deg, #2a54d0, #27cbbf);
  margin: 11px 0;
  border-radius: 10px;
  opacity: .55;
  animation: shimmer 3s ease-in-out infinite;
}
.agent-row {
  display: flex;
  justify-content: space-between;
  color: #d2e3eb;
  padding: 13px 0;
  border-bottom: 1px solid #183246;
  font-size: .83rem;
}
.agent-row em { color: #4fe0c9; font-style: normal; }
.feature-stack { display: flex; flex-direction: column; gap: 14px; }
.feature-stack article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  gap: 18px;
  background: var(--white);
  transition: transform .3s ease, box-shadow .3s ease;
}
.feature-stack article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.feature-stack svg { width: 30px; height: 30px; color: var(--teal-deep); flex-shrink: 0; }
.feature-stack h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature-stack p { margin: 0; }

/* Cases */
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.case-grid.large { gap: 28px; }
.case-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.case-visual {
  height: 250px;
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(20,200,184,.25), transparent 40%),
    radial-gradient(circle at center, #1b5a72, #061522 72%);
  overflow: hidden;
}
.case-visual::before,
.case-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(73,222,211,.22);
  border-radius: 50%;
}
.case-visual::before { width: 200px; height: 200px; }
.case-visual::after { width: 310px; height: 310px; }
.case-visual > svg { width: 78px; height: 78px; color: #4ee1d5; z-index: 2; }
.case-visual > span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
}
.case-card > div:last-child { padding: 26px; }
.case-card small { color: var(--teal-deep); font-weight: 700; }
.case-card h3,
.case-card h2 { font-size: 1.7rem; margin: 8px 0 10px; }
.case-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.case-meta span {
  font-size: .75rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: #60717f;
}
.case-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-left: 18px;
  color: var(--muted);
  margin: 14px 0 0;
}

/* Industries */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-grid.industry-list {
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.industry-tile {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  min-height: 220px;
}
.industry-list .industry-tile { min-height: 260px; }
.industry-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 200, 184, .45);
  box-shadow: var(--shadow-soft);
}
.industry-tile svg {
  width: 28px;
  height: 28px;
  color: var(--teal-deep);
  margin-bottom: 28px;
}
.industry-tile h3 { font-size: 1.25rem; margin-bottom: 10px; }
.industry-cloud {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.industry-cloud span,
.chip-row span {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  font-size: .9rem;
  font-weight: 600;
}
.industry-cloud svg { width: 16px; height: 16px; color: var(--teal-deep); }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

/* Values / timeline / steps */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.value-grid article {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background: rgba(10, 28, 43, .7);
}
.value-grid.light-values article {
  background: var(--white);
  border-color: var(--line);
}
.value-grid.light-values svg { color: var(--teal-deep); width: 28px; height: 28px; }
.value-grid .index,
.value-grid > article > span:first-child {
  color: var(--teal);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
}
.value-grid h3 { margin: 28px 0 10px; font-size: 1.3rem; }

.timeline,
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.timeline article,
.steps article {
  padding-top: 22px;
  border-top: 2px solid var(--teal);
}
.timeline b,
.steps b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--teal-deep);
}
.steps h3 { margin-bottom: 10px; }

/* Testimonials */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quote-card {
  padding: 32px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--white);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.quote-card p {
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.65;
  flex: 1;
}
.quote-card footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.quote-card strong { display: block; font-size: .95rem; }
.quote-card span { color: var(--muted); font-size: .82rem; }

/* Insights */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.insight-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  transition: transform .3s ease, box-shadow .3s ease;
  display: block;
}
.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}
.insight-card .meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--teal-deep);
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.insight-card h3 { font-size: 1.55rem; margin-bottom: 12px; }

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.partner-tile {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}
.partner-tile h3 { font-size: 1.2rem; margin-bottom: 8px; }

/* Service detail */
.service-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.service-art {
  height: 420px;
  position: relative;
  display: grid;
  place-items: center;
}
.holo-panel {
  width: 300px;
  height: 300px;
  border: 1px solid rgba(45, 175, 168, .7);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(24,72,94,.7), rgba(7,24,39,.75));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 22px;
  box-shadow: 0 0 80px rgba(27,200,187,.16);
  transform: perspective(900px) rotateY(-10deg) rotateX(5deg);
  overflow: hidden;
  position: relative;
}
.holo-panel > svg { width: 88px; height: 88px; color: #4be1d4; }
.holo-panel > span {
  text-align: center;
  max-width: 220px;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
}
.scan {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #59e2d8;
  box-shadow: 0 0 15px #59e2d8;
  animation: scan 3s ease-in-out infinite;
}
.mini-node {
  position: absolute;
  padding: 11px 15px;
  border-radius: 12px;
  background: #0b2435;
  border: 1px solid #22465a;
  color: #b8cbd5;
  font-size: .75rem;
  animation: bob 5s ease-in-out infinite;
}
.mini-node.a { top: 10%; left: 3%; }
.mini-node.b { right: 0; top: 42%; animation-delay: -.8s; }
.mini-node.c { bottom: 7%; left: 12%; animation-delay: -1.6s; }

.service-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 70px;
}
.service-body aside {
  position: sticky;
  top: 120px;
  height: max-content;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-body aside span { font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.service-body aside a { color: var(--muted); }
.service-body aside a:hover { color: var(--teal-deep); }
.inner-section { padding-top: 96px; }
.capability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.capability-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}
.capability-grid svg { color: var(--teal-deep); width: 24px; height: 24px; }
.capability-grid h3 { margin: 18px 0 8px; font-size: 1.2rem; }
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.outcome-grid div {
  padding: 24px;
  border-radius: 18px;
  background: #071827;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 150px;
}
.outcome-grid svg { color: #44dbcf; width: 24px; height: 24px; }

/* Careers / contact */
.jobs { margin-top: 36px; }
.jobs article {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.jobs h3 { font-size: 1.3rem; }
.jobs p { margin: 6px 0 0; }

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.contact-cards > a,
.contact-cards > div {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  min-width: 0;
}
.contact-cards svg { color: var(--teal-deep); width: 22px; height: 22px; flex-shrink: 0; }
.contact-cards span,
.contact-cards small { display: block; }
.contact-cards > a > span,
.contact-cards > div > span {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contact-cards small { color: var(--muted); margin-bottom: 4px; font-size: .75rem; }
.contact-form {
  padding: 36px;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: var(--white);
  min-width: 0;
  width: 100%;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-width: 0;
}
.form-row > label { min-width: 0; }
label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: .85rem;
}
input, select, textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 14px 15px;
  border: 1px solid #cedbe4;
  border-radius: 12px;
  background: #f9fbfc;
  font: inherit;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(20, 200, 184, .12);
}
.contact-form .btn {
  width: 100%;
}
.consent {
  flex-direction: row;
  align-items: flex-start;
  font-weight: 400;
  gap: 10px;
}
.consent input { width: auto; min-width: 18px; margin-top: 3px; flex-shrink: 0; }
.consent span { min-width: 0; overflow-wrap: anywhere; }
.hp { position: absolute; left: -9999px; }
.form-status {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 600;
}
.form-status.ok { background: #e8faf6; color: #0d7a70; }
.form-status.err { background: #fdecec; color: #a33b3b; }

.legal-copy { max-width: 820px; }
.legal-copy h2 { font-size: 1.55rem; margin: 40px 0 10px; }

.photo-panel {
  min-height: 420px;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(5,13,24,.25), rgba(5,13,24,.55)),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  box-shadow: var(--shadow);
}

/* CTA / footer */
.cta-band {
  padding: 80px 0;
  background:
    linear-gradient(110deg, rgba(23,71,168,.94), rgba(13,159,147,.92)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1800&q=70") center/cover;
  color: var(--white);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band h2 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  max-width: 16ch;
  margin-top: 10px;
}
.cta-note {
  max-width: 36rem;
  color: rgba(255,255,255,.88);
  margin: 14px 0 0;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  min-width: 280px;
}

.site-footer {
  background: #040d16;
  color: var(--white);
  padding: 84px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.7fr .8fr .9fr 1.1fr;
  gap: 48px;
}
.footer-brand img {
  width: 250px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 18px;
}
.footer-top p,
.footer-top a,
.footer-top small { color: #8195a5; }
.footer-top > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-top h4 {
  margin-bottom: 6px;
  font-size: 1rem;
  letter-spacing: -.02em;
  color: #fff;
}
.social-label {
  margin: 26px 0 12px !important;
  color: #fff !important;
  font-size: .78rem !important;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}
.socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px 0 12px;
  border: 1px solid rgba(110, 231, 216, .35);
  border-radius: 999px;
  background: rgba(20, 200, 184, .08);
  color: #e8f7f4 !important;
  font-size: .78rem;
  font-weight: 700;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.socials a:hover {
  background: rgba(20, 200, 184, .22);
  border-color: #6ee7d8;
  transform: translateY(-2px);
  color: #fff !important;
}
.socials svg {
  width: 16px;
  height: 16px;
  color: #6ee7d8;
  flex-shrink: 0;
}
.footer-contact p { margin: 0; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid #1b2a36;
  margin-top: 52px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #65798a;
  font-size: .8rem;
}
.footer-bottom span:last-child { display: flex; gap: 20px; }

/* Trust / conversion blocks */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 0;
  margin-top: -1px;
  position: relative;
  z-index: 3;
}
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-stats > div {
  padding: 34px 24px;
  border-right: 1px solid var(--line);
}
.trust-stats > div:last-child { border-right: 0; }
.trust-stats b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -.04em;
  color: var(--teal-deep);
  margin-bottom: 6px;
}
.trust-stats span { color: var(--muted); font-size: .9rem; }

.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.logo-track span {
  padding: 14px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 700;
  font-size: .88rem;
  color: var(--ink);
  white-space: nowrap;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.trust-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}
.trust-list article > span {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--teal-deep);
  font-size: 1.1rem;
}
.trust-list h3 { font-size: 1.15rem; margin-bottom: 6px; }
.trust-list p { margin: 0; }
.trust-list .btn { margin-top: 8px; align-self: flex-start; }

.cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.cert-row span {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--soft);
  font-size: .86rem;
  font-weight: 700;
  color: var(--ink);
}
.approach-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, #071827, #0c2438);
  color: #fff;
}
.approach-banner h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  margin: 8px 0 10px;
}
.approach-banner p { color: #9eb0c2; margin: 0; max-width: 40rem; }
.approach-banner .btn-outline {
  border-color: rgba(255,255,255,.3);
  color: #fff;
  flex-shrink: 0;
}

.engage-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.engage-cards {
  display: grid;
  gap: 14px;
}
.engage-cards article {
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}
.engage-cards b {
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.engage-cards h3 { margin: 10px 0 8px; font-size: 1.25rem; }
.engage-cards p { margin-bottom: 10px; }

.office-band {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: stretch;
  padding: 48px;
  border-radius: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
}
.office-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.office-map {
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(5,13,24,.55), rgba(5,13,24,.75)),
    url("https://images.unsplash.com/photo-1524492412937-b28074a5d7da?auto=format&fit=crop&w=1200&q=80") center/cover;
  display: grid;
  place-items: end start;
  padding: 28px;
  color: #fff;
  min-height: 280px;
}
.office-map strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.office-map span { display: block; color: #c5d4df; font-size: .92rem; line-height: 1.5; }

.contact-assurance {
  margin-top: 28px;
  padding: 24px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
}
.contact-assurance h3 { font-size: 1.1rem; margin-bottom: 12px; }
.contact-assurance ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.contact-assurance li { margin: 8px 0; }

.back-top {
  position: fixed;
  right: 22px;
  bottom: 96px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  cursor: pointer;
}
.back-top.show { opacity: 1; pointer-events: auto; }
.back-top svg { width: 18px; height: 18px; }

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(20, 200, 184, .08), transparent 68%);
  pointer-events: none;
  z-index: 0;
  transition: left .08s linear, top .08s linear;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@keyframes marquee {
  to { transform: translateX(-50%); }
}
@keyframes pulse {
  50% { box-shadow: 0 0 0 24px rgba(42,210,196,.03), 0 0 0 50px rgba(42,210,196,.015); }
}
@keyframes shimmer {
  50% { opacity: 1; }
}
@keyframes scan {
  0% { top: 8%; }
  50% { top: 90%; }
  100% { top: 8%; }
}
@keyframes bob {
  50% { transform: translateY(-10px); }
}
@keyframes heroDrift {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, 1%, 0); }
}

@media (max-width: 1100px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    padding: 22px;
    background: #071827;
    border: 1px solid #1d3a4d;
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: .25s ease;
    max-height: calc(100vh - 120px);
    overflow: auto;
  }
  .main-nav.open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav-drop > button { width: 100%; justify-content: space-between; }
  .drop-panel {
    position: static;
    width: auto;
    grid-template-columns: 1fr;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: none;
    background: #0b2232;
    box-shadow: none;
    margin-top: 8px;
  }
  .nav-drop.open .drop-panel { display: grid; }
  .drop-panel b { color: #fff; }
  .drop-panel small { color: #9eb0c2; }
  .drop-panel a:hover { background: rgba(255,255,255,.04); }
  .split,
  .ai-showcase,
  .service-hero-grid,
  .contact-grid,
  .engage-grid,
  .office-band {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-inner { max-width: none; }
  .contact-form { padding: 28px; }
  .service-grid,
  .industry-grid,
  .industry-grid.industry-list,
  .value-grid,
  .quote-grid,
  .partner-grid,
  .trust-stats { grid-template-columns: 1fr 1fr; }
  .trust-stats > div:nth-child(2) { border-right: 0; }
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-top > div:last-child { grid-column: 1 / -1; }
  .service-body { grid-template-columns: 1fr; }
  .service-body aside { display: none; }
  .approach-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 80px 0; }
  .brand { width: 190px; }
  .brand img { height: 48px; }
  .hero { padding-top: calc(var(--header-h) + 28px); }
  .hero h1,
  .page-hero h1,
  .service-hero h1 { font-size: clamp(2.6rem, 12vw, 3.4rem); }
  .hero-actions,
  .section-head,
  .cta-band-inner,
  .jobs article,
  .footer-bottom,
  .office-links {
    flex-direction: column;
    align-items: flex-start;
  }
  .proof-strip,
  .service-grid,
  .case-grid,
  .industry-grid,
  .industry-grid.industry-list,
  .value-grid,
  .timeline,
  .steps,
  .quote-grid,
  .insight-grid,
  .partner-grid,
  .capability-grid,
  .outcome-grid,
  .form-row,
  .ai-showcase,
  .split,
  .service-hero-grid,
  .contact-grid,
  .trust-stats,
  .engage-grid,
  .office-band { grid-template-columns: 1fr; }
  .trust-stats > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trust-stats > div:last-child { border-bottom: 0; }
  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .proof-strip div:last-child { border-bottom: 0; }
  .service-row {
    grid-template-columns: 36px 40px 1fr;
    padding: 28px 0;
  }
  .service-row > b { display: none; }
  .service-art {
    height: 320px;
    transform: scale(.88);
    margin: -10px 0;
  }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > .footer-brand,
  .footer-top > div:last-child { grid-column: 1 / -1; }
  .socials a span { display: none; }
  .socials a {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .case-card ul { grid-template-columns: 1fr; }
  .cursor-glow { display: none; }
  .page-hero,
  .service-hero { padding: 140px 0 70px; }
  .page-hero.compact { padding: 120px 0 56px; }
  .page-hero h1 { max-width: none; }
  .page-hero p { font-size: 1rem; }
  .contact-form { padding: 20px; border-radius: 18px; }
  .contact-cards > a,
  .contact-cards > div { padding: 14px; }
  .contact-assurance { padding: 18px; }
  .display { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .cta-band { padding: 48px 0; }
  .cta-actions { min-width: 0; width: 100%; }
  .cta-actions .btn { width: 100%; }
  .office-band,
  .approach-banner { padding: 28px; }
}

/* Extra-narrow phones */
@media (max-width: 420px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 16px; }
  .page-hero h1,
  .service-hero h1 { font-size: clamp(2.1rem, 11vw, 2.7rem); }
  .industry-list .industry-tile {
    min-height: 0;
    padding: 22px 18px;
  }
}
