*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
/* overflow-y explicitly 'visible' alongside overflow-x: hidden — otherwise
   the CSS Overflow spec silently upgrades overflow-y to 'auto' too (any
   axis set to non-'visible' forces the other to 'auto' if left implicit),
   turning html/body into their own internal scroll containers and
   breaking position:sticky for anything inside (e.g. .portal-sidebar,
   .career-side). */
html { overflow-x: hidden; overflow-y: visible; }

:root {
  --bg:       #F7F6F2;
  --white:    #F7F6F2;
  --paper:    #EFEDE7;
  --blue:     #1B2476;
  --blue-lt:  rgba(27,36,118,0.07);
  --blue-bd:  rgba(27,36,118,0.20);
  --teal:     #0089B5;
  --teal-lt:  rgba(0,137,181,0.08);
  --ink:      #0F172A;
  --mid:      #334155;
  --faint:    rgba(15,23,42,0.09);
  --glass-bg: rgba(255,255,255,0.72);
  --glass-bd: rgba(255,255,255,0.9);
  --nav-h:    56px;
  --nav-offset: 88px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  overflow-y: visible;
  padding-top: 0;
}

body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 900;
}

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
nav {
  position: fixed;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: min(calc(100% - 48px), 1160px);
  height: 56px;
  z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px;
  background: rgba(255,255,255,0.28);
  backdrop-filter: blur(24px) saturate(2.2) brightness(1.12);
  -webkit-backdrop-filter: blur(24px) saturate(2.2) brightness(1.12);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 100px;
  box-shadow: 0 2px 20px rgba(15,23,42,0.08), inset 0 1px 0 rgba(255,255,255,0.95);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
nav.scrolled {
  background: rgba(255,255,255,0.55);
  box-shadow: 0 4px 28px rgba(15,23,42,0.1), inset 0 1px 0 rgba(255,255,255,0.8);
}
nav.scrolled .logo-wrap img { height: 26px; }

.logo-wrap {
  display: flex; align-items: center; text-decoration: none;
}
.logo-wrap img {
  height: 30px; width: auto; object-fit: contain;
  display: block; transition: height 0.3s ease;
}

.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; margin-left: auto; transition: opacity 0.25s; }
.nav-links > li { position: relative; }
.nav-links a {
  display: flex; align-items: center; gap: 5px;
  font-size: 14px; font-weight: 600;
  color: #1A2038; text-decoration: none;
  letter-spacing: 0.005em;
  padding: 6px 12px; border-radius: 6px;
  transition: background 0.16s, color 0.16s;
}
.nav-links a:hover { color: var(--blue); background: rgba(27,36,118,0.05); }
.nav-links a .chev { font-size: 9px; opacity: 0.7; transition: transform 0.2s; margin-left: 1px; }
.nav-links > li:hover > a .chev { transform: rotate(180deg); opacity: 1; color: var(--blue); }

/* ── mega menu ──
   Pure CSS :hover / :focus-within — no JS state machine. A position:fixed
   .mega is still a DOM descendant of its <li>, so hovering it (wherever it
   renders on screen) keeps the ancestor <li> :hover true natively; no
   mouseenter/mouseleave timers or shared-timer races to get wrong. */
/* Invisible bridge on li so the mouse crossing the small gap to the panel
   doesn't land on empty page content and drop the hover state. Only exists
   while actually hovering/focused, so it can't block clicks the rest of the time. */
.nav-links > li:has(.mega):hover::after,
.nav-links > li:has(.mega):focus-within::after {
  content: ''; position: absolute;
  top: 100%; left: -20px; right: -20px;
  height: 24px;
}
.mega {
  position: fixed;
  top: calc(12px + 56px - 6px);
  left: 50%; transform: translateX(-50%);
  width: min(calc(100% - 48px), 1160px);
  box-sizing: border-box;
  display: none; flex-direction: column;
  z-index: 300;
}
.mega-inner {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 20px;
  padding: 28px 32px 24px;
  box-sizing: border-box;
  box-shadow: 0 8px 40px rgba(15,23,42,0.1), 0 2px 8px rgba(15,23,42,0.05);
  animation: megaIn 0.15s ease;
}
@keyframes megaIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
.nav-links > li:hover .mega,
.nav-links > li:focus-within .mega { display: flex; }
/* Full-width upward bridge on the mega itself — catches diagonal mouse movement */
.mega::before {
  content: ''; position: absolute;
  bottom: 100%; left: 0; right: 0;
  height: 30px;
}

.mega-body { display: flex; gap: 40px; }
.mega-col { display: flex; flex-direction: column; min-width: 150px; }
.mega-col-wide { flex: 1; display: flex; flex-direction: column; gap: 0; }
.mega-col-wide-inner { display: flex; gap: 32px; }
.mega-sh {
  font-size: 13px; font-weight: 700; color: var(--ink);
  margin-bottom: 10px; letter-spacing: 0;
}
.mega-divider { display: none; }
.mega-item {
  display: block;
  font-size: 14px; font-weight: 400; color: #5A6070;
  text-decoration: none; padding: 5px 0; line-height: 1.4;
  transition: color 0.13s;
}
.mega-item:hover { color: var(--ink); }
.mega-ico { display: none; }
.mega-txt-t { font-size: 14px; font-weight: 400; }
.mega-txt-d { display: none; }
.mega-arr { display: none; }
.mega-panel { display: none; }
.mega-panel-label,.mega-panel-h,.mega-panel-sub,.mega-panel-btn { display: none; }
.mega-foot { display: none; }

.nav-btns { display: flex; gap: 10px; align-items: center; margin-left: 32px; }
.nav-btn-ghost {
  padding: 7px 18px; border: 1.5px solid var(--faint);
  background: transparent;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 400; color: var(--ink); cursor: pointer;
  border-radius: 100px; transition: border-color 0.18s, background 0.18s, opacity 0.25s, width 0.25s, padding 0.25s;
}
.nav-btn-ghost:hover { border-color: rgba(27,36,118,0.2); background: var(--paper); }
.nav-btn-fill {
  padding: 7px 20px; background: var(--ink); color: white;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 500; cursor: pointer; border-radius: 100px;
  transition: opacity 0.18s, background 0.18s;
}
.nav-btn-fill:hover { background: var(--blue); opacity: 1; }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  height: calc(100vh - var(--nav-h));
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: url('../images/hero-bg-v2.png') center center / cover no-repeat var(--bg);
}

.hero-dot-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(15,23,42,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none; z-index: 0; opacity: 0.6;
}

.hero-radar {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
}

.rring {
  position: absolute; border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.rring.r1 { width: 170px;  height: 170px;  border: 1.5px solid rgba(27,36,118,0.40); }
.rring.r2 { width: 360px;  height: 360px;  border: 1px solid rgba(15,23,42,0.20); }
.rring.r3 { width: 580px;  height: 580px;  border: 1px solid rgba(15,23,42,0.13); }
.rring.r4 { width: 820px;  height: 820px;  border: 1px solid rgba(15,23,42,0.08); }
.rring.r5 { width: 1100px; height: 1100px; border: 1px solid rgba(15,23,42,0.04); }

.radar-sweep {
  position: absolute; border-radius: 50%;
  top: 50%; left: 50%;
  width: 580px; height: 580px;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 30deg, rgba(27,36,118,0.16) 0deg, rgba(27,36,118,0.04) 55deg, transparent 80deg);
  pointer-events: none;
}

.rnode {
  position: absolute; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 5px; z-index: 3;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

.rn-av {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: white;
  font-family: 'Outfit', sans-serif;
  border: 2.5px solid transparent;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}
.rn-av i { font-size: 22px; color: rgba(255,255,255,0.9); }
.rn-logo { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; box-shadow: 0 0 0 2.5px #7EC8F0; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; }

.rnode { opacity: 1; pointer-events: auto; }
.rnode:hover .rn-av,
.rnode:hover .rn-logo { transform: scale(1.12); transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1); }
.rn-lb {
  font-size: 9px; font-weight: 500; color: var(--mid);
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.82); padding: 1px 7px; border-radius: 100px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); white-space: nowrap;
}
.rn-lb.hiring { color: #E5187A; }

/* ── Hero bg masonry — same as footer ── */
.hero-bg-mas-wrap {
  position: absolute; inset: 0;
  overflow: hidden; display: flex;
  z-index: 0; pointer-events: none;
  align-items: flex-start;
}
.hero-bg-mas {
  width: 1400px; flex-shrink: 0; padding: 0 10px;
  columns: 5; column-gap: 10px;
  animation: scr-footer 50s linear infinite;
}
.hero-bg-sc-card {
  break-inside: avoid; margin-bottom: 10px;
  border-radius: 0; overflow: hidden;
  display: block; background: #1A1A1A; width: 100%;
}
.hero-bg-sc-card img { width: 100%; display: block; filter: grayscale(100%) brightness(0.8); }
.hero-bg-sc-cta {
  break-inside: avoid; margin-bottom: 10px;
  border-radius: 0; overflow: hidden;
  background: #161616; width: 100%; min-height: 130px;
  display: flex; align-items: center; justify-content: center;
}
.hero-bg-sc-cta span {
  font-family: 'Libre Baskerville', serif;
  font-style: italic; font-size: 14px;
  color: rgba(255,255,255,0.4); text-align: center; padding: 20px;
}
@media (max-width: 768px) { .hero-bg-mas-wrap { display: none; } }

.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 65% at 50% 50%, rgba(247,246,242,0.98) 15%, rgba(247,246,242,0.82) 42%, rgba(247,246,242,0.25) 68%, transparent 100%);
  pointer-events: none; z-index: 2;
}

.hero-inner {
  width: 100%; max-width: 760px;
  margin: 0 auto; padding: 0 40px;
  position: relative; z-index: 3;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.hero-left { width: 100%; display: flex; flex-direction: column; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  background: var(--blue-lt); border: 1px solid var(--blue-bd);
  border-radius: 100px;
  font-size: 11px; font-weight: 500;
  color: var(--blue); letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 28px; width: fit-content;
}
.pulse { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; animation: p 2.2s ease-in-out infinite; }
@keyframes p { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.35;transform:scale(0.6)} }

.hero-h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(48px, 5.5vw, 84px);
  font-weight: 600; line-height: 1.0;
  letter-spacing: -0.04em; color: var(--ink);
  margin-bottom: 22px; text-align: center;
  -webkit-text-stroke: 6px rgba(255,255,255,0.9);
  paint-order: stroke fill;
}
.hero-h1 .it {
  font-family: 'Libre Baskerville', serif;
  font-style: italic; font-weight: 400; color: var(--blue);
  text-decoration: underline;
  text-decoration-color: #1ABF6A;
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}
.hero-h1 .dim { color: rgba(15,23,42,0.20); font-weight: 300; }

.hero-sub {
  font-size: 15px; font-weight: 300; color: var(--mid);
  line-height: 1.82; max-width: 480px; margin-bottom: 36px; text-align: center;
}

.hero-cta { display: flex; gap: 12px; align-items: center; justify-content: center; margin-bottom: 40px; }
.btn-cta-main {
  padding: 18px 48px; background: var(--blue); color: white;
  border: none; font-family: 'Outfit', sans-serif;
  font-size: 17px; font-weight: 700; cursor: pointer;
  border-radius: 10px; letter-spacing: 0.01em; transition: opacity 0.18s;
  text-decoration: none;
}
.btn-cta-main:hover { opacity: 0.88; }
.btn-cta-sec {
  padding: 17px 44px; background: transparent; color: var(--mid);
  border: 1.5px solid var(--faint); font-family: 'Outfit', sans-serif;
  font-size: 17px; font-weight: 400; cursor: pointer; border-radius: 10px;
  transition: border-color 0.18s, color 0.18s;
}
.btn-cta-sec:hover { background: #1ABF6A; border-color: #1ABF6A; color: #fff; }

.social-proof { display: flex; align-items: center; justify-content: center; gap: 16px; }
.avs { display: flex; }
.av {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--bg); margin-left: -8px;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  color: white; flex-shrink: 0; overflow: hidden;
}
.av:first-child { margin-left: 0; }
.av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proof-txt { font-size: 15px; color: var(--mid); }
.proof-txt strong { color: var(--ink); font-weight: 700; }

/* ── Mobile radar ── */
.mob-radar-wrap { width: 100%; max-width: 340px; margin: 0 auto; flex-shrink: 0; padding-bottom: 20px; cursor: grab; user-select: none; }
.mob-radar { position: relative; width: 100%; aspect-ratio: 1; overflow: visible; }
.mr-blur-overlay {
  position: absolute; bottom: -16px; left: -24px; right: -24px; height: 38%;
  z-index: 6; pointer-events: none;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.08) 25%, rgba(255,255,255,0.45) 55%, rgba(255,255,255,0.88) 80%, #ffffff 100%);
}
.mr-ring { position: absolute; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.mr-ring.r1 { width: 24%; height: 24%; border: 1.5px solid rgba(27,36,118,0.45); }
.mr-ring.r2 { width: 52%; height: 52%; border: 1px solid rgba(15,23,42,0.18); }
.mr-ring.r3 { width: 80%; height: 80%; border: 1px solid rgba(15,23,42,0.10); }
.mr-sweep { position: absolute; top: 50%; left: 50%; width: 52%; height: 52%; transform: translate(-50%, -50%); transform-origin: center center; border-radius: 50%; background: conic-gradient(from 0deg, rgba(27,36,118,0.18) 0deg, rgba(27,36,118,0.05) 60deg, transparent 90deg); pointer-events: none; }
.mr-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 8px; height: 8px; border-radius: 50%; background: var(--blue); z-index: 4; box-shadow: 0 0 0 4px rgba(27,36,118,0.12); }
.mr-node { position: absolute; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 4px; z-index: 3; opacity: 0.8; pointer-events: none; }
.mr-av { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: white; font-family: 'Outfit', sans-serif; border: 2px solid #7EC8F0; overflow: hidden; animation: float 3s ease-in-out infinite; background: linear-gradient(135deg, var(--blue), var(--teal)); }
.mr-av i { font-size: 15px; color: rgba(255,255,255,0.9); }
.mr-logo { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; animation: float 3.4s ease-in-out infinite; box-shadow: 0 0 0 2px #7EC8F0; display: flex; align-items: center; justify-content: center; font-size: 16px; color: #fff; }
.mr-node:nth-child(8)  > .mr-av   { animation-delay:    0s; }
.mr-node:nth-child(9)  > .mr-logo { animation-delay: -0.7s; }
.mr-node:nth-child(10) > .mr-logo { animation-delay: -1.5s; }
.mr-node:nth-child(11) > .mr-av   { animation-delay: -0.4s; }
.mr-node:nth-child(12) > .mr-av   { animation-delay: -1.2s; }
.mr-node:nth-child(13) > .mr-logo { animation-delay: -2.0s; }
.mr-node:nth-child(14) > .mr-av   { animation-delay: -1.8s; }
.mr-lb { font-size: 8px; font-weight: 500; color: var(--mid); letter-spacing: 0.04em; background: rgba(255,255,255,0.88); backdrop-filter: blur(4px); padding: 1px 6px; border-radius: 100px; white-space: nowrap; }
.mr-lb.hiring { color: var(--blue); }

/* ══════════════════════════════════
   STATS STRIP
══════════════════════════════════ */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.si {
  padding: 48px 52px; border-right: 2px solid rgba(255,255,255,0.25);
  transition: filter 0.22s;
}
.si:last-child { border-right: none; }
.si:hover { filter: brightness(0.94); }
.si:nth-child(1) { background: #F5C000; }
.si:nth-child(2) { background: #1ABF6A; }
.si:nth-child(3) { background: #FF6B35; }
.si:nth-child(4) { background: #1B2476; }
.si .si-big { color: #ffffff; }
.si .si-lbl { color: rgba(255,255,255,0.85); }
.si-big {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 800; letter-spacing: -0.04em;
  line-height: 1; margin-bottom: 6px;
}
.si-lbl { font-size: 13px; font-weight: 500; line-height: 1.55; }

/* ══════════════════════════════════
   TRUSTED BY LOGO MARQUEE
══════════════════════════════════ */
.trusted-strip {
  background: var(--bg);
  padding: 36px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(15,23,42,0.07);
}
.trusted-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94A3B8;
  margin-bottom: 24px;
}
.trusted-track-wrap {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.trusted-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: trustedScroll 50s linear infinite;
}
.trusted-track:hover { animation-play-state: paused; }
@keyframes trustedScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.tlogo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 44px;
  border-right: 1px solid rgba(15,23,42,0.08);
  white-space: nowrap;
  flex-shrink: 0;
}
.tlogo:last-child { border-right: none; }
.tlogo-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #fff;
  flex-shrink: 0;
}
.tlogo-name {
  font-size: 14px; font-weight: 600; color: #64748B;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.tlogo:hover .tlogo-name { color: var(--ink); }

/* ══════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════ */
.sec { padding: 88px max(40px, calc(50% - 620px)); }
.sec-alt { background: #F4F6F8; }
.sec-eye {
  font-size: 11px; font-weight: 600; color: var(--blue);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px;
}
.sec-h {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 800; letter-spacing: -0.04em;
  line-height: 1.05; color: var(--ink); margin-bottom: 12px;
}
.sec-h em {
  font-family: 'Libre Baskerville', serif;
  font-style: italic; font-weight: 400; color: var(--blue);
}
.sec-sub {
  font-size: 15px; color: #3D4F6E; font-weight: 300;
  line-height: 1.82; max-width: 520px; margin-bottom: 56px;
}

/* ══════════════════════════════════
   HOW IT WORKS
══════════════════════════════════ */
.steps { display: flex; flex-direction: column; }
.step-row {
  display: grid; grid-template-columns: 88px 1fr 1.3fr;
  gap: 0 52px; padding: 40px 0 40px 22px;
  border-top: 1px solid var(--faint);
  align-items: start; position: relative;
  transition: background 0.22s, padding 0.22s;
}
.step-row:last-child { border-bottom: 1px solid var(--faint); }
.step-row:hover { background: #FFFFFF; box-shadow: 0 4px 20px rgba(15,23,42,0.04); border-top-color: transparent; }
.step-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: var(--blue); transition: width 0.28s ease; border-radius: 0 2px 2px 0;
}
.step-row:hover::before { width: 3px; }
.s-num {
  font-family: 'Outfit', sans-serif;
  font-size: 54px; font-weight: 900; letter-spacing: -0.06em;
  line-height: 1; color: rgba(15,23,42,0.07);
  padding-top: 2px; transition: color 0.22s; user-select: none;
}
.step-row:hover .s-num { color: rgba(27,36,118,0.16); }
.s-left { padding-top: 4px; }
.s-tag {
  display: inline-block; font-size: 10px; font-weight: 600;
  color: var(--blue); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 10px;
}
.s-head {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.03em; line-height: 1.15;
}
.s-body { font-size: 14px; color: #3D4F6E; font-weight: 300; line-height: 1.85; padding-top: 6px; }

/* ══════════════════════════════════
   FEATURES 3-COLUMN
══════════════════════════════════ */
/* ── Why Choose Us – tab layout ── */
.wcu-wrap { display: grid; grid-template-columns: 300px 1fr; margin-top: 40px; border-radius: 18px; overflow: hidden; border: 1px solid var(--faint); box-shadow: 0 4px 32px rgba(15,23,42,0.07); }
.wcu-nav { background: var(--bg); }
.wcu-tab { display: flex; align-items: center; gap: 14px; padding: 20px 26px; cursor: pointer; border-bottom: 1px solid var(--faint); transition: background 0.2s; user-select: none; }
.wcu-tab:last-child { border-bottom: none; }
.wcu-tab:hover { background: var(--paper); }
.wcu-tab.active { background: var(--blue-lt); }
.wcu-tab-ring { position: relative; width: 32px; height: 32px; flex-shrink: 0; }
.wcu-tab-ring svg { position: absolute; inset: 0; transform: rotate(-90deg); }
.wcu-tab-ring-track { fill: none; stroke: rgba(27,36,118,0.1); stroke-width: 2; }
.wcu-tab-ring-fill { fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 69.12; stroke-dashoffset: 69.12; }
@keyframes wcu-ring-spin { from { stroke-dashoffset: 69.12; } to { stroke-dashoffset: 0; } }
.wcu-tab-num { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 800; color: var(--blue); opacity: 0.3; letter-spacing: 0.04em; }
.wcu-tab.active .wcu-tab-num { opacity: 1; }
.wcu-tab-title { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.wcu-tab.active .wcu-tab-title { color: var(--blue); }
.wcu-panel-wrap { position: relative; background: var(--ink); min-height: 420px; overflow: hidden; }
.wcu-panel { position: absolute; inset: 0; padding: 52px 52px 44px; display: flex; flex-direction: column; justify-content: flex-end; opacity: 0; transform: translateY(14px); transition: opacity 0.38s ease, transform 0.38s ease; pointer-events: none; }
.wcu-panel.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.wcu-p-bg-num { position: absolute; top: 16px; right: 32px; font-family: 'Outfit', sans-serif; font-size: 120px; font-weight: 900; color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none; }
.wcu-p-icon { font-size: 26px; color: #1ABF6A; margin-bottom: 22px; }
.wcu-p-title { font-family: 'Outfit', sans-serif; font-size: 30px; font-weight: 700; color: #fff; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 16px; }
.wcu-p-body { font-size: 15px; color: rgba(255,255,255,0.5); font-weight: 300; line-height: 1.85; max-width: 400px; }
.wcu-dots { display: flex; gap: 7px; margin-top: 32px; }
.wcu-dot { height: 3px; border-radius: 2px; background: rgba(255,255,255,0.18); cursor: pointer; transition: width 0.3s ease, background 0.3s ease; width: 20px; }
.wcu-dot.active { width: 36px; background: #1ABF6A; }

/* ══════════════════════════════════
   JOB BROWSE
══════════════════════════════════ */
.browse-head {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 32px;
  gap: 24px; flex-wrap: wrap;
}
.filter-row { display: flex; gap: 7px; flex-wrap: wrap; }
.fbtn {
  padding: 7px 16px; border: 1.5px solid var(--faint);
  background: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px; font-weight: 400; color: var(--mid);
  cursor: pointer; border-radius: 6px; transition: all 0.18s;
}
.fbtn.on { background: var(--blue); color: white; border-color: var(--blue); }
.fbtn:hover:not(.on) { border-color: rgba(27,36,118,0.22); color: var(--ink); }

.ch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ch-card {
  background: var(--white); border: 1px solid var(--faint);
  border-radius: 12px; padding: 22px;
  transition: box-shadow 0.25s, border-color 0.25s; cursor: pointer;
}
.ch-card:hover { border-color: rgba(27,36,118,0.20); }
.ch-top { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.ch-co-logo {
  width: 38px; height: 38px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 15px; color: #fff;
}
.ch-co-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.ch-co-role { font-size: 11px; color: var(--mid); }
.ch-pay-bdg {
  margin-left: auto; font-size: 12.5px; font-weight: 700;
  color: var(--teal); background: var(--teal-lt);
  padding: 4px 10px; border-radius: 6px; white-space: nowrap;
  flex-shrink: 0; border: 1px solid rgba(0,137,181,0.14);
}
.ch-title { font-size: 14.5px; font-weight: 600; color: var(--ink); margin-bottom: 7px; letter-spacing: -0.01em; line-height: 1.35; }
.ch-desc { font-size: 13.5px; color: #3D4F6E; font-weight: 300; line-height: 1.75; margin-bottom: 14px; }
.ch-foot { display: flex; align-items: center; justify-content: space-between; }
.ch-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.chtag { padding: 2px 8px; background: var(--bg); border-radius: 100px; font-size: 10.5px; color: var(--mid); }
.ch-meta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.ch-time { font-size: 11px; color: var(--mid); white-space: nowrap; }
.ch-apply {
  padding: 7px 14px; background: var(--blue); color: white; border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px; font-weight: 600; cursor: pointer;
  border-radius: 6px; transition: opacity 0.18s; white-space: nowrap;
}
.ch-apply:hover { opacity: 0.85; }

/* ══════════════════════════════════
   TESTIMONIALS — INFINITE CAROUSEL
══════════════════════════════════ */
.test-track-wrap {
  overflow: hidden; margin-top: 52px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.test-track {
  display: flex; gap: 20px;
  width: max-content;
  animation: testScroll 50s linear infinite;
}
.test-track:hover { animation-play-state: paused; }
@keyframes testScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.test-card {
  width: 360px; flex-shrink: 0;
  padding: 28px; border: 1px solid var(--faint);
  border-radius: 14px; background: var(--white);
  transition: border-color 0.22s, box-shadow 0.22s;
}
.test-track:hover .test-card:hover { border-color: rgba(27,36,118,0.2); box-shadow: 0 4px 24px rgba(27,36,118,0.08); }
.test-q {
  font-family: 'Libre Baskerville', serif;
  font-size: 14.5px; font-style: italic; line-height: 1.85;
  color: var(--ink); margin-bottom: 20px;
}
.test-p { display: flex; align-items: center; gap: 11px; }
.test-av {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: white; flex-shrink: 0;
  overflow: hidden;
}
.test-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.test-name { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.test-role { font-size: 11px; color: var(--mid); }

/* ══════════════════════════════════
   FOUNDER SECTION — CARD FAN STYLE
══════════════════════════════════ */
.founder-sec {
  background: var(--bg);
  position: relative; overflow: hidden;
  text-align: center;
}
.founder-sec-deco {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.founder-sec-title { margin-bottom: 28px; }
.founder-sec-title .sec-eye { margin-bottom: 10px; }
.founder-sec-title h2 { font-family: 'Outfit', sans-serif; font-size: clamp(28px, 3vw, 40px); font-weight: 800; color: var(--ink); letter-spacing: -0.03em; line-height: 1.15; }
.founder-sec-title h2 em { font-family:'Libre Baskerville',serif; font-style:italic; font-weight:400; color: #007A8C; }

/* fan stage */
.founder-fan {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 0; position: relative; height: 460px;
}

/* individual card */
.tm-card {
  width: 230px; flex-shrink: 0;
  background: #0089B5; border-radius: 24px;
  padding: 32px 24px 28px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  position: absolute;
  transform-origin: bottom center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.tm-card.main {
  width: 256px; z-index: 3;
  transform: translateX(0) rotate(0deg) translateY(0);
  box-shadow: 0 24px 60px rgba(0,137,181,0.35);
}
.tm-card.left {
  z-index: 2;
  transform: translateX(-200px) rotate(-9deg) translateY(36px);
  box-shadow: 0 12px 32px rgba(0,137,181,0.2);
  opacity: 0.82;
}
.tm-card.right {
  z-index: 2;
  transform: translateX(200px) rotate(9deg) translateY(36px);
  box-shadow: 0 12px 32px rgba(0,137,181,0.2);
  opacity: 0.82;
}
.tm-card.main:hover { transform: translateX(0) rotate(0deg) translateY(-6px) scale(1.04); box-shadow: 0 32px 80px rgba(0,137,181,0.45), 0 0 0 2px rgba(255,255,255,0.45); }
.tm-card.left:hover  { transform: translateX(-200px) rotate(-5deg) translateY(18px) scale(1.06); opacity: 1; box-shadow: 0 20px 50px rgba(0,137,181,0.35), 0 0 0 2px rgba(255,255,255,0.4); z-index: 4; }
.tm-card.right:hover { transform: translateX(200px) rotate(5deg) translateY(18px) scale(1.06); opacity: 1; box-shadow: 0 20px 50px rgba(0,137,181,0.35), 0 0 0 2px rgba(255,255,255,0.4); z-index: 4; }

.tm-tag {
  font-size: 9px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: #FFE066; align-self: flex-start;
}
.tm-photo-wrap {
  width: 126px; height: 126px; border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.9);
  overflow: hidden; background: rgba(255,255,255,0.2);
}
.tm-card.main .tm-photo-wrap { width: 148px; height: 148px; }
.tm-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.tm-name {
  font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 800;
  color: #fff; letter-spacing: -0.02em; line-height: 1.2; text-align: center;
}
.tm-card.main .tm-name { font-size: 20px; }
.tm-role {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.68); text-align: center;
}

/* CTA below */
.founder-cta-row { margin-top: 56px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.founder-cta-row p { font-size: 15px; color: #3D5A5E; font-weight: 300; }
.founder-team-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  background: var(--ink); color: #fff;
  border: none; border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: opacity 0.18s, transform 0.18s;
}
.founder-team-btn:hover { opacity: 0.85; transform: translateY(-1px); }

@media (max-width: 640px) {
  .founder-sec-title { margin-bottom: 36px; }
  .founder-sec-title h2 { font-size: clamp(22px, 7vw, 30px); }

  /* flat row of 3, no absolute positioning, no overflow */
  .founder-fan {
    height: auto;
    display: flex; flex-direction: row;
    align-items: flex-end; justify-content: center;
    gap: 10px; padding: 0 16px;
    overflow: hidden;
  }
  .founder-sec { overflow: hidden; }
  .tm-card, .tm-card.main, .tm-card.left, .tm-card.right {
    position: relative; transform: none !important;
    opacity: 1; flex: 1; min-width: 0; max-width: 160px;
    width: auto; padding: 18px 12px 16px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0,137,181,0.22);
  }
  .tm-card.left, .tm-card.right { transform: none !important; opacity: 0.9; }

  /* disable hover scale on mobile */
  .tm-card.main:hover,
  .tm-card.left:hover,
  .tm-card.right:hover { transform: none !important; box-shadow: 0 8px 24px rgba(0,137,181,0.22); }

  .tm-photo-wrap { width: 72px; height: 72px; }
  .tm-card.main .tm-photo-wrap { width: 88px; height: 88px; }
  .tm-name { font-size: 13px; }
  .tm-card.main .tm-name { font-size: 15px; }
  .tm-role { font-size: 8.5px; }
  .tm-tag { font-size: 7.5px; }

  .founder-cta-row { margin-top: 28px; }
}

/* ══════════════════════════════════
   RECENT PLACEMENTS
══════════════════════════════════ */
.placements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.pl-card {
  background: var(--white);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.pl-card:hover {
  box-shadow: 0 12px 36px rgba(15,23,42,0.09);
  transform: translateY(-3px);
}
.pl-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pl-badge {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 6px;
  background: var(--teal-lt);
  color: var(--teal);
}
.pl-days {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 500; color: var(--mid);
}
.pl-days i { color: #1ABF6A; font-size: 11px; }
.pl-role {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--ink); line-height: 1.2;
}
.pl-meta {
  display: flex; flex-direction: column; gap: 6px;
}
.pl-meta-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--mid); font-weight: 300;
}
.pl-meta-item i {
  width: 16px; color: var(--blue); font-size: 12px; flex-shrink: 0;
}
.pl-footer {
  padding-top: 16px;
  border-top: 1px solid rgba(15,23,42,0.07);
  display: flex; align-items: center; gap: 10px;
}
.pl-av {
  width: 32px; height: 32px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  background: var(--paper);
}
.pl-av img { width: 100%; height: 100%; object-fit: cover; }
.pl-quote {
  font-size: 12.5px; color: var(--mid);
  font-style: italic; line-height: 1.5;
  font-family: 'Libre Baskerville', serif;
}
@media (max-width: 1024px) {
  .placements-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .placements-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ══════════════════════════════════
   FOR CANDIDATES
══════════════════════════════════ */
.cand-sec {
  background: var(--ink);
  padding: 88px max(40px, calc(50% - 620px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cand-sec .sec-eye { color: rgba(255,255,255,0.45); margin-bottom: 12px; }
.cand-h {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800; color: #fff;
  line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.cand-h em {
  font-family: 'Libre Baskerville', serif;
  font-style: italic; font-weight: 400;
  color: #1ABF6A;
}
.cand-sub {
  font-size: 15px; color: rgba(255,255,255,0.55);
  line-height: 1.75; font-weight: 300; margin-bottom: 36px;
  max-width: 440px;
}
.cand-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cand-btn-p {
  padding: 14px 32px; background: #1ABF6A; color: #fff;
  border: none; border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 15px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px;
  transition: opacity 0.2s;
}
.cand-btn-p:hover { opacity: 0.88; }
.cand-btn-s {
  padding: 14px 32px; background: transparent; color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.18); border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: 15px; cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.cand-btn-s:hover { border-color: rgba(255,255,255,0.45); color: #fff; }
.cand-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cand-perk {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background 0.2s;
}
.cand-perk:hover { background: rgba(255,255,255,0.08); }
.cand-perk-icon {
  width: 36px; height: 36px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.cand-perk-title {
  font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 700; color: #fff;
  line-height: 1.3;
}
.cand-perk-desc {
  font-size: 13px; color: rgba(255,255,255,0.45);
  line-height: 1.55; font-weight: 300;
}
@media (max-width: 860px) {
  .cand-sec { grid-template-columns: 1fr; gap: 48px; padding: 64px 24px; }
  .cand-sub { max-width: 100%; }
}
@media (max-width: 640px) {
  .cand-sec { padding: 48px 20px; }
  .cand-perks { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   FAQ SECTION
══════════════════════════════════ */
.faq-sec {
  padding: 88px max(40px, calc(50% - 620px));
  background: var(--bg);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq-left { }
.faq-left .sec-eye { margin-bottom: 12px; }
.faq-left h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.faq-left h2 em {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--teal);
}
.faq-left p {
  font-size: 15px;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.7;
  max-width: 300px;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid rgba(15,23,42,0.09);
}
.faq-item:first-child { border-top: 1px solid rgba(15,23,42,0.09); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  text-align: left;
}
.faq-q-text {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.35;
  transition: color 0.2s;
}
.faq-item.open .faq-q-text { color: var(--teal); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(15,23,42,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--mid);
  font-size: 13px;
  transition: background 0.2s, border-color 0.2s, transform 0.3s ease, color 0.2s;
}
.faq-item.open .faq-icon {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  transform: rotate(45deg);
}
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-item.open .faq-body { grid-template-rows: 1fr; }
.faq-body-inner {
  overflow: hidden;
}
.faq-a {
  padding-bottom: 22px;
  font-size: 15px;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.75;
}
.faq-contact {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(15,23,42,0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--mid);
  font-weight: 400;
  line-height: 1.5;
}
.faq-contact-item .fci-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(27,36,118,0.12);
  display: flex; align-items: center; justify-content: center;
  color: #1B2476;
  font-size: 15px;
  margin-top: 2px;
}
.faq-contact-item strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 3px;
}
.faq-contact-item a {
  color: var(--teal);
  text-decoration: none;
  font-size: 16px;
}
.faq-contact-item a:hover { text-decoration: underline; }
@media (max-width: 860px) {
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-left { position: static; }
  .faq-left p { max-width: 100%; }
}
@media (max-width: 640px) {
  .faq-sec { padding: 48px 20px; }
  .faq-q-text { font-size: 15px; }
}

/* ══════════════════════════════════
   INDUSTRIES SERVED
══════════════════════════════════ */
/* ── Industries Served – scrolling pills ── */
.ind-sec { overflow: hidden; padding-left: 0 !important; padding-right: 0 !important; }
.ind-sec-head { padding: 0 max(40px, calc(50% - 680px)); text-align: center; }
.ind-scroll-wrap {
  margin-top: 44px;
  overflow: hidden; width: 100%;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  display: flex; flex-direction: column; gap: 10px;
  padding-bottom: 8px;
}
.ind-row { display: flex; gap: 16px; width: max-content; }
.ind-row-fwd { animation: ind-fwd 35s linear infinite; }
.ind-row-rev { animation: ind-rev 45s linear infinite; }
@keyframes ind-fwd { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ind-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.ind-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 18px 9px 9px;
  border-radius: 100px; flex-shrink: 0;
  cursor: default;
}
.ind-pill-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #fff; flex-shrink: 0;
}
.ind-pill-name {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 600; color: #fff; white-space: nowrap;
}

/* ══════════════════════════════════
   CTA SECTION
══════════════════════════════════ */
.cta-sec {
  padding: 88px max(40px, calc(50% - 620px)) 80px;
  z-index: 2; position: relative; margin-bottom: -2px;
  background: linear-gradient(to bottom,
    rgba(10,10,10,0)    0%,
    rgba(10,10,10,0.08) 20%,
    rgba(10,10,10,0.28) 38%,
    rgba(10,10,10,0.55) 54%,
    rgba(10,10,10,0.78) 68%,
    rgba(10,10,10,0.92) 80%,
    rgba(10,10,10,1)    92%,
    rgba(10,10,10,1)    100%),
    linear-gradient(135deg, #1B2476 0%, #0e6e45 70%, #d86600 100%);
  border-bottom: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-left { position: relative; z-index: 1; }
.cta-eye { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.55); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.cta-h {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 800; letter-spacing: -0.04em;
  line-height: 1.05; color: white; margin-bottom: 18px;
}
.cta-h em { font-family: 'Libre Baskerville', serif; font-style: italic; font-weight: 400; color: rgba(255,255,255,0.65); }
.cta-sub { font-size: 14px; color: rgba(255,255,255,0.60); font-weight: 300; line-height: 1.8; }
.cta-right { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.cta-btn-w {
  padding: 16px 36px; background: var(--bg); color: var(--blue);
  border: none; font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 700; cursor: pointer;
  border-radius: 8px; transition: opacity 0.18s;
}
.cta-btn-w:hover { opacity: 0.9; }
.cta-btn-o {
  padding: 15px 36px; background: transparent; color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.30);
  font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 400; cursor: pointer;
  border-radius: 8px; transition: all 0.18s;
}
.cta-btn-o:hover { border-color: rgba(255,255,255,0.7); color: white; }

/* ══════════════════════════════════
   FOOTER — DARK MASONRY STYLE
══════════════════════════════════ */
footer { background: #0A0A0A; position: relative; z-index: 1; margin-top: -2px; }

/* links row */
.ft-links {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding: 56px max(40px, calc(50% - 680px)) 72px;
}
.ft-logo-wrap img { height: 34px; width: auto; object-fit: contain; display: block; margin-bottom: 14px; filter: brightness(10); }
.ft-tag { font-size: 14px; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.85; max-width: 240px; }
.ft-ch { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); font-weight: 700; margin-bottom: 16px; display: block; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ft-col ul a { font-size: 14px; color: rgba(255,255,255,0.62); text-decoration: none; font-weight: 300; transition: color 0.18s; }
.ft-col ul a:hover { color: #fff; }

/* masonry grid converted to marquee */
.ft-showcase-wrap {
  margin-top: 0; padding-top: 0;
  overflow: hidden; width: 100%; display: flex;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.ft-showcase {
  width: 1400px; flex-shrink: 0; padding: 0 10px;
  columns: 5; column-gap: 10px;
  animation: scr-footer 50s linear infinite;
}
@keyframes scr-footer { from { transform: translateX(0); } to { transform: translateX(-100%); } }

.ft-sc-card {
  break-inside: avoid; margin-bottom: 10px;
  border-radius: 14px; overflow: hidden;
  position: relative; display: block; cursor: pointer;
  background: #1A1A1A; width: 100%;
}
.ft-sc-card img {
  width: 100%; display: block;
  filter: grayscale(100%) brightness(0.8);
  transition: filter 0.3s, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.ft-sc-card:hover img { filter: grayscale(50%) brightness(0.95); transform: scale(1.06) rotate(3deg); }
.ft-sc-label {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(8,8,8,0.78);
  backdrop-filter: blur(8px);
  color: #fff; font-family: 'Outfit', sans-serif;
  font-size: 12.5px; font-weight: 700;
  padding: 5px 13px; border-radius: 7px;
}
.ft-sc-cta {
  break-inside: avoid; margin-bottom: 10px;
  border-radius: 14px; overflow: hidden;
  background: #161616; width: 100%; min-height: 130px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s;
}
.ft-sc-cta:hover { background: #1E1E1E; }
.ft-sc-cta-txt {
  font-family: 'Libre Baskerville', serif;
  font-style: italic; font-size: 14px;
  color: rgba(255,255,255,0.4); text-align: center; padding: 20px;
}

/* bottom bar */
.ft-bar {
  padding: 20px max(40px, calc(50% - 680px));
  display: flex; justify-content: center; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ft-copy { font-size: 12.5px; color: rgba(255,255,255,0.3); text-align: center; }
.ft-nl-socials { display: flex; gap: 10px; justify-content: center; margin-top: 20px; }
.ft-nl-soc-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; font-size: 15px; text-decoration: none; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.ft-nl-soc-btn:hover { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.3); }

/* ══════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

.mob-radar-wrap    { display: none; }
.mob-br            { display: none; }
.hero-mob-marquee  { display: none; }

/* ══════════════════════════════════
   HAMBURGER + MOBILE NAV
══════════════════════════════════ */
.nav-ham {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; padding: 6px;
  background: none; border: none; cursor: pointer;
  border-radius: 6px; transition: background 0.15s; margin-left: 8px;
}
.nav-ham:hover { background: rgba(27,36,118,0.05); }
.nav-ham span {
  display: block; width: 18px; height: 1.5px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.26s ease, opacity 0.2s; transform-origin: center;
}
.nav-ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mob-nav {
  display: none; position: fixed; inset: 0;
  background: rgba(15,23,42,0.4);
  z-index: 210; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mob-nav.open { opacity: 1; pointer-events: all; }
.mob-nav-inner {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 88vw);
  background: var(--bg);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1);
  overflow-y: auto;
  box-shadow: -8px 0 48px rgba(15,23,42,0.18);
}
.mob-nav.open .mob-nav-inner { transform: translateX(0); }
.mob-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px 14px;
  border-bottom: 1px solid var(--faint);
}
.mob-nav-title { font-size: 14px; font-weight: 600; color: var(--ink); }
.mob-nav-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(15,23,42,0.06); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--ink);
  transition: background 0.15s;
}
.mob-nav-close:hover { background: rgba(15,23,42,0.12); }
.mob-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 24px; font-size: 15px; font-weight: 500; color: var(--ink);
  text-decoration: none; border-bottom: 1px solid var(--faint); transition: background 0.14s;
}
.mob-nav-link:hover { background: #E8EDF2; }
.mob-nav-link .chev { font-size: 11px; color: rgba(15,23,42,0.3); }
.mob-nav-section { padding: 8px 0; border-bottom: 1px solid var(--faint); }
.mob-nav-sh { font-size: 10px; font-weight: 700; color: rgba(15,23,42,0.35); letter-spacing: 0.1em; text-transform: uppercase; padding: 12px 24px 6px; }
.mob-nav-sub {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 24px; font-size: 14px; font-weight: 500; color: var(--ink);
  text-decoration: none; transition: background 0.14s;
}
.mob-nav-sub:hover { background: #E8EDF2; }
.mob-nav-sub-ico { width: 28px; height: 28px; border-radius: 7px; background: var(--blue-lt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mob-nav-btns { display: flex; flex-direction: column; gap: 10px; padding: 20px 24px 28px; }
.mob-nav-btns button { width: 100%; padding: 13px; font-size: 14px; font-weight: 600; border-radius: 8px; cursor: pointer; }

/* ══════════════════════════════════
   RESPONSIVE — 1024px
══════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 0; }
  .nav-links a { font-size: 12.5px; padding: 6px 10px; }
  .sec { padding: 64px 24px; }
  .stats-strip { }
  .cta-sec { padding: 64px 24px; gap: 48px; }
  .ft-links { padding: 48px 24px 36px; gap: 32px; }
  .ft-showcase-wrap { padding: 32px 24px 0; margin-top: 24px; }
  .wcu-wrap { grid-template-columns: 260px 1fr; }
  .ch-grid { grid-template-columns: repeat(2,1fr); }
  .test-card { width: 300px; }
  .step-row { grid-template-columns: 64px 1fr 1.2fr; gap: 0 32px; }
}

/* ══════════════════════════════════
   RESPONSIVE — 768px
══════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-btns  { display: none; }
  .nav-ham   { display: flex; }
  .mob-nav   { display: block; }
  nav { padding: 0 20px; height: 50px; box-shadow: none; }
  :root { --nav-h: 50px; }
  .hero { height: auto; min-height: auto; padding: 0; flex-direction: column; align-items: center; justify-content: flex-start; background: var(--bg); overflow: visible; position: relative; }
  .hero::before { display: none; }
  .hero-dot-grid { display: none; }
  /* max(40px, ...) never drops below 40px on mobile — flatten every
     section using that formula to 24px so every page matches the
     homepage hero's own mobile padding (.hero-inner, just below). This
     also covers .ft-links/.ft-bar in the shared footer, so it's consistent
     on every single page site-wide, not just the homepage's own sections. */
  .sec { padding-left: 24px; padding-right: 24px; }
  .cand-sec { padding-left: 24px; padding-right: 24px; }
  .faq-sec { padding-left: 24px; padding-right: 24px; }
  .ind-sec-head { padding-left: 24px; padding-right: 24px; }
  .cta-sec { padding-left: 24px; padding-right: 24px; }
  .ft-links { padding-left: 24px; padding-right: 24px; }
  .ft-bar { padding-left: 24px; padding-right: 24px; }
  .hero-vignette { display: none; }
  .hero-radar { display: none; }
  .mob-radar-wrap { display: none; }
  .mob-br { display: block; }
  .hero-inner { width: 100%; padding: 80px 24px 0; align-items: center; text-align: center; position: relative; z-index: 2; margin-top: 0; }
  .hero-left { align-items: center; width: 100%; }
  .hero-h1 { font-size: clamp(54px, 13vw, 76px); text-align: center; }
  .hero-sub { font-size: 14.5px; max-width: 100%; text-align: center; }
  .hero-cta { justify-content: center; }
  .social-proof { justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
  .eyebrow { display: none; }
  .trusted-strip { display: none; }
  .hero-mob-marquee {
    display: block;
    width: 100vw;
    margin-left: -24px;
    overflow: hidden;
    margin-bottom: 36px;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  }
  .hero-mob-track {
    display: flex;
    width: max-content;
    animation: trustedScroll 50s linear infinite;
  }
  .hero-mob-track .tlogo {
    padding: 0 18px;
    border-right: 1px solid rgba(15,23,42,0.08);
  }
  .hero-mob-track .tlogo-icon { width: 26px; height: 26px; font-size: 12px; }
  .hero-mob-track .tlogo-name { font-size: 12px; }
  .stats-strip { position: relative; z-index: 3; grid-template-columns: repeat(2,1fr); }
  .si { padding: 24px 20px; }
  .si:nth-child(2) { border-right: none; }
  .sec { padding: 48px 20px; }
  .sec-sub { margin-bottom: 36px; font-size: 14px; }
  .step-row { grid-template-columns: 1fr; gap: 8px; padding: 28px 0 28px 18px; }
  .s-num { font-size: 38px; margin-bottom: 4px; }
  .s-head { font-size: 18px; }
  .s-body { padding-top: 4px; }
  .wcu-wrap { grid-template-columns: 1fr; border-radius: 14px; }
  .wcu-nav { display: grid; grid-template-columns: repeat(3,1fr); }
  .wcu-tab { padding: 14px 16px; border-right: 1px solid var(--faint); flex-direction: column; gap: 4px; }
  .wcu-tab.active { background: var(--blue-lt); }
  .wcu-panel-wrap { min-height: 360px; }
  .wcu-panel { padding: 36px 32px 32px; }
  .ch-grid { grid-template-columns: 1fr; }
  .browse-head { flex-direction: column; align-items: flex-start; }
  .filter-row { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .test-card { width: 280px; padding: 22px; }
  .cta-sec { grid-template-columns: 1fr; gap: 32px; padding: 48px 20px; }
  .cta-h { font-size: clamp(32px, 7vw, 48px); }
  .cta-right { flex-direction: row; flex-wrap: wrap; }
  .cta-btn-w, .cta-btn-o { flex: 1; min-width: 140px; padding: 13px 20px; font-size: 13.5px; }
  .ft-links { grid-template-columns: 1fr 1fr; gap: 28px; padding: 36px 20px 28px; }
  .ft-showcase-wrap { padding: 24px 0 0; margin-top: 24px; }
  .ft-bar { padding: 18px 20px; }
  .ft-nl-socials { gap: 8px; }
}


@media (max-width: 480px) {
  .hero-h1 { font-size: clamp(48px, 12vw, 68px); }
  .hero-cta { flex-direction: column; width: 100%; }
  .btn-cta-main, .btn-cta-sec { width: 100%; text-align: center; justify-content: center; padding: 14px 32px; font-size: 15px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .si { padding: 20px 16px; }
  .si-big { font-size: clamp(28px, 7vw, 38px); }
  .wcu-nav { grid-template-columns: repeat(2,1fr); }
  .wcu-panel { padding: 28px 24px 24px; }
  .wcu-p-title { font-size: 24px; }
  .wcu-p-body { font-size: 14px; }
  .ft-links { grid-template-columns: 1fr; gap: 22px; }
}

/* ── page loader ── */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
#page-loader img { height: 52px; width: auto; object-fit: contain; animation: loaderPulse 1.4s ease-in-out infinite; }
@keyframes loaderPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.45;transform:scale(0.92)} }
/* ── Left edge sticky social card ── */
.left-social {
  position: fixed; left: 0; top: 50%; transform: translateY(-50%);
  z-index: 300;
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.left-social.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(-8px);
}
.left-social {
  background: var(--white);
  border: 1px solid rgba(15,23,42,0.09);
  border-left: none;
  border-radius: 0 14px 14px 0;
  box-shadow: 3px 3px 16px rgba(15,23,42,0.1);
  padding: 14px 10px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.left-social a {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--mid); font-size: 15px;
  text-decoration: none;
  border-radius: 7px;
  transition: color 0.18s, background 0.18s;
}
.left-social a:hover { color: var(--blue); background: var(--blue-lt); }
.left-social a.wa:hover { color: #25D366; background: rgba(37,211,102,0.1); }
.left-social a.ig:hover { color: #E1306C; background: rgba(225,48,108,0.1); }
.left-social a.li:hover { color: #0077B5; background: rgba(0,119,181,0.1); }
.left-social-divider {
  width: 20px; height: 1px;
  background: rgba(15,23,42,0.08);
}
@media (max-width: 860px) {
  .left-social { display: none; }
  .scrtop { bottom: 24px; right: 16px; width: 40px; height: 40px; }
  .scrtop-ring { width: 40px; height: 40px; }
}

.scrtop {
  position: fixed; bottom: 32px; right: 32px;
  width: 44px; height: 44px; background: var(--white);
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 500; opacity: 0; pointer-events: none;
  transform: translateY(10px); transition: opacity 0.3s ease, transform 0.3s ease;
}
.scrtop.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scrtop-ring { position: absolute; inset: 0; width: 44px; height: 44px; transform: rotate(-90deg); }
.scrtop-track { fill: none; stroke: rgba(15,23,42,0.08); stroke-width: 2; }
.scrtop-fill { fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 119.4; stroke-dashoffset: 119.4; transition: stroke-dashoffset 0.1s linear; }
.scrtop-arrow { position: relative; z-index: 1; width: 16px; height: 16px; color: var(--ink); transition: transform 0.22s ease; flex-shrink: 0; }
.scrtop:hover .scrtop-arrow { transform: translateY(-1px); }
