/* ============================================================
   3i People — Enterprise Homepage
   Design tokens: brand-aligned (red/orange) + modern enterprise
   ============================================================ */
:root {
  /* Brand — modern enterprise violet */
  --brand-purple: #7C3AED;          /* primary violet (Tailwind violet-600) */
  --brand-purple-dark: #5B21B6;     /* deep violet for hover / strong (violet-800) */
  --brand-purple-light: #A78BFA;    /* lighter accent (violet-400) */
  --brand-purple-soft: #C4B5FD;     /* lightest accent (violet-300) */
  --brand-ink: #1F2125;             /* the "ipeople" text in the logo */
  /* Backwards-compat aliases — name kept, value updated to violet */
  --brand-blue: var(--brand-purple);
  --brand-blue-dark: var(--brand-purple-dark);
  --brand-blue-light: var(--brand-purple-light);
  --brand-blue-soft: var(--brand-purple-soft);
  --brand-red: var(--brand-purple);
  --brand-red-dark: var(--brand-purple-dark);
  --brand-coral: var(--brand-purple-light);
  --brand-orange: var(--brand-purple);
  --brand-orange-dark: var(--brand-purple-dark);
  --brand-gradient: #7C3AED;
  --brand-gradient-soft: rgba(124,58,237,0.08);

  /* Accent — emerald (growth / outcomes only)
     Reserved for: outcome stats, fill-rate metrics, case study results,
     "delivered" proof points. Never on primary CTAs, body text, or large surfaces. */
  --accent-emerald:        #10B981;   /* primary accent (emerald-500) */
  --accent-emerald-dark:   #047857;   /* text on light fills (emerald-700) */
  --accent-emerald-deep:   #064E3B;   /* deepest accent text (emerald-900) */
  --accent-emerald-mid:    #6EE7B7;   /* mid accent (emerald-300) */
  --accent-emerald-soft:   #D1FAE5;   /* light accent fill (emerald-100) */
  --accent-emerald-tint:   #ECFDF5;   /* lightest tint (emerald-50) */

  /* Neutrals */
  --ink-900: #0A0E1A;
  --ink-800: #1A1F2E;
  --ink-700: #2D3343;
  --ink-600: #4A5263;
  --ink-500: #6B7280;
  --ink-400: #9CA3AF;
  --ink-300: #D1D5DB;
  --ink-200: #E5E7EB;
  --ink-100: #F3F4F6;
  --ink-50:  #F9FAFB;
  --white:   #FFFFFF;

  /* Semantic */
  --bg: var(--white);
  --bg-soft: var(--ink-50);
  --bg-dark: var(--ink-900);
  --text: var(--ink-900);
  --text-muted: var(--ink-600);
  --border: var(--ink-200);

  /* Type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Sora', 'Inter', sans-serif;

  /* Layout */
  --container: 1240px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(10,14,26,0.04), 0 1px 3px rgba(10,14,26,0.06);
  --shadow: 0 4px 12px rgba(10,14,26,0.06), 0 8px 24px rgba(10,14,26,0.06);
  --shadow-lg: 0 12px 32px rgba(10,14,26,0.08), 0 24px 64px rgba(10,14,26,0.08);
  --shadow-brand: 0 8px 24px rgba(124,58,237,0.25);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin: 0; color: var(--ink-900); }
p { margin: 0; }

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

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--brand-gradient);
  color: var(--white);
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover { box-shadow: 0 12px 32px rgba(124,58,237,0.35); }
.btn-secondary {
  background: var(--ink-900);
  color: var(--white);
}
.btn-secondary:hover { background: var(--ink-800); }
.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  border: 1.5px solid var(--ink-200);
}
.btn-ghost:hover { border-color: var(--ink-900); }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-orange-dark);
  font-weight: 600;
  font-size: 15px;
}
.btn-link:hover { gap: 10px; color: var(--brand-red); }
.arrow { transition: transform .2s ease; }
.btn:hover .arrow, .btn-link:hover .arrow { transform: translateX(3px); }

/* ============================================================
   Top bar
   ============================================================ */
.topbar {
  background: var(--ink-900);
  color: var(--white);
  font-size: 13px;
  padding: 10px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: var(--white); opacity: .85; transition: opacity .2s; }
.topbar a:hover { opacity: 1; }
.topbar .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124,58,237,0.15);
  color: #C4B5FD;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.topbar-links { display: flex; gap: 22px; align-items: center; }
.topbar-links a { display: inline-flex; align-items: center; gap: 6px; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgba(10,14,26,0.02), 0 8px 20px rgba(10,14,26,0.04);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
/* Logo — uses the official 3ipeople wordmark image
   The red "3" is shifted to LinkedIn blue via CSS filter.
   Dark "ipeople" text stays nearly unchanged because hue-rotate has minimal effect on near-black colors. */
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  /* Prevent flex shrink from collapsing the logo on narrow viewports */
  flex-shrink: 0;
  min-width: 0;
}
.logo img {
  height: 40px;
  width: auto;
  max-width: 100%;
  display: block;
  /* Ensure the image is always visible — guard against inherited rules that could hide it */
  visibility: visible;
  opacity: 1;
  /* Recolor red → modern violet (#7C3AED) and deepen the gray "ipeople" text */
  filter: hue-rotate(262deg) saturate(1.55) brightness(0.82) contrast(1.45);
}
.nav .logo {
  /* Logo must never be hidden on mobile — the menu toggle sits to its right */
  flex-shrink: 0;
}
.nav .logo img { height: 38px; }
.footer .logo img {
  height: 42px;
  /* On the dark footer, render the wordmark in white — overrides the blue filter */
  filter: brightness(0) invert(1);
}
.mobile-menu .logo img { height: 36px; }

/* Mobile / responsive — explicitly keep the logo visible across all breakpoints */
@media (max-width: 720px) {
  .nav .logo { display: inline-flex !important; }
  .nav .logo img {
    height: 34px;
    max-height: 34px;
    width: auto;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .mobile-menu .logo img { height: 32px; }
}
@media (max-width: 380px) {
  .nav .logo img { height: 30px; max-height: 30px; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a, .nav-links .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-700);
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links .nav-trigger:hover { color: var(--ink-900); background: var(--ink-50); }
.nav-links a.nav-ai {
  color: var(--brand-red-dark);
  font-weight: 600;
  background: rgba(124,58,237,0.04);
  border: 1px solid rgba(124,58,237,0.18);
}
.nav-links a.nav-ai:hover {
  color: var(--white);
  background: var(--brand-gradient);
  border-color: transparent;
}
.nav-links .ai-flag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--brand-gradient);
  color: var(--white);
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: 4px;
}
.nav-links a.nav-ai:hover .ai-flag { background: var(--white); color: var(--brand-red-dark); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-cta .btn { padding: 10px 18px; font-size: 14px; }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown .nav-trigger::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 4px;
  transition: transform .2s;
}
.has-dropdown:hover .nav-trigger::after { transform: rotate(225deg) translateY(2px); }
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px !important;
  border-radius: 8px;
}
.dropdown a strong { color: var(--ink-900); font-weight: 600; font-size: 14px; }
.dropdown a span { color: var(--ink-500); font-size: 13px; font-weight: 400; }

/* Mobile nav toggle */
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--ink-50);
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  width: 18px; height: 2px;
  background: var(--ink-900);
  position: relative;
  border-radius: 2px;
  transition: transform .2s;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: ''; position: absolute; left: 0; right: 0;
  height: 2px; background: var(--ink-900); border-radius: 2px;
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 96px 0 56px;
  overflow: hidden;
  background:
    rgba(124,58,237,0.02),
    var(--white);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,14,26,0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,14,26,0.014) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.eyebrow .dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 700;
}
.hero h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  margin-bottom: 24px;
}
.hero h1 .accent {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; margin-bottom: 48px; }
.hero .hero-cta .btn { padding-top: 14px; padding-bottom: 14px; padding-left: 22px; padding-right: 22px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero-meta-item { display: flex; flex-direction: column; }
.hero-meta-item strong {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--ink-900);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero-meta-item span { font-size: 13px; color: var(--ink-500); }

/* Hero visual: Mocked dashboard card */
.hero-visual {
  position: relative;
  perspective: 2000px;
}
.dash-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  transform: rotateY(-3deg) rotateX(2deg);
  transition: transform .4s ease;
}
.dash-card:hover { transform: rotateY(0) rotateX(0); }
.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.dash-head h4 { font-size: 14px; font-weight: 600; color: var(--ink-700); font-family: var(--font-sans); }
.dash-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(34,197,94,0.12);
  color: #15803D;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.dash-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
}
.candidate-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 8px;
  background: var(--white);
  transition: border-color .2s, transform .2s;
}
.candidate-row:hover { border-color: var(--brand-orange); transform: translateX(2px); }
.avatar {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
}
.avatar.a { background: #7C3AED; }
.avatar.b { background: #3B82F6; }
.avatar.c { background: #14B8A6; }
.avatar.d { background: #A78BFA; }
.candidate-info { display: flex; flex-direction: column; gap: 2px; }
.candidate-info strong { font-size: 13px; color: var(--ink-900); font-weight: 600; }
.candidate-info span { font-size: 12px; color: var(--ink-500); }
.match-score { display: flex; flex-direction: column; align-items: flex-end; }
.match-bar {
  width: 70px; height: 6px;
  border-radius: 999px;
  background: var(--ink-100);
  overflow: hidden;
  position: relative;
}
.match-bar > i {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--brand-gradient);
  border-radius: 999px;
}
.match-pct { font-size: 11px; font-weight: 700; color: var(--ink-700); margin-bottom: 4px; }

.dash-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-size: 12px;
  color: var(--ink-500);
}
.dash-foot strong { color: var(--ink-900); font-weight: 600; }

/* Floating badges around hero card */
.float-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  animation: float 6s ease-in-out infinite;
}
.float-badge strong { font-weight: 700; color: var(--ink-900); display: block; font-size: 15px; }
.float-badge span { color: var(--ink-500); font-size: 12px; }
.float-badge .icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--brand-gradient-soft);
  color: var(--brand-orange-dark);
}
.float-badge.bl { left: -28px; bottom: 36px; animation-delay: -2s; }
.float-badge.tr { right: -20px; top: 36px; animation-delay: -4s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================================
   Trust bar (logos)
   ============================================================ */
.trust {
  padding: 32px 0 56px;
  border-bottom: 1px solid var(--border);
}
.trust.trust--hero-attached { margin-top: -16px; }
.trust.trust--hero-attached .trust-label { margin-bottom: 20px; }
.trust-label {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
  margin-bottom: 24px;
}
.trust-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 36px;
  align-items: center;
  justify-items: center;
  opacity: .85;
}
.client-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink-500);
  letter-spacing: -0.01em;
  filter: grayscale(1);
  transition: color .2s, filter .2s, transform .2s;
}
.client-logo:hover { color: var(--ink-900); filter: none; transform: translateY(-2px); }
.client-logo.italic { font-style: italic; }
.client-logo.script { font-family: 'Sora'; }

/* ============================================================
   Section primitives
   ============================================================ */
section { padding: 96px 0; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { margin: 0 auto 18px; }
.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}
.section-head p {
  font-size: 18px;
  color: var(--text-muted);
}

/* ============================================================
   Value Pillars
   ============================================================ */
.pillars { background: var(--bg-soft); }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.pillar::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.pillar:hover::before { transform: scaleX(1); }
.pillar .ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--brand-gradient-soft);
  display: grid; place-items: center;
  color: var(--brand-red);
  margin-bottom: 22px;
}
.pillar h3 { font-size: 22px; margin-bottom: 10px; }
.pillar p { color: var(--text-muted); font-size: 15px; }

/* ============================================================
   Services
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card .tag {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-red);
  background: var(--brand-gradient-soft);
  padding: 6px 12px;
  border-radius: 999px;
}
.service-card h3 { font-size: 24px; }
.service-card p { color: var(--text-muted); font-size: 15px; }
.service-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card li {
  font-size: 14px;
  color: var(--ink-700);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.service-card li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(16,185,129,0.12);
  color: var(--accent-emerald);
  display: inline-block;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2310B981' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='3.5 8.5 6.5 11 12.5 5'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
}
.service-card .btn-link { margin-top: auto; }

/* ============================================================
   Solutions section (dark)
   ============================================================ */
.solutions {
  background: var(--ink-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.solutions::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(124,58,237,0.08);
  pointer-events: none;
}
.solutions .section-head h2 { color: var(--white); }
.solutions .section-head p { color: rgba(255,255,255,0.72); }
.solutions .eyebrow {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
}
.solution {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: background .25s, border-color .25s, transform .25s;
}
.solution:hover { background: rgba(255,255,255,0.06); border-color: rgba(124,58,237,0.4); transform: translateY(-3px); }
.solution-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.solution-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--brand-gradient);
  display: grid; place-items: center;
  color: var(--white);
}
.solution h3 { color: var(--white); font-size: 22px; }
.solution p { color: rgba(255,255,255,0.72); font-size: 15px; margin-bottom: 18px; }
.solution-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.solution-tags span {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
}

/* ============================================================
   Process
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 50px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--ink-300) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}
.process-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: grid; place-items: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--ink-900);
  box-shadow: var(--shadow-sm);
  transition: background .25s, color .25s, border-color .25s;
}
.process-step:hover .process-num {
  background: var(--brand-gradient);
  color: var(--white);
  border-color: transparent;
}
.process-step h3 { font-size: 20px; margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 15px; }

/* ============================================================
   Stats (full-bleed)
   ============================================================ */
.stats {
  background: var(--bg-soft);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat {
  padding: 24px 16px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: var(--text-muted); font-size: 14px; font-weight: 500; }

/* ============================================================
   Emerald accent — outcome / delivery numbers only
   ============================================================ */
/* Recolor a .stat-num gradient to emerald when the stat encodes a result */
.stat--outcome .stat-num {
  background: linear-gradient(135deg, #6EE7B7 0%, #10B981 55%, #047857 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Inline emerald number — for prose with embedded metrics */
.accent-num {
  color: var(--accent-emerald-dark);
  font-weight: 700;
}
/* Outcome pill — for "delivered / fill rate / result" badges */
.accent-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-emerald-soft);
  color: var(--accent-emerald-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.accent-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-emerald);
}
/* Outcome link — inline link styled in emerald instead of violet */
.accent-link {
  color: var(--accent-emerald-dark);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.accent-link:hover { border-color: var(--accent-emerald-dark); }
/* Outcome divider/keyline — subtle horizontal accent above metric blocks */
.accent-rule {
  display: block;
  width: 32px;
  height: 3px;
  background: var(--accent-emerald);
  border-radius: 2px;
  margin: 0 auto 12px;
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: box-shadow .25s, transform .25s;
}
.testimonial:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.testimonial-quote {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-800);
  margin-bottom: 24px;
  font-weight: 500;
}
.testimonial::before {
  content: '“';
  position: absolute;
  top: 8px; right: 24px;
  font-family: 'Sora';
  font-size: 100px;
  line-height: 1;
  color: var(--brand-orange);
  opacity: .12;
}
.testimonial-author {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-gradient);
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}
.testimonial-meta strong { display: block; font-size: 15px; color: var(--ink-900); font-weight: 600; }
.testimonial-meta span { font-size: 13px; color: var(--ink-500); }

/* ============================================================
   Industries
   ============================================================ */
.industries { background: var(--bg-soft); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.industry-chip {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 18px 14px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-800);
  transition: border-color .2s, transform .2s, color .2s;
  cursor: default;
}
.industry-chip:hover { border-color: var(--brand-orange); color: var(--brand-red); transform: translateY(-2px); }
.industry-chip svg { color: var(--brand-orange); flex-shrink: 0; }

/* ============================================================
   CTA Band
   ============================================================ */
.cta-band {
  padding: 96px 0;
  background: #7C3AED;
  background-blend-mode: normal;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 50% 60% at 50% 50%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 50% 60% at 50% 50%, #000, transparent 80%);
}
.cta-band .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta-band h2 { color: var(--white); font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 18px; max-width: 600px; }
.cta-band p { color: rgba(255,255,255,0.88); font-size: 16px; line-height: 1.65; margin-bottom: 16px; max-width: 560px; }
.cta-band .cta-lead {
  color: var(--white);
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  max-width: 600px;
}
.cta-band .hero-cta { margin-top: 12px; }
.cta-band .btn-primary { background: var(--white); color: var(--ink-900); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.cta-band .btn-primary:hover { background: var(--ink-50); }
.cta-band .btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.cta-band .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.cta-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
}
.cta-card h4 { color: var(--white); font-size: 18px; font-family: var(--font-sans); font-weight: 600; margin-bottom: 16px; }
.cta-card .check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  margin-bottom: 12px;
}
.cta-card .check svg { flex-shrink: 0; margin-top: 2px; color: var(--accent-emerald-mid); }
.cta-card-note {
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 13px;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: none;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--ink-900);
  color: rgba(255,255,255,0.72);
  padding: 80px 0 32px;
}
.footer .container { padding: 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer h5 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: rgba(255,255,255,0.72); transition: color .2s; font-size: 14px; }
.footer a:hover { color: var(--white); }
.footer .brand-block .logo { color: var(--white); margin-bottom: 16px; }
.footer .brand-block p { font-size: 14px; line-height: 1.7; max-width: 340px; margin-bottom: 20px; }
.footer .address { font-size: 14px; line-height: 1.7; }
.footer .address strong { color: var(--white); display: block; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; font-weight: 700; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer-bottom .links { display: flex; gap: 20px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display: grid; place-items: center;
  color: var(--white);
  transition: background .2s, border-color .2s, transform .2s;
}
.socials a:hover { background: var(--brand-gradient); border-color: transparent; transform: translateY(-2px); }

/* ============================================================
   AI Solutions feature section (prominent)
   ============================================================ */
.ai-feature {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    rgba(124,58,237,0.05),
    var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ai-feature::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,14,26,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,14,26,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 80%);
  pointer-events: none;
}
.ai-feature .container { position: relative; }
.ai-feature-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.ai-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-red-dark);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.ai-eyebrow .badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: var(--white);
}
.ai-feature h2 {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 24px;
  letter-spacing: -0.025em;
}
.ai-feature h2 .accent {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ai-feature p.lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 560px;
}
.ai-caps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}
.ai-cap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 18px 18px 56px;
  position: relative;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.ai-cap:hover { border-color: var(--brand-coral); transform: translateY(-2px); box-shadow: var(--shadow); }
.ai-cap .cap-ico {
  position: absolute; left: 14px; top: 16px;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--brand-gradient-soft);
  color: var(--brand-red-dark);
  display: grid; place-items: center;
}
.ai-cap h4 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-900);
  margin: 0 0 4px;
  line-height: 1.3;
}
.ai-cap p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.ai-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* AI Console mockup (right column) */
.ai-console {
  position: relative;
  background: #1A1F2E;
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.ai-console::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--brand-gradient);
}
.ai-console::after {
  content: '';
  position: absolute; right: -120px; bottom: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(124,58,237,0.08);
  pointer-events: none;
}
.ai-console-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
  position: relative;
}
.ai-console-head .ai-title { display: flex; flex-direction: column; gap: 2px; }
.ai-console-head h4 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}
.ai-console-head .sub { font-size: 12px; color: rgba(255,255,255,0.55); }
.ai-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(34,197,94,0.18);
  color: #6EE7A0;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.ai-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .55; } }

.ai-agent {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 8px;
  position: relative;
  transition: border-color .25s, background .25s;
}
.ai-agent:hover { border-color: rgba(167,139,250,0.5); background: rgba(255,255,255,0.06); }
.ai-agent-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--brand-gradient);
  display: grid; place-items: center;
  color: var(--white);
  flex-shrink: 0;
}
.ai-agent-info { display: flex; flex-direction: column; gap: 2px; }
.ai-agent-info strong { font-size: 13px; color: var(--white); font-weight: 600; }
.ai-agent-info span { font-size: 11px; color: rgba(255,255,255,0.55); }
.ai-agent-status { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.ai-agent-status .stat-pill {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ai-agent-status .stat-pill.run { background: rgba(34,197,94,0.18); color: #6EE7A0; }
.ai-agent-status .stat-pill.idle { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.ai-agent-status .stat-pill.queue { background: rgba(124,58,237,0.18); color: #C4B5FD; }
.ai-agent-status .impact { font-size: 11px; color: rgba(255,255,255,0.7); font-weight: 500; }

.ai-console-foot {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255,255,255,0.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
}
.ai-foot-stat .num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  background: #A78BFA;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.ai-foot-stat .lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* AI metric strip */
.ai-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.ai-metric { text-align: center; }
.ai-metric .n {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}
.ai-metric .l { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* Featured solution card override (existing solutions section) */
.solution.featured {
  grid-column: 1 / -1;
  background: rgba(167,139,250,0.08);
  border: 1px solid rgba(167,139,250,0.35);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
}
.solution.featured .solution-head { margin-bottom: 0; }
.solution.featured h3 { font-size: 24px; }
.solution.featured p { margin-bottom: 0; max-width: 520px; }
.solution.featured .feat-flag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--brand-gradient);
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: 8px;
}
.solution.featured .feat-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--brand-gradient);
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
}
.solution.featured .feat-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(124,58,237,0.4); }

@media (max-width: 1024px) {
  .ai-feature-grid { grid-template-columns: 1fr; gap: 48px; }
  .ai-console { max-width: 540px; margin: 0 auto; }
  .solution.featured { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
  .solution.featured .solution-head { margin-bottom: 8px; }
}
@media (max-width: 720px) {
  .ai-feature { padding: 80px 0; }
  .ai-caps { grid-template-columns: 1fr; }
  .ai-metrics { grid-template-columns: 1fr 1fr; }
  .ai-console-foot { grid-template-columns: 1fr 1fr 1fr; }
}

/* ============================================================
   Brand strip (full-width banner reinforcement)
   ============================================================ */
.brand-strip {
  position: relative;
  padding: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.brand-strip-inner {
  position: relative;
  width: 100%;
  /* Maintain banner aspect ratio (~6.7:1) but cap height for large screens */
  aspect-ratio: 1133 / 168;
  max-height: 240px;
  background: var(--white);
}
.brand-strip-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Fallback shown if the image is missing/broken */
.brand-strip-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--ink-500);
  font-size: 14px;
  background: #F9FAFB;
}
.brand-strip-fallback .marker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--ink-700);
}
.brand-strip-fallback code {
  background: var(--ink-50);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--ink-700);
}

/* ============================================================
   Service card images
   ============================================================ */
.service-card { padding: 0; overflow: hidden; }
.service-card .card-body { padding: 28px 32px 32px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.service-img {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #F3E8FF;
  overflow: hidden;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.service-card:hover .service-img img { transform: scale(1.04); }
.service-img::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10,14,26,0.35);
  pointer-events: none;
}
.service-img-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: #7C3AED;
}
.service-img-fallback svg { opacity: 0.5; }

/* ============================================================
   Our Story (Founder + Third Eye) section
   ============================================================ */
.story-section {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.story-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(124,58,237,0.02);
  pointer-events: none;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.story-img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #F3E8FF;
}
.story-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.story-img-wrap:hover img { transform: scale(1.04); }
.story-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,14,26,0.55);
  pointer-events: none;
  z-index: 1;
}
.story-img-fallback {
  position: absolute; inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: #7C3AED;
}
.story-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}
.story-badge .ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--brand-gradient);
  display: grid; place-items: center;
  color: var(--white);
}
.story-badge .meta strong { display: block; font-size: 14px; color: var(--ink-900); font-weight: 700; }
.story-badge .meta span { font-size: 12px; color: var(--ink-500); }

.third-eye-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink-900);
  border-left: 4px solid var(--brand-purple);
  padding: 4px 0 4px 24px;
  margin: 28px 0 28px;
  letter-spacing: -0.01em;
}
.story-section h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 20px; }
.story-section p.story-lead { font-size: 17px; color: var(--text-muted); margin-bottom: 18px; line-height: 1.7; }
.story-meta {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.story-meta .item strong {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink-900);
  display: block;
  letter-spacing: -0.02em;
  background: var(--brand-gradient);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.story-meta .item span { font-size: 13px; color: var(--ink-500); }

/* ============================================================
   Client Spotlight section
   ============================================================ */
.spotlight-section {
  padding: 120px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.spotlight-grid.three {
  grid-template-columns: 1fr 1fr 1fr;
}
.spotlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.spotlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.spotlight-img {
  position: relative;
  aspect-ratio: 16 / 7;
  background: #7C3AED;
  overflow: hidden;
}
.spotlight-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.spotlight-img::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(124,58,237,0.55);
  mix-blend-mode: multiply;
}
.spotlight-img .label {
  position: absolute;
  top: 18px; left: 20px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 5px 11px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.spotlight-img .name {
  position: absolute;
  bottom: 20px; left: 20px;
  right: 20px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.spotlight-body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.spotlight-body ul {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.spotlight-body li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-700);
}
.spotlight-body li svg {
  flex-shrink: 0;
  color: var(--brand-purple);
}
.spotlight-body li strong { color: var(--ink-900); font-weight: 600; }

.spotlight-results {
  margin-top: 56px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.spotlight-results .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink-900);
  line-height: 1.3;
  letter-spacing: -0.01em;
  max-width: 220px;
}
.spotlight-results .label span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-purple-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.spotlight-results .metric { text-align: center; border-left: 1px solid var(--border); padding-left: 24px; }
.spotlight-results .metric .num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--brand-gradient);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 4px;
}
.spotlight-results .metric .l { font-size: 13px; color: var(--text-muted); }

@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-img-wrap { aspect-ratio: 16 / 10; max-width: 600px; margin: 0 auto; }
  .spotlight-grid { grid-template-columns: 1fr; }
  .spotlight-grid.three { grid-template-columns: 1fr; }
  .spotlight-results { grid-template-columns: 1fr 1fr 1fr; row-gap: 24px; }
  .spotlight-results .label { grid-column: span 3; max-width: none; text-align: center; }
  .spotlight-results .metric:first-of-type { border-left: none; padding-left: 0; }
}
@media (max-width: 720px) {
  .story-section, .spotlight-section { padding: 80px 0; }
  .spotlight-results { grid-template-columns: 1fr; padding: 24px; }
  .spotlight-results .label { grid-column: 1; }
  .spotlight-results .metric { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 16px; }
  .spotlight-results .metric:first-of-type { border-top: none; padding-top: 0; }
}

/* Hero accent: subtle people-collage band */
.hero-people-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  max-width: 480px;
}
.hero-people-strip .pp {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #F3E8FF;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.brand-strip-caption {
  text-align: center;
  padding: 24px 24px 0;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
}
@media (max-width: 720px) {
  .brand-strip-inner { aspect-ratio: 5 / 2; max-height: 280px; }
}

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 540px; margin: 0 auto; }
  .pillar-grid, .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-grid > *:nth-child(4), .footer-grid > *:nth-child(5) { grid-column: span 1; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-logos { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .cta-band .container { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
}
@media (max-width: 720px) {
  section { padding: 72px 0; }
  /* On mobile, hide the desktop nav links AND all nav CTAs so the hamburger menu has room.
     Both CTAs (Job Seekers + Schedule a Discovery Call) live in the mobile drawer instead. */
  .nav-links, .nav-cta .btn-ghost, .nav-cta .btn-primary, .topbar-links { display: none !important; }
  .menu-toggle { display: inline-flex !important; }
  .hero { padding: 64px 0 56px; }
  .hero h1 { font-size: 38px; }
  .hero-meta { gap: 18px; }
  .hero-meta-item strong { font-size: 22px; }
  .pillar-grid, .services-grid, .solutions-grid, .testimonials-grid, .process-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat { border-right: none; padding: 16px 8px; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer .brand-block { grid-column: span 2; }
  .float-badge.bl { left: 0; bottom: -20px; }
  .float-badge.tr { right: 0; top: -20px; }
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  padding: 24px;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mobile-menu .close {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--ink-50);
  display: grid; place-items: center;
  font-size: 24px;
  color: var(--ink-900);
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 16px;
  color: var(--ink-800);
  font-weight: 500;
}
.mobile-menu a:hover { background: var(--ink-50); }
.mobile-menu .group { padding: 8px 16px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-500); font-weight: 700; }
.mobile-menu .btn { margin-top: 16px; justify-content: center; }
/* ============================================================
   IMAGE PATTERNS (added pages enhancement)
   ============================================================ */

/* Pillar card with image header */
.pillar.has-img { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.pillar.has-img .pillar-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #F3E8FF;
}
.pillar.has-img .pillar-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.pillar.has-img:hover .pillar-img img { transform: scale(1.04); }
.pillar.has-img .pillar-body { padding: 26px 28px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pillar.has-img:hover { transform: translateY(-4px); }
.pillar.has-img .pillar-tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-purple-dark);
  background: var(--brand-gradient-soft);
  padding: 4px 10px;
  border-radius: 999px;
}
.pillar.has-img h3 { font-size: 20px; }
.pillar.has-img p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* Wide banner break (with optional overlay quote) */
.banner-break {
  position: relative;
  aspect-ratio: 20 / 5;
  max-height: 320px;
  overflow: hidden;
  background: #7C3AED;
  margin: 0;
}
.banner-break img { width: 100%; height: 100%; object-fit: cover; display: block; }
.banner-break::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(124,58,237,0.50);
  mix-blend-mode: multiply;
}
.banner-break .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
  padding: 32px 24px;
}
.banner-break .overlay h3 {
  color: var(--white);
  font-size: clamp(20px, 2.6vw, 36px);
  font-weight: 700;
  font-family: var(--font-display);
  max-width: 880px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
  margin: 0;
  line-height: 1.25;
}
.banner-break .overlay p {
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 14px;
}
@media (max-width: 720px) { .banner-break { aspect-ratio: 5 / 3; } }

/* Office card with image header */
.office-card { padding: 0 !important; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--white); transition: transform .25s, box-shadow .25s; }
.office-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.office-card .office-img {
  position: relative;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  background: #F3E8FF;
}
.office-card .office-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.office-card:hover .office-img img { transform: scale(1.04); }
.office-card .office-img::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10,14,26,0.35);
}
.office-card .office-img .city-tag {
  position: absolute;
  bottom: 16px; left: 18px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 5px 11px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.office-card .office-body { padding: 24px 26px 28px; }
.office-card .office-body h4 { font-family: var(--font-sans); font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-purple-dark); margin: 0 0 4px; }
.office-card .office-body strong.city { font-size: 18px; color: var(--ink-900); display: block; margin-bottom: 12px; }
.office-card .office-body p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ============================================================
   Inner-page hero — two-column with right-side visual
   ============================================================ */
.hero-2col {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-2col .hero-content { max-width: 600px; }
.hero-2col .hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #F3E8FF;
  box-shadow: var(--shadow-lg);
}
.hero-2col .hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.hero-2col .hero-visual:hover img { transform: scale(1.04); }
.hero-2col .hero-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10,14,26,0.45);
  pointer-events: none;
  z-index: 1;
}
.hero-2col .hero-visual-fallback {
  position: absolute; inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: #7C3AED;
}
.hero-2col .hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  padding: 16px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
}
.hero-2col .hero-badge .ico {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--brand-gradient);
  display: grid; place-items: center;
  color: var(--white);
  flex-shrink: 0;
}
.hero-2col .hero-badge .meta strong {
  display: block;
  font-size: 15px;
  color: var(--ink-900);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-family: var(--font-display);
}
.hero-2col .hero-badge .meta span { font-size: 12px; color: var(--ink-500); }

@media (max-width: 1024px) {
  .hero-2col { grid-template-columns: 1fr; gap: 48px; }
  .hero-2col .hero-visual { aspect-ratio: 16 / 10; max-width: 600px; margin: 0 auto; }
}
@media (max-width: 720px) {
  .hero-2col .hero-visual { aspect-ratio: 5 / 4; }
}

/* ============================================================
   Sticky "Schedule a call" CTA (floating, mobile-friendly)
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--brand-gradient);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(124,58,237,0.35), 0 4px 12px rgba(10,14,26,0.12);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, box-shadow .25s ease;
}
.sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta:hover { box-shadow: 0 16px 40px rgba(124,58,237,0.45); transform: translateY(-2px); }
.sticky-cta svg { flex-shrink: 0; }
@media (max-width: 720px) {
  .sticky-cta { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 13px; }
}
@media (max-width: 380px) {
  .sticky-cta .label { display: none; }
  .sticky-cta { padding: 14px; }
}

/* ============================================================
   Long-form policy pages
   ============================================================ */
.policy {
  padding: 80px 0 96px;
  background: var(--white);
}
.policy-shell {
  max-width: 760px;
  margin: 0 auto;
}
.policy-shell h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.policy-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--brand-gradient-soft);
  color: var(--brand-purple-dark);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.policy-shell h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 12px;
  letter-spacing: -0.01em;
}
.policy-shell h3 { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin: 24px 0 8px; }
.policy-shell p { color: var(--ink-700); font-size: 16px; line-height: 1.75; margin: 0 0 14px; }
.policy-shell ul { color: var(--ink-700); font-size: 16px; line-height: 1.75; margin: 0 0 14px; padding-left: 22px; }
.policy-shell li { margin-bottom: 8px; }
.policy-shell strong { color: var(--ink-900); font-weight: 600; }
.policy-shell a { color: var(--brand-purple-dark); text-decoration: underline; }
.policy-toc {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 24px 0 40px;
}
.policy-toc h3 { font-family: var(--font-sans); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-500); margin: 0 0 12px; }
.policy-toc ol { margin: 0; padding-left: 20px; }
.policy-toc li { margin-bottom: 4px; font-size: 14px; }
.policy-toc a { color: var(--brand-purple-dark); text-decoration: none; }
.policy-toc a:hover { text-decoration: underline; }

/* ============================================================
   404 page
   ============================================================ */
.notfound {
  padding: 120px 0;
  background: var(--white);
  text-align: center;
}
.notfound .big {
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 12px;
}
.notfound h1 { font-size: clamp(28px, 3.4vw, 40px); margin: 0 0 14px; letter-spacing: -0.02em; }
.notfound p { color: var(--text-muted); font-size: 18px; margin: 0 auto 32px; max-width: 540px; }
.notfound .cta { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 56px; }
.notfound-quicklinks {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.notfound-quicklinks a {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-800);
  text-decoration: none;
  transition: border-color .2s, transform .2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.notfound-quicklinks a:hover { border-color: var(--brand-purple); transform: translateY(-2px); }
.notfound-quicklinks a svg { color: var(--brand-purple); flex-shrink: 0; }
@media (max-width: 720px) {
  .notfound-quicklinks { grid-template-columns: 1fr; }
}

/* ============================================================
   Leap Tiger interactive demo
   ============================================================ */
.lt-demo {
  padding: 96px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lt-demo-shell {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.lt-demo-tabs {
  display: flex;
  gap: 4px;
  background: var(--ink-50);
  border-bottom: 1px solid var(--border);
  padding: 8px;
  overflow-x: auto;
}
.lt-tab {
  flex-shrink: 0;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .15s, color .15s;
  background: transparent;
  border: none;
  font-family: inherit;
}
.lt-tab:hover { color: var(--ink-900); background: var(--white); }
.lt-tab.active { background: var(--white); color: var(--brand-purple-dark); box-shadow: var(--shadow-sm); }
.lt-tab .step-num {
  display: inline-grid;
  place-items: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}
.lt-tab.active .step-num { background: var(--brand-gradient); }
.lt-panels { padding: 32px; min-height: 480px; }
.lt-panel { display: none; }
.lt-panel.active { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.lt-panel-info h3 { font-size: 24px; margin-bottom: 12px; letter-spacing: -0.01em; }
.lt-panel-info p { color: var(--text-muted); font-size: 15px; line-height: 1.65; margin-bottom: 18px; }
.lt-panel-info ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.lt-panel-info li { display: flex; gap: 10px; font-size: 14px; color: var(--ink-700); align-items: flex-start; }
.lt-panel-info li svg { color: var(--brand-purple); flex-shrink: 0; margin-top: 2px; }

.lt-mock {
  background: #1A1F2E;
  border-radius: 14px;
  padding: 22px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.lt-mock::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--brand-gradient);
}
.lt-mock-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
}
.lt-mock-head h4 { font-family: var(--font-sans); font-size: 13px; font-weight: 600; color: var(--white); margin: 0; }
.lt-mock-head .sub { font-size: 11px; color: rgba(255,255,255,0.55); }
.lt-mock-pill { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 999px; background: rgba(124,58,237,0.25); color: #C4B5FD; letter-spacing: 0.06em; text-transform: uppercase; }

.lt-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px;
}
.lt-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}
.lt-input strong { display: block; font-size: 9px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: 3px; }
.lt-input.full { grid-column: 1 / -1; }

.lt-score-row {
  display: grid; grid-template-columns: 28px 1fr 50px; gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 6px;
  font-size: 12px;
}
.lt-score-row .lbl { color: rgba(255,255,255,0.85); }
.lt-score-row .lbl strong { color: var(--white); font-weight: 600; display: block; font-size: 12px; }
.lt-score-row .lbl span { color: rgba(255,255,255,0.5); font-size: 10px; }
.lt-score-row .num { font-weight: 700; color: #C4B5FD; font-size: 13px; text-align: right; }
.lt-score-bar {
  height: 4px; border-radius: 999px;
  background: rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.lt-score-bar i { position: absolute; left: 0; top: 0; bottom: 0; background: var(--brand-gradient); border-radius: 999px; }
.lt-avatar {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--white);
  font-weight: 700;
  font-size: 11px;
  background: var(--brand-gradient);
}

.lt-step {
  display: flex;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.lt-step .ico {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(124,58,237,0.25);
  display: grid; place-items: center;
  color: #C4B5FD;
  flex-shrink: 0;
}
.lt-step .body strong { font-size: 12px; color: var(--white); display: block; font-weight: 600; }
.lt-step .body span { font-size: 11px; color: rgba(255,255,255,0.55); }
.lt-step.done .ico { background: rgba(34,197,94,0.18); color: #6EE7A0; }

/* Video / demo placeholder */
.lt-video-placeholder {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.lt-video-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ink-900), var(--brand-purple-dark));
  cursor: pointer;
  transition: transform .25s;
}
.lt-video-frame:hover { transform: scale(1.02); }
.lt-video-frame img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.55; }
.lt-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.lt-play .circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  transition: transform .2s;
}
.lt-video-frame:hover .lt-play .circle { transform: scale(1.08); }
.lt-play .circle svg { color: var(--brand-purple-dark); margin-left: 4px; }

.lt-video-meta { display: flex; flex-direction: column; gap: 14px; }
.lt-video-meta span.eyebrow { align-self: flex-start; }
.lt-video-meta h3 { font-size: clamp(22px, 2.4vw, 28px); margin: 0; letter-spacing: -0.01em; }
.lt-video-meta p { color: var(--text-muted); font-size: 15px; line-height: 1.65; margin: 0; }
.lt-video-stats { display: flex; gap: 24px; padding-top: 10px; }
.lt-video-stats div strong { font-family: var(--font-display); font-size: 22px; color: var(--ink-900); display: block; letter-spacing: -0.02em; }
.lt-video-stats div span { font-size: 12px; color: var(--ink-500); }

@media (max-width: 1024px) {
  .lt-panel.active { grid-template-columns: 1fr; }
  .lt-video-placeholder { grid-template-columns: 1fr; padding: 28px; }
}
@media (max-width: 720px) {
  .lt-panels { padding: 20px; min-height: auto; }
  .lt-tab { padding: 8px 12px; font-size: 12px; }
  .lt-tab .step-num { width: 18px; height: 18px; font-size: 10px; }
}

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq-shell {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: flex-start;
}
.faq-toc {
  position: sticky;
  top: 96px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.faq-toc h3 { font-family: var(--font-sans); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-500); margin: 0 0 14px; }
.faq-toc ol { list-style: none; padding: 0; margin: 0; counter-reset: toc; display: flex; flex-direction: column; gap: 6px; }
.faq-toc li { counter-increment: toc; }
.faq-toc a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink-700);
  text-decoration: none;
  font-weight: 500;
  transition: background .15s, color .15s;
}
.faq-toc a:hover { background: var(--white); color: var(--ink-900); }
.faq-toc a::before { content: counter(toc); width: 22px; height: 22px; border-radius: 50%; background: var(--brand-gradient-soft); color: var(--brand-purple-dark); display: grid; place-items: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }

.faq-group { margin-bottom: 56px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.faq-group-sub { color: var(--text-muted); font-size: 15px; margin: 0 0 24px; }

details.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  transition: border-color .2s, box-shadow .2s;
}
details.faq-item[open] { border-color: var(--brand-purple); box-shadow: var(--shadow); }
details.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-900);
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '';
  width: 22px; height: 22px;
  background: var(--brand-gradient-soft);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: transform .25s;
}
details.faq-item summary::before {
  content: '+';
  position: absolute;
  right: 30px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--brand-purple-dark);
  transition: transform .25s;
  pointer-events: none;
  width: 22px;
  text-align: center;
}
details.faq-item[open] summary::before { content: '−'; }
details.faq-item .answer { padding: 0 24px 22px; color: var(--ink-700); font-size: 15px; line-height: 1.7; }
details.faq-item .answer p { margin: 0 0 10px; }
details.faq-item .answer p:last-child { margin-bottom: 0; }
details.faq-item .answer a { color: var(--brand-purple-dark); }

@media (max-width: 1024px) {
  .faq-shell { grid-template-columns: 1fr; }
  .faq-toc { position: static; }
}

/* ============================================================
   Open roles list (careers page)
   ============================================================ */
.roles-list { display: flex; flex-direction: column; gap: 12px; }
.role-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 24px;
  align-items: center;
  padding: 22px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  text-decoration: none;
  color: inherit;
}
.role-row:hover { border-color: var(--brand-purple); transform: translateY(-2px); box-shadow: var(--shadow); }
.role-row .title strong { display: block; font-size: 17px; color: var(--ink-900); font-weight: 600; margin-bottom: 4px; }
.role-row .title span { font-size: 13px; color: var(--ink-500); }
.role-row .chip {
  font-size: 12px; font-weight: 600;
  background: var(--brand-gradient-soft);
  color: var(--brand-purple-dark);
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.role-row .meta { font-size: 14px; color: var(--ink-700); white-space: nowrap; }
.role-row .arrow-end {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink-50);
  display: grid; place-items: center;
  color: var(--ink-700);
  transition: background .2s, color .2s;
}
.role-row:hover .arrow-end { background: var(--brand-gradient); color: var(--white); }
@media (max-width: 720px) {
  .role-row { grid-template-columns: 1fr auto; gap: 12px; padding: 16px 18px; }
  .role-row .meta, .role-row .arrow-end { display: none; }
}

/* ============================================================
   Global locations map / cards
   ============================================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.loc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.loc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.loc-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #A78BFA; }
.loc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.loc-card:hover .loc-img img { transform: scale(1.04); }
.loc-img::after { content: ''; position: absolute; inset: 0; background: rgba(10,14,26,0.5); }
.loc-img .pin {
  position: absolute; top: 16px; right: 16px;
  z-index: 2;
  background: rgba(255,255,255,0.96);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-purple-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.loc-img .pin svg { color: var(--brand-purple-dark); }
.loc-img .city {
  position: absolute; bottom: 16px; left: 20px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  letter-spacing: -0.02em;
}
.loc-body { padding: 24px 28px 28px; }
.loc-body h4 { font-family: var(--font-sans); font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-purple-dark); margin: 0 0 8px; }
.loc-body p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin: 0 0 14px; }
.loc-body ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.loc-body li { font-size: 13px; color: var(--ink-700); display: flex; gap: 8px; align-items: center; }
.loc-body li svg { color: var(--brand-purple); flex-shrink: 0; }
@media (max-width: 1024px) { .locations-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .locations-grid { grid-template-columns: 1fr; } }

/* World coverage strip */
.coverage-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 56px;
}
.coverage-band div strong {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  display: block;
}
.coverage-band div span { font-size: 13px; color: var(--text-muted); font-weight: 500; }
@media (max-width: 720px) { .coverage-band { grid-template-columns: 1fr 1fr; gap: 18px; } }

/* ============================================================
   Press / Newsroom cards
   ============================================================ */
.press-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.press-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.press-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.press-img { position: relative; aspect-ratio: 16 / 8; background: #7C3AED; overflow: hidden; }
.press-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.press-card:hover .press-img img { transform: scale(1.04); }
.press-img::after { content: ''; position: absolute; inset: 0; background: rgba(124,58,237,0.50); mix-blend-mode: multiply; }
.press-img .tag {
  position: absolute; top: 14px; left: 16px;
  z-index: 2;
  background: rgba(255,255,255,0.96);
  color: var(--brand-purple-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.press-body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.press-body .date {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-500);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.press-body h3 { font-size: 20px; line-height: 1.3; letter-spacing: -0.01em; }
.press-body p { color: var(--text-muted); font-size: 14px; line-height: 1.65; margin: 0; }
.press-body .read { color: var(--brand-purple-dark); font-weight: 600; font-size: 14px; margin-top: auto; display: inline-flex; gap: 6px; align-items: center; }
.press-card:hover .press-body .read { gap: 10px; }
@media (max-width: 720px) { .press-grid { grid-template-columns: 1fr; } }

/* Press kit row */
.press-kit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
  padding: 32px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.press-kit a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink-900);
  font-weight: 600;
  font-size: 14px;
  transition: border-color .2s, transform .2s;
}
.press-kit a:hover { border-color: var(--brand-purple); transform: translateY(-2px); }
.press-kit a svg { color: var(--brand-purple); flex-shrink: 0; }
@media (max-width: 720px) { .press-kit { grid-template-columns: 1fr; padding: 18px; } }

/* ============================================================
   Newsletter signup
   ============================================================ */
.newsletter {
  background: #1A1F2E;
  color: var(--white);
  padding: 56px 48px;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(124,58,237,0.12);
  pointer-events: none;
}
.newsletter > * { position: relative; }
.newsletter h3 {
  color: var(--white);
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.newsletter p { color: rgba(255,255,255,0.78); margin: 0 0 6px; font-size: 15px; line-height: 1.6; }
.newsletter .meta { color: rgba(255,255,255,0.55); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }
.newsletter form {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 6px;
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white);
  padding: 10px 16px;
  font-size: 14px;
  outline: none;
  font-family: inherit;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter button {
  background: var(--brand-gradient);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: transform .15s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.newsletter button:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(124,58,237,0.4); }
.newsletter .ok { font-size: 13px; color: #6EE7A0; margin-top: 8px; min-height: 18px; }

/* Footer newsletter (compact) */
.footer-newsletter {
  margin-top: 32px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-newsletter h5 { color: var(--white); font-family: var(--font-sans); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 12px; }
.footer-newsletter p { color: rgba(255,255,255,0.55); font-size: 13px; margin: 0 0 14px; }
.footer-newsletter form {
  display: flex;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 4px;
  max-width: 360px;
}
.footer-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white);
  padding: 8px 14px;
  font-size: 13px;
  outline: none;
  font-family: inherit;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.45); }
.footer-newsletter button {
  background: var(--brand-gradient);
  color: var(--white);
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
}

@media (max-width: 1024px) {
  .newsletter { grid-template-columns: 1fr; padding: 36px; gap: 24px; }
}

/* ============================================================
   Hero — Leap Tiger product mockup (replaces dash-card on homepage)
   ============================================================ */
.hero .hero-grid { grid-template-columns: 1fr 1.05fr; gap: 56px; }
@media (max-width: 1024px) {
  .hero .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}

.lt-hero {
  position: relative;
  width: 100%;
  perspective: 2000px;
}
.lt-hero-card {
  position: relative;
  background: #1A1F2E;
  border-radius: 20px;
  padding: 22px;
  color: var(--white);
  box-shadow: 0 30px 80px rgba(10,14,26,0.18), 0 12px 30px rgba(124,58,237,0.18);
  overflow: hidden;
  transform: rotateY(-3deg) rotateX(2deg);
  transition: transform .5s ease;
  z-index: 2;
}
.lt-hero-card:hover { transform: rotateY(0) rotateX(0); }
.lt-hero-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: #A78BFA;
}
.lt-hero-card::after {
  content: '';
  position: absolute; right: -120px; top: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(167,139,250,0.15);
  pointer-events: none;
}

/* Stacked / layered card behind for depth */
.lt-hero-stack {
  position: absolute;
  inset: 14px -14px -14px 14px;
  background: rgba(124,58,237,0.06);
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: 20px;
  z-index: 1;
}

/* Product chrome — top bar with Leap Tiger branding */
.lt-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 14px;
  border-bottom: 1px dashed rgba(255,255,255,0.10);
  margin-bottom: 14px;
  position: relative;
}
.lt-brand {
  display: flex; align-items: center; gap: 10px;
}
.lt-brand .mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--brand-gradient);
  display: grid; place-items: center;
  color: var(--white);
  flex-shrink: 0;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  font-size: 13px;
  box-shadow: 0 4px 14px rgba(124,58,237,0.4);
}
.lt-brand .name { display: flex; flex-direction: column; gap: 1px; }
.lt-brand .name strong { font-size: 13px; font-weight: 700; letter-spacing: -0.01em; line-height: 1; }
.lt-brand .name span { font-size: 10px; color: rgba(255,255,255,0.55); letter-spacing: .04em; }
.lt-live {
  font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 999px;
  background: rgba(34,197,94,0.20); color: #6EE7A0;
  display: inline-flex; gap: 5px; align-items: center;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.lt-live::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: #22C55E; box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  animation: pulse 1.6s ease-in-out infinite;
}

/* Search query block */
.lt-query {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.lt-query .label { font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(167,139,250,0.85); margin-bottom: 4px; }
.lt-query .role { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.lt-query .skills { font-size: 11px; color: rgba(255,255,255,0.55); }

/* Scorecard breakdown */
.lt-scorecard { margin-bottom: 14px; }
.lt-scorecard-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.lt-scorecard-head h5 { font-family: var(--font-sans); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin: 0; }
.lt-scorecard-head .total {
  font-family: var(--font-display); font-weight: 800;
  background: #A78BFA;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.lt-score {
  display: grid; grid-template-columns: 70px 1fr 32px;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.lt-score .name { font-size: 11px; color: rgba(255,255,255,0.7); }
.lt-score .bar {
  height: 5px; border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
}
.lt-score .bar i {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: #7C3AED;
  border-radius: 999px;
}
.lt-score .pct { font-size: 11px; font-weight: 700; color: rgba(196,181,253,0.95); text-align: right; }

/* Candidate rows (compact) */
.lt-candidates h5 { font-family: var(--font-sans); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin: 0 0 8px; }
.lt-cand {
  display: grid; grid-template-columns: 28px 1fr auto;
  gap: 10px; align-items: center;
  padding: 9px 10px;
  border-radius: 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 5px;
  transition: border-color .2s;
}
.lt-cand:hover { border-color: rgba(167,139,250,0.5); }
.lt-cand .av {
  width: 28px; height: 28px;
  border-radius: 7px;
  display: grid; place-items: center;
  font-weight: 700; font-size: 10px; color: var(--white);
}
.lt-cand .av.a { background: #7C3AED; }
.lt-cand .av.b { background: #14B8A6; }
.lt-cand .av.c { background: #F59E0B; }
.lt-cand .av.d { background: #EC4899; }
.lt-cand .info strong { font-size: 11px; color: var(--white); display: block; font-weight: 600; line-height: 1.2; }
.lt-cand .info span { font-size: 10px; color: rgba(255,255,255,0.55); }
.lt-cand .score { font-size: 11px; font-weight: 700; color: var(--white); }
.lt-cand.best { border-color: rgba(167,139,250,0.45); background: rgba(124,58,237,0.10); }
.lt-cand.best .score { color: #C4B5FD; }
.lt-cand.best::after {
  content: '✓';
  position: absolute;
  font-size: 11px;
}

/* Footer line */
.lt-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; margin-top: 12px;
  border-top: 1px dashed rgba(255,255,255,0.10);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}
.lt-foot strong { color: var(--white); font-weight: 700; }
.lt-foot .link { color: rgba(196,181,253,0.95); font-weight: 600; }

/* Floating accent badges — repositioned, more integrated */
.lt-fab {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 12px 30px rgba(10,14,26,0.10), 0 4px 12px rgba(10,14,26,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}
.lt-fab strong { font-weight: 700; color: var(--ink-900); display: block; font-size: 14px; line-height: 1.2; }
.lt-fab span { color: var(--ink-500); font-size: 11px; }
.lt-fab .ico {
  width: 32px; height: 32px;
  border-radius: 9px;
  display: grid; place-items: center;
  background: var(--brand-gradient-soft);
  color: var(--brand-purple-dark);
  flex-shrink: 0;
}
.lt-fab.tr { right: -16px; top: 70px; animation-delay: -2s; }
.lt-fab.bl { left: -28px; bottom: 80px; animation-delay: -4s; }
.lt-fab.mr {
  right: -24px;
  top: 40%;
  background: var(--brand-gradient);
  color: var(--white);
  border: none;
  animation-delay: -3s;
}
.lt-fab.mr strong { color: var(--white); }
.lt-fab.mr span { color: rgba(255,255,255,0.85); }
.lt-fab.mr .ico { background: rgba(255,255,255,0.18); color: var(--white); }

@media (max-width: 1024px) {
  .lt-hero-card { transform: none; }
  .lt-fab.bl { left: 0; bottom: -16px; }
  .lt-fab.tr { right: 0; top: -16px; }
  .lt-fab.mr { display: none; }
}
@media (max-width: 720px) {
  .lt-hero-card { padding: 18px; }
  .lt-fab { padding: 10px 14px; font-size: 11px; }
  .lt-fab strong { font-size: 13px; }
}

/* ============================================================
   Hero Leap Tiger card — light theme (overrides earlier dark)
   ============================================================ */
.lt-hero-card {
  background: var(--white);
  color: var(--ink-900);
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(10,14,26,0.10), 0 12px 30px rgba(124,58,237,0.14);
}
.lt-hero-card::after {
  background: rgba(167,139,250,0.15);
}
.lt-hero-stack {
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(167,139,250,0.06));
  border-color: rgba(124,58,237,0.18);
}
.lt-chrome { border-bottom: 1px dashed var(--ink-200); }
.lt-brand .name strong { color: var(--ink-900); }
.lt-brand .name span { color: var(--ink-500); }
.lt-live {
  background: rgba(34,197,94,0.12);
  color: #15803D;
}
.lt-live::before { background: #22C55E; box-shadow: 0 0 0 3px rgba(34,197,94,0.18); }

.lt-query {
  background: var(--bg-soft);
  border: 1px solid var(--border);
}
.lt-query .label { color: var(--brand-purple-dark); }
.lt-query .role { color: var(--ink-900); }
.lt-query .skills { color: var(--ink-500); }

.lt-scorecard-head h5 { color: var(--ink-500); }
.lt-scorecard-head .total {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lt-score .name { color: var(--ink-700); }
.lt-score .bar { background: var(--ink-100); }
.lt-score .pct { color: var(--brand-purple-dark); }

.lt-candidates h5 { color: var(--ink-500); }
.lt-cand {
  background: var(--white);
  border: 1px solid var(--border);
}
.lt-cand:hover { border-color: var(--brand-purple); }
.lt-cand .info strong { color: var(--ink-900); }
.lt-cand .info span { color: var(--ink-500); }
.lt-cand .score { color: var(--ink-900); }
.lt-cand.best {
  background: var(--brand-gradient-soft);
  border-color: rgba(124,58,237,0.40);
}
.lt-cand.best .score { color: var(--brand-purple-dark); }

.lt-foot {
  border-top: 1px dashed var(--border);
  color: var(--ink-500);
}
.lt-foot strong { color: var(--ink-900); }
.lt-foot .link { color: var(--brand-purple-dark); }

/* ============================================================
   Hero v2 — AI Screening + Sample Candidate Profile
   ============================================================ */

/* AI screening progress panel */
.lt-screening {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
}
.lt-screening-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.lt-screening-head h5 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-purple-dark);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lt-screening-head h5::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-gradient);
  display: inline-block;
}
.lt-screening-head .progress { font-size: 11px; color: var(--ink-500); font-weight: 500; }
.lt-step-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--ink-700);
  padding: 4px 0;
}
.lt-step-row .check {
  width: 16px; height: 16px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.lt-step-row.done .check { background: rgba(34,197,94,0.15); color: #15803D; }
.lt-step-row.running .check {
  background: var(--brand-gradient-soft);
  color: var(--brand-purple-dark);
  position: relative;
}
.lt-step-row.running .check::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--brand-purple);
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}
.lt-step-row .pct { margin-left: auto; font-size: 11px; font-weight: 600; color: var(--ink-500); }
.lt-step-row.running .pct { color: var(--brand-purple-dark); }
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* Sample candidate profile */
.lt-profile {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  background: var(--white);
  position: relative;
  margin-bottom: 14px;
}
.lt-profile-tag {
  position: absolute;
  top: -10px; left: 14px;
  background: var(--brand-gradient);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(124,58,237,0.35);
}
.lt-profile-head {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border);
  margin-bottom: 12px;
}
.lt-profile-head .av {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #7C3AED;
  display: grid; place-items: center;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
}
.lt-profile-head .name strong { display: block; font-size: 15px; font-weight: 700; color: var(--ink-900); letter-spacing: -0.01em; }
.lt-profile-head .name span { font-size: 12px; color: var(--ink-500); }
.lt-profile-head .score {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.lt-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  color: var(--ink-500);
  margin-bottom: 12px;
}
.lt-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.lt-meta-row span svg { color: var(--brand-purple); flex-shrink: 0; }

.lt-section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin: 0 0 6px;
}
.lt-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}
.lt-skills span {
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-purple-dark);
  background: var(--brand-gradient-soft);
  padding: 4px 9px;
  border-radius: 999px;
}

.lt-fit-row {
  display: grid;
  grid-template-columns: 70px 1fr 32px;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.lt-fit-row .lbl { font-size: 11px; color: var(--ink-700); }
.lt-fit-row .bar {
  height: 5px; border-radius: 999px;
  background: var(--ink-100);
  overflow: hidden;
  position: relative;
}
.lt-fit-row .bar i {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--brand-gradient);
  border-radius: 999px;
  animation: fillBar 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transform-origin: left;
  transform: scaleX(0);
}
@keyframes fillBar { to { transform: scaleX(1); } }
.lt-fit-row .pct {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-purple-dark);
  text-align: right;
}

/* ============================================================
   "Why 3i People" Page Styles
   ============================================================ */

/* Hero — Why 3i People variant */
.hero--why-3i {
  padding: 120px 0 80px;
  background: rgba(124,58,237,0.02);
}

.hero--why-3i h1 {
  font-size: clamp(48px, 6vw, 72px);
  margin-bottom: 28px;
  color: var(--ink-900);
}

.hero--why-3i .hero__subhead {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.7;
  margin: 0;
}

/* Dark callout section */
.section--differentiator {
  padding: 80px 0;
  background: var(--white);
}

.callout--dark {
  background: var(--ink-900);
  color: var(--white);
  padding: 56px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.callout--dark h2 {
  color: var(--white);
  font-size: clamp(32px, 3.5vw, 48px);
  margin-bottom: 24px;
}

.callout--dark p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 16px;
}

.callout--dark p:last-child {
  margin-bottom: 0;
}

/* Two-column layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.two-column--reverse {
  grid-template-columns: 1fr 1fr;
}

.two-column--reverse .two-column__left {
  order: 2;
}

.two-column--reverse .two-column__right {
  order: 1;
}

.two-column__left h2 {
  font-size: clamp(32px, 3.5vw, 44px);
  margin-bottom: 28px;
}

.two-column__left p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.insight-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
}

.insight-list li {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.insight-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand-purple);
  font-weight: 700;
}

.two-column__right,
.visual-placeholder {
  background: linear-gradient(135deg, #F3E8FF 0%, #EDE9FE 100%);
  border-radius: var(--radius-lg);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-purple-dark);
  font-weight: 600;
  text-align: center;
}

.tech-visual {
  height: 500px;
  background: linear-gradient(135deg, #F3E8FF 0%, #EDE9FE 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-purple-dark);
  font-weight: 600;
}

/* Section with standard layout */
.section--expertise {
  padding: 96px 0;
  background: var(--white);
}

.section--expertise h2 {
  font-size: clamp(32px, 3.5vw, 44px);
  margin-bottom: 28px;
}

.section__lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 780px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.expertise-card {
  padding: 32px;
  background: var(--ink-50);
  border-radius: var(--radius);
  transition: transform .3s ease, box-shadow .3s ease;
}

.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.expertise-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--ink-900);
}

.expertise-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.section__closing {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-900);
  text-align: center;
  margin-top: 56px;
}

/* Proof callout — outcome accent color */
.proof-callout {
  background: var(--accent-emerald-tint);
  border-left: 4px solid var(--accent-emerald);
  padding: 24px 32px;
  border-radius: 8px;
  text-align: center;
  margin: 48px 0;
}

.proof-callout.stat--outcome .proof-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-emerald-dark);
  letter-spacing: 0.01em;
}

/* Flexible Delivery Section */
.section--flexible-delivery {
  padding: 96px 0;
  background: var(--bg-soft);
}

.section--flexible-delivery h2 {
  font-size: clamp(32px, 3.5vw, 44px);
  margin-bottom: 28px;
  text-align: center;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.delivery-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease;
}

.delivery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.delivery-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--ink-900);
}

.delivery-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.delivery-list li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.delivery-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-emerald);
  font-weight: 700;
}

.accent-callout {
  background: var(--accent-emerald-soft);
  border-left: 4px solid var(--accent-emerald);
  padding: 28px 36px;
  border-radius: 8px;
  text-align: center;
  margin-top: 48px;
}

.accent-callout p {
  font-size: 17px;
  color: var(--accent-emerald-dark);
  margin: 0;
  line-height: 1.7;
}

/* Leap Tiger Section */
.section--leap-tiger-feature {
  padding: 96px 0;
  background: var(--white);
}

.section--leap-tiger-feature h2 {
  font-size: clamp(32px, 3.5vw, 44px);
  margin-bottom: 28px;
}

.section--leap-tiger-feature p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.highlight-text {
  font-size: 17px;
  font-style: italic;
  color: var(--brand-purple-dark);
  font-weight: 500;
}

.cta-pair {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}

.cta-pair .btn {
  flex: 0 1 auto;
}

/* Partnership Section */
.section--partnership {
  padding: 96px 0;
  background: var(--bg-soft);
}

.section--partnership h2 {
  font-size: clamp(32px, 3.5vw, 44px);
  margin-bottom: 28px;
  text-align: center;
}

.partnership-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.partnership-content p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.partnership-content p:last-of-type {
  margin-bottom: 0;
}

.closing-statement {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-900);
  margin-top: 32px !important;
}

/* CTA Band — Standard footer pattern */
.section--cta {
  padding: 96px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.cta__content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cta__content h2 {
  font-size: clamp(32px, 3.5vw, 44px);
  margin-bottom: 20px;
}

.cta__lead {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.cta__content > p:not(.cta__lead):not(.cta__card-note) {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta__card {
  background: var(--ink-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 36px;
  text-align: left;
}

.cta__card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--ink-900);
}

.cta__card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.cta__card li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
  padding-left: 24px;
  position: relative;
}

.cta__card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand-purple);
  font-weight: 700;
}

.cta__card-note {
  font-size: 13px;
  color: var(--ink-600);
  font-style: italic;
  margin: 0;
}

.cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta__buttons .btn {
  padding: 14px 28px;
  font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .two-column--reverse .two-column__left,
  .two-column--reverse .two-column__right {
    order: unset;
  }

  .expertise-grid,
  .delivery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-pair {
    flex-direction: column;
  }

  .cta-pair .btn {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .hero--why-3i {
    padding: 80px 0 56px;
  }

  .callout--dark {
    padding: 36px 24px;
  }

  .expertise-grid,
  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .cta-pair {
    flex-direction: column;
  }

  .cta-pair .btn {
    width: 100%;
  }

  .cta__buttons {
    flex-direction: column;
  }

  .cta__buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   About Page Specific Styles
   ============================================================ */

/* Hero — About variant */
.hero--about {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(124,58,237,0.04) 0%, rgba(167,139,250,0.02) 100%);
}

.hero--about h1 {
  font-size: clamp(48px, 6vw, 72px);
  margin-bottom: 28px;
  color: var(--ink-900);
  line-height: 1.25;
}

.hero--about .hero__subhead {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0;
}

/* Story section */
.section--story {
  padding: 96px 0;
  background: var(--white);
}

.section--story .two-column {
  gap: 80px;
}

.section--story h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  margin-bottom: 32px;
}

.section--story p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-closing {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-900);
  margin-top: 28px !important;
}

.story-visual {
  height: 400px;
  background: linear-gradient(135deg, #F3E8FF 0%, #EDE9FE 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-purple-dark);
  font-weight: 600;
}

/* Three I's section */
.section--three-is {
  padding: 80px 0;
  background: var(--bg-soft);
}

.three-is__content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.three-is__content h2 {
  font-size: clamp(32px, 3.5vw, 44px);
  margin-bottom: 24px;
}

.three-is__content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Principles Grid */
.section--principles {
  padding: 96px 0;
  background: var(--white);
}

.principles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.principle {
  display: flex;
  flex-direction: column;
}

.principle__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #F3E8FF, #EDE9FE);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.principle h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink-900);
}

.principle > p:first-of-type {
  font-size: 16px;
  font-weight: 600;
  color: var(--brand-purple-dark);
  margin-bottom: 16px;
}

.principle__detail {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0;
}

/* Third Eye section */
.section--third-eye {
  padding: 96px 0;
  background: var(--bg-soft);
}

.third-eye__content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.third-eye__content h2 {
  font-size: clamp(32px, 3.5vw, 44px);
  margin-bottom: 24px;
}

.third-eye__content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.third-eye__closing {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 0 !important;
}

/* People-First Philosophy */
.section--people-first {
  padding: 96px 0;
  background: var(--white);
}

.section--people-first h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  margin-bottom: 12px;
  text-align: center;
}

.section__lead {
  font-size: 18px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 56px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-bottom: 0;
}

.philosophy-card {
  padding: 36px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  transition: transform .3s ease, box-shadow .3s ease;
}

.philosophy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.philosophy-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--ink-900);
}

.philosophy-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Team Highlights */
.section--team {
  padding: 96px 0;
  background: var(--bg-soft);
}

.section--team h2 {
  font-size: clamp(32px, 3.5vw, 44px);
  margin-bottom: 12px;
  text-align: center;
}

.team-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.team-highlight {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.team-highlight:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.team-stat {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
  display: block;
}

.team-highlight p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.team-highlight p:first-of-type {
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 14px;
}

.team-highlight p:last-child {
  margin-bottom: 0;
}

/* Looking Forward */
.section--forward {
  padding: 96px 0;
  background: var(--white);
}

.forward-content {
  max-width: 780px;
  margin: 0 auto;
}

.forward-content h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  margin-bottom: 28px;
}

.forward-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 22px;
}

.forward-content p:last-child {
  margin-bottom: 0;
}

/* Proof Grid */
.proof__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin: 56px 0;
  text-align: center;
}

.proof__item {
  padding: 32px 20px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease;
}

.proof__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.proof__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.proof__stat {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 8px;
  display: block;
}

.proof__stat.accent--outcome {
  background: var(--accent-emerald);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.proof__note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .principles__grid,
  .philosophy-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .section--story .two-column,
  .section--why-3i .two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .principles__grid,
  .philosophy-grid,
  .team-highlights,
  .proof__grid {
    grid-template-columns: 1fr;
  }

  .proof__stat {
    font-size: 24px;
  }

  .team-stat {
    font-size: 28px;
  }
}

/* Hide the old sub-elements when v2 active (still defined in case of fallback) */
