/* =================================================================
   PEOPLETINE — Human Capital Advisory & Business Process Solutions
   Master design system. One source of truth for every page.
   ================================================================= */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Brand palette */
  --navy:      #0B1F3A;
  --navy-2:    #123A73;
  --blue:      #2E7CF6;
  --blue-600:  #1D5FD8;
  --slate:     #4A6FA5;
  --bg:        #F8FAFC;

  /* Neutral / text scale */
  --ink:       #0B1F3A;   /* headings */
  --body:      #475569;   /* body copy (AA on light) */
  --muted:     #64748B;   /* supporting */
  --line:      #E2E8F0;   /* hairline borders */
  --line-2:    #EEF2F7;
  --white:     #FFFFFF;
  --card:      #FFFFFF;
  --surface:   #F1F5FB;

  /* Dark surface text */
  --on-dark:        #EAF1FB;
  --on-dark-muted:  #9DB4D6;

  /* Gradients */
  --grad-brand:  linear-gradient(135deg, #123A73 0%, #0B1F3A 100%);
  --grad-accent: linear-gradient(135deg, #2E7CF6 0%, #123A73 100%);
  --grad-hero:   radial-gradient(120% 120% at 80% 0%, #173f7d 0%, #0d264c 42%, #081a35 100%);
  --grad-text:   linear-gradient(120deg, #2E7CF6 0%, #7FB0FF 100%);

  /* Typography */
  --font-display: "Playfair Display", Georgia, serif;
  --font-head:    "Manrope", "Segoe UI", sans-serif;
  --font-body:    "Inter", "Segoe UI", system-ui, sans-serif;

  /* Spacing scale */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(72px, 9vw, 128px);
  --grid-gap: clamp(20px, 2.4vw, 32px);

  /* Radius */
  --r-sm: 10px;  --r-md: 16px;  --r-lg: 22px;  --r-xl: 30px;  --r-pill: 999px;

  /* Elevation */
  --sh-1: 0 1px 2px rgba(11,31,58,.06), 0 1px 3px rgba(11,31,58,.04);
  --sh-2: 0 6px 18px rgba(11,31,58,.07), 0 2px 6px rgba(11,31,58,.05);
  --sh-3: 0 18px 44px rgba(11,31,58,.12), 0 6px 14px rgba(11,31,58,.06);
  --sh-4: 0 32px 70px rgba(9,24,48,.18);
  --sh-blue: 0 18px 40px rgba(46,124,246,.28);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,.84,.44,1);
  --dur: 240ms;

  /* z-index scale */
  --z-base: 1;
  --z-raised: 10;
  --z-nav: 50;
  --z-overlay: 80;
}

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; color-scheme: only light; }
:root { color-scheme: only light; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }

::selection { background: rgba(46,124,246,.22); color: var(--navy); }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 3. LAYOUT PRIMITIVES ---------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(56px, 7vw, 96px); }
.section--bg     { background: var(--bg); }
.section--white  { background: var(--white); }
.section--surface{ background: var(--surface); }
.section--dark   { background: var(--grad-hero); color: var(--on-dark); }
.section--dark .eyebrow { color: #8FB6FF; }

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
  align-items: start;
}

/* explicit, predictable spans (no orphan columns) */
.col-6  { grid-column: span 6; }
.col-5  { grid-column: span 5; }
.col-7  { grid-column: span 7; }
.col-4  { grid-column: span 4; }
.col-8  { grid-column: span 8; }
.col-12 { grid-column: span 12; }

.stack    { display: flex; flex-direction: column; }
.gap-2 { gap: var(--s-2); } .gap-3 { gap: var(--s-3); }
.gap-4 { gap: var(--s-4); } .gap-5 { gap: var(--s-5); } .gap-6 { gap: var(--s-6); }

.center-x { margin-inline: auto; }
.text-center { text-align: center; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 48ch; }

/* ---------- 4. TYPOGRAPHY ---------- */
.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  opacity: .8;
}
.eyebrow--center::before { display: none; }

.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.01em;
  color: var(--ink);
  font-size: clamp(2.5rem, 5.4vw, 4.2rem);
}
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--ink);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -.01em;
  color: var(--ink);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
}
h3, .h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  letter-spacing: -.01em;
}
.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.7;
  color: var(--body);
}
.section--dark h1, .section--dark h2, .section--dark h3,
.section--dark .display { color: #fff; }
.section--dark .lead, .section--dark p { color: var(--on-dark); }

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

.section-head { max-width: 780px; }
.section-head .h2 { margin-top: 14px; }
.section-head p { margin-top: 18px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* ---------- 5. BUTTONS ---------- */
.btn {
  --btn-bg: var(--navy);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  will-change: transform;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--dur) var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary { background: var(--grad-brand); box-shadow: var(--sh-2); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--sh-3), 0 0 0 4px rgba(46,124,246,.16); }

.btn--accent { background: var(--blue-600); box-shadow: var(--sh-2); }
.btn--accent:hover { transform: translateY(-2px); background: var(--blue); box-shadow: var(--sh-blue); }

.btn--ghost {
  background: transparent; color: var(--navy);
  border-color: var(--line);
}
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--navy); box-shadow: var(--sh-1); }

.btn--light { background: #fff; color: var(--navy); box-shadow: var(--sh-2); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--sh-3); }

.btn--outline-light {
  background: rgba(255,255,255,.06); color: #fff;
  border-color: rgba(255,255,255,.34);
}
.btn--outline-light:hover { transform: translateY(-2px); background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.6); }

.btn--lg { padding: 17px 34px; font-size: 1.02rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* text link with arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600;
  color: var(--blue-600); font-size: .95rem;
}
.link-arrow svg { width: 17px; height: 17px; transition: transform var(--dur) var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }
.section--dark .link-arrow { color: #8FB6FF; }

/* ---------- 6. NAVBAR ---------- */
.nav {
  position: fixed; inset: 16px 0 auto 0;
  z-index: var(--z-nav);
  transition: inset var(--dur) var(--ease);
}
.nav__inner {
  width: min(calc(var(--container) + var(--gutter) * 2), calc(100% - 32px));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 12px 12px 12px 22px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 10px 40px rgba(11,31,58,.10);
  border-radius: var(--r-pill);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.nav.scrolled { inset: 8px 0 auto 0; }
.nav.scrolled .nav__inner {
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 44px rgba(11,31,58,.16);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 800; color: var(--navy); font-size: 1.18rem; letter-spacing: -.01em; }
.brand__mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: #fff;
  display: grid; place-items: center;
  box-shadow: var(--sh-2);
  border: 1px solid var(--line);
  padding: 4px;
  overflow: hidden;
  flex: none;
}
.brand__mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand__mark svg { width: 20px; height: 20px; }
.brand b { color: var(--navy); }
.brand span { color: var(--blue-600); }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  color: #38476a;
  padding: 9px 16px; border-radius: var(--r-pill);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav__links a:hover { color: var(--navy); background: rgba(46,124,246,.08); }
.nav__links a.active { color: var(--navy); background: rgba(46,124,246,.12); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__cta .btn { padding: 12px 22px; font-size: .92rem; }

.nav__toggle {
  display: none; width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-brand); border: none; cursor: pointer;
  place-items: center; flex: none;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 19px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav__toggle span::before { transform: translateY(-6px); }
.nav__toggle span::after { transform: translateY(4px); }
body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { transform: translateY(0) rotate(45deg); background:#fff;}
body.menu-open .nav__toggle span::after  { transform: translateY(-2px) rotate(-45deg); background:#fff;}
.nav__panel { display: none; } /* hidden on desktop; shown as mobile menu via media query */

/* ---------- 7. REVEAL ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); transition-delay: var(--d, 0ms); will-change: opacity, transform; }
.reveal-l { opacity: 0; transform: translateX(-34px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); transition-delay: var(--d, 0ms); }
.reveal-r { opacity: 0; transform: translateX(34px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); transition-delay: var(--d, 0ms); }
.reveal-zoom { opacity: 0; transform: scale(.94); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); transition-delay: var(--d, 0ms); }
.in.reveal, .in.reveal-l, .in.reveal-r, .in.reveal-zoom { opacity: 1; transform: none; }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes floaty-sm { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse-ring { 0% { transform: scale(.7); opacity:.55; } 100% { transform: scale(1.7); opacity:0; } }
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes dash { to { stroke-dashoffset: 0; } }

/* ---------- 8. CARDS (shared) ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 2.4vw, 34px);
  box-shadow: var(--sh-1);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  position: relative;
}
.card--hover { cursor: pointer; }
.card--hover:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: rgba(46,124,246,.4); }

.icon-badge {
  width: 58px; height: 58px; border-radius: 15px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, #EAF2FF, #D7E6FF);
  border: 1px solid rgba(46,124,246,.22);
  box-shadow: inset 0 1px 0 #fff;
  flex: none;
}
.icon-badge svg { width: 28px; height: 28px; stroke: var(--blue-600); }
.icon-badge--dark { background: rgba(46,124,246,.14); border-color: rgba(46,124,246,.34); }
.icon-badge--dark svg { stroke: #8FB6FF; }

.kicker-num {
  font-family: var(--font-head); font-weight: 800;
  font-size: .82rem; letter-spacing: .12em;
  color: var(--blue-600); opacity: .9;
}

/* ---------- 9. UTILITY CHIPS / PILLS ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  padding: 7px 14px; border-radius: var(--r-pill);
  background: rgba(46,124,246,.09); color: var(--blue-600);
  border: 1px solid rgba(46,124,246,.18);
}
.pill--dark { background: rgba(255,255,255,.08); color: var(--on-dark); border-color: rgba(255,255,255,.16); }

.tick {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 1rem; color: var(--body);
}
.tick svg { width: 22px; height: 22px; flex: none; margin-top: 2px; }
.tick--dark { color: var(--on-dark); }

.divider { height: 1px; background: var(--line); border: 0; }

/* =================================================================
   PAGE & SECTION SPECIFIC
   ================================================================= */

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--grad-hero);
  color: var(--on-dark);
  overflow: hidden;
  padding-top: clamp(132px, 16vh, 180px);
  padding-bottom: clamp(80px, 10vw, 130px);
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: .9; }
.hero__glow {
  position: absolute; z-index: 0; pointer-events: none;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,124,246,.35), transparent 62%);
  top: -160px; right: -120px; filter: blur(8px);
}
.hero .container { position: relative; z-index: 2; }
.hero__grid { align-items: center; gap: clamp(32px, 4vw, 56px); }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: .04em;
  padding: 8px 16px 8px 8px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  color: var(--on-dark); margin-bottom: 26px;
}
.hero__eyebrow b { background: var(--blue); color:#fff; font-weight:700; font-size:.72rem; padding: 4px 10px; border-radius: var(--r-pill); letter-spacing:.08em; text-transform: uppercase; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 4.9vw, 4rem);
  line-height: 1.07;
  letter-spacing: -.015em;
}
.hero h1 em { font-style: italic; color: #9FC3FF; }
.hero__sub { margin-top: 26px; max-width: 56ch; color: var(--on-dark); font-size: clamp(1.02rem, 1.4vw, 1.16rem); }
.hero__sub + .hero__sub { margin-top: 16px; color: var(--on-dark-muted); }
.hero .btn-row { margin-top: 38px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 48px); margin-top: 48px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.12); }
.hero__stat b { display:block; font-family: var(--font-display); font-weight:700; font-size: 1.9rem; color: #fff; line-height:1; }
.hero__stat span { font-size: .86rem; color: var(--on-dark-muted); margin-top: 8px; display:block; }

/* hero visual — organizational ecosystem */
.eco { position: relative; aspect-ratio: 1/1; width: 100%; max-width: 520px; margin-inline: auto; }
.eco__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.eco__svg .edge { stroke: rgba(143,182,255,.5); stroke-width: 1.3; fill: none; stroke-dasharray: 6 7; animation: dashflow 9s linear infinite; }
@keyframes dashflow { to { stroke-dashoffset: -130; } }
.eco__node { fill: #0d2a52; }
.eco__ring { transform-origin: 260px 260px; animation: spin-slow 60s linear infinite; }
.eco__ring--rev { animation: spin-slow 80s linear infinite reverse; }

.eco-card {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(6,17,38,.4);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  min-width: 168px;
}
.eco-card__icon { width: 38px; height:38px; border-radius: 11px; background: var(--grad-brand); display:grid; place-items:center; flex:none; }
.eco-card__icon svg { width: 20px; height: 20px; stroke: #fff; }
.eco-card small { display:block; font-size: .72rem; color: var(--muted); font-family: var(--font-head); font-weight: 600; letter-spacing: .03em; }
.eco-card b { display:block; font-size: 1rem; color: var(--navy); font-family: var(--font-head); }
.eco-card .up { color: #18A05A; font-weight: 700; }
.eco-card--a { top: 6%; left: -4%; animation: floaty 7s var(--ease) infinite; }
.eco-card--b { top: 40%; right: -6%; animation: floaty 8.5s var(--ease) infinite .8s; }
.eco-card--c { bottom: 4%; left: 8%; animation: floaty-sm 7.5s var(--ease) infinite .4s; }

.eco-core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2;
  width: 124px; height: 124px; border-radius: 50%;
  background: var(--grad-accent);
  display: grid; place-items: center;
  box-shadow: 0 0 0 12px rgba(46,124,246,.12), 0 0 0 26px rgba(46,124,246,.06), var(--sh-blue);
}
.eco-core svg { width: 52px; height: 52px; stroke: #fff; }
.eco-core::after { content:""; position:absolute; inset:-12px; border-radius:50%; border:1.5px solid rgba(143,182,255,.4); animation: pulse-ring 3.4s ease-out infinite; }
.eco-dot { position:absolute; width: 50px; height:50px; border-radius:50%; background: rgba(255,255,255,.95); display:grid; place-items:center; box-shadow: 0 10px 26px rgba(6,17,38,.35); z-index:2; }
.eco-dot svg { width: 24px; height: 24px; stroke: var(--blue-600); }

/* ---------- TRUST / METRICS ---------- */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--grid-gap); }
.metric { text-align: center; padding: clamp(22px,2.4vw,32px) 18px; }
.metric__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.6rem, 4.2vw, 3.6rem); line-height: 1;
  color: var(--navy); letter-spacing: -.02em;
}
.section--dark .metric__num { color: #fff; }
.metric__num .suffix { color: var(--blue); }
.metric__label { font-family: var(--font-head); font-weight: 700; color: var(--ink); margin-top: 12px; font-size: 1.02rem; }
.section--dark .metric__label { color: #fff; }
.metric__desc { font-size: .9rem; color: var(--muted); margin-top: 6px; }
.section--dark .metric__desc { color: var(--on-dark-muted); }
.metrics .metric:not(:last-child) { border-right: 1px solid var(--line); }
.section--dark .metrics .metric:not(:last-child) { border-color: rgba(255,255,255,.12); }

.logos-strip { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap: 14px 28px; margin-top: 46px; }
.logos-strip span { font-family: var(--font-head); font-weight: 700; font-size: .92rem; letter-spacing:.02em; color: #5b6f8f; }
.logos-strip .dot { width:5px; height:5px; border-radius:50%; background: var(--line); }

/* ---------- ABOUT PREVIEW / SPLIT ---------- */
.split { align-items: center; gap: clamp(36px, 4.5vw, 72px); }
.feat-list { display: grid; gap: 14px; margin-top: 28px; }

/* org model (about preview / about page visual) */
.orgviz {
  position: relative;
  background: linear-gradient(160deg, #0c2a55, #0a234a);
  border-radius: var(--r-xl);
  padding: 8px;
  box-shadow: var(--sh-4);
  overflow: hidden;
}
.orgviz-inner {
  position: relative;
  background: var(--grad-hero);
  border-radius: 26px;
  aspect-ratio: 1.04/1;
  overflow: hidden;
  padding: 24px;
}
.orgviz svg { width: 100%; height: 100%; }
.orgviz .o-line { stroke: rgba(143,182,255,.45); stroke-width: 1.4; fill: none; }
.orgviz .o-node-box { fill: rgba(255,255,255,.96); }
.orgviz .o-node-box.accent { fill: url(#ogr); }
.orgviz .o-label { font-family: var(--font-head); font-weight: 700; font-size: 12px; fill: var(--navy); }
.orgviz .o-label.light { fill: #fff; }
.orgviz .o-sub { font-family: var(--font-body); font-size: 9.5px; fill: var(--muted); }

/* ---------- SERVICES CARDS ---------- */
.cards-flex { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--grid-gap); }
.svc-card {
  flex: 1 1 320px; max-width: 380px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  box-shadow: var(--sh-1);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.svc-card::before {
  content:""; position:absolute; inset:0 0 auto 0; height: 4px;
  background: var(--grad-accent); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--sh-3); border-color: rgba(46,124,246,.4); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card .icon-badge { margin-bottom: 22px; }
.svc-card h3 { margin-bottom: 12px; }
.svc-card p { font-size: .98rem; }
.svc-card .link-arrow { margin-top: 22px; }
.svc-card__tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.svc-card__tags span { font-size:.74rem; font-family:var(--font-head); font-weight:600; color:var(--slate); background: var(--surface); padding:5px 10px; border-radius: var(--r-pill); border:1px solid var(--line); }

/* ---------- CHALLENGES (interactive) ---------- */
.chal { gap: clamp(28px, 3.5vw, 52px); align-items: stretch; }
.chal__rail { display: flex; flex-direction: column; gap: 10px; }
.chal__btn {
  display: flex; align-items: center; gap: 14px;
  width: 100%; text-align: left; cursor: pointer;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 16px 18px;
  font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: .98rem;
  transition: all var(--dur) var(--ease);
}
.chal__btn .n { font-family: var(--font-head); font-weight: 800; font-size: .8rem; color: var(--muted); width: 26px; flex:none; }
.chal__btn .ic { width: 22px; height: 22px; flex:none; stroke: var(--slate); }
.chal__btn:hover { border-color: rgba(46,124,246,.4); transform: translateX(3px); }
.chal__btn.active { background: var(--grad-brand); color: #fff; border-color: transparent; box-shadow: var(--sh-2); }
.chal__btn.active .n { color: #9FC3FF; }
.chal__btn.active .ic { stroke: #fff; }
.chal__panel {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(26px, 3vw, 42px);
  box-shadow: var(--sh-2);
  display: flex; flex-direction: column;
}
.chal__panel .icon-badge { margin-bottom: 22px; }
.chal__flow { margin-top: auto; padding-top: 28px; }
.chal__flow svg { width: 100%; height: auto; }
.flow-step { font-family: var(--font-head); font-weight:700; font-size: 12px; fill: var(--navy); }
.flow-line { stroke: var(--blue); stroke-width: 2; stroke-dasharray: 5 5; }

/* ---------- WHAT WE BUILD (blueprint) ---------- */
.blueprint {
  position: relative;
  background:
    linear-gradient(rgba(46,124,246,.05) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(90deg, rgba(46,124,246,.05) 1px, transparent 1px) 0 0 / 28px 28px,
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 56px);
  box-shadow: var(--sh-2);
}
.blueprint__hub {
  text-align:center; max-width: 560px; margin: 0 auto clamp(34px,4vw,52px);
}
.blueprint__hub .node-core {
  display:inline-flex; align-items:center; gap:12px;
  background: var(--grad-brand); color:#fff;
  padding: 14px 26px; border-radius: var(--r-pill);
  font-family: var(--font-head); font-weight:700; font-size:1.05rem;
  box-shadow: var(--sh-blue);
}
.blueprint__hub .node-core svg { width: 22px; height:22px; stroke:#fff; }
.build-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.build-cell {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 20px 18px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.build-cell:hover { transform: translateY(-5px); box-shadow: var(--sh-2); border-color: rgba(46,124,246,.4); }
.build-cell .bc-ic { width: 40px; height: 40px; border-radius: 11px; background: linear-gradient(140deg,#EAF2FF,#D7E6FF); display:grid; place-items:center; border:1px solid rgba(46,124,246,.18); }
.build-cell .bc-ic svg { width: 22px; height: 22px; stroke: var(--blue-600); }
.build-cell b { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: .98rem; line-height:1.3; }
.build-cell span { font-size: .82rem; color: var(--muted); }

/* ---------- WHY (comparison) ---------- */
.compare {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-3);
}
.compare__head { display: grid; grid-template-columns: 1.3fr 1fr 1fr; }
.compare__head > div { padding: 26px 28px; }
.compare__head .ch-feature { background: var(--surface); }
.compare__head .ch-trad { background: var(--surface); border-left: 1px solid var(--line); }
.compare__head .ch-pl {
  background: var(--grad-brand); color: #fff;
  display: flex; flex-direction: column; gap: 6px;
}
.compare__head .ch-pl b { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; }
.compare__head .ch-pl span { font-size: .84rem; color: #9FC3FF; }
.compare__head .ch-trad b { font-family: var(--font-head); font-weight: 700; color: var(--muted); font-size: 1.05rem; }
.compare__row { display: grid; grid-template-columns: 1.3fr 1fr 1fr; border-top: 1px solid var(--line); }
.compare__row > div { padding: 20px 28px; display: flex; align-items: center; gap: 12px; font-size: .98rem; }
.compare__row .cr-feature { font-family: var(--font-head); font-weight: 700; color: var(--ink); background: #fff; }
.compare__row .cr-trad { color: var(--muted); border-left: 1px solid var(--line); background: #fff; }
.compare__row .cr-pl { color: var(--ink); background: rgba(46,124,246,.04); border-left: 1px solid var(--line); }
.compare__row .ic-yes { color: #18A05A; }
.compare__row .ic-no  { color: #C0556B; }
.compare__row svg { width: 22px; height: 22px; flex:none; }

/* ---------- INDUSTRIES ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--grid-gap); }
.ind-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px 24px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  cursor: default; position: relative; overflow: hidden;
}
.ind-card:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: rgba(46,124,246,.4); }
.ind-card .icon-badge { width: 52px; height: 52px; margin-bottom: 18px; transition: transform var(--dur) var(--ease); }
.ind-card:hover .icon-badge { transform: translateY(-3px) scale(1.04); }
.ind-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.ind-card p { font-size: .88rem; color: var(--muted); }

/* ---------- FINAL CTA ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band__canvas { position:absolute; inset:0; width:100%; height:100%; z-index:0; opacity:.85; }
.cta-band__glow { position:absolute; z-index:0; width:560px; height:560px; border-radius:50%; background: radial-gradient(circle, rgba(46,124,246,.34), transparent 64%); left:50%; top:-40%; transform:translateX(-50%); pointer-events:none; }
.cta-band .container { position: relative; z-index: 2; }
.cta-band__inner { text-align:center; max-width: 820px; margin-inline:auto; }
.cta-band h2 { color:#fff; font-size: clamp(2.1rem, 4vw, 3.2rem); }
.cta-band p { color: var(--on-dark); margin-top: 22px; }
.cta-band .btn-row { justify-content: center; margin-top: 38px; }

/* ---------- MISSION / VISION / VALUES ---------- */
.mv-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(28px,3vw,40px);
  box-shadow: var(--sh-1); position: relative; overflow:hidden;
  height: 100%;
}
.mv-card .icon-badge { margin-bottom: 22px; }
.mv-card h3 { font-family: var(--font-display); font-size: clamp(1.5rem,2.4vw,2rem); color: var(--ink); margin-bottom: 14px; }
.mv-card--dark { background: var(--grad-hero); color: var(--on-dark); border-color: transparent; }
.mv-card--dark h3 { color:#fff; }
.mv-card--dark p { color: var(--on-dark); }

.value-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: var(--grid-gap); }
.value-card {
  background: var(--card); border:1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 26px; box-shadow: var(--sh-1);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: rgba(46,124,246,.4); }
.value-card .v-num { font-family: var(--font-display); font-size: 2.4rem; color: rgba(18,58,115,.92); font-weight:700; line-height:1; }
.value-card h3 { margin: 14px 0 10px; }
.value-card p { font-size: .94rem; }

/* ---------- SERVICES PAGE (detailed sections) ---------- */
.svc-detail { gap: clamp(36px,4.5vw,72px); align-items: center; }
.svc-detail--rev .svc-detail__media { order: -1; }
.svc-num {
  font-family: var(--font-display); font-weight:700; font-size: clamp(3rem,6vw,5rem);
  line-height:.9; color: var(--navy); display:block; margin-bottom: 8px;
}
.svc-checklist { display:grid; grid-template-columns: repeat(2,1fr); gap: 12px 24px; margin-top: 24px; }
.outcome-row { display:flex; flex-wrap:wrap; gap: 14px; margin-top: 26px; }
.outcome {
  background: var(--surface); border:1px solid var(--line); border-radius: var(--r-md);
  padding: 16px 20px; flex: 1 1 180px;
}
.outcome b { display:block; font-family: var(--font-display); font-size: 1.7rem; color: var(--navy); line-height:1; }
.outcome span { font-size: .84rem; color: var(--muted); margin-top:6px; display:block; }

/* process visualization (steps) */
.proc {
  background: var(--grad-hero); border-radius: var(--r-xl);
  padding: clamp(28px,3.4vw,44px); box-shadow: var(--sh-4); color: var(--on-dark);
  position: relative; overflow:hidden;
}
.proc__head { display:flex; align-items:center; gap:12px; margin-bottom: 26px; }
.proc__head .pill--dark { margin:0; }
.proc-step {
  display:flex; gap:16px; align-items:flex-start;
  padding: 16px 0; position: relative;
}
.proc-step:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.1); }
.proc-step .pn {
  width: 40px; height:40px; border-radius: 12px; flex:none;
  background: rgba(46,124,246,.18); border:1px solid rgba(143,182,255,.35);
  display:grid; place-items:center; color:#fff; font-family:var(--font-head); font-weight:800; font-size:.95rem;
}
.proc-step b { display:block; color:#fff; font-family: var(--font-head); font-weight:700; margin-bottom:4px; }
.proc-step span { font-size:.9rem; color: var(--on-dark-muted); }

/* ---------- SOLUTIONS PAGE ---------- */
.sol-card {
  background: var(--card); border:1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(28px,3vw,40px); box-shadow: var(--sh-1);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  position: relative; overflow: hidden; height: 100%;
  display:flex; flex-direction:column;
}
.sol-card::after {
  content:""; position:absolute; right:-40px; top:-40px; width:140px; height:140px; border-radius:50%;
  background: radial-gradient(circle, rgba(46,124,246,.10), transparent 70%);
  transition: transform .5s var(--ease);
}
.sol-card:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: rgba(46,124,246,.4); }
.sol-card:hover::after { transform: scale(1.5); }
.sol-card .sol-num { font-family: var(--font-head); font-weight:800; font-size:.82rem; letter-spacing:.12em; color: var(--blue-600); }
.sol-card .icon-badge { margin: 16px 0 20px; }
.sol-card h3 { margin-bottom: 12px; }
.sol-card .sol-feats { margin-top: auto; padding-top: 20px; display:grid; gap:10px; }
.sol-card .sol-feats .tick { font-size: .9rem; }
.sol-card .sol-feats .tick svg { width: 19px; height:19px; }

/* framework diagram */
.framework {
  background: var(--grad-hero); border-radius: var(--r-xl); color: var(--on-dark);
  padding: clamp(30px,4vw,56px); box-shadow: var(--sh-4); position:relative; overflow:hidden;
}
.framework svg { width:100%; height:auto; }

/* ---------- CONTACT PAGE ---------- */
.contact-grid { gap: clamp(32px, 4vw, 60px); align-items: start; }
.contact-card {
  display:flex; gap: 18px; align-items:flex-start;
  background: var(--card); border:1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px 26px; box-shadow: var(--sh-1);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--sh-3); border-color: rgba(46,124,246,.4); }
.contact-card .icon-badge { width: 50px; height: 50px; }
.contact-card small { font-family: var(--font-head); font-weight:600; color: var(--muted); font-size:.8rem; letter-spacing:.04em; text-transform: uppercase; }
.contact-card b { display:block; color: var(--ink); font-family: var(--font-head); font-weight:700; font-size: 1.06rem; margin-top:4px; }
.contact-card p { font-size:.92rem; margin-top: 2px; }

.form-card {
  background: var(--card); border:1px solid var(--line);
  border-radius: var(--r-xl); padding: clamp(28px,3.4vw,46px); box-shadow: var(--sh-3);
}
.form-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display:flex; flex-direction:column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-weight:600; font-size:.88rem; color: var(--ink); }
.field label .req { color: #C0556B; }
.field input, .field select, .field textarea {
  width:100%; padding: 14px 16px; border-radius: var(--r-md);
  border:1px solid var(--line); background: var(--bg); color: var(--ink);
  font-size: .98rem; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: #94a3b8; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 4px rgba(46,124,246,.14);
}
.form-note { font-size:.84rem; color: var(--muted); margin-top: 4px; display:flex; align-items:center; gap:8px; }
.form-note svg { width:16px; height:16px; stroke: var(--slate); flex:none; }
.form-success {
  display:none; align-items:center; gap:14px;
  background: rgba(24,160,90,.08); border:1px solid rgba(24,160,90,.3);
  color: #0f7a44; border-radius: var(--r-md); padding: 16px 20px; font-weight:600;
  font-family: var(--font-head);
}
.form-success.show { display:flex; }
.form-success svg { width:24px; height:24px; flex:none; }

/* contact background blobs */
.bg-blobs { position:absolute; inset:0; z-index:0; pointer-events:none; overflow:hidden; }
.bg-blobs i {
  position:absolute; border-radius:50%; filter: blur(40px); opacity:.5;
  background: radial-gradient(circle, rgba(46,124,246,.3), transparent 70%);
}
.bg-blobs i:nth-child(1){ width:380px;height:380px; top:-120px; right:-80px; }
.bg-blobs i:nth-child(2){ width:320px;height:320px; bottom:-140px; left:-90px; background: radial-gradient(circle, rgba(74,111,165,.28), transparent 70%); }

/* page hero (interior pages) */
.page-hero {
  position: relative; background: var(--grad-hero); color: var(--on-dark);
  overflow:hidden;
  padding-top: clamp(140px, 17vh, 200px); padding-bottom: clamp(64px, 8vw, 104px);
}
.page-hero__canvas { position:absolute; inset:0; width:100%; height:100%; z-index:0; opacity:.7; }
.page-hero__glow { position:absolute; z-index:0; width:560px; height:560px; border-radius:50%; background: radial-gradient(circle, rgba(46,124,246,.3), transparent 62%); top:-180px; right:-100px; pointer-events:none; }
.page-hero .container { position:relative; z-index:2; }
.page-hero h1 { color:#fff; max-width: 16ch; }
.page-hero .lead { margin-top: 22px; max-width: 60ch; color: var(--on-dark); }
.breadcrumb { display:flex; align-items:center; gap:10px; font-family:var(--font-head); font-weight:600; font-size:.82rem; color: var(--on-dark-muted); margin-bottom: 22px; letter-spacing:.04em; }
.breadcrumb a { color: var(--on-dark-muted); }
.breadcrumb a:hover { color:#fff; }
.breadcrumb span { color:#8FB6FF; }

/* ---------- FOOTER ---------- */
.footer { background: var(--navy); color: var(--on-dark); padding-top: clamp(64px,7vw,96px); position:relative; overflow:hidden; }
.footer__glow { position:absolute; top:-120px; left:10%; width:420px;height:420px;border-radius:50%; background: radial-gradient(circle, rgba(46,124,246,.16), transparent 66%); pointer-events:none; }
.footer .container { position:relative; z-index:2; }
.footer__top { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(28px,3vw,48px); padding-bottom: 52px; }
.footer__brand .brand { color:#fff; margin-bottom: 18px; }
.footer__brand .brand b, .footer__brand .brand { color:#fff; }
.footer__brand p { color: var(--on-dark-muted); max-width: 34ch; font-size:.95rem; }
.footer__social { display:flex; gap:10px; margin-top: 22px; }
.footer__social a { width:40px;height:40px;border-radius:11px; background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); display:grid;place-items:center; transition: all var(--dur) var(--ease); }
.footer__social a:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-3px); }
.footer__social svg { width:18px;height:18px; stroke:#fff; }
.footer__col h4 { font-family:var(--font-head); font-weight:700; color:#fff; font-size:.82rem; letter-spacing:.12em; text-transform:uppercase; margin-bottom: 18px; }
.footer__col a { display:block; color: var(--on-dark-muted); font-size:.95rem; padding: 7px 0; transition: color var(--dur) var(--ease); }
.footer__col a:hover { color:#fff; }
.footer__bottom { display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:16px; padding: 26px 0; border-top:1px solid rgba(255,255,255,.1); }
.footer__bottom p { color: var(--on-dark-muted); font-size:.9rem; }
.footer__bottom .f-links { display:flex; gap:22px; }
.footer__bottom .f-links a { color: var(--on-dark-muted); font-size:.9rem; }
.footer__bottom .f-links a:hover { color:#fff; }

/* back to top */
.to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: var(--z-raised);
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--grad-brand); border:none; cursor:pointer;
  display:grid; place-items:center; box-shadow: var(--sh-3);
  opacity:0; transform: translateY(16px); pointer-events:none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.to-top.show { opacity:1; transform:none; pointer-events:auto; }
.to-top:hover { transform: translateY(-3px); }
.to-top svg { width:20px;height:20px; stroke:#fff; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1024px) {
  .metrics, .build-grid, .ind-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics .metric:nth-child(2) { border-right: 0; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 920px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: grid; }
  .nav__panel {
    position: fixed; inset: 84px 16px auto 16px; z-index: var(--z-nav);
    background: rgba(255,255,255,.98); backdrop-filter: blur(18px);
    border:1px solid var(--line); border-radius: var(--r-lg);
    box-shadow: var(--sh-4); padding: 16px;
    display: none; flex-direction: column; gap: 4px;
  }
  body.menu-open .nav__panel { display: flex; }
  .nav__panel a { font-family: var(--font-head); font-weight:600; color: var(--ink); padding: 14px 16px; border-radius: var(--r-md); }
  .nav__panel a:hover, .nav__panel a.active { background: rgba(46,124,246,.1); color: var(--navy); }
  .nav__panel .btn { width: 100%; margin-top: 8px; }

  /* collapse all 12-col splits to a single, full-width column */
  .grid { grid-template-columns: minmax(0, 1fr); }
  .col-6, .col-5, .col-7, .col-4, .col-8, .col-12 { grid-column: 1 / -1; }
  .hero__grid { gap: 48px; }
  .eco { max-width: 440px; }
  .svc-detail--rev .svc-detail__media { order: 0; }
  .compare__head, .compare__row { grid-template-columns: 1.2fr .9fr .9fr; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .metrics, .build-grid, .ind-grid, .value-grid, .form-grid, .svc-checklist { grid-template-columns: 1fr; }
  .metrics .metric { border-right: 0 !important; border-bottom: 1px solid var(--line); padding-block: 24px; }
  .section--dark .metrics .metric { border-bottom-color: rgba(255,255,255,.12); }
  .metrics .metric:last-child { border-bottom: 0; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__stats { gap: 22px; }
  .hero__stat { flex: 1 1 40%; }
  .btn-row .btn { flex: 1 1 100%; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  /* comparison becomes stacked cards */
  .compare__head { display: none; }
  .compare__row { grid-template-columns: 1fr; }
  .compare__row > div { border-left: 0 !important; padding: 14px 20px; }
  .compare__row .cr-feature { background: var(--surface); font-size: 1.02rem; }
  .compare__row .cr-trad::before { content: "Traditional: "; font-weight:700; color: var(--muted); font-family: var(--font-head); }
  .compare__row .cr-pl::before { content: "Peopletine: "; font-weight:700; color: var(--blue-600); font-family: var(--font-head); }
  .chal__btn .ic { display:none; }
}

/* =================================================================
   v2 ADDITIONS — Who We Are, Challenges grid, Help panel, People Journal
   (reuses existing tokens; introduces no new colors/fonts)
   ================================================================= */

/* hero subheading line */
.hero__subhead {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  color: #9FC3FF; margin-top: 16px; letter-spacing: -.01em;
}

/* ---------- WHO WE ARE cards ---------- */
.wwa-card {
  flex: 1 1 320px; max-width: 384px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-1); display: flex; flex-direction: column;
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.wwa-card:hover { transform: translateY(-8px); box-shadow: var(--sh-3); border-color: rgba(46,124,246,.4); }
.wwa-card__viz { height: 158px; background: var(--grad-hero); position: relative; overflow: hidden; }
.wwa-card__viz svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.wwa-card__viz .glow { position: absolute; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(46,124,246,.32), transparent 62%); top: -70px; right: -50px; }
.wwa-card__body { padding: 44px 26px 30px; position: relative; flex: 1; display: flex; flex-direction: column; }
.wwa-card__icon {
  position: absolute; top: -28px; left: 26px;
  width: 56px; height: 56px; border-radius: 15px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-2);
  display: grid; place-items: center;
  transition: transform var(--dur) var(--ease);
}
.wwa-card:hover .wwa-card__icon { transform: translateY(-4px) scale(1.05); }
.wwa-card__icon svg { width: 28px; height: 28px; stroke: var(--blue-600); }
.wwa-card__body h3 { margin-bottom: 10px; }
.wwa-card__body p { font-size: .96rem; }

/* ---------- CHALLENGES (static grid — services page) ---------- */
.solve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--grid-gap); }
.solve-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 24px 22px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.solve-card:hover { transform: translateY(-5px); box-shadow: var(--sh-2); border-color: rgba(46,124,246,.4); }
.solve-card .s-ic { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(140deg,#EAF2FF,#D7E6FF); border: 1px solid rgba(46,124,246,.18); display: grid; place-items: center; }
.solve-card .s-ic svg { width: 22px; height: 22px; stroke: var(--blue-600); }
.solve-card b { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: .98rem; line-height: 1.3; }
.solve-card p { font-size: .86rem; color: var(--muted); }

/* ---------- HELP PANEL (Can't find the service) ---------- */
.help-panel {
  background: var(--grad-hero); color: var(--on-dark);
  border-radius: var(--r-xl); padding: clamp(34px, 5vw, 66px);
  text-align: center; position: relative; overflow: hidden; box-shadow: var(--sh-4);
}
.help-panel .glow { position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(46,124,246,.3), transparent 64%); top: -50%; left: 50%; transform: translateX(-50%); pointer-events: none; }
.help-panel > * { position: relative; z-index: 1; }
.help-panel h2 { color: #fff; }
.help-panel p { color: var(--on-dark); max-width: 62ch; margin: 18px auto 0; }
.help-panel .btn-row { justify-content: center; margin-top: 30px; }
.help-panel__mail { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: #9FC3FF; font-family: var(--font-head); font-weight: 600; }
.help-panel__mail svg { width: 18px; height: 18px; }

/* ---------- PEOPLE JOURNAL (blog) ---------- */
.pj-featured {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 0;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-3);
}
.pj-featured__media { position: relative; background: var(--grad-hero); min-height: 380px; overflow: hidden; }
.pj-featured__media svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.pj-featured__media .glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(46,124,246,.34), transparent 62%); top: -80px; right: -60px; }
.pj-featured__body { padding: clamp(28px, 3.6vw, 54px); display: flex; flex-direction: column; justify-content: center; }
.pj-featured__body h2 { font-size: clamp(1.6rem, 2.7vw, 2.4rem); margin: 16px 0; }
.pj-featured__body p { font-size: 1.02rem; }

.pj-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; font-family: var(--font-head); font-weight: 600; font-size: .84rem; color: var(--muted); }
.pj-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line); }

.pj-toolbar { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; }
.pj-search { position: relative; flex: 1 1 280px; max-width: 440px; }
.pj-search svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; stroke: var(--muted); pointer-events: none; }
.pj-search input {
  width: 100%; padding: 14px 18px 14px 48px; border: 1px solid var(--line);
  border-radius: var(--r-pill); background: var(--card); color: var(--ink); font-size: .96rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.pj-search input::placeholder { color: #94a3b8; }
.pj-search input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(46,124,246,.14); }
.pj-cats { display: flex; flex-wrap: wrap; gap: 10px; }
.pj-cat {
  font-family: var(--font-head); font-weight: 600; font-size: .85rem;
  padding: 9px 16px; border-radius: var(--r-pill);
  border: 1px solid var(--line); background: var(--card); color: #38476a; cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.pj-cat:hover { transform: translateY(-2px); border-color: rgba(46,124,246,.4); }
.pj-cat.active { background: var(--grad-brand); color: #fff; border-color: transparent; }

.pj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--grid-gap); }
.pj-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-1);
  display: flex; flex-direction: column; cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.pj-card:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: rgba(46,124,246,.4); }
.pj-card__media { height: 186px; position: relative; background: var(--grad-hero); overflow: hidden; }
.pj-card__media svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.pj-card:hover .pj-card__media svg { transform: scale(1.04); transition: transform .5s var(--ease); }
.pj-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-head); font-weight: 700; font-size: .7rem; letter-spacing: .05em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--r-pill); background: rgba(255,255,255,.94); color: var(--blue-600);
  box-shadow: var(--sh-1);
}
.pj-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.pj-card__body h3 { font-size: 1.12rem; margin-bottom: 10px; }
.pj-card__body p { font-size: .9rem; color: var(--muted); flex: 1; }
.pj-card__foot { margin-top: 18px; display: flex; align-items: center; justify-content: space-between; }
.pj-card__foot .pj-meta { font-size: .78rem; }

/* newsletter */
.newsletter {
  background: var(--grad-hero); color: var(--on-dark);
  border-radius: var(--r-xl); padding: clamp(34px, 5vw, 66px);
  text-align: center; position: relative; overflow: hidden; box-shadow: var(--sh-4);
}
.newsletter .glow { position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(46,124,246,.3), transparent 64%); top: -60%; left: 50%; transform: translateX(-50%); pointer-events: none; }
.newsletter > * { position: relative; z-index: 1; }
.newsletter h2 { color: #fff; }
.newsletter p { color: var(--on-dark); max-width: 54ch; margin: 16px auto 0; }
.newsletter form { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 540px; margin: 30px auto 0; }
.newsletter input {
  flex: 1 1 260px; padding: 15px 22px; border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.1); color: #fff; font-size: .96rem;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.newsletter input::placeholder { color: var(--on-dark-muted); }
.newsletter input:focus { outline: none; border-color: var(--blue); background: rgba(255,255,255,.16); }
.newsletter .form-success { justify-content: center; margin-top: 18px; background: rgba(46,124,246,.14); border-color: rgba(143,182,255,.4); color: #dbe8ff; }

/* v2 responsive */
@media (max-width: 1024px) {
  .solve-grid, .pj-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .pj-featured { grid-template-columns: 1fr; }
  .pj-featured__media { min-height: 260px; }
  .pj-toolbar { flex-direction: column; align-items: stretch; }
  .pj-search { max-width: none; }
}
@media (max-width: 680px) {
  .solve-grid, .pj-grid { grid-template-columns: 1fr; }
}

/* ---------- v2.1 — Who We Are cards → Services deep links ---------- */
a.wwa-card { color: inherit; text-decoration: none; cursor: pointer; }
/* keep sticky nav from covering a linked service section after scroll */
#strategic-hr-expertise,
#hr-technology-digital-transformation,
#compliance-governance,
#end-to-end-people-solutions,
#tailored-solutions { scroll-margin-top: 104px; }

/* ---------- v2.2 — Contact: full-width senior consultation CTA ---------- */
.consult-cta {
  display: flex; align-items: center; gap: clamp(24px, 4vw, 52px);
  flex-wrap: wrap;
  padding: clamp(30px, 4vw, 52px);
}
.consult-cta__text { flex: 1 1 460px; min-width: 0; }
.consult-cta__text p { margin: 0; }
.consult-cta__action { flex: 0 0 auto; }
@media (max-width: 720px) {
  .consult-cta__action { flex: 1 1 100%; }
  .consult-cta__action .btn { width: 100%; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal, .reveal-l, .reveal-r, .reveal-zoom { opacity: 1 !important; transform: none !important; }
}
