/* =========================================================
   LEDAR · ASA — Landing page
   Palette: navy, ivory, gold accent — inspired by institutional
   M&A houses (Rothschild, Lazard, Messier) reinterpreted for Tech.
   ========================================================= */

:root {
  --navy-900: #0a1a2f;
  --navy-800: #10263f;
  --navy-700: #163155;
  --navy-600: #1e3a66;
  --tech-black: #060a16;
  --tech-cyan: #66d9e8;
  --tech-cyan-dim: #3aa8b8;
  --tech-green: #5ce6a9;
  --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-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid var(--navy-900);
  background: var(--navy-900);
  color: var(--gold-2);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  border-radius: 2px;
}
.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: 36px;
  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-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 — full-bleed Paris aerial (dark overlay)
   ========================================================= */
.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;
  animation: heroSlide 25s linear infinite both;
}
.hero-slide img {
  width: 100%;
  height: 106%;
  object-fit: cover;
  object-position: center center;
  animation: heroKenBurns 32s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: -20s; }
.hero-slide:nth-child(3) { animation-delay: -15s; }
.hero-slide:nth-child(4) { animation-delay: -10s; }
.hero-slide:nth-child(5) { animation-delay: -5s; }

@keyframes heroSlide {
  0%, 16%    { opacity: 1; }   /* visible 0-4s */
  20%, 96%   { opacity: 0; }   /* hidden 5-24s */
  100%       { opacity: 1; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,26,47,.22) 0%, rgba(10,26,47,.45) 55%, rgba(10,26,47,.78) 100%),
    linear-gradient(90deg, rgba(10,26,47,.28) 0%, transparent 55%);
}
@keyframes heroKenBurns {
  0%   { transform: scale(1) translate3d(0,0,0); }
  100% { transform: scale(1.08) translate3d(-1.5%,-1%,0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; opacity: 0; }
  .hero-slide:nth-child(1) { opacity: 1; }
  .hero-slide img { animation: none; }
}

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

.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; }
.accent-gold { color: var(--gold-2); font-style: italic; }

.hero-lede {
  font-size: 19px;
  color: rgba(246,242,234,.82);
  max-width: 780px;
  margin: 0 0 40px;
  line-height: 1.65;
  text-wrap: pretty;
}

.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-item {}
.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 on top of the photo */
.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: 28px; flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
.band-logos span {
  font-family: var(--serif);
  font-size: 19px;
  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: 820px; 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-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,.12) 0%, transparent 55%);
  pointer-events: none;
}
.light-text { color: rgba(246,242,234,.78); font-size: 17px; line-height: 1.75; }

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

/* =========================================================
   Expertise grid
   ========================================================= */
.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: 28px;
  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);
}

/* =========================================================
   Two-col (founder)
   ========================================================= */
.two-col {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.quote-block {
  margin-top: 40px;
  padding: 30px 34px;
  border-left: 2px solid var(--gold-2);
  background: rgba(255,255,255,.03);
  border-radius: 0 4px 4px 0;
}
.quote-block p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ivory);
  margin: 0 0 14px;
}
.quote-block cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  background: var(--navy-800);
  padding: 44px 32px;
  transition: background .3s ease;
}
.stat:hover { background: var(--navy-700); }
.stat-num {
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1;
  letter-spacing: -.01em;
}
.stat-num span { color: var(--gold-2); font-size: 32px; margin-left: 2px; }
.stat-lbl {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(246,242,234,.65);
  line-height: 1.55;
  letter-spacing: .02em;
}

/* =========================================================
   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; }

/* =========================================================
   Deals
   ========================================================= */
.deals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.deal {
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.deal:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.deal-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(185,148,74,.1);
  padding: 6px 12px;
  border-radius: 2px;
  font-weight: 600;
  margin-bottom: 20px;
}
.deal-value {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 500;
  color: var(--navy-900);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.deal-desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 22px;
  flex: 1;
}
.deal-role {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

/* =========================================================
   Newsletter
   ========================================================= */
.newsletter-section {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute; top: 0; right: -300px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(185,148,74,.13) 0%, transparent 60%);
  filter: blur(30px);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.newsletter-copy .section-head { margin-bottom: 32px; }
.feature-list {
  list-style: none; padding: 0; margin: 28px 0 0;
}
.feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0;
  font-size: 15.5px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.feature-list li:last-child { border-bottom: none; }
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--navy-900);
  color: var(--gold-2);
  border-radius: 50%;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}
.newsletter-foot {
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .01em;
}
.newsletter-latest {
  margin: 28px 0 0;
}
.newsletter-latest-link {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 22px;
  border: 1px solid var(--gold-soft);
  background: rgba(185,148,74,.07);
  border-radius: var(--radius);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
  text-decoration: none;
}
.newsletter-latest-link:hover {
  background: rgba(185,148,74,.14);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.newsletter-latest-kicker {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.newsletter-latest-title {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--navy-900);
  font-weight: 500;
  letter-spacing: -.005em;
}

.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;
}
.form-error {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(176, 67, 45, .08);
  border-left: 3px solid var(--danger);
  color: var(--danger);
  font-size: 14px;
  line-height: 1.55;
  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 .brand-mark { background: transparent; border-color: var(--gold-2); color: var(--gold-2); }
.footer-brand p {
  margin: 22px 0 0;
  color: rgba(246,242,234,.55);
  font-size: 14px;
  line-height: 1.7;
  max-width: 340px;
}
.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); }

/* =========================================================
   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(36px, 4.4vw, 64px);
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--navy-900);
  margin: 22px 0 60px;
  max-width: 1000px;
}
.manifesto-title span { display: block; }
.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); }

/* =========================================================
   LEDAR — Plateforme ASA Partners (light, institutional)
   ========================================================= */
.mono { font-family: var(--mono); }

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

/* Before / After compare */
.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;
}

/* Flow connector */
.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;
}

/* Outcome metrics */
.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;
}

/* Compact feature list */
.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; }

/* CTA */
.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);
}

/* Staggered reveal for compare columns */
@media (prefers-reduced-motion: no-preference) {
  .cmp-old.reveal { transition-delay: 0s; }
  .cmp-new.reveal { transition-delay: .3s; }
  .cmp-flow .cmp-flow-chip { transition: opacity .6s ease .5s, transform .6s ease .5s; }
  .cmp-flow:not(.is-visible) .cmp-flow-chip { opacity: 0; transform: scale(.85); }
  .cmp-flow.is-visible .cmp-flow-chip { opacity: 1; transform: scale(1); }
}
.platform-cta-copy { max-width: 640px; }
.platform-cta-copy h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--ivory);
  margin: 0 0 10px;
  line-height: 1.2;
}
.platform-cta-copy p {
  color: rgba(246,242,234,.72);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-900);
  font-weight: 600;
}
.btn-gold:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(185,148,74,.35);
}

/* =========================================================
   Founder (light variant)
   ========================================================= */
#fondateur .two-col { gap: 72px; }
#fondateur .two-col-left p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
  margin: 0 0 18px;
}
#fondateur .two-col-left strong { color: var(--navy-900); font-weight: 600; }

.parcours {
  margin-top: 36px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.parcours-title {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.parcours-list {
  list-style: none;
  margin: 0; padding: 0;
  counter-reset: parcours;
}
.parcours-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  position: relative;
}
.parcours-list li:last-child { border-bottom: none; }
.parcours-list li::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 22px;
  width: 8px; height: 1px;
  background: var(--gold);
  opacity: .5;
}
.parcours-list li:first-child::before { background: var(--gold); opacity: 1; width: 14px; }
.parcours-role {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: .01em;
}
.parcours-firm {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink-soft);
  font-style: italic;
  text-align: right;
}
.parcours-list li:first-child .parcours-firm {
  color: var(--gold);
  font-weight: 600;
  font-style: normal;
}
.parcours-early .parcours-firm { font-size: 13px; color: var(--muted); }

.founder-badges {
  margin-top: 32px;
  display: grid;
  gap: 14px;
  max-width: 440px;
}
.founder-badge {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.founder-badge-lbl {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  min-width: 84px;
}
.founder-badge-val {
  font-size: 14px;
  color: var(--navy-900);
  font-weight: 500;
}
.founder-badge-val.link { color: var(--gold); }
.founder-badge-val.link:hover { color: var(--navy-900); }

.founder-card {
  margin: 0;
  background: var(--navy-900);
  color: var(--ivory);
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.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;
}
.founder-portrait picture,
.founder-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.founder-card blockquote { margin: 0; position: relative; }
.founder-card blockquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  line-height: 1.55;
  color: var(--ivory);
  margin: 0 0 24px;
}
.founder-card blockquote footer {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.founder-card blockquote footer strong {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 15px;
  color: var(--ivory);
  letter-spacing: .02em;
  font-weight: 600;
  margin-bottom: 3px;
}
.founder-card blockquote footer span {
  display: block;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-2);
}

/* =========================================================
   LEDAR wordmark
   ========================================================= */
.ledar-wordmark {
  font-family: var(--serif);
  letter-spacing: .24em;
  color: var(--gold-2);
  font-weight: 600;
  text-transform: uppercase;
  padding: 2px 14px;
  border: 1px solid var(--gold-2);
  border-radius: 3px;
  font-size: .62em;
  vertical-align: middle;
  margin-right: 8px;
  background: rgba(216,183,108,.06);
}

/* =========================================================
   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;
}

.news-cta {
  margin-top: 48px;
  padding: 32px 40px;
  background: var(--navy-900);
  color: var(--ivory);
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.news-cta p {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ivory);
  font-style: italic;
  max-width: 640px;
}
.news-cta .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-900);
  font-weight: 600;
  white-space: nowrap;
}
.news-cta .btn-primary:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .deals { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .timeline::before { display: none; }
  .two-col, .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); }
}

@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, .deals { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 32px 22px; }
  .stat-num { font-size: 40px; }

  .section-title { font-size: 32px; }
  .section-lede { font-size: 16px; }
  .deal-value { font-size: 38px; }
  .quote-block p { font-size: 18px; }

  .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; }

  .platform-grid { grid-template-columns: 1fr; }
  .platform-card { padding: 30px 24px; }
  .manifesto-title { font-size: 34px; margin-bottom: 36px; }
  .manifesto-hero-line { font-size: 20px !important; padding-left: 18px; }
  .platform-cta { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .platform-cta-copy h3 { font-size: 22px; }
  .founder-card { padding: 30px 24px; }
  .founder-card blockquote p { font-size: 18px; }
  .founder-badge { flex-direction: column; gap: 4px; align-items: flex-start; }
  .parcours { padding: 22px 20px; }
  .parcours-list li { grid-template-columns: 1fr; gap: 2px; padding: 12px 0; }
  .parcours-firm { text-align: left; font-size: 14px; }

  .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; }
  .news-cta { padding: 24px; flex-direction: column; align-items: flex-start; }
  .news-cta p { font-size: 18px; }
  .ledar-wordmark { display: inline-block; margin-bottom: 4px; font-size: .55em; padding: 2px 10px; }

  .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; }
}

/* =========================================================
   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; }
}
