/* =========================================================
   LEDAR PARTNERS — Landing page
   Palette: navy, ivory, gold — institutional M&A house,
   updated for a generalist boutique with an expert network.
   ========================================================= */

:root {
  --navy-900: #0a1a2f;
  --navy-800: #10263f;
  --navy-700: #163155;
  --navy-600: #1e3a66;
  --tech-black: #060a16;
  --ivory:    #f6f2ea;
  --cream:    #eee7d8;
  --paper:    #fbfaf6;
  --ink:      #0b1624;
  --ink-soft: #2a3647;
  --muted:    #5a6478;
  --line:     #dcd6c7;
  --gold:     #b9944a;
  --gold-2:   #d8b76c;
  --gold-soft:#e7d9b4;
  --danger:   #b0432d;

  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(10,26,47,.06), 0 2px 6px rgba(10,26,47,.04);
  --shadow-md: 0 12px 30px rgba(10,26,47,.08), 0 2px 6px rgba(10,26,47,.04);
  --shadow-lg: 0 30px 70px rgba(10,26,47,.18);

  --serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --mono:  'IBM Plex Mono', 'SF Mono', 'JetBrains Mono', Consolas, monospace;

  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: color .2s ease; }

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

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 246, .85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(10,26,47,.02), 0 6px 20px rgba(10,26,47,.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--navy-900);
}
.brand-monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  background: var(--navy-900);
  border-radius: 4px;
  letter-spacing: 0;
  position: relative;
  overflow: hidden;
}
.brand-monogram::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(216,183,108,.4);
  border-radius: 2px;
  pointer-events: none;
}
.brand-name {
  font-size: 20px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.brand-sub {
  color: var(--muted);
  font-weight: 400;
  letter-spacing: .18em;
  font-size: 13px;
}

.nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: .02em;
}
.nav a { position: relative; }
.nav a::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .25s ease;
}
.nav a:hover { color: var(--navy-900); }
.nav a:hover::after { width: 100%; }

.header-cta { padding: 10px 18px; font-size: 13.5px; }

.nav-toggle {
  display: none;
  background: none; border: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px; height: 1.5px; background: var(--navy-900);
  transition: transform .25s ease, opacity .25s ease;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  text-transform: none;
  line-height: 1;
}
.btn-primary {
  background: var(--navy-900);
  color: var(--ivory);
  border-color: var(--navy-900);
}
.btn-primary:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(10,26,47,.25);
}
.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn-outline:hover {
  background: var(--navy-900);
  color: var(--ivory);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy-900);
  border: 1px solid var(--navy-900);
}
.btn-outline-dark:hover {
  background: var(--navy-900);
  color: var(--gold-2);
}
.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border: 1px solid var(--line);
  padding: 10px 18px;
  font-size: 13px;
}
.btn-ghost:hover { border-color: var(--navy-900); background: var(--navy-900); color: var(--ivory); }
.btn-block { width: 100%; padding: 16px 24px; font-size: 14.5px; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  padding: 140px 0 110px;
  background: var(--navy-900);
  color: var(--ivory);
  display: flex;
  align-items: center;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-slides {
  position: absolute;
  inset: -3% 0 0 0;
  will-change: transform;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center center;
  animation: heroSlide 24s ease-in-out infinite both;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: -16s; }
.hero-slide:nth-child(3) { animation-delay: -8s; }

@keyframes heroSlide {
  0%, 20%   { opacity: 1; transform: scale(1.0); }
  33%, 86%  { opacity: 0; transform: scale(1.05); }
  100%      { opacity: 1; transform: scale(1.0); }
}

.hero-grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 25%, rgba(216,183,108,.18) 0%, transparent 35%),
    radial-gradient(circle at 80% 75%, rgba(102,217,232,.10) 0%, transparent 40%),
    radial-gradient(circle at 60% 10%, rgba(216,183,108,.10) 0%, transparent 30%);
  opacity: .8;
  mix-blend-mode: screen;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,26,47,.55) 0%, rgba(10,26,47,.65) 55%, rgba(10,26,47,.88) 100%),
    linear-gradient(90deg, rgba(10,26,47,.45) 0%, transparent 55%);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; opacity: 0; }
  .hero-slide:nth-child(1) { opacity: 1; }
}

.hero-inner { position: relative; z-index: 1; max-width: 1040px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(246,242,234,.88);
  font-weight: 500;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
  margin-bottom: 28px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(216,183,108,.22);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin: 0 0 28px;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
  text-wrap: balance;
}
.accent { color: var(--gold-2); font-style: italic; }

.hero-lede {
  font-size: 19px;
  color: rgba(246,242,234,.82);
  max-width: 820px;
  margin: 0 0 40px;
  line-height: 1.65;
  text-wrap: pretty;
}
.hero-lede strong { color: var(--ivory); font-weight: 600; }
.hero-lede em { color: var(--gold-2); font-style: normal; font-weight: 500; }

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 72px;
}
.hero .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-900);
  font-weight: 600;
}
.hero .btn-primary:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(185,148,74,.35);
}
.hero .btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.55);
  color: var(--ivory);
}
.hero .btn-outline:hover {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--navy-900);
}

.hero-trust {
  display: flex; align-items: center; gap: 36px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.trust-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1;
  letter-spacing: -.01em;
}
.trust-num span { color: var(--gold-2); font-size: 28px; margin-left: 2px; }
.trust-lbl {
  margin-top: 8px;
  font-size: 12.5px;
  color: rgba(246,242,234,.62);
  letter-spacing: .02em;
  line-height: 1.4;
}
.trust-sep { width: 1px; height: 44px; background: rgba(255,255,255,.18); }

/* Staggered reveal of hero content */
.hero-title.reveal   { transition-delay: .15s; }
.hero-lede.reveal    { transition-delay: .30s; }
.hero-ctas.reveal    { transition-delay: .45s; }
.hero-trust.reveal   { transition-delay: .60s; }

/* =========================================================
   Band (credibility)
   ========================================================= */
.band {
  background: var(--navy-900);
  color: var(--ivory);
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.band-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.band-caption {
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 500;
  max-width: 280px;
  margin: 0;
  line-height: 1.6;
}
.band-logos {
  flex: 1;
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
.band-logos span {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  letter-spacing: .02em;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 2px;
}

/* =========================================================
   Sections (generic)
   ========================================================= */
.section { padding: 120px 0; }
.section-head { max-width: 860px; margin-bottom: 72px; }
.section-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
}
.section-kicker.light { color: var(--gold-2); border-bottom-color: var(--gold-2); }
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--navy-900);
  margin: 0 0 22px;
}
.section-title.light { color: var(--ivory); }
.section-lede {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}
.section-lede strong { color: var(--navy-900); font-weight: 600; }

.section-dark {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(185,148,74,.14) 0%, transparent 55%);
  pointer-events: none;
}
.light-text { color: rgba(246,242,234,.82); font-size: 17px; line-height: 1.75; }

.section-cream { background: var(--ivory); }

/* =========================================================
   Expertise grid (6 cards now — 3 columns × 2 rows)
   ========================================================= */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card:hover::before { transform: scaleX(1); }
.card-num {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: .24em;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 500;
}
.card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--navy-900);
  margin: 0 0 16px;
  letter-spacing: -.005em;
}
.card p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; margin: 0 0 20px; }
.card-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); padding-top: 18px; }
.card-list li {
  font-size: 13.5px;
  color: var(--muted);
  padding: 6px 0 6px 20px;
  position: relative;
  letter-spacing: .02em;
}
.card-list li::before {
  content: ''; position: absolute;
  left: 0; top: 14px;
  width: 10px; height: 1px;
  background: var(--gold);
}

/* =========================================================
   Manifesto
   ========================================================= */
.manifesto { padding-top: 120px; padding-bottom: 120px; background: var(--paper); position: relative; overflow: hidden; }
.manifesto::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(10,26,47,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,26,47,.035) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(ellipse at 20% 50%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 20% 50%, #000 0%, transparent 70%);
}
.manifesto-inner { position: relative; }
.manifesto-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.18;
  letter-spacing: -.01em;
  color: var(--navy-900);
  margin: 22px 0 60px;
  max-width: 1000px;
}
.manifesto-title span { display: block; text-wrap: balance; }
@media (min-width: 861px) {
  .manifesto-title span { white-space: nowrap; }
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1040px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink-soft);
}
.manifesto-col p { margin: 0 0 20px; }
.manifesto-col p:last-child { margin-bottom: 0; }
.manifesto-col strong { color: var(--navy-900); font-weight: 600; }
.manifesto-hero-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px !important;
  line-height: 1.45 !important;
  color: var(--navy-900) !important;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
}
.manifesto-hero-line em { font-style: normal; color: var(--gold); }
.manifesto-hero-line strong { color: var(--navy-900); }

/* =========================================================
   Network of experts
   ========================================================= */
.network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 96px;
}
.network-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.network-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-2) 60%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.network-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.network-card:hover::before { transform: scaleX(1); }
.network-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: var(--navy-900);
  color: var(--gold-2);
  border-radius: 50%;
  margin-bottom: 24px;
  position: relative;
}
.network-icon::after {
  content: '';
  position: absolute; inset: -4px;
  border: 1px solid rgba(216,183,108,.3);
  border-radius: 50%;
}
.network-icon svg { width: 24px; height: 24px; }
.network-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--navy-900);
  margin: 0 0 14px;
  letter-spacing: -.005em;
}
.network-card > p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 22px;
}
.network-card em { color: var(--navy-900); font-style: italic; font-weight: 500; }
.network-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.network-list li {
  padding: 10px 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
  letter-spacing: .01em;
}
.network-list li:last-child { border-bottom: none; }
.network-list strong {
  color: var(--navy-900);
  font-weight: 600;
  margin-right: 4px;
}

/* HUB DIAGRAM */
.network-hub {
  position: relative;
  height: 640px;
  margin: 0 auto 80px;
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hub-center {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--ivory);
  box-shadow: 0 30px 80px rgba(10,26,47,.35), 0 0 0 1px rgba(216,183,108,.4);
}
.hub-center::after {
  content: '';
  position: absolute; inset: 8px;
  border: 1px solid rgba(216,183,108,.4);
  border-radius: 50%;
}
.hub-label {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--gold-2);
}
.hub-sub {
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(246,242,234,.6);
  margin-top: 4px;
}
.hub-orbit {
  position: absolute;
  top: 50%; left: 50%;
  width: 300px; height: 300px;
  border: 1px dashed rgba(185,148,74,.34);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.hub-orbit-2 {
  width: 520px; height: 520px;
  border-color: rgba(185,148,74,.2);
}
.hub-nodes {
  position: absolute;
  inset: 0;
  list-style: none;
  margin: 0; padding: 0;
  z-index: 2;
}
.hub-nodes li {
  --total: 6;
  --offset: 0deg;
  --angle: calc(var(--i) * (360deg / var(--total)) + var(--offset));
  position: absolute;
  top: 50%; left: 50%;
  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translate(var(--radius))
    rotate(calc(var(--angle) * -1));
  padding: 8px 16px;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(10,26,47,.06);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.hub-nodes li.ring-inner {
  --total: 6;
  --radius: 150px;
  background: #fff;
  color: var(--navy-900);
  border-color: var(--gold-soft);
}
.hub-nodes li.ring-outer {
  --total: 12;
  --radius: 260px;
  --offset: 15deg;
  background: var(--navy-900);
  color: var(--gold-2);
  border-color: rgba(216,183,108,.5);
  font-size: 12.5px;
  padding: 6px 13px;
  letter-spacing: .02em;
}
.hub-nodes li:hover {
  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translate(var(--radius))
    rotate(calc(var(--angle) * -1))
    scale(1.08);
  box-shadow: 0 8px 24px rgba(10,26,47,.16);
}

.network-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}
.network-cta p {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy-900);
  font-style: italic;
  max-width: 700px;
  line-height: 1.4;
}

/* =========================================================
   Sectors grid
   ========================================================= */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}
.sector-tile {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  background: #fff;
  transition: background .3s ease, transform .3s ease;
}
.sector-tile:nth-child(4n) { border-right: none; }
.sector-tile:nth-last-child(-n+4) { border-bottom: none; }
.sector-tile:hover {
  background: var(--paper);
}
.sector-num {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .24em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}
.sector-tile h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--navy-900);
  margin: 0 0 8px;
  line-height: 1.2;
  letter-spacing: -.005em;
}
.sector-tile p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.sector-mark {
  display: inline-block;
  margin-top: 12px;
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(185,148,74,.1);
  border-radius: 2px;
}

/* =========================================================
   Timeline
   ========================================================= */
.timeline {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 40px; right: 40px;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.timeline li {
  position: relative;
  z-index: 1;
  padding: 0 6px;
}
.timeline-step {
  width: 64px; height: 64px;
  background: var(--paper);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
}
.timeline-step::before {
  content: '';
  position: absolute; inset: 4px;
  border: 1px solid rgba(185,148,74,.3);
  border-radius: 50%;
}
.timeline li h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy-900);
  margin: 0 0 10px;
}
.timeline li p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.65; margin: 0; }
.timeline li em { color: var(--navy-900); font-style: italic; font-weight: 500; }

/* =========================================================
   LEDAR platform
   ========================================================= */
.mono { font-family: var(--mono); }

.ledar-v2 { background: var(--paper); position: relative; }

.ledar-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin: 0 0 72px;
}
.cmp-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 38px;
  position: relative;
  transition: transform .5s ease, box-shadow .5s ease, border-color .5s ease;
}
.cmp-old {
  background: #fafaf7;
  border-color: var(--line);
  opacity: .9;
}
.cmp-new {
  border-color: var(--gold-soft);
  box-shadow: 0 20px 50px rgba(185,148,74,.1), 0 0 0 1px rgba(185,148,74,.08) inset;
}
.cmp-new::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-2) 60%, transparent 100%);
}
.cmp-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--ivory);
  padding: 6px 12px;
  border-radius: 3px;
  font-weight: 600;
  margin-bottom: 24px;
}
.cmp-tag-new {
  color: var(--navy-900);
  background: rgba(185,148,74,.14);
}
.cmp-col h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--navy-900);
  margin: 0 0 24px;
  line-height: 1.25;
}
.cmp-old h3 { color: var(--muted); }
.cmp-list {
  list-style: none;
  padding: 0; margin: 0;
}
.cmp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.cmp-list li:last-child { border-bottom: none; }
.cmp-old .cmp-list li { color: var(--muted); }
.cmp-dash {
  color: var(--muted);
  font-weight: 500;
  flex-shrink: 0;
  width: 14px;
}
.cmp-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}

.cmp-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  position: relative;
}
.cmp-flow-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 50%, transparent 100%);
  min-height: 40px;
}
.cmp-flow-chip {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .24em;
  color: var(--gold);
  font-weight: 600;
  padding: 10px 14px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--paper);
  white-space: nowrap;
}

.ledar-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 0 72px;
  padding: 48px 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.outcome {
  text-align: left;
  padding: 0 10px;
  border-right: 1px solid var(--line);
}
.outcome:last-child { border-right: none; }
.outcome-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(56px, 7vw, 84px);
  color: var(--navy-900);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
}
.outcome-num em {
  font-style: normal;
  color: var(--gold);
  font-size: .5em;
  margin-left: 4px;
  font-weight: 500;
}
.outcome-lbl {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  max-width: 260px;
}

.ledar-features {
  list-style: none;
  padding: 0;
  margin: 0 0 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}
.ledar-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.ledar-features li:nth-child(2n) { border-right: none; }
.ledar-features li:nth-last-child(-n+2) { border-bottom: none; }
.ledar-features li strong { color: var(--navy-900); font-weight: 600; }
.lf-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: var(--navy-900);
  color: var(--gold-2);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}
.lf-check svg { width: 13px; height: 13px; }

.ledar-cta-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 32px 40px;
  background: var(--navy-900);
  color: var(--ivory);
  border-radius: var(--radius-lg);
}
.ledar-cta-v2 p {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--ivory);
  max-width: 620px;
  line-height: 1.4;
}
.ledar-cta-v2 .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-900);
  font-weight: 600;
  white-space: nowrap;
}
.ledar-cta-v2 .btn-primary:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(185,148,74,.3);
}

/* =========================================================
   Founders (dark variant)
   ========================================================= */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}
.founder-card {
  margin: 0;
  background: rgba(255,255,255,.04);
  color: var(--ivory);
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
}
.founder-card::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(216,183,108,.18) 0%, transparent 60%);
  filter: blur(10px);
}
.founder-portrait {
  position: relative;
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  border: 2px solid rgba(216,183,108,.55);
  box-shadow: 0 12px 30px rgba(0,0,0,.35), 0 0 0 4px rgba(216,183,108,.08);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-portrait-initials span {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
  color: var(--gold-2);
  font-weight: 500;
  letter-spacing: .04em;
}
.founder-body { position: relative; }
.founder-name {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.2;
  color: var(--ivory);
  margin: 0 0 6px;
  font-weight: 500;
}
.founder-role {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 0 0 18px;
}
.founder-bio {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(246,242,234,.85);
  margin: 0 0 22px;
}
.founder-bio strong { color: var(--ivory); font-weight: 600; }
.founder-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--gold-2);
  background: rgba(216,183,108,.1);
  border: 1px solid rgba(216,183,108,.3);
  text-decoration: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.founder-linkedin svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}
.founder-linkedin:hover {
  color: var(--navy-900);
  background: var(--gold-2);
  border-color: var(--gold-2);
  transform: translateY(-1px);
}

/* =========================================================
   News / Actualités
   ========================================================= */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.news-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 80%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.news-card:hover::before { transform: scaleX(1); }
.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.news-tag {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(185,148,74,.1);
  padding: 5px 10px;
  border-radius: 2px;
  font-weight: 600;
}
.news-date {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}
.news-card h3 {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--navy-900);
  margin: 0 0 14px;
  letter-spacing: -.005em;
}
.news-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0 0 20px;
  flex: 1;
}
.news-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.news-read {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.news-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: .02em;
  transition: color .2s ease, transform .2s ease;
  display: inline-block;
}
.news-link:hover { color: var(--gold); transform: translateX(3px); }

.news-card.news-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #fff 0%, var(--ivory) 100%);
  border: 1px solid var(--gold-soft);
}
.news-card.news-featured::before {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-2) 60%, transparent 100%);
  transform: scaleX(1);
  height: 3px;
}
.news-card.news-featured .news-tag {
  background: var(--navy-900);
  color: var(--gold-2);
}
.news-card.news-featured h3 {
  font-size: 30px;
  line-height: 1.2;
}

/* =========================================================
   Newsletter (inline)
   ========================================================= */
.newsletter-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.newsletter-inline {
  margin-top: 96px;
  padding-top: 72px;
  border-top: 1px solid var(--line);
}
.newsletter-inline-title {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.25;
  color: var(--navy-900);
  font-weight: 500;
  margin: 14px 0 16px;
  letter-spacing: -.005em;
}
.newsletter-foot {
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .01em;
}

.newsletter-form-wrap { position: sticky; top: 100px; }
.newsletter-form {
  background: #fff;
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.newsletter-form h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy-900);
  margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.newsletter-form label,
.contact-form label {
  display: block;
  margin-bottom: 16px;
}
.newsletter-form label > span,
.contact-form label > span {
  display: block;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 6px;
}
.newsletter-form input,
.newsletter-form select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.newsletter-form input:focus,
.newsletter-form select:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy-900);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(10,26,47,.08);
}
.form-note {
  margin: 14px 0 0;
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.6;
}
.form-success {
  margin-top: 20px;
  padding: 16px 18px;
  background: rgba(185,148,74,.12);
  border-left: 3px solid var(--gold);
  color: var(--navy-900);
  font-size: 14px;
  border-radius: 2px;
}

/* =========================================================
   Contact
   ========================================================= */
.contact-section {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; bottom: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(185,148,74,.14) 0%, transparent 60%);
  filter: blur(30px);
}
.contact-inner {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.contact-copy .section-head { margin-bottom: 32px; }
.contact-details {
  margin-top: 36px;
  display: grid;
  gap: 22px;
}
.contact-lbl {
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-val {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ivory);
  letter-spacing: -.005em;
}
a.contact-val { transition: color .2s ease; }
a.contact-val:hover { color: var(--gold-2); }

.contact-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 40px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}
.contact-form label > span { color: rgba(246,242,234,.55); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  color: var(--ivory);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(246,242,234,.35); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: rgba(255,255,255,.08);
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(216,183,108,.14);
}
.contact-form select option { background: var(--navy-900); color: var(--ivory); }
.contact-form .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-900);
  font-weight: 600;
}
.contact-form .btn-primary:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
}
.contact-form .form-success {
  background: rgba(216,183,108,.14);
  border-left-color: var(--gold-2);
  color: var(--ivory);
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--navy-900);
  color: var(--ivory);
  padding: 80px 0 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .brand { color: var(--ivory); }
.footer-brand p {
  margin: 22px 0 0;
  color: rgba(246,242,234,.55);
  font-size: 14px;
  line-height: 1.7;
  max-width: 360px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  margin: 0 0 22px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 14.5px;
  color: rgba(246,242,234,.7);
  padding: 5px 0;
}
.footer-col a:hover { color: var(--ivory); }
.footer-bottom {
  display: flex; justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  font-size: 12.5px;
  color: rgba(246,242,234,.45);
}
.legal { display: inline-flex; gap: 24px; }
.legal a:hover { color: var(--gold-2); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .network-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: repeat(3, 1fr); }
  .sector-tile:nth-child(4n) { border-right: 1px solid var(--line); }
  .sector-tile:nth-child(3n) { border-right: none; }
  .sector-tile:nth-last-child(-n+4) { border-bottom: 1px solid var(--line); }
  .sector-tile:nth-last-child(-n+3) { border-bottom: none; }
}

@media (max-width: 1024px) {
  .nav { gap: 20px; font-size: 13px; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .timeline::before { display: none; }
  .newsletter-inner, .contact-inner { grid-template-columns: 1fr; gap: 56px; }
  .newsletter-form-wrap { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .band-logos { justify-content: flex-start; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 32px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card.news-featured { grid-column: span 2; }

  .ledar-compare { grid-template-columns: 1fr; gap: 0; }
  .cmp-flow { flex-direction: row; padding: 24px 0; width: 100%; }
  .cmp-flow-line { width: auto; height: 1px; flex: 1; background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%); min-height: 1px; }
  .ledar-outcomes { grid-template-columns: 1fr; gap: 32px; }
  .outcome { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 24px; }
  .outcome:last-child { border-bottom: none; padding-bottom: 0; }
  .ledar-features { grid-template-columns: 1fr; }
  .ledar-features li { border-right: none; }
  .ledar-features li:nth-last-child(-n+2):not(:last-child) { border-bottom: 1px solid var(--line); }

  .founders-grid { grid-template-columns: 1fr; gap: 24px; }

  .network-hub { height: 460px; transform: scale(.85); margin-top: -30px; margin-bottom: 30px; }
}

@media (max-width: 720px) {
  .container { padding: 0 22px; }
  .section { padding: 80px 0; }
  .hero { padding: 72px 0 64px; }
  .section-head { margin-bottom: 48px; }

  .nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .site-header.menu-open .nav {
    display: flex; flex-direction: column;
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--paper);
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }

  .hero-title { font-size: 40px; }
  .hero-lede { font-size: 16.5px; }
  .hero-trust { gap: 24px; }
  .trust-sep { display: none; }
  .trust-num { font-size: 32px; }

  .grid-3 { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .sector-tile { border-right: 1px solid var(--line) !important; border-bottom: 1px solid var(--line) !important; }
  .sector-tile:nth-child(2n) { border-right: none !important; }
  .sector-tile:nth-last-child(-n+2):not(:nth-child(odd):last-child) { border-bottom: none !important; }
  .timeline { grid-template-columns: 1fr; }

  .section-title { font-size: 32px; }
  .section-lede { font-size: 16px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .newsletter-form, .contact-form { padding: 30px 24px; }
  .band-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .band-caption { max-width: none; }
  .band-logos { gap: 10px; }
  .band-logos span { font-size: 15px; padding: 4px 10px; }

  .manifesto-title { font-size: 34px; margin-bottom: 36px; }
  .manifesto-hero-line { font-size: 20px !important; padding-left: 18px; }

  .founder-card { padding: 30px 24px; }

  .news-grid { grid-template-columns: 1fr; }
  .news-card.news-featured { grid-column: span 1; }
  .news-card.news-featured h3 { font-size: 22px; }
  .news-card { padding: 24px; }

  .cmp-col { padding: 28px 24px; }
  .cmp-col h3 { font-size: 22px; }
  .ledar-outcomes { padding: 32px 24px; }
  .outcome-num { font-size: 48px; }
  .ledar-features li { padding: 20px 22px; }
  .ledar-cta-v2 { padding: 24px; flex-direction: column; align-items: flex-start; }
  .ledar-cta-v2 p { font-size: 18px; }

  .network-card { padding: 30px 24px; }
  .network-hub { height: 380px; transform: scale(.7); margin-top: -60px; margin-bottom: -20px; }
  .hub-center { width: 140px; height: 140px; }
  .hub-label { font-size: 24px; }
  .network-cta { padding: 24px; flex-direction: column; align-items: flex-start; }
  .network-cta p { font-size: 17px; }
}

/* =========================================================
   Motion
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .9s ease, transform .9s ease;
  }
  .reveal.is-visible { opacity: 1; transform: none; }
}
