:root {
  --bg: #06060a;
  --bg-2: #0b0b13;
  --panel: #0f0f18;
  --line: rgba(255,255,255,0.06);
  --line-2: rgba(255,255,255,0.1);
  --text: #ffffff;
  --muted: #8b8b9c;
  --muted-2: #a4a4b8;
  --violet-1: #7c5cff;
  --violet-2: #a855f7;
  --violet-soft: #b39aff;
  --grad: linear-gradient(135deg, #7c5cff 0%, #a855f7 100%);
  --grad-text: linear-gradient(90deg, #7c5cff 0%, #b689ff 50%, #a855f7 100%);
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* Accessibility: skip to content link */
.skip-link {
  position: absolute;
  top: 0;
  left: 12px;
  transform: translateY(-120%);
  z-index: 100;
  padding: 10px 16px;
  border-radius: 0 0 10px 10px;
  background: var(--grad);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Ambient background glow */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(600px 400px at 80% 10%, rgba(124,92,255,0.10), transparent 70%),
    radial-gradient(700px 500px at 10% 40%, rgba(168,85,247,0.06), transparent 70%),
    radial-gradient(500px 400px at 100% 80%, rgba(124,92,255,0.05), transparent 70%);
  pointer-events: none;
}

/* Header */
:root {
  --ease-smooth: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* Burger button — hidden on desktop */
.burger {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  border-radius: 10px;
  transition: background 0.2s;
}
.burger:hover { background: rgba(255,255,255,0.06); }
.burger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.2s ease, top 0.35s var(--ease-out);
}
.burger span:nth-child(1) { top: 13px; }
.burger span:nth-child(2) { top: 19px; }
.burger span:nth-child(3) { top: 25px; }
body.menu-open .burger span:nth-child(1) { top: 19px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { top: 19px; transform: rotate(-45deg); }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0;
  background: rgba(6,6,10,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    padding 0.7s var(--ease-out),
    background 0.6s ease,
    backdrop-filter 0.6s ease;
}
.site-header.is-floating {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header .container {
  transition:
    max-width 0.75s var(--ease-out),
    padding 0.7s var(--ease-out),
    background 0.6s ease,
    border-radius 0.7s var(--ease-out),
    box-shadow 0.6s ease;
  background: transparent;
  border: none;
  border-radius: 0;
  will-change: max-width, padding, border-radius;
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 76px;
  gap: 24px;
  transition: height 0.7s var(--ease-out), gap 0.5s var(--ease-smooth);
}
.header-inner .logo { justify-self: start; }
.header-inner .nav { justify-self: center; }
.header-inner .btn-primary { justify-self: end; }

/* Floating pill state (activated after scroll) */
.site-header.is-floating {
  padding-top: 16px;
}
.site-header.is-floating .container {
  max-width: 1100px;
  padding: 0 20px 0 22px;
  border-radius: 999px;
  background: rgba(10,10,16,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.7);
}
.site-header.is-floating .header-inner {
  height: 62px;
  gap: 20px;
}

/* Header CTA — more compact than the in-page primary buttons */
.header-cta {
  padding: 10px 20px;
  font-size: 13.5px;
  box-shadow: 0 4px 14px -6px rgba(124,92,255,0.4);
}
.header-cta:hover {
  box-shadow: 0 6px 18px -6px rgba(124,92,255,0.55);
}

/* Logo text cross-fade + slide + blur */
.logo-text {
  display: inline-block;
  max-width: 240px;
  overflow: hidden;
  white-space: nowrap;
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
  transition:
    opacity 0.45s var(--ease-smooth) 0.15s,
    max-width 0.7s var(--ease-out) 0.05s,
    margin-left 0.7s var(--ease-out) 0.05s,
    filter 0.5s var(--ease-smooth) 0.1s,
    transform 0.6s var(--ease-out) 0.05s;
  will-change: max-width, opacity, transform;
}
.site-header.is-floating .logo-text {
  opacity: 0;
  max-width: 0;
  margin-left: -8px;
  filter: blur(6px);
  transform: translateX(-10px);
  pointer-events: none;
  transition:
    opacity 0.35s var(--ease-smooth) 0s,
    max-width 0.65s var(--ease-out) 0.05s,
    margin-left 0.65s var(--ease-out) 0.05s,
    filter 0.4s var(--ease-smooth) 0s,
    transform 0.55s var(--ease-out) 0s;
}

/* Nav links styled as pill anchor buttons with variable-font hover */
.nav-link {
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--muted-2);
  font-size: 14px;
  border: 1px solid transparent;
  transition: color 0.2s ease, background 0.25s ease, border-color 0.25s ease;
  line-height: 1;
  font-variation-settings: 'wght' 400;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.nav-link.is-active {
  color: #fff;
  background: rgba(124,92,255,0.14);
  border-color: rgba(124,92,255,0.32);
}
.vf-char {
  display: inline-block;
  font-variation-settings: 'wght' 400;
  transition: font-variation-settings 0.4s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--vf-delay, 0ms);
  white-space: pre;
}
.nav-link:hover .vf-char {
  font-variation-settings: 'wght' 700;
}

/* Push page content below the fixed header */
body {
  padding-top: 76px;
}
.site-header.is-floating ~ .hero,
body { transition: padding-top 0.4s ease; }
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  letter-spacing: 0.08em;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--grad);
  box-shadow: 0 8px 30px -6px rgba(124,92,255,0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-mark:has(img) {
  background: transparent;
  box-shadow: none;
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.logo-text b { font-weight: 700; letter-spacing: 0.18em; }
.logo-text { color: #d9d9e6; font-weight: 400; letter-spacing: 0.06em; }
.logo-text b + span, .logo-text { }

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(124,92,255,0.55);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 36px -8px rgba(124,92,255,0.7); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); }

/* Eyebrow */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* Hero */
.hero {
  position: relative;
  min-height: auto;
  padding: 0 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero-shader {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  display: block;
  filter: blur(28px) saturate(0.85);
  opacity: 0.55;
  transform: scale(1.08);
}
.hero-shader--wire {
  z-index: -1;
  opacity: 0.2;
  mix-blend-mode: screen;
  filter: blur(14px);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1100px 700px at 50% 40%, transparent 0%, rgba(6,6,10,0.55) 70%, rgba(6,6,10,0.95) 100%),
    linear-gradient(180deg, rgba(6,6,10,0.55) 0%, transparent 20%, transparent 70%, rgba(6,6,10,0.98) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  max-width: 14ch;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0.15em 0.05em 0.05em;
}
.reveal-line {
  display: block;
  padding: 0.02em 0.06em 0.2em;
  overflow: visible;
  line-height: 1.15;
}
.reveal-word {
  display: inline-block;
  white-space: nowrap;
  line-height: 1.15;
}
.reveal-space {
  display: inline-block;
  width: 0.28em;
}
.reveal-ch {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  animation: charIn 0.55s cubic-bezier(.2,.7,.2,1) forwards;
  white-space: pre;
}
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-text .reveal-ch {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  color: #c8c8d8;
  font-size: 18px;
  max-width: 620px;
  margin: 0 0 40px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.9s ease 1.2s forwards;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 44px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.9s ease 1.5s forwards;
}
.hero-ctas .btn-primary { padding: 16px 30px; font-size: 16px; gap: 8px; }
.hero-ctas .btn-primary svg { display: inline-block; }

.hero-stats {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  animation: fadeUp 0.9s ease 2.1s forwards;
}
.stat-num {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 6px;
}

@keyframes charIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(0.85); }
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  white-space: nowrap;
  position: relative;
}
.marquee-thin { margin-top: 40px; }
.marquee-brands {
  padding: 32px 0;
  background: linear-gradient(180deg, transparent, rgba(124,92,255,0.03), transparent);
}
.marquee-track {
  display: inline-flex;
  gap: 40px;
  align-items: center;
  animation: marquee 45s linear infinite;
  padding-right: 40px;
}
.marquee-track span {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--muted-2);
  text-transform: uppercase;
}
.marquee-brands .marquee-track span:not(.dot-sep) {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
}
.dot-sep {
  color: var(--violet-1) !important;
  font-size: 10px !important;
  opacity: 0.7;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Big stats */
.big-stats {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  justify-items: center;
  align-items: start;
}
.stats-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 260px;
}
.big-stat-num {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  line-height: 1;
}
.stats-grid p {
  color: var(--muted-2);
  font-size: 15px;
  margin: 0;
}

/* Section head */
.section-head {
  max-width: 720px;
  margin-bottom: 72px;
}
.section-title {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 24px;
}
.section-sub {
  color: var(--muted-2);
  font-size: 17px;
  margin: 0;
  max-width: 560px;
}

/* Services grid + Sectors accordion */
.services { padding: 140px 0 100px; }
.sectors { padding: 120px 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease;
  min-height: 240px;
}
.service-card:hover { background: rgba(124,92,255,0.04); }
.service-num {
  font-family: var(--mono);
  color: var(--violet-1);
  font-size: 13px;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}
.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--muted-2);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

.accordion {
  border-top: 1px solid var(--line);
}
.acc-item {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  grid-template-areas:
    "num title icon"
    "panel panel panel";
  align-items: center;
  gap: 24px;
  width: 100%;
  text-align: left;
  padding: 26px 24px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.25s ease;
  position: relative;
}
.acc-item:hover { background: rgba(124,92,255,0.05); }
.acc-item::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--grad);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}
.acc-item.is-open { background: rgba(124,92,255,0.06); }
.acc-item.is-open::before { transform: scaleY(1); }

.acc-num {
  grid-area: num;
  font-family: var(--mono);
  color: var(--violet-1);
  font-size: 13px;
  letter-spacing: 0.1em;
}
.acc-title {
  grid-area: title;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}
.acc-item--wide .acc-title { font-size: 28px; font-weight: 500; }
.acc-icon {
  grid-area: icon;
  position: relative;
  width: 22px; height: 22px;
  justify-self: end;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.acc-icon::before,
.acc-icon::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease;
}
.acc-icon::before { width: 10px; height: 2px; transform: translate(-50%, -50%); }
.acc-icon::after  { width: 2px; height: 10px; transform: translate(-50%, -50%); }
.acc-item.is-open .acc-icon {
  background: var(--grad);
  border-color: transparent;
}
.acc-item.is-open .acc-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.acc-panel {
  grid-area: panel;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.3s ease, margin 0.4s ease;
  margin-left: 104px;
  margin-right: 60px;
}
.acc-item.is-open .acc-panel {
  max-height: 240px;
  opacity: 1;
  margin-top: 12px;
}
.acc-panel p {
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 10px;
  max-width: 720px;
}

/* Process */
.process { padding: 120px 0; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.process-card:hover {
  border-color: rgba(124,92,255,0.35);
  transform: translateY(-4px);
}
.process-num {
  font-family: var(--mono);
  color: var(--violet-1);
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}
.process-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px;
}
.process-card p {
  color: var(--muted-2);
  font-size: 14.5px;
  margin: 0;
  line-height: 1.6;
}

/* About */
.about { padding: 140px 0; border-top: 1px solid var(--line); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 14px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: #d5d5e0;
}
.about-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(124,92,255,0.6);
}
.about-right p {
  color: var(--muted-2);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 20px;
}
.about-right p:last-child { margin-bottom: 0; }

/* Contact */
.contact {
  padding: 140px 0;
  border-top: 1px solid var(--line);
  background: radial-gradient(600px 400px at 90% 20%, rgba(124,92,255,0.08), transparent 70%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-left .section-title { font-size: clamp(36px, 4vw, 56px); }
.contact-meta {
  display: grid;
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.meta-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-meta a { font-size: 17px; color: #fff; }
.contact-meta a:hover { color: var(--violet-soft); }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: rgba(15,15,24,0.6);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
}
.contact-form label,
.contact-form .field {
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--muted-2);
}
.contact-form label.full { grid-column: 1 / -1; }
.field-label { display: block; }
.contact-form input,
.contact-form textarea {
  background: rgba(6,6,10,0.6);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--violet-1);
}
.contact-form textarea { resize: none; }

/* Custom select */
.select {
  position: relative;
  font-size: 15px;
}
.select-toggle {
  width: 100%;
  background: rgba(6,6,10,0.6);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: border-color 0.2s;
}
.select-toggle:hover { border-color: rgba(255,255,255,0.2); }
.select.is-open .select-toggle { border-color: var(--violet-1); }
.select-caret {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--muted-2);
  border-bottom: 2px solid var(--muted-2);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.25s ease, border-color 0.2s;
  flex-shrink: 0;
}
.select.is-open .select-caret {
  transform: rotate(-135deg) translate(-2px, -2px);
  border-color: var(--violet-soft);
}
.select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 40;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: rgba(15,15,24,0.98);
  border: 1px solid rgba(124,92,255,0.35);
  border-radius: 12px;
  box-shadow: 0 20px 50px -12px rgba(0,0,0,0.7), 0 0 0 1px rgba(124,92,255,0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.3s ease, opacity 0.2s ease, transform 0.25s ease;
  pointer-events: none;
}
.select.is-open .select-menu {
  max-height: 320px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.select-menu li {
  padding: 12px 14px;
  border-radius: 8px;
  color: #e6e6f0;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.select-menu li:hover { background: rgba(124,92,255,0.15); }
.select-menu li.is-selected {
  background: linear-gradient(135deg, rgba(124,92,255,0.25), rgba(168,85,247,0.15));
  color: #fff;
}
.select-menu li.is-selected::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 10px var(--violet-1);
}
.select-menu li:not(.is-selected)::before {
  content: "";
  width: 6px;
  height: 6px;
}
.contact-form button { grid-column: 1 / -1; justify-self: start; }
.form-thanks {
  grid-column: 1 / -1;
  padding: 12px 16px;
  background: rgba(124,92,255,0.12);
  border: 1px solid rgba(124,92,255,0.3);
  border-radius: 10px;
  color: var(--violet-soft);
  font-size: 14px;
}
.form-error {
  grid-column: 1 / -1;
  padding: 12px 16px;
  background: rgba(255,80,80,0.10);
  border: 1px solid rgba(255,80,80,0.35);
  border-radius: 10px;
  color: #ffb3b3;
  font-size: 14px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  background: #050508;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 16px;
  max-width: 320px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-cols > div { display: grid; gap: 12px; align-content: start; }
.footer-title {
  font-family: var(--mono);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer-cols a {
  color: #d5d5e0;
  font-size: 14.5px;
  transition: color 0.2s;
}
.footer-cols a:hover { color: var(--violet-soft); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  color: var(--muted);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

/* Responsive */
/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  background: rgba(6,6,10,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0s;
}
.mobile-menu-inner {
  padding: 100px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
}
.mobile-link {
  padding: 18px 20px;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.35s ease, background 0.2s;
}
.mobile-link:hover { background: rgba(124,92,255,0.08); }
.mobile-menu.is-open .mobile-link {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu.is-open .mobile-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.is-open .mobile-link:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.is-open .mobile-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-link:nth-child(4) { transition-delay: 0.20s; }
.mobile-cta {
  margin-top: 20px;
  padding: 18px 24px;
  font-size: 17px;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: transform 0.4s var(--ease-out) 0.3s, opacity 0.35s ease 0.3s;
}
.mobile-menu.is-open .mobile-cta { opacity: 1; transform: translateY(0); }
body.menu-open { overflow: hidden; }

/* Modal (Privacy/Terms/Cookies) */
.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0s;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.modal-panel {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: min(84vh, 780px);
  overflow: auto;
  background: linear-gradient(180deg, rgba(20,20,32,0.98), rgba(12,12,20,0.98));
  border: 1px solid rgba(124,92,255,0.25);
  border-radius: 22px;
  padding: 44px 40px 40px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.7);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.4s var(--ease-out);
  color: #e6e6f0;
}
.modal.is-open .modal-panel { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.modal-close:hover {
  background: rgba(124,92,255,0.2);
  border-color: rgba(124,92,255,0.5);
  transform: rotate(90deg);
}
.modal-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.modal-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: #fff;
}
.modal-updated {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.modal-body { font-size: 15px; line-height: 1.65; }
.modal-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 22px 0 8px;
  color: #fff;
}
.modal-body p { margin: 0 0 14px; color: var(--muted-2); }
.modal-body ul { padding-left: 20px; margin: 0 0 14px; }
.modal-body ul li { color: var(--muted-2); margin-bottom: 6px; }
.modal-body a { color: var(--violet-soft); text-decoration: underline; text-underline-offset: 3px; }

/* Success modal (brief sent) */
.modal-panel--sent {
  max-width: 460px;
  text-align: center;
  padding: 44px 32px 32px;
}
.modal-sent-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 12px 40px -8px rgba(124,92,255,0.55);
  animation: sentPop 0.5s var(--ease-out, cubic-bezier(.16,1,.3,1)) both;
}
@keyframes sentPop {
  from { transform: scale(0.6); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.modal-sent-body {
  color: var(--muted-2);
  font-size: 15.5px;
  line-height: 1.65;
  margin: 4px 0 26px;
}
.modal-sent-cta {
  width: 100%;
  justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero { padding-top: 20px; }
  .hero-stats { gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .acc-panel { margin-left: 80px; margin-right: 40px; }
}

/* Tablet / small laptop breakpoint */
@media (max-width: 900px) {
  .site-header .header-inner { grid-template-columns: auto 1fr auto; }
  .nav, .header-cta { display: none; }
  .burger { display: block; justify-self: start; }
  .site-header .logo { justify-self: center; }
  .header-inner { gap: 12px; }
  .site-header.is-floating .container { max-width: none; margin: 0 12px; }
}

/* Mobile */
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  body { padding-top: 68px; }
  .header-inner { height: 68px; }
  .hero { padding-top: 12px; padding-bottom: 60px; }
  .hero-title { font-size: clamp(40px, 12vw, 60px); }
  .hero-sub { font-size: 15px; }
  .hero-stats {
    grid-template-columns: repeat(3, auto);
    gap: 20px;
    margin-top: 28px;
    padding-top: 32px;
  }
  .stat-num { font-size: 22px; }
  .stat-label { font-size: 10px; letter-spacing: 0.15em; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .big-stat-num { font-size: 48px; margin-bottom: 12px; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { justify-content: center; text-align: center; }
  .contact-form { grid-template-columns: 1fr; padding: 20px; }
  .big-stats { padding: 60px 0; }
  .services, .sectors, .process, .about, .contact { padding: 72px 0; }
  .about { padding-top: 72px; }
  .section-head { margin-bottom: 40px; }
  .section-title { font-size: clamp(30px, 8vw, 42px); }
  .section-sub { font-size: 15px; }
  .acc-item {
    grid-template-columns: 40px 1fr 28px;
    gap: 14px;
    padding: 20px 4px;
  }
  .acc-title { font-size: 17px; }
  .acc-item--wide .acc-title { font-size: 20px; }
  .acc-panel { margin-left: 54px; margin-right: 6px; }
  .acc-item.is-open .acc-panel { max-height: 360px; }
  .marquee-brands { padding: 20px 0; }
  .marquee-brands .marquee-track span:not(.dot-sep) { font-size: 16px; }
  .marquee-track { gap: 24px; }
  .about-list li { font-size: 15px; }
  .contact-meta a { font-size: 15px; }
  .modal-panel { padding: 40px 22px 26px; border-radius: 18px; }
  .modal-title { font-size: 24px; }
}

/* Very small phones */
@media (max-width: 400px) {
  .hero-stats { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 18px; }
  .hero-ctas .btn { padding: 12px 20px; font-size: 14px; }
  .footer-cols { grid-template-columns: 1fr; }
}
