:root {
  --bg: #ffffff;
  --bg-elevated: #fafafa;
  --bg-card: #ffffff;
  --bg-muted: #f4f4f5;
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(59, 130, 246, 0.45);
  --text: #171717;
  --text-slate: #52525b;
  --text-muted: #71717a;
  --mint: #0d9488;
  --purple: #7c3aed;
  --cyan: #2563eb;
  --blue: #3b82f6;
  --gradient-text: linear-gradient(180deg, #0a0a0a 0%, #3f3f46 100%);
  --gradient-glow: linear-gradient(90deg, #3b82f6, #6366f1, #06b6d4);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 50px rgba(59, 130, 246, 0.12);
  --font-heading: 'Geist', 'Geist Sans', system-ui, sans-serif;
  --font-body: 'Geist', 'Geist Sans', system-ui, sans-serif;
  --radius: 12px;
  --header-h: clamp(56px, 4vw + 44px, 72px);
  --nav-gap: clamp(8px, 1.1vw, 22px);
  --nav-link-size: clamp(0.6875rem, 0.25vw + 0.62rem, 0.875rem);
  --nav-brand-size: clamp(0.8125rem, 0.4vw + 0.72rem, 1.0625rem);
  --max: 1200px;
  --max-wide: 1280px;
  --svc-min-h: 520px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-slate);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--text); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-intro .label {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-align: center;
  margin-bottom: 20px;
  color: #a1a1aa;
}
.heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
  color: var(--text);
}
.section-intro .heading {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.heading--center { text-align: center; }
.subheading {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--text-slate);
  max-width: 560px;
  line-height: 1.75;
}
.section-intro { margin-bottom: 64px; text-align: center; }
.section-intro .subheading { margin: 16px auto 0; text-align: center; max-width: 600px; }
.section--services .subheading {
  max-width: 580px;
  font-size: 1.125rem;
  line-height: 1.65;
  text-wrap: pretty;
}
.section-intro--team .subheading {
  max-width: 640px;
  margin: 16px auto 0;
  text-align: center;
}
.muted { color: var(--text-muted); font-size: 0.875rem; }

/* Loader */
.loader { min-height: 40vh; display: flex; align-items: center; justify-content: center; }
.loader__dot {
  width: 8px; height: 8px;
  background: var(--text);
  border-radius: 50%;
  animation: pulse 1s ease infinite;
}
@keyframes pulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.25s;
}
.btn--dark { background: var(--text); color: var(--bg); }
.btn--dark:hover { opacity: 0.9; transform: translateY(-1px); }
.btn--primary { background: var(--text); color: #fff; font-weight: 600; }
.btn--primary:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--luxury {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.14);
}
.btn--luxury:hover { border-color: rgba(0,0,0,0.28); background: var(--bg-muted); }
.btn--neon {
  position: relative;
  background: #fff;
  color: var(--blue);
  font-weight: 600;
  border: 1px solid transparent;
  background-clip: padding-box;
  box-shadow: var(--shadow-sm);
}
.btn--neon::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4, #6366f1, #3b82f6);
  background-size: 200% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: neonBorder 4s linear infinite;
  pointer-events: none;
}
.btn--neon:hover { box-shadow: 0 8px 28px rgba(59, 130, 246, 0.18); transform: translateY(-1px); }
@keyframes neonBorder { to { background-position: 200% 0; } }
.btn--outline {
  background: transparent;
  color: var(--text-slate);
  border: 1px solid var(--border);
}
.btn--outline:hover { border-color: var(--text-slate); color: var(--text); }
.btn--sm {
  padding: clamp(7px, 0.8vw, 9px) clamp(12px, 1.5vw, 18px);
  font-size: clamp(0.75rem, 0.2vw + 0.68rem, 0.8125rem);
  white-space: nowrap;
}
.btn--lg { padding: 14px 28px; }
.btn--full { width: 100%; }

/* Header — fluid flex layout */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: var(--header-h);
  transition: border-color 0.2s, background 0.2s, height 0.2s ease;
  isolation: isolate;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 clamp(12px, 2vw, 24px);
  gap: var(--nav-gap);
}
.nav__logo {
  flex: 0 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 10px);
  font-family: var(--font-heading);
  font-size: var(--nav-brand-size);
  font-weight: 700;
  color: var(--text);
}
.nav__links {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--nav-gap);
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 12px);
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: clamp(2px, 0.3vw, 3px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.35);
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}
.lang-switch__btn {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: clamp(0.625rem, 0.2vw + 0.58rem, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: clamp(4px, 0.5vw, 6px) clamp(6px, 0.8vw, 10px);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.lang-switch__btn:hover { color: var(--blue); }
.lang-switch__btn.is-active {
  background: var(--blue);
  color: #fff;
}
.nav__toggle {
  display: none;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: clamp(36px, 5vw, 42px);
  height: clamp(36px, 5vw, 42px);
  position: relative;
  z-index: 302;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav__toggle span {
  display: block;
  width: clamp(16px, 2.2vw, 20px);
  height: 1.5px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__toggle.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-active span:nth-child(2) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Mobile drawer — portal on body, auto height shows full menu */
.nav-drawer {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: auto;
  height: auto;
  max-height: calc(100dvh - var(--header-h));
  z-index: 280;
  background: #fff;
  transform: translateY(-6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  overflow: visible;
  border-bottom: 1px solid var(--border);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
}
.nav-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  display: block;
}
@media (max-width: 980px) {
  .nav-drawer:not(.is-open) {
    display: none;
  }
}
.nav-drawer__list {
  list-style: none;
  margin: 0;
  padding: 6px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-drawer__link {
  display: block;
  width: 100%;
  padding: 11px 12px;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-slate);
  text-align: left;
  border-radius: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav-drawer__link:hover,
.nav-drawer__link:active {
  background: rgba(59, 130, 246, 0.08);
  color: var(--blue);
}
.nav-drawer__cta {
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.nav-drawer__cta .btn { width: 100%; }

.nav__mark {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--text);
  color: var(--bg);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
}
/* Header — Glassmorphism (blur on pseudo to avoid clipping fixed drawer) */
.header--glass {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--border);
}
.header--glass::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  pointer-events: none;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}
.nav__brand {
  font-family: var(--font-heading);
  font-size: var(--nav-brand-size);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav__logo-img {
  width: clamp(32px, 3.5vw, 40px);
  height: clamp(32px, 3.5vw, 40px);
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
}
.nav__logo-img--sm { width: clamp(28px, 3vw, 36px); height: clamp(28px, 3vw, 36px); }
.nav__link {
  position: relative;
  font-family: var(--font-heading);
  font-size: var(--nav-link-size);
  font-weight: 500;
  color: var(--text-slate);
  padding: clamp(3px, 0.4vw, 5px) clamp(2px, 0.3vw, 4px);
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--text);
  transition: width 0.3s ease, left 0.3s ease;
}
.nav__link:hover {
  color: var(--text);
}
.nav__link:hover::after {
  width: 100%;
  left: 0;
}
.nav__toggle { display: none; flex-direction: column; gap: 6px; }
.nav__toggle span { width: 20px; height: 1.5px; background: var(--text); }

/* Hero */
.hero {
  padding-top: calc(var(--header-h) + 72px);
  padding-bottom: 72px;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(59, 130, 246, 0.06), transparent);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: #171717;
  text-wrap: balance;
  text-align: left;
}
.hero__title .text-gradient {
  background: none;
  -webkit-text-fill-color: #171717;
  color: #171717;
}
.hero__desc {
  font-size: 1.0625rem;
  font-weight: 400;
  color: #52525b;
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 440px;
  perspective: 1000px;
}
.hero-mesh {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  animation: meshFloat 8s ease-in-out infinite;
  margin: 0 auto;
}
.hero-mesh__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.12);
  animation: meshSpin 24s linear infinite;
}
.hero-mesh__ring--2 {
  inset: 12%;
  border-color: rgba(99, 102, 241, 0.15);
  animation-duration: 18s;
  animation-direction: reverse;
}
.hero-mesh__ring--3 {
  inset: 24%;
  border-color: rgba(6, 182, 212, 0.18);
  animation-duration: 14s;
}
.hero-mesh__grid {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 18px, rgba(59,130,246,0.05) 18px, rgba(59,130,246,0.05) 19px),
    repeating-linear-gradient(90deg, transparent, transparent 18px, rgba(59,130,246,0.05) 18px, rgba(59,130,246,0.05) 19px);
  mask-image: radial-gradient(circle, black 40%, transparent 72%);
  animation: meshSpin 30s linear infinite reverse;
}
.hero-mesh__logo {
  position: absolute;
  inset: 8%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(40px);
  animation: logoPulse 4s ease-in-out infinite;
}
.hero-mesh__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.12)) drop-shadow(0 0 40px rgba(59, 130, 246, 0.15));
}
.hero-mesh__glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, rgba(99,102,241,0.05) 40%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 5s ease-in-out infinite;
}
@keyframes meshSpin { to { transform: rotateZ(360deg); } }
@keyframes meshFloat {
  0%, 100% { transform: rotateX(8deg) rotateY(-8deg) translateY(0); }
  50% { transform: rotateX(-6deg) rotateY(10deg) translateY(-12px); }
}
@keyframes logoPulse {
  0%, 100% { transform: translateZ(40px) scale(1); }
  50% { transform: translateZ(50px) scale(1.04); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Marquee */
.logos-bar {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}
.logos-bar__label {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee__track span {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* Sections */
.section { padding: 96px 0; }
.section--border { border-top: 1px solid var(--border); }
.section--services {
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 48%, #f4f4f5 100%);
  overflow: visible;
}
.section--services .container {
  max-width: var(--max-wide);
  overflow: visible;
}
.prose p:first-child { color: var(--text); font-weight: 500; }
.svc-card__icon { color: var(--blue); filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.25)); }
.svc-card__list li::before { background: var(--blue); }
.partner-band--1 { background: #f8fafc; }
.partner-band--2 { background: #f1f5f9; }
.partner-band--3 { background: #fafafa; }
.process-step__num { color: var(--blue); }
.contact-list dd { color: var(--text-slate); }
.form-card input, .form-card select, .form-card textarea { background: var(--bg-muted); color: var(--text); }
.metric h4 { color: var(--text-slate); }
.person__role { color: var(--text-slate); }

/* Intro & Metrics */
.section--intro { padding-top: 88px; }
.intro-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.intro-header .label {
  letter-spacing: 0.22em;
  margin-bottom: 16px;
}
.intro-header .heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}
.intro-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  align-items: stretch;
  margin-bottom: 64px;
}
.intro-body__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 100%;
}
.intro-paragraph {
  font-size: 1.0625rem;
  color: #52525b;
  line-height: 1.8;
  margin-bottom: 0;
  text-wrap: pretty;
}

/* Territory quiz mini game */
.territory-quiz {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 0;
  padding: 26px 28px 24px;
  min-height: 0;
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(59, 130, 246, 0.06) 0%, #fff 45%, rgba(239, 68, 68, 0.04) 100%);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.08);
}
.territory-quiz__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 12px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(59, 130, 246, 0.1);
  border-radius: 999px;
  margin-bottom: 16px;
}
.territory-quiz__question {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.55;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  text-wrap: pretty;
}
.territory-quiz__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex: 1;
  align-content: start;
}
.territory-quiz__option {
  padding: 16px 18px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.territory-quiz__option:hover:not(.is-correct):not(.is-wrong) {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.1);
}
.territory-quiz__option.is-correct {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}
.territory-quiz__option.is-wrong {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.08);
  color: #b91c1c;
  animation: quizShake 0.45s ease;
}
.territory-quiz.is-success .territory-quiz__option:not(.is-correct) {
  opacity: 0.45;
  pointer-events: none;
}
.territory-quiz__feedback {
  min-height: 1.5em;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}
.territory-quiz__feedback.is-success { color: #15803d; }
.territory-quiz__feedback.is-wrong { color: #b91c1c; }
@keyframes quizShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

.fireworks-canvas {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
}
.pillar-cards {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 10px;
  min-height: 100%;
  height: 100%;
}
.pillar-card {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 72px;
  padding: 16px 20px;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s, background 0.25s;
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--blue);
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 3px 0 0 3px;
}
.pillar-card:hover {
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
  transform: translateX(4px);
}
.pillar-card.is-active {
  border-color: rgba(59, 130, 246, 0.45);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, #fff 60%);
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.14);
  transform: translateX(6px);
}
.pillar-card.is-active::before {
  transform: scaleY(1);
}
.pillar-card__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--bg-muted);
  color: #71717a;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
.pillar-card__icon svg { width: 20px; height: 20px; }
.pillar-card:hover .pillar-card__icon,
.pillar-card.is-active .pillar-card__icon {
  background: rgba(59, 130, 246, 0.12);
  color: var(--blue);
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.2);
}
.pillar-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.pillar-card__label {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #171717;
  letter-spacing: -0.01em;
}
.pillar-card__desc {
  font-size: 0.8125rem;
  color: #71717a;
  line-height: 1.5;
  transition: color 0.25s;
}
.pillar-card.is-active .pillar-card__desc {
  color: #52525b;
}
.pillar-card__arrow {
  flex-shrink: 0;
  color: #d4d4d8;
  transition: transform 0.3s, color 0.25s;
}
.pillar-card:hover .pillar-card__arrow,
.pillar-card.is-active .pillar-card__arrow {
  color: var(--blue);
}
.pillar-card:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.pillar-card:active {
  transform: translateX(2px) scale(0.995);
}
.pillar-card.is-active:active {
  transform: translateX(4px) scale(0.995);
}
.tech-tags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 32px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}
.tech-tag {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  padding: 0 28px;
}
.tech-tag:not(:last-child)::after {
  content: '|';
  margin-left: 28px;
  color: var(--text-muted);
  font-weight: 400;
}
.prose p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-slate);
  margin-bottom: 14px;
  line-height: 1.75;
}
.prose p:first-child { color: #cbd5e1; font-weight: 500; }

.pill-card {
  display: flex;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  background: var(--bg-card);
}
.pill-card h3 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.pill-card p { font-size: 0.8125rem; color: var(--text-slate); }

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
}
.stat {
  background: var(--bg-card);
  padding: 32px 24px;
  text-align: center;
}
.stat__num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.stat h3 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.stat p { font-size: 0.8125rem; color: var(--text-slate); }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.metric {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}
.metric__val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.metric h4 { font-size: 0.9375rem; font-weight: 600; color: #cbd5e1; margin-bottom: 4px; }
.metric p { font-size: 0.875rem; color: var(--text-slate); }

/* Services: luxury 3×2 grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 12px 0 40px;
  align-items: stretch;
  overflow: visible;
}

.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: var(--svc-min-h);
  padding: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  transform: scale(1);
  transform-origin: center center;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #6366f1, #06b6d4);
  opacity: 0.85;
  transition: height 0.35s ease, opacity 0.35s ease;
}
.svc-card__num {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 0;
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(59, 130, 246, 0.22);
  pointer-events: none;
  transition: color 0.35s ease;
  user-select: none;
}
.svc-card__glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--gradient-glow);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  animation: borderSpin 3s linear infinite;
  animation-play-state: paused;
}
.svc-card:hover,
.svc-card.is-expanded,
.svc-card:focus-visible {
  transform: scale(1.035);
  z-index: 20;
  border-color: rgba(59, 130, 246, 0.28);
  box-shadow: 0 32px 72px rgba(59, 130, 246, 0.16), 0 12px 32px rgba(0, 0, 0, 0.06);
}
.svc-card:hover::before,
.svc-card.is-expanded::before,
.svc-card:focus-visible::before {
  height: 4px;
  opacity: 1;
}
.svc-card:hover .svc-card__num,
.svc-card.is-expanded .svc-card__num {
  color: rgba(59, 130, 246, 0.42);
}
.svc-card:hover .svc-card__glow,
.svc-card.is-expanded .svc-card__glow,
.svc-card:focus-visible .svc-card__glow {
  opacity: 1;
  animation-play-state: running;
}
@keyframes borderSpin {
  to { filter: hue-rotate(360deg); }
}

.svc-card__body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 26px 26px;
  height: 100%;
}
.svc-card__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  padding-right: 56px;
}
.svc-card__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(99, 102, 241, 0.06));
  border: 1px solid rgba(59, 130, 246, 0.16);
  color: var(--blue);
}
.svc-card__icon svg { width: 22px; height: 22px; }
.svc-card h3 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.03em;
  line-height: 1.5;
  text-transform: uppercase;
  text-wrap: pretty;
  min-height: 3em;
}
.svc-card__tagline {
  font-size: 0.875rem;
  font-weight: 500;
  font-style: italic;
  color: #52525b;
  line-height: 1.65;
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(99, 102, 241, 0.03));
  border-left: 3px solid rgba(59, 130, 246, 0.35);
  text-wrap: pretty;
  min-height: 4.8em;
}
.svc-card__list {
  margin-top: auto;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.svc-feature {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.svc-feature:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.svc-feature__title {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 5px;
  text-wrap: pretty;
}
.svc-feature__desc {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
  text-wrap: pretty;
}
.svc-card:hover .svc-feature__desc,
.svc-card.is-expanded .svc-feature__desc {
  color: var(--text-slate);
}

.svc-card__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(59, 130, 246, 0.22);
  background: rgba(59, 130, 246, 0.06);
  color: var(--blue);
  font-size: 0.8125rem;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.svc-card__toggle-icon {
  transition: transform 0.25s ease;
}
.svc-card.is-expanded .svc-card__toggle-icon {
  transform: rotate(180deg);
}

.svc-card.is-expanded .svc-card__list {
  max-height: none;
  overflow: visible;
  opacity: 1;
}

.services-track-wrap { position: relative; }
.track-hint {
  display: none;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin: -8px 0 14px;
  letter-spacing: 0.02em;
}

/* Professional justified body copy */
.text-justify,
.hero__desc,
.intro-paragraph,
.svc-card__tagline,
.svc-feature__desc,
.team-card__exp,
.about-block__text,
.process-step__desc,
.jobs-showcase__intro,
.partner-showcase__subtitle,
.form-card__header p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.section-intro .subheading,
.section-intro--team .subheading,
.contact-section__lead {
  text-align: center;
  text-justify: auto;
  hyphens: none;
  -webkit-hyphens: none;
}
.section-intro .heading,
.section-intro .label,
.heading--center,
.stat h3,
.stat p,
.contact-card__label {
  text-align: center;
}
.stat p { text-align: center; }

/* Bento mockup */
.bento-mock {
  margin-top: 16px;
  padding: 14px;
  border-radius: 8px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  min-height: 72px;
}
.bento-mock__bars span {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.35), rgba(99, 102, 241, 0.15));
}
.bento-mock__code span { background: rgba(0, 0, 0, 0.06); }
.bento-mock__code span:nth-child(3) { background: rgba(59, 130, 246, 0.15); }
.bento-mock__grid span {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
}

/* Partners — showcase gallery */
.section--partners {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
}
.partner-showcases {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 8px;
}
.partner-showcase {
  border-radius: 24px;
  padding: 28px 28px 24px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: #fff;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.partner-showcase:hover {
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}
.partner-showcase--web3 {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.04) 0%, #fff 40%, #fff 100%);
  border-color: rgba(34, 197, 94, 0.15);
}
.partner-showcase--corporate {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.04) 0%, #fff 40%, #fff 100%);
  border-color: rgba(59, 130, 246, 0.15);
}
.partner-showcase--agency {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.04) 0%, #fff 40%, #fff 100%);
  border-color: rgba(99, 102, 241, 0.15);
}
.partner-showcase__header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.partner-showcase__index {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.14);
}
.partner-showcase--web3 .partner-showcase__index {
  color: #15803d;
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.2);
}
.partner-showcase--agency .partner-showcase__index {
  color: #6d28d9;
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.2);
}
.partner-showcase__title {
  font-family: var(--font-heading);
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 6px;
  text-wrap: pretty;
}
.partner-showcase__subtitle {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.partner-showcase__frame {
  border-radius: 18px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(99, 102, 241, 0.12), rgba(6, 182, 212, 0.2));
}
.partner-showcase--web3 .partner-showcase__frame {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(16, 185, 129, 0.15), rgba(59, 130, 246, 0.12));
}
.partner-showcase--corporate .partner-showcase__frame {
  background: linear-gradient(145deg, #0f3d24 0%, #1a5c38 50%, #0d3320 100%);
  border-color: rgba(34, 197, 94, 0.2);
}
.partner-showcase--corporate .partner-showcase__frame-inner {
  background: transparent;
  border: none;
  box-shadow: none;
}
.partner-showcase--corporate .partner-showcase__frame-inner img {
  object-fit: contain;
  width: 100%;
  height: auto;
  max-height: none;
}
.partner-showcase--agency .partner-showcase__frame {
  background: linear-gradient(135deg, rgba(113, 113, 122, 0.25), rgba(99, 102, 241, 0.15), rgba(59, 130, 246, 0.12));
}
.partner-showcase__frame-inner {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.partner-showcase__frame-inner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
}

/* Process — separated step cards */
.section--process {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-top: 1px solid var(--border);
}

.process-flow {
  position: relative;
  margin-top: 48px;
  padding-top: 20px;
}
.process-flow__line {
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.35) 15%,
    rgba(99, 102, 241, 0.35) 85%,
    transparent
  );
  pointer-events: none;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  position: relative;
  padding: 32px 24px 28px;
  border: 1px solid rgba(59, 130, 246, 0.22);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.process-step::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(145deg, #3b82f6, #6366f1);
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.14);
}
.process-step__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.process-step__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 10px;
}
.process-step__desc {
  font-size: 0.875rem;
  color: var(--text-slate);
  line-height: 1.65;
  text-wrap: pretty;
}

/* Team block inside About */
.about-team {
  position: relative;
  z-index: 1;
  margin-top: clamp(40px, 6vw, 64px);
  padding-top: clamp(36px, 5vw, 52px);
  border-top: 1px solid rgba(59, 130, 246, 0.12);
}
.about-team__title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.about-team .section-intro--team { margin-bottom: clamp(24px, 4vw, 40px); }

/* Team — 5-card B2B grid */
.section--team {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(59, 130, 246, 0.1), transparent 60%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section--team::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.06), transparent 45%);
  pointer-events: none;
}
.team-track-wrap {
  position: relative;
  margin-top: 8px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  z-index: 1;
}
.team-card {
  display: flex;
  flex-direction: column;
  min-height: 440px;
  padding: 24px 16px 20px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: #fff;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.28);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.14);
}
.team-card__photo {
  width: 132px;
  height: 132px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 4px solid rgba(59, 130, 246, 0.2);
  background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
  flex-shrink: 0;
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.15);
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--photo-x, 50%) var(--photo-y, 50%);
  transform: scale(var(--photo-scale, 1)) rotate(var(--photo-rotate, 0deg));
  transform-origin: center center;
}
.team-card__initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--blue);
}
.team-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}
.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 6px;
}
.team-card__placeholder {
  color: var(--text-muted);
  font-weight: 600;
}
.team-card__role {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 12px;
  min-height: 1.25rem;
}
.team-card__exp {
  font-size: 0.8125rem;
  color: var(--text-slate);
  line-height: 1.65;
  text-wrap: pretty;
  flex: 1;
  margin-bottom: 16px;
}
.team-card__socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  min-height: 48px;
}
.team-card__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-slate);
  background: #f8fafc;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}
.team-card__social svg { width: 17px; height: 17px; }
.team-card__social.is-empty {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.team-card__social:not(.is-empty):hover {
  color: var(--blue);
  border-color: rgba(59, 130, 246, 0.35);
  background: rgba(59, 130, 246, 0.06);
  transform: translateY(-2px);
}
.team-card--network .team-card__socials { border-top-color: rgba(255, 255, 255, 0.1); }
.team-card--network .team-card__social {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
}

/* Network highlight card */
.team-card--network {
  background: linear-gradient(155deg, #0f172a 0%, #1e293b 45%, #172554 100%);
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.35);
}
.team-card--network:hover {
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 24px 56px rgba(59, 130, 246, 0.25);
}
.team-card--network .team-card__name,
.team-card--network .team-card__exp {
  color: rgba(255, 255, 255, 0.92);
}
.team-card--network .team-card__exp { color: rgba(226, 232, 240, 0.82); }
.team-card__network-visual {
  position: relative;
  width: 132px;
  height: 132px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card__network-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(96, 165, 250, 0.35);
}
.team-card__network-ring--1 { inset: 0; }
.team-card__network-ring--2 { inset: 18%; border-style: dashed; opacity: 0.6; }
.team-card__network-count {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #93c5fd, #60a5fa, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.team-card__cta { margin-top: auto; align-self: center; }
.btn--outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s, border-color 0.2s;
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
}

/* About — centered, prominent */
.section--about {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 45%, #f8fafc 100%);
  border-top: 1px solid var(--border);
  padding-top: 88px;
  padding-bottom: 88px;
}
.about-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.about-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: aboutOrbFloat 12s ease-in-out infinite;
}
.about-bg__orb--1 {
  width: 320px;
  height: 320px;
  top: -80px;
  left: -60px;
  background: rgba(59, 130, 246, 0.25);
}
.about-bg__orb--2 {
  width: 280px;
  height: 280px;
  bottom: -60px;
  right: -40px;
  background: rgba(99, 102, 241, 0.2);
  animation-delay: -4s;
}
.about-bg__orb--3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(14, 165, 233, 0.15);
  animation-delay: -8s;
}
@keyframes aboutOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -16px) scale(1.06); }
}
.about-block {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 52px 48px;
  border-radius: 28px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 28px 90px rgba(59, 130, 246, 0.14);
  overflow: hidden;
}
.about-block__shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #3b82f6, #6366f1, transparent);
  animation: aboutShine 4s ease-in-out infinite;
}
@keyframes aboutShine {
  0% { left: -60%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { left: 120%; opacity: 0; }
}
.about-block__header {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(59, 130, 246, 0.14);
  text-align: center;
}
.about-block__header .label {
  color: var(--blue);
  letter-spacing: 0.22em;
}
.about-block__header .heading {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.04em;
  margin-top: 14px;
  line-height: 1.15;
}
.about-block__mst {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 999px;
}
.about-block__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.about-block__text {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-slate);
  text-wrap: pretty;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: calc(var(--i, 0) * 0.1s + 0.15s);
}
.about-block__text.visible {
  opacity: 1;
  transform: none;
}
.about-block__text:first-child {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
}
.about-highlights {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.about-highlight {
  text-align: center;
  padding: 18px 10px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
}
.about-highlight__value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.about-highlight__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Legacy team (unused) */
.team-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.team-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
}
.team-stat span { font-size: 0.875rem; color: var(--text-slate); }

.person {
  text-align: center;
  padding: 24px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}
.person__photo {
  width: 88px; height: 88px;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-elevated);
  position: relative;
  border: 2px solid var(--border);
}
.person__photo img { width: 100%; height: 100%; object-fit: cover; }
.person__photo span {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-slate);
}
.person__photo.no-photo span { display: flex; }
.person h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.person__role { font-size: 0.875rem; color: #cbd5e1; margin: 2px 0; }
.person__dept { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.person__bio { font-size: 0.8125rem; color: var(--text-slate); line-height: 1.6; }

/* Vision */
.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}
.card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.card p, .card li { font-size: 0.9375rem; color: var(--text-slate); line-height: 1.7; }
.card li { padding: 6px 0; border-bottom: 1px solid var(--border); }

/* CTA */
.cta {
  padding: 96px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta__inner { max-width: 520px; margin: 0 auto; }
.cta__inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.cta__inner p { font-size: 1.0625rem; color: var(--text-slate); margin-bottom: 24px; }

/* Contact — split layout */
.section--contact {
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(59, 130, 246, 0.06), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(99, 102, 241, 0.05), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}
.contact-section__lead {
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-slate);
  text-wrap: pretty;
  text-align: center;
}
.contact-split {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(360px, 1.2fr);
  gap: 32px;
  align-items: start;
  margin-top: 48px;
}
.contact-split__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-card {
  padding: 20px 22px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: border-color 0.25s, box-shadow 0.25s;
  text-align: center;
}
.contact-card:hover {
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.08);
}
.contact-card__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.contact-card__value {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
  text-wrap: pretty;
  text-align: center;
}
a.contact-card__value {
  text-decoration: none;
  transition: color 0.2s;
}
a.contact-card__value:hover { color: var(--blue); }
.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.contact-social {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.contact-social:hover {
  border-color: rgba(59, 130, 246, 0.35);
  background: rgba(59, 130, 246, 0.04);
  color: var(--blue);
}

.form-card--luxury {
  padding: 40px 40px 36px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 20px 60px rgba(0, 0, 0, 0.07);
}
.form-card__header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.form-card__header h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.form-card__header p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.form-card__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.form-field {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.form-field input {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 14px 16px;
  font-size: 1rem;
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.form-field input:focus {
  background: #fff;
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}
.form-card__status {
  min-height: 1.25rem;
  margin-bottom: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}
.form-card__status--success { color: #059669; }
.form-card__status--error { color: #dc2626; }
.form-card--luxury .btn--primary {
  letter-spacing: 0.04em;
}

/* Legacy contact (fallback) */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-list dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-list dd { font-size: 1rem; color: var(--text-slate); margin-bottom: 20px; }
.contact-list a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.social-row { display: flex; gap: 14px; }
.social-row a { font-size: 0.875rem; color: var(--text-slate); text-decoration: underline; }

.form-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}
.form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}
.form-card label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-slate);
  margin-bottom: 14px;
}
.form-card input,
.form-card select,
.form-card textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  outline: none;
}
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus { border-color: var(--text-slate); }

.form-card--luxury label.form-field {
  margin-bottom: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.form-card--luxury .form-field input {
  margin-top: 10px;
  padding: 14px 16px;
  font-size: 1rem;
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}
.form-card--luxury .form-field input:focus {
  background: #fff;
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

/* Footer */
.footer--dark {
  background: #0a0a0a;
  border-top: none;
  padding-top: 56px;
  color: #ffffff;
}
.footer--dark .footer__brand p,
.footer--dark li,
.footer--dark a {
  color: rgba(255, 255, 255, 0.82);
}
.footer--dark a:hover { color: #ffffff; }
.footer--dark h4 { color: rgba(255, 255, 255, 0.5); }
.footer--dark .nav__brand { color: #ffffff; }
.footer--dark .footer__bar p { color: rgba(255, 255, 255, 0.6); }
.footer--dark .footer__legal a { color: rgba(255, 255, 255, 0.7); }
.footer--dark .footer__legal a:hover { color: #ffffff; }
.footer--dark .footer__bar { border-top-color: rgba(255, 255, 255, 0.1); }

.footer__legal {
  display: flex;
  gap: 20px;
}
.footer__legal a { font-size: 0.8125rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer__brand p { font-size: 0.875rem; color: var(--text-slate); margin-top: 12px; max-width: 260px; }
.footer h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.footer li { font-size: 0.875rem; color: var(--text-slate); padding: 3px 0; }
.footer__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding: 18px 24px;
}
.footer__bar p { font-size: 0.8125rem; color: var(--text-muted); }

/* Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-animate].visible { opacity: 1; transform: none; }
.svc-card[data-animate].visible { transform: scale(1); }
.svc-card[data-animate].visible:hover,
.svc-card[data-animate].visible.is-expanded,
.svc-card[data-animate].visible:focus-visible {
  transform: scale(1.035);
}
@media (max-width: 900px) {
  .svc-card[data-animate].visible:hover,
  .svc-card[data-animate].visible.is-expanded,
  .svc-card[data-animate].visible:focus-visible {
    transform: none;
  }
}

/* Responsive nav — tablet / zoom */
@media (max-width: 1180px) {
  :root {
    --nav-gap: clamp(6px, 0.9vw, 14px);
    --nav-link-size: clamp(0.65rem, 0.2vw + 0.58rem, 0.8125rem);
  }
  .nav__brand { max-width: 14ch; }
}

@media (max-width: 980px) {
  .nav__links--desktop,
  .nav__actions .nav__cta-desktop { display: none !important; }
  .nav__actions { display: flex; }
  .nav__toggle { display: flex; }
  .nav__brand { max-width: none; }
}

@media (min-width: 981px) {
  .nav-drawer,
  .nav-overlay { display: none !important; }
}

/* Responsive */
@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }
  .team-card { min-height: 420px; padding: 20px 12px 18px; }
  .team-card__photo { width: 108px; height: 108px; }
  .team-card__exp { font-size: 0.75rem; }
  .about-highlights { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card { min-height: 480px; }
  .pillar-cards { grid-template-rows: none; }
}
@media (max-width: 900px) {
  .hero__inner, .intro-body, .contact-layout, .contact-split { grid-template-columns: 1fr; }
  .hero__inner {
    gap: 28px;
    text-align: left;
  }
  .hero__text {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .hero__visual {
    order: 1;
    min-height: 240px;
  }
  .hero {
    padding-top: calc(var(--header-h) + 28px);
    padding-bottom: 48px;
  }
  .hero__title {
    font-size: clamp(1.65rem, 6.5vw, 2.25rem);
    line-height: 1.12;
    margin-bottom: 16px;
    max-width: 100%;
    text-align: left;
  }
  .hero__desc {
    max-width: none;
    width: 100%;
    margin-bottom: 22px;
    font-size: 0.9375rem;
    line-height: 1.75;
    padding: 0 2px;
    text-align: justify;
  }
  .hero__actions {
    width: 100%;
    justify-content: stretch;
    gap: 10px;
  }
  .hero__actions .btn {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
    justify-content: center;
    padding: 12px 14px;
    font-size: 0.875rem;
  }
  .hero-mesh {
    width: min(68vw, 260px);
    animation: none;
  }
  .hero-mesh__ring { animation: none; }

  .section-intro { margin-bottom: 36px; }
  .section-intro .subheading {
    max-width: none;
    font-size: 0.9375rem;
    line-height: 1.75;
    padding: 0 2px;
    text-align: center;
  }

  .services-track-wrap {
    margin: 0 -16px;
    padding: 0 16px;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .services-track-wrap::-webkit-scrollbar { height: 5px; }
  .services-track-wrap::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.28);
    border-radius: 999px;
  }
  .track-hint { display: block; }
  .services-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 14px;
    padding: 4px 4px 18px;
    width: max-content;
    min-width: 100%;
    overflow: visible;
    scroll-snap-type: none;
    grid-template-columns: unset;
  }
  .services-grid.has-expanded {
    scroll-snap-type: none;
  }
  .svc-card {
    flex: 0 0 min(86vw, 320px);
    scroll-snap-align: center;
    min-height: auto;
    transform: none !important;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
    z-index: 1;
  }
  .svc-card:hover,
  .svc-card.is-expanded,
  .svc-card:focus-visible {
    transform: none !important;
    box-shadow: 0 12px 36px rgba(59, 130, 246, 0.14);
    z-index: 2;
  }
  .svc-card__num {
    top: 14px;
    right: 14px;
    font-size: 2.25rem;
    color: rgba(59, 130, 246, 0.28);
  }
  .svc-card.is-expanded .svc-card__num {
    color: rgba(59, 130, 246, 0.45);
  }
  .svc-card__body { padding: 20px 18px 16px; }
  .svc-card__head { padding-right: 52px; margin-bottom: 12px; }
  .svc-card h3 {
    min-height: auto;
    font-size: 0.8125rem;
    line-height: 1.45;
  }
  .svc-card__tagline {
    min-height: auto;
    padding: 10px 12px;
    margin-bottom: 0;
    font-size: 0.8125rem;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .svc-card.is-expanded .svc-card__tagline {
    display: block;
    -webkit-line-clamp: unset;
    margin-bottom: 12px;
  }
  .svc-card__list {
    display: none;
    max-height: none;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    gap: 10px;
  }
  .svc-card.is-expanded .svc-card__list {
    display: flex;
    flex-direction: column;
    overflow: visible;
    opacity: 1;
    margin-top: 12px;
  }
  .svc-card.is-expanded {
    align-self: flex-start;
    height: auto;
  }
  .svc-card__toggle {
    display: inline-flex;
    margin-top: 14px;
  }
  .svc-card.is-expanded .svc-card__toggle {
    margin-top: 16px;
  }

  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-flow__line { display: none; }
  .process-step::before { display: none; }
  .team-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 4px 4px 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .team-grid::-webkit-scrollbar { height: 6px; }
  .team-grid::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.25);
    border-radius: 999px;
  }
  .team-card {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
    min-height: 400px;
  }
  .about-block { padding: 36px 28px; }
  .about-highlights { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__links { margin: 0; }
  .about-team { margin-top: 32px; padding-top: 28px; }
}
@media (max-width: 640px) {
  :root {
    --radius: 10px;
  }
  .container { padding: 0 16px; }

  .nav__brand { max-width: 42vw; }

  .intro-body { gap: 20px; }
  .intro-paragraph {
    font-size: 0.9375rem;
    line-height: 1.75;
    padding: 0 2px;
  }
  .pillar-cards { gap: 10px; }

  .services-grid,
  .stats-row,
  .process-grid,
  .contact-cards { gap: 12px; }
  .territory-quiz__options { grid-template-columns: 1fr 1fr; }
  .territory-quiz { min-height: auto; padding: 20px 16px; }
  .form-card--luxury { padding: 24px 18px; }
  .about-block { padding: 22px 16px; border-radius: 16px; }
  .about-block__text { font-size: 0.9375rem; line-height: 1.75; }
  .about-highlights { grid-template-columns: 1fr 1fr; gap: 10px; }
  .partner-showcase { padding: 18px 14px 14px; border-radius: 16px; }
  .partner-showcase__header { flex-direction: column; gap: 10px; }
  .partner-showcase__frame { border-radius: 12px; }
  .partner-showcase__frame-inner { border-radius: 10px; }
  .tech-tags { flex-wrap: wrap; gap: 10px; justify-content: center; }
  .tech-tag { padding: 0 10px; font-size: 0.75rem; }
  .tech-tag:not(:last-child)::after { display: none; }
  .svc-card { flex-basis: min(88vw, 300px); }
  .section { padding: 56px 0; }
  .section--hero { padding-bottom: 40px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bar { flex-direction: column; text-align: center; gap: 12px; }
  .footer__brand p { text-align: justify; }
  .contact-split { gap: 20px; }
  .contact-section__lead {
    font-size: 0.9375rem;
    line-height: 1.75;
    padding: 0 2px;
    text-align: center;
  }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { padding: 18px 16px; }
  .process-step__desc { font-size: 0.875rem; line-height: 1.7; }
  .team-card { flex-basis: min(82vw, 280px); min-height: 380px; }
  .btn { min-height: 44px; }
  .hero-mesh { width: min(64vw, 240px); }
}

/* Admin star + login modal */
.nav__admin-star {
  font-size: 1.05rem;
  line-height: 1;
  color: #cbd5e1;
  padding: 6px 8px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.nav__admin-star:hover,
.nav__admin-star.is-authed {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.12);
}
.nav__admin-star.is-authed { color: #fbbf24; }

body.nav-open,
body.modal-open { overflow: hidden; }
.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
}
.admin-modal[hidden] { display: none; }
.admin-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}
.admin-modal__box {
  position: relative;
  width: min(100%, 400px);
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(148, 163, 184, 0.25);
}
.admin-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 1.4rem;
  line-height: 1;
  color: #64748b;
}
.admin-modal__close:hover { background: #f1f5f9; color: #0f172a; }
.admin-modal__logo {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}
.admin-modal__logo img { width: 100%; height: 100%; object-fit: cover; }
.admin-modal__box h3 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: #0f172a;
  margin-bottom: 4px;
}
.admin-modal__sub {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.admin-modal__form { display: grid; gap: 12px; }
.admin-modal__error {
  min-height: 1.2em;
  font-size: 0.8125rem;
  color: #ef4444;
}
