/* ============================================================
   PraxiumAI — Shared Stylesheet
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --n1: #060F1E;
  --n2: #091525;
  --n3: #0D1E33;
  --n4: #142840;
  --cy: #00D4FF;
  --og: #E8751A;
  --re: #FF6B6B;
  --gn: #00C48C;
  --w100: #FFFFFF;
  --w85: rgba(255,255,255,.95);
  --w70: rgba(255,255,255,.82);
  --w65: rgba(255,255,255,.78);
  --w50: rgba(255,255,255,.62);
  --w25: rgba(255,255,255,.25);
  --w10: rgba(255,255,255,.07);
  --bd:  rgba(0,212,255,.14);
  --bd2: rgba(0,212,255,.26);

  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;

  --radius: 8px;
  --radius-lg: 14px;
  --transition: .22s ease;
  --container: 1160px;
  --section-pad: 96px 24px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--n1);
  color: var(--w85);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
iframe { display: block; }

/* ── Typography Scale ──────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--w100);
  line-height: 1.15;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { font-size: 1rem; color: var(--w70); min-font-size: 14px; }
small { font-size: .875rem; color: var(--w50); }

/* ── Layout Utilities ──────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.section-sm { padding: clamp(2.5rem, 5vw, 3.5rem) 0; }
.section--alt { background: var(--n2); }
.section--dark { background: var(--n1); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

.text-center { text-align: center; }
.text-cyan  { color: var(--cy); }
.text-og    { color: var(--og); }
.text-red   { color: var(--re); }
.text-green { color: var(--gn); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ── Eyebrow Labels ────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cy);
  margin-bottom: 16px;
}

/* ── Chips ─────────────────────────────────────────────────── */
.chip {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--bd2);
  color: var(--cy);
  background: rgba(0,212,255,.06);
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }

/* ── Badges ────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.badge--live   { background: rgba(0,196,140,.15); color: var(--gn); border: 1px solid rgba(0,196,140,.3); }
.badge--sample { background: rgba(232,117,26,.15); color: var(--og); border: 1px solid rgba(232,117,26,.3); }
.badge--red    { background: rgba(255,107,107,.15); color: var(--re); border: 1px solid rgba(255,107,107,.3); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--og);
  color: var(--w100);
}
.btn--primary:hover { background: #d06816; transform: translateY(-1px); }

.btn--primary-lg {
  background: var(--og);
  color: var(--w100);
  font-size: 1.05rem;
  padding: 16px 34px;
  border-radius: 10px;
}
.btn--primary-lg:hover { background: #d06816; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,117,26,.35); }

.btn--cyan {
  background: transparent;
  color: var(--cy);
  border: 1.5px solid var(--bd2);
}
.btn--cyan:hover { background: rgba(0,212,255,.08); border-color: var(--cy); }

.btn--ghost {
  background: transparent;
  color: var(--w70);
  border: 1.5px solid var(--w25);
  font-size: .875rem;
  padding: 10px 20px;
}
.btn--ghost:hover { border-color: var(--cy); color: var(--cy); }

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,15,30,.88);
  border-bottom: 1px solid var(--bd);
  transition: backdrop-filter var(--transition);
}
.nav.scrolled { backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--w100);
  letter-spacing: -.02em;
}
.nav__logo span { color: var(--cy); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: .875rem;
  font-weight: 400;
  color: var(--w70);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--w100); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius);
  background: transparent;
  color: var(--cy);
  border: 1.5px solid var(--bd2);
  transition: var(--transition);
  white-space: nowrap;
}
.nav__cta:hover { background: rgba(0,212,255,.08); border-color: var(--cy); }

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
  padding: 88px 24px 96px;
  background: var(--n1);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,212,255,.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__left { max-width: 580px; }
.hero__h1 .hero__accent {
  color: var(--cy);
  font-style: normal;
  font-weight: 800;
  display: block;
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--w70);
  margin-top: 20px;
  line-height: 1.7;
}
.hero__fp {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__fp-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--w50);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero__fp-row {
  display: flex;
  gap: 8px;
}
.hero__fp-input {
  flex: 1;
  background: var(--n3);
  border: 1.5px solid var(--bd);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--w85);
  outline: none;
  transition: border-color var(--transition);
}
.hero__fp-input::placeholder { color: var(--w25); }
.hero__fp-input:focus { border-color: var(--cy); }
.fp-btn {
  background: var(--og);
  color: var(--w100);
  border: none;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.fp-btn:hover { background: #d06816; }
.hero__fp-micro {
  font-size: .78rem;
  color: var(--w50);
}
.hero__cta-row {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__bench {
  font-size: .85rem;
  color: var(--w50);
}
.trust-dots {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}
.trust-dots span {
  font-size: .8rem;
  color: var(--w50);
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-dots span::before {
  content: '•';
  color: var(--cy);
  font-size: 1.1em;
}
.hero__cred {
  margin-top: 28px;
  padding: 14px 18px;
  border-left: 3px solid var(--cy);
  background: var(--w10);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .85rem;
  color: var(--w70);
  line-height: 1.7;
}

/* ── Scorecard ─────────────────────────────────────────────── */
.scorecard {
  background: var(--n3);
  border: 1px solid var(--bd);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.sc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.sc-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cy);
}
.sc-firm {
  font-size: .8rem;
  color: var(--w50);
  margin-bottom: 16px;
  line-height: 1.5;
}
.sc-trigger {
  background: rgba(255,107,107,.1);
  border: 1px solid rgba(255,107,107,.25);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--re);
  margin-bottom: 20px;
}
.sc-score-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.sc-number {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--re);
  line-height: 1;
}
.sc-label { font-size: .85rem; color: var(--w50); }
.sc-bar-track {
  height: 8px;
  background: var(--w10);
  border-radius: 100px;
  margin: 12px 0 20px;
  overflow: hidden;
}
.sc-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--re) 0%, var(--og) 100%);
  border-radius: 100px;
  transition: width 1.2s cubic-bezier(.22,1,.36,1);
}
.sc-bands {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.sc-band {
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid transparent;
  opacity: .5;
}
.sc-band--red   { background: rgba(255,107,107,.12); color: var(--re);  border-color: rgba(255,107,107,.25); }
.sc-band--og    { background: rgba(232,117,26,.12);  color: var(--og);  border-color: rgba(232,117,26,.25); }
.sc-band--gn    { background: rgba(0,196,140,.12);   color: var(--gn);  border-color: rgba(0,196,140,.25); }
.sc-band.active { opacity: 1; }
.sc-gaps { display: flex; flex-direction: column; gap: 10px; }
.sc-gap-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem;
  color: var(--w70);
  line-height: 1.5;
}
.sc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.sc-dot--red { background: var(--re); }
.sc-dot--og  { background: var(--og); }

/* ── Truth Strip ───────────────────────────────────────────── */
.truth { background: var(--n2); }
.truth__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 40px 0; }
.stat-card {
  background: var(--n3);
  border: 1px solid var(--bd);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.stat-card--og { border-color: rgba(232,117,26,.3); background: linear-gradient(135deg, var(--n3) 0%, rgba(232,117,26,.06) 100%); }
.stat-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--cy);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-card--og .stat-number { color: var(--og); }
.stat-body { font-size: .9rem; color: var(--w70); line-height: 1.65; }
.truth__bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.truth__bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: var(--w70);
}
.truth__bullet::before {
  content: '→';
  color: var(--cy);
  flex-shrink: 0;
  font-weight: 600;
}
.truth__footnote {
  font-size: .75rem;
  color: var(--w25);
  border-top: 1px solid var(--bd);
  padding-top: 20px;
  line-height: 1.6;
}

/* ── Pain Section ──────────────────────────────────────────── */
.pain-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0 32px; }
.pain-card {
  background: var(--n3);
  border: 1px solid var(--bd);
  border-top: 3px solid var(--cy);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}
.pain-card__tag {
  font-size: .75rem;
  font-weight: 700;
  color: var(--cy);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.pain-card__quote {
  font-style: italic;
  font-size: .9rem;
  color: var(--w85);
  border-left: 2px solid var(--bd2);
  padding-left: 12px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.pain-card__outcome {
  font-size: .85rem;
  color: var(--w70);
  line-height: 1.6;
}
.pain-note {
  border-left: 3px solid var(--cy);
  background: var(--w10);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px;
  font-size: .875rem;
  color: var(--w70);
  line-height: 1.7;
}

/* ── Stinger ───────────────────────────────────────────────── */
.stinger {
  background: var(--n1);
  padding: 72px 24px;
  text-align: center;
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
}
.stinger__quote {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 700;
  color: var(--cy);
  max-width: 820px;
  margin: 0 auto 16px;
  line-height: 1.4;
}
.stinger__attr {
  font-size: .875rem;
  color: var(--w50);
}

/* ── Product Section ───────────────────────────────────────── */
.product { background: var(--n2); }
.product__left {}
.product__desc {
  font-size: 1rem;
  color: var(--w70);
  margin: 20px 0 24px;
  line-height: 1.7;
}
.product__mech {
  border-left: 3px solid var(--cy);
  background: var(--w10);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 18px;
  font-style: italic;
  font-size: .875rem;
  color: var(--w70);
  margin-bottom: 24px;
  line-height: 1.65;
}
.platform-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.funnel-box {
  background: var(--n3);
  border: 1px solid var(--bd);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.funnel-box h3 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--w85);
}
.funnel-steps { display: flex; flex-direction: column; gap: 16px; }
.funnel-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.funnel-step__num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,212,255,.12);
  border: 1px solid var(--bd2);
  color: var(--cy);
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.funnel-step__body { font-size: .875rem; color: var(--w70); line-height: 1.6; }
.funnel-step__body strong { color: var(--w85); }

/* ── Governance Bridge ─────────────────────────────────────── */
.gov-bridge {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.gov-bridge__inner {
  border-left: 3px solid var(--cy);
  background: var(--w10);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 24px 28px;
  font-size: 1rem;
  color: var(--w70);
  line-height: 1.7;
}
.gov-bridge__inner a {
  color: var(--cy);
  font-weight: 600;
  transition: opacity var(--transition);
}
.gov-bridge__inner a:hover { opacity: .75; }

/* ── Services Section ──────────────────────────────────────── */
.services { background: var(--n1); }
.exec-gap-banner {
  background: linear-gradient(135deg, var(--n3) 0%, rgba(232,117,26,.08) 100%);
  border: 1px solid rgba(232,117,26,.2);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 36px 0 44px;
}
.exec-gap-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--og);
  line-height: 1;
  flex-shrink: 0;
}
.exec-gap-text { font-size: .9rem; color: var(--w70); line-height: 1.65; }
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--n3);
  border: 1px solid var(--bd);
  border-top: 3px solid var(--bd);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-top-color var(--transition);
}
.service-card:hover { border-top-color: var(--cy); }
.service-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.service-card__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--w100);
  line-height: 1.25;
}
.service-card__duration {
  font-size: .72rem;
  font-weight: 700;
  color: var(--cy);
  background: rgba(0,212,255,.08);
  border: 1px solid var(--bd);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.service-card__tagline {
  font-size: .85rem;
  font-weight: 600;
  color: var(--w70);
  margin-bottom: 12px;
  line-height: 1.5;
}
.service-card__desc {
  font-size: .875rem;
  color: var(--w70);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.svc-deadline {
  font-size: .75rem;
  font-weight: 600;
  color: var(--og);
  margin-bottom: .5rem;
}
.service-card__evidence {
  background: rgba(0,212,255,.05);
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: .78rem;
  color: var(--w70);
  margin-bottom: 16px;
  line-height: 1.55;
  font-style: italic;
}
.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--bd);
  flex-wrap: wrap;
}
.service-card__footer-label { font-size: .78rem; color: var(--w50); }
.service-card__btns { display: flex; gap: 8px; flex-wrap: wrap; }
.btn--sm {
  font-size: .8rem;
  padding: 8px 16px;
}
.svc-btn {
  font-size: .8rem;
  font-weight: 600;
  color: var(--cy);
  border: 1px solid var(--bd2);
  border-radius: 5px;
  padding: .4rem .9rem;
  background: transparent;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
  display: inline-block;
}
.svc-btn:hover {
  background: rgba(0,212,255,.08);
}

/* ── 4th Service Card ──────────────────────────────────────── */
.svc-fourth {
  margin-top: 1rem;
  border: 1px dashed rgba(0,212,255,.3);
  border-radius: 10px;
  padding: 1.75rem 2rem;
  background: rgba(255,255,255,.03);
}
.svc-fourth-inner {
  max-width: 680px;
}
.svc-fourth-head {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--w100);
  margin-bottom: .65rem;
}
.svc-fourth-body {
  font-size: .9rem;
  color: var(--w70);
  line-height: 1.75;
}
.svc-fourth-cta {
  display: inline-block;
  margin-top: 1rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--w100);
  background: var(--og);
  padding: .6rem 1.25rem;
  border-radius: 7px;
  text-decoration: none;
  transition: opacity .2s;
}
.svc-fourth-cta:hover {
  opacity: .88;
}

/* ── About Section ─────────────────────────────────────────── */
.about { background: var(--n2); }
.about__avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 2px solid var(--bd2);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--n4);
}
.about__name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--w100);
  margin-bottom: 4px;
}
.about__role { font-size: .875rem; color: var(--w50); margin-bottom: 20px; }
.proof-strip { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--w70);
}
.proof-item::before {
  content: '•';
  color: var(--cy);
  font-size: 1.2em;
}
.about__card {
  background: var(--n3);
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 12px;
}
.about__card h4 {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--w50);
  margin-bottom: 10px;
}
.about__card-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--w70);
  padding: 5px 0;
  border-bottom: 1px solid var(--bd);
}
.about__card-item:last-child { border-bottom: none; }
.about__right p {
  font-size: .95rem;
  color: var(--w70);
  line-height: 1.75;
  margin-bottom: 20px;
}
.about__bridge {
  border-left: 3px solid var(--cy);
  background: var(--w10);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 18px;
  font-style: italic;
  font-size: .875rem;
  color: var(--w70);
  margin-bottom: 24px;
  line-height: 1.7;
}
.about__stinger {
  border-left: 3px solid var(--cy);
  padding-left: 18px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 700;
  color: var(--cy);
  line-height: 1.4;
  margin-bottom: 24px;
}

/* ── Insights Strip ────────────────────────────────────────── */
.insights-strip { background: var(--n1); }
.insights-strip.section--alt { background: var(--n2); }
.article-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 36px 0 24px; }
.article-card {
  background: var(--n3);
  border: 1px solid var(--bd);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition), transform var(--transition);
}
.article-card:hover { border-color: var(--bd2); transform: translateY(-2px); }
.article-card__tag {
  font-size: .72rem;
  font-weight: 700;
  color: var(--cy);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.article-card__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--w100);
  line-height: 1.35;
}
.article-card__excerpt { font-size: .875rem; color: var(--w70); line-height: 1.6; flex: 1; }
.article-card__link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--cy);
  transition: opacity var(--transition);
}
.article-card__link:hover { opacity: .75; }
.insights-all {
  font-size: .875rem;
  font-weight: 600;
  color: var(--cy);
  transition: opacity var(--transition);
}
.insights-all:hover { opacity: .75; }

/* ── Scan Form Section ─────────────────────────────────────── */
.scan-section {
  background: var(--n2);
  border-top: 2px solid var(--og);
}
.scan-urgency {
  background: var(--og);
  text-align: center;
  padding: 12px 24px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--w100);
}
.scan-form {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 24px;
}
.scan-form h2 { margin-bottom: 12px; }
.scan-form p { margin-bottom: 28px; }
.scan-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
}
.scan-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--w50);
  padding: 7px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--w10);
}
.scan-step.active {
  color: var(--cy);
  border-color: var(--bd2);
  background: rgba(0,212,255,.05);
}
.scan-iframe-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
}
.scan-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .78rem;
  color: var(--w50);
  margin-bottom: 8px;
}
.scan-meta span::before { content: '· '; }
.scan-meta span:first-child::before { content: ''; }
.scan-privacy { font-size: .75rem; color: var(--w25); }

/* ── FAQ Section ───────────────────────────────────────────── */
.faq { background: var(--n1); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
.faq-card {
  background: var(--n3);
  border: 1px solid var(--bd);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
}
.faq-card h3 {
  font-size: .975rem;
  color: var(--w100);
  margin-bottom: 12px;
  line-height: 1.35;
}
.faq-card p {
  font-size: .875rem;
  color: var(--w70);
  line-height: 1.7;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--n1);
  border-top: 1px solid var(--bd);
  padding: 40px 24px;
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.footer__logo {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--w100);
}
.footer__logo span { color: var(--cy); }
.footer__centre {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__centre a {
  font-size: .82rem;
  color: var(--w50);
  transition: color var(--transition);
}
.footer__centre a:hover { color: var(--w85); }
.footer__right {
  text-align: right;
  font-size: .78rem;
  color: var(--w25);
  line-height: 1.5;
}

/* ── Article Layout (Insights pages) ──────────────────────── */
.article-hero {
  background: var(--n2);
  padding: 72px 24px 64px;
  border-bottom: 1px solid var(--bd);
}
.article-hero__inner { max-width: 760px; margin: 0 auto; }
.article-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--cy);
  margin-bottom: 18px;
}
.article-hero__tag span { color: var(--w25); font-weight: 400; }
.article-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 18px;
}
.article-hero__lede {
  font-size: 1.05rem;
  color: var(--w70);
  line-height: 1.75;
}
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 72px;
}
.article-body h2 {
  font-size: 1.45rem;
  margin: 40px 0 14px;
}
.article-body p {
  font-size: .975rem;
  color: var(--w70);
  line-height: 1.78;
  margin-bottom: 18px;
}
.article-body ul, .article-body ol {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 18px;
}
.article-body li {
  font-size: .975rem;
  color: var(--w70);
  line-height: 1.7;
  margin-bottom: 8px;
}
.article-body strong { color: var(--w85); }
.article-faq {
  background: var(--n2);
  border-top: 1px solid var(--bd);
  padding: 56px 24px;
}
.article-faq__inner { max-width: 760px; margin: 0 auto; }
.article-faq h2 { margin-bottom: 28px; }
.article-cta {
  background: var(--n1);
  border-top: 2px solid var(--og);
  padding: 64px 24px;
  text-align: center;
}
.article-cta h2 { margin-bottom: 12px; }
.article-cta p { margin-bottom: 28px; color: var(--w70); }

/* ── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Insights Listing ──────────────────────────────────────── */
.listing-hero {
  background: var(--n2);
  padding: 72px 24px 64px;
  border-bottom: 1px solid var(--bd);
}
.listing-hero__inner { max-width: var(--container); margin: 0 auto; }
.listing-body {
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px 24px 80px;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .grid-3, .pain-cards, .service-cards, .article-cards { grid-template-columns: 1fr 1fr; }
  .hero__inner { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 20px; }
  .hero { padding: 56px 20px 64px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__left { max-width: 100%; }
  .grid-2, .grid-3, .grid-2-2, .pain-cards, .service-cards, .article-cards { grid-template-columns: 1fr; }
  .truth__stats { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__right { text-align: center; }
  .nav__links { display: none; }
  .exec-gap-banner { flex-direction: column; text-align: center; gap: 16px; }
  .scan-steps { flex-direction: column; gap: 10px; }
  .trust-dots { flex-wrap: wrap; gap: 12px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.35rem; }
  .hero__fp-row { flex-direction: column; }
  .hero__fp-input { width: 100%; }
  .fp-btn { width: 100%; }
  .btn--primary-lg { font-size: .95rem; padding: 14px 24px; width: 100%; justify-content: center; }
  .nav__cta { font-size: .8rem; padding: 8px 14px; }
  p, .article-body p, .article-body li { font-size: .9rem; }
  small, .faq-card p, .service-card__desc, .truth__footnote { font-size: .8125rem; }
  .scan-meta { gap: 10px; }
}

/* ── Print Styles ──────────────────────────────────────────── */
@media print {
  body { background: #fff; color: #000; }
  .nav, .scan-section, .footer__centre a[href*="linkedin"] { display: none; }
  .nav__logo, .footer__logo { color: #000; }
  .nav__logo span, .footer__logo span { color: #00aacc; }
  h1, h2, h3 { color: #000; }
  .scorecard, .stat-card, .faq-card, .service-card, .pain-card, .article-card {
    border: 1px solid #ccc; background: #f9f9f9;
  }
  a { color: #0066cc; }
}
