.lp-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

/* =====================================================================
   Ready2Exit — Design Tokens
   ===================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --r2e-navy:           #123D7A;
  --r2e-navy-700:       #0E3263;
  --r2e-navy-300:       #6B89B6;
  --r2e-gold:           #C89A2B;
  --r2e-gold-700:       #A57F1F;
  --r2e-gold-200:       #EAD49A;
  --r2e-gold-soft:      #F3E7C8;
  --r2e-off-white:      #F8F8F6;
  --r2e-paper:          #FFFFFF;
  --r2e-border:         #D8D4CC;
  --r2e-border-soft:    #ECE9E2;
  --r2e-gray:           #8E8E93;
  --r2e-charcoal:       #2E3135;
  --r2e-ink:            #1A1C1F;

  --bg:                 var(--r2e-off-white);
  --bg-elevated:        var(--r2e-paper);
  --bg-inverse:         var(--r2e-navy);
  --fg-1:               var(--r2e-charcoal);
  --fg-2:               var(--r2e-gray);
  --fg-3:               #B5B2AC;
  --fg-display:         var(--r2e-navy);
  --fg-on-navy:         var(--r2e-off-white);
  --fg-on-gold:         #FFFFFF;
  --accent:             var(--r2e-gold);
  --border:             var(--r2e-border);
  --border-strong:      #B6B0A4;

  --success:            #3D7A4F;
  --warning:            #B27516;
  --danger:             #9A3B2B;

  --font-display:       "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  --font-sans:          "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --radius-xs:          4px;
  --radius-sm:          8px;
  --radius-md:          12px;
  --radius-lg:          18px;
  --radius-pill:        999px;

  --shadow-1:           0 1px 0 rgba(18, 61, 122, 0.06);
  --shadow-2:           0 1px 2px rgba(18, 61, 122, 0.06), 0 4px 12px rgba(18, 61, 122, 0.05);
  --shadow-3:           0 8px 28px rgba(18, 61, 122, 0.10);
  --shadow-focus:       0 0 0 3px rgba(200, 154, 43, 0.28);

  --container:          1800px;
  --container-narrow:   1320px;
}

/* =====================================================================
   Base
   ===================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg-1);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--r2e-navy);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: 64px; line-height: 1.02; }
h2 { font-size: 44px; }
h3 { font-size: 26px; line-height: 1.2; }
p { margin: 0; text-wrap: pretty; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--r2e-gold);
}

/* =====================================================================
   Buttons
   ===================================================================== */

.btn {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
  text-decoration: none;
}
.btn-primary { background: var(--r2e-gold); color: #fff; }
.btn-primary:hover { background: var(--r2e-gold-700); border-bottom-color: transparent; }
.btn-secondary { background: transparent; color: var(--r2e-navy); border-color: var(--r2e-navy); }
.btn-secondary:hover { background: rgba(18,61,122,0.04); border-bottom-color: var(--r2e-navy); }
.btn-lg { padding: 16px 28px; font-size: 16px; }

.r-link {
  color: var(--r2e-navy);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease;
}
.r-link:hover { border-bottom-color: var(--r2e-gold); }

/* =====================================================================
   Layout
   ===================================================================== */

.lp-container { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.lp-narrow    { max-width: 1040px;  margin: 0 auto; padding: 0 32px; }

/* =====================================================================
   Header
   ===================================================================== */

.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 1);
  border-bottom: 1px solid var(--border);
  transition: background 200ms ease, box-shadow 200ms ease;
}
.lp-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-2);
}
.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 32px;
}
.lp-brand { display: flex; align-items: center; text-decoration: none; border-bottom: none; }
.lp-brand:hover { border-bottom-color: transparent; }
.lp-brand img { height: 66px; width: auto; display: block; }
.lp-nav { display: flex; gap: 28px; }
.lp-nav a {
  font-size: 14px;
  color: var(--r2e-navy);
  text-decoration: none;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease;
}
.lp-nav a:hover { border-bottom-color: var(--r2e-gold); }
.lp-nav a.active { border-bottom-color: var(--r2e-gold); color: var(--r2e-navy); }

/* =====================================================================
   Hero
   ===================================================================== */

.lp-hero { padding: 80px 0 96px; }
.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.lp-hero h1 { margin: 16px 0 22px; }
.lp-hero h1 em { font-style: italic; color: var(--r2e-gold); font-weight: 500; }
.lp-hero-sub {
  font-size: 19px;
  color: var(--fg-1);
  line-height: 1.55;
  max-width: 50ch;
  margin-bottom: 28px;
}
.lp-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-hero-bullets li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--fg-1);
}
.lp-hero-bullets svg { flex: none; color: var(--r2e-gold); margin-top: 3px; }
.lp-hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.lp-hero-art {
  aspect-ratio: 4/5;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.lp-hero-art .ph {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  color: var(--fg-2);
  text-align: center;
  padding: 28px;
}
.lp-hero-art .ph-cap { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.lp-hero-art .stamp {
  position: absolute;
  left: 28px;
  bottom: 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-hero-art .stamp .sm { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-2); font-weight: 600; }
.lp-hero-art .stamp .lg { font-family: var(--font-display); font-size: 20px; color: var(--r2e-navy); }

/* =====================================================================
   Section primitives
   ===================================================================== */

.lp-section { padding: 112px 0; }
.lp-section.alt {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lp-section-head { max-width: 840px; margin-bottom: 56px; }
.lp-section-head h2 { margin-top: 12px; }
.lp-section-head p { font-size: 18px; color: var(--fg-1); line-height: 1.55; margin-top: 18px; max-width: 60ch; }

/* =====================================================================
   Three pillars
   ===================================================================== */

.lp-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.lp-pillars--2 {
  grid-template-columns: repeat(2, 1fr);
}
.lp-pillar {
  padding: 40px 36px 36px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 160ms ease;
}
.lp-pillar:last-child { border-right: 0; }
.lp-pillar:hover { background: rgba(18,61,122,0.02); }
.lp-pillar .num { font-family: var(--font-display); font-size: 36px; color: var(--r2e-gold); font-weight: 500; line-height: 1; }
.lp-pillar h3 { color: var(--r2e-navy); }
.lp-pillar p { font-size: 16px; color: var(--fg-1); line-height: 1.6; }
.lp-pillar ul { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 8px; }
.lp-pillar ul li { font-size: 14px; color: var(--fg-2); display: flex; gap: 10px; align-items: flex-start; }
.lp-pillar ul li::before { content: "—"; color: var(--r2e-gold); }

/* =====================================================================
   Stats
   ===================================================================== */

.lp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
}
.lp-stat { padding: 32px 28px; border-right: 1px solid var(--border); display: flex; flex-direction: column; gap: 8px; }
.lp-stat:last-child { border-right: 0; }
.lp-stat .num { font-family: var(--font-display); font-weight: 500; font-size: 56px; color: var(--r2e-gold); line-height: 1; letter-spacing: -0.02em; }
.lp-stat .label { font-size: 14px; color: var(--fg-1); line-height: 1.45; }
.lp-stat .src { font-size: 11px; color: var(--fg-2); letter-spacing: 0.08em; text-transform: uppercase; margin-top: auto; padding-top: 14px; }

/* =====================================================================
   Pitfalls
   ===================================================================== */

.lp-pitfalls-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
.lp-pitfalls-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.lp-pitfalls-list li { list-style: none; display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.lp-pitfalls-list .ix { font-family: var(--font-display); font-size: 22px; color: var(--r2e-gold); font-weight: 500; width: 38px; flex: none; line-height: 1.2; }
.lp-pitfalls-list .body { display: flex; flex-direction: column; gap: 4px; }
.lp-pitfalls-list .body strong { color: var(--r2e-navy); font-family: var(--font-display); font-size: 20px; font-weight: 500; letter-spacing: -0.01em; }
.lp-pitfalls-list .body span { font-size: 15px; color: var(--fg-2); }
.lp-pitfalls-art {
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-pitfalls-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.lp-pitfalls-art .ph { display: flex; flex-direction: column; gap: 12px; align-items: center; color: var(--fg-2); }
.lp-pitfalls-art .ph-cap { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }

/* =====================================================================
   Mid CTA banner
   ===================================================================== */

.lp-banner {
  padding: 72px 0;
  background: var(--r2e-navy);
  color: var(--r2e-off-white);
  position: relative;
  overflow: hidden;
}
.lp-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.lp-banner h2 { color: #fff; font-size: 40px; margin-bottom: 14px; }
.lp-banner h2 em { color: var(--r2e-gold); font-style: italic; }
.lp-banner p { color: rgba(248,248,246,0.85); font-size: 17px; max-width: 50ch; }
.lp-banner .btn-primary { background: var(--r2e-gold); }
.lp-banner-side { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.lp-banner-side .small { font-size: 12px; color: rgba(248,248,246,0.6); letter-spacing: 0.12em; text-transform: uppercase; }

/* =====================================================================
   System (5 steps)
   ===================================================================== */

.lp-system { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
.lp-system-tabs { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.lp-system-tab {
  all: unset;
  cursor: pointer;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: padding 160ms ease, background 160ms ease;
}
.lp-system-tab .ix { font-family: var(--font-display); font-size: 22px; color: var(--r2e-gold); font-weight: 500; width: 38px; flex: none; }
.lp-system-tab .ttl { font-family: var(--font-display); font-size: 22px; color: var(--r2e-navy); font-weight: 500; letter-spacing: -0.01em; flex: 1; }
.lp-system-tab .arrow { color: var(--fg-2); opacity: 0; transition: opacity 160ms ease, transform 160ms ease; }
.lp-system-tab[aria-selected="true"] { background: var(--bg-elevated); padding-left: 22px; padding-right: 22px; }
.lp-system-tab[aria-selected="true"] .arrow { opacity: 1; color: var(--r2e-gold); }
.lp-system-tab:hover .arrow { opacity: 1; }
.lp-system-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
  min-height: 360px;
}
.lp-system-panel .eyebrow { color: var(--r2e-gold); }
.lp-system-panel h3 { font-size: 32px; margin: 14px 0 16px; }
.lp-system-panel p { font-size: 17px; color: var(--fg-1); line-height: 1.65; margin-bottom: 24px; }
.lp-system-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}
.lp-system-panel ul li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--fg-1); }
.lp-system-panel ul li svg { flex: none; color: var(--r2e-gold); margin-top: 3px; }
.lp-system-panel[hidden] { display: none; }

/* =====================================================================
   Collaboration (3 cards)
   ===================================================================== */

.lp-collab-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lp-collab {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.lp-collab:hover { border-color: var(--border-strong); box-shadow: var(--shadow-1); }
.lp-collab .icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(200,154,43,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--r2e-gold);
  margin-bottom: 4px;
}
.lp-collab h3 { font-size: 22px; }
.lp-collab p { font-size: 15px; color: var(--fg-1); line-height: 1.6; }

/* =====================================================================
   Comparison
   ===================================================================== */

.lp-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-elevated);
}
.lp-compare-col { padding: 36px; }
.lp-compare-col.bad { background: var(--bg); border-right: 1px solid var(--border); }
.lp-compare-col .head { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.lp-compare-col .head h3 { font-size: 22px; }
.lp-compare-col.bad .head h3 { color: var(--fg-2); }
.lp-compare-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.lp-compare-col li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.5; }
.lp-compare-col.bad li { color: var(--fg-2); }
.lp-compare-col.bad li svg { color: #9A3B2B; flex: none; margin-top: 3px; }
.lp-compare-col.good li { color: var(--r2e-navy); }
.lp-compare-col.good li svg { color: #3D7A4F; flex: none; margin-top: 3px; }

/* =====================================================================
   Industries
   ===================================================================== */

.lp-industries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.lp-industry { padding: 36px 28px 32px; border-right: 1px solid var(--border); display: flex; flex-direction: column; gap: 14px; }
.lp-industry:last-child { border-right: 0; }
.lp-industry .icon { color: var(--r2e-gold); }
.lp-industry h4 { font-family: var(--font-display); font-size: 22px; color: var(--r2e-navy); font-weight: 500; letter-spacing: -0.01em; }
.lp-industry p { font-size: 14px; color: var(--fg-2); line-height: 1.5; }

/* =====================================================================
   Founder
   ===================================================================== */

.lp-founder { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; }
.lp-founder-art {
  aspect-ratio: 4/5;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-founder-art .ph { display: flex; flex-direction: column; gap: 12px; align-items: center; color: var(--fg-2); }
.lp-founder-art .ph-cap { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.lp-founder-body p { font-size: 17px; line-height: 1.65; color: var(--fg-1); margin-top: 16px; }
.lp-founder-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: var(--r2e-navy);
  border-left: 2px solid var(--r2e-gold);
  padding-left: 24px;
  margin: 28px 0;
  max-width: 34ch;
}
.lp-founder-meta {
  display: flex;
  gap: 40px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.lp-founder-meta div { display: flex; flex-direction: column; gap: 4px; }
.lp-founder-meta dt { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-2); font-weight: 600; }
.lp-founder-meta dd { margin: 0; font-family: var(--font-display); font-size: 22px; color: var(--r2e-navy); font-weight: 500; }

/* =====================================================================
   Logo wall
   ===================================================================== */

.lp-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  overflow: hidden;
}
.lp-logo {
  aspect-ratio: 3/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--fg-2);
  letter-spacing: -0.01em;
  font-style: italic;
}
.lp-logo:nth-child(5n) { border-right: 0; }
.lp-logo:nth-last-child(-n+5) { border-bottom: 0; }

/* =====================================================================
   FAQ
   ===================================================================== */

.lp-faq { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.lp-faq details { border-bottom: 1px solid var(--border); padding: 22px 0; }
.lp-faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--r2e-navy);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary .ic {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--r2e-navy);
  flex: none;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}
.lp-faq details[open] summary .ic { background: var(--r2e-navy); color: #fff; transform: rotate(45deg); }
.lp-faq .answer { padding-top: 16px; max-width: 70ch; color: var(--fg-1); font-size: 16px; line-height: 1.65; }

/* =====================================================================
   Bottom CTA
   ===================================================================== */

.lp-cta-final { padding: 120px 0; text-align: center; }
.lp-cta-final h2 { font-size: 56px; margin-bottom: 18px; }
.lp-cta-final h2 em { font-style: italic; color: var(--r2e-gold); font-weight: 500; }
.lp-cta-final p { font-size: 18px; color: var(--fg-1); max-width: 50ch; margin: 0 auto 32px; }
.lp-cta-final .row { display: inline-flex; gap: 20px; }

/* =====================================================================
   Footer
   ===================================================================== */

.lp-footer { background: var(--r2e-navy); color: var(--r2e-off-white); padding: 80px 0 28px; }
.lp-footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.lp-footer-brand .wm { font-family: var(--font-display); font-size: 28px; font-weight: 500; letter-spacing: -0.01em; }
.lp-footer-brand .tag { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--r2e-gold); margin-top: 10px; }
.lp-footer-brand p { font-size: 14px; color: rgba(248,248,246,0.7); max-width: 32ch; margin-top: 18px; }
.lp-footer-col { display: flex; flex-direction: column; gap: 10px; }
.lp-footer-col .head { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.6); font-weight: 600; margin-bottom: 6px; }
.lp-footer-col a { color: var(--r2e-off-white); font-size: 14px; text-decoration: none; opacity: 0.85; border-bottom: none; }
.lp-footer-col a:hover { color: var(--r2e-gold); opacity: 1; border-bottom-color: transparent; }
.lp-footer-fine {
  max-width: 1400px;
  margin: 24px auto 0;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.lp-footer-legal { display: flex; gap: 18px; }
.lp-footer-legal a { color: rgba(255,255,255,0.6); text-decoration: none; border-bottom: none; }
.lp-footer-legal a:hover { color: var(--r2e-gold); border-bottom-color: transparent; }

/* =====================================================================
   Responsive
   ===================================================================== */

@media (max-width: 1050px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .lp-hero-grid,
  .lp-pitfalls-grid,
  .lp-system,
  .lp-founder,
  .lp-banner-inner { grid-template-columns: 1fr; gap: 48px; }
  .lp-pillars,
  .lp-industries { grid-template-columns: 1fr; }
  .lp-pillar,
  .lp-industry { border-right: 0; border-bottom: 1px solid var(--border); }
  .lp-stats { grid-template-columns: 1fr 1fr; }
  .lp-stat:nth-child(2) { border-right: 0; }
  .lp-stat:nth-child(1),
  .lp-stat:nth-child(2) { border-bottom: 1px solid var(--border); }
  .lp-collab-grid { grid-template-columns: 1fr; }
  .lp-compare { grid-template-columns: 1fr; }
  .lp-compare-col.bad { border-right: 0; border-bottom: 1px solid var(--border); }
  .lp-logos { grid-template-columns: repeat(2, 1fr); }
  .lp-logo { border-right: 1px solid var(--border) !important; border-bottom: 1px solid var(--border) !important; }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; }
  .lp-nav { display: none; }
  .lp-cta-final h2 { font-size: 38px; }
  .lp-banner h2 { font-size: 32px; }
}

@media (max-width: 560px) {
  .lp-header-inner { padding: 14px 20px; }
  .lp-container { padding: 0 20px; }
  .lp-narrow { padding: 0 20px; }
  .lp-section { padding: 72px 0; }
  .lp-hero { padding: 56px 0 72px; }
  .lp-stats { grid-template-columns: 1fr; }
  .lp-stat { border-right: 0 !important; border-bottom: 1px solid var(--border); }
  .lp-stat:last-child { border-bottom: 0; }
  .lp-logos { grid-template-columns: 1fr 1fr; }
  .lp-footer-grid { grid-template-columns: 1fr; }
  .lp-cta-final { padding: 80px 0; }
  .lp-cta-final .row { flex-direction: column; align-items: center; }
  .lp-hero-actions { flex-direction: column; align-items: flex-start; }
}

/* =====================================================================
   Indsigt (articles)
   ===================================================================== */

.lp-indsigt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.lp-indsigt-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.lp-indsigt-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-2);
}

.lp-indsigt-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-indsigt-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--r2e-gold);
  background: var(--r2e-gold-soft);
  padding: 4px 10px;
  border-radius: var(--radius-xs);
}

.lp-indsigt-date {
  font-size: 12px;
  color: var(--fg-2);
  letter-spacing: 0.06em;
}

.lp-indsigt-card h3 {
  font-size: 24px;
  line-height: 1.2;
  color: var(--r2e-navy);
  flex: 1;
}

.lp-indsigt-card p {
  font-size: 15px;
  color: var(--fg-1);
  line-height: 1.65;
  max-width: 58ch;
}

.lp-indsigt-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--r2e-navy);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, color 160ms ease;
  margin-top: 4px;
  width: fit-content;
}
.lp-indsigt-link:hover {
  border-bottom-color: var(--r2e-gold);
  color: var(--r2e-gold-700);
}
.lp-indsigt-link svg { flex: none; }

@media (max-width: 1050px) {
  .lp-indsigt-grid { grid-template-columns: 1fr; }
}



/* =====================================================================
   v2 — Scroll animations & enhancements
   ===================================================================== */

/* =====================================================================
   Ready2Exit v2 — imports base + scroll animation layer
   ===================================================================== */

/* ── Scroll progress bar ─────────────────────────────────────────────*/
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--r2e-gold);
  z-index: 200;
  transition: width 80ms linear;
}

/* ── Scroll reveal base state ────────────────────────────────────────*/
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(0.2, 0.6, 0.2, 1),
              transform 600ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Eyebrow with animated underline ────────────────────────────────*/
.lp-section-head .eyebrow {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
}
.lp-section-head .eyebrow::after {
  content: "";
  display: block;
  height: 1.5px;
  width: 0;
  background: var(--r2e-gold);
  transition: width 700ms cubic-bezier(0.2, 0.6, 0.2, 1) 300ms;
}
.lp-section-head.revealed .eyebrow::after {
  width: 100%;
}

/* ── Section number watermark ────────────────────────────────────────*/
.lp-section[data-num]::before {
  content: attr(data-num);
  position: absolute;
  right: 5%;
  top: 40px;
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 700;
  color: var(--r2e-navy);
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}
.lp-section.alt[data-num]::before {
  color: var(--r2e-charcoal);
  opacity: 0.04;
}
.lp-section { position: relative; }

/* ── Hero enhancements ───────────────────────────────────────────────*/
.lp-hero-art {
  will-change: transform;
  transition: box-shadow 300ms ease;
}
.lp-hero-art:hover {
  box-shadow: var(--shadow-3);
}

/* ── Split headline — first line normal, second line gold italic ─────*/
.lp-hero h1 .line-2 {
  display: block;
}

/* ── Pillar hover lift ───────────────────────────────────────────────*/
.lp-pillar {
  transition: background 160ms ease, transform 250ms ease, box-shadow 250ms ease;
}
.lp-pillar:hover {
  background: var(--bg-elevated);
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  z-index: 1;
}

/* ── Stat number — larger, bolder ────────────────────────────────────*/
.lp-stat-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 64px;
  color: var(--r2e-gold);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 8px;
}

/* ── Logo ticker ─────────────────────────────────────────────────────*/
.lp-logo-ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 0;
  margin-top: -1px;
}
.lp-logo-ticker {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.lp-logo-ticker:hover { animation-play-state: paused; }
.lp-logo-ticker-inner {
  display: flex;
  align-items: center;
}
.lp-logo-ticker-inner .lp-logo {
  aspect-ratio: auto;
  width: auto;
  padding: 22px 48px;
  border-right: 1px solid var(--border);
  border-bottom: none;
  border-radius: 0;
  white-space: nowrap;
  flex: none;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Comparison hover highlight ──────────────────────────────────────*/
.lp-compare-col.good {
  transition: box-shadow 200ms ease;
}
.lp-compare-col.good:hover {
  box-shadow: inset 0 0 0 2px var(--r2e-gold);
}

/* ── Indsigt card image strip ────────────────────────────────────────*/
.lp-indsigt-card {
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 250ms ease;
}
.lp-indsigt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

/* ── FAQ open state line accent ──────────────────────────────────────*/
.lp-faq details[open] {
  border-left: 2px solid var(--r2e-gold);
  padding-left: 18px;
  margin-left: -20px;
  transition: border-color 200ms ease;
}

/* ── CTA final — dark navy bg with texture line ──────────────────────*/
.lp-cta-final {
  background: var(--r2e-navy);
  color: var(--r2e-off-white);
  position: relative;
  overflow: hidden;
}
.lp-cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(200, 154, 43, 0.03) 60px,
    rgba(200, 154, 43, 0.03) 61px
  );
  pointer-events: none;
}
.lp-cta-final .eyebrow { color: var(--r2e-gold); }
.lp-cta-final h2 { color: #fff; font-size: 56px; margin-bottom: 18px; }
.lp-cta-final h2 em { font-style: italic; color: var(--r2e-gold); }
.lp-cta-final p { color: rgba(248,248,246,0.85); }
.lp-cta-final .btn-secondary {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.lp-cta-final .btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
}

/* ── Banner subtle diagonal pattern ─────────────────────────────────*/
.lp-banner {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 80px,
    rgba(200, 154, 43, 0.04) 80px,
    rgba(200, 154, 43, 0.04) 81px
  );
}

/* ── Founder quote — pull quote style ───────────────────────────────*/
.lp-founder-quote {
  position: relative;
}
.lp-founder-quote::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--r2e-gold);
  opacity: 0.25;
  position: absolute;
  left: -12px;
  top: -20px;
  line-height: 1;
}

/* ── Section divider line ────────────────────────────────────────────*/
.lp-section + .lp-section:not(.alt),
.lp-section.alt + .lp-section {
  border-top: none;
}

/* ── Collab cards — icon pulse on hover ──────────────────────────────*/
.lp-collab:hover .icon {
  background: rgba(200, 154, 43, 0.22);
  transition: background 200ms ease;
}

/* ── Mobile adjustments ──────────────────────────────────────────────*/
@media (max-width: 1050px) {
  .lp-cta-final h2 { font-size: 38px; }
  .lp-stat-num { font-size: 48px; }
}

/* ── Full-bleed hero with fading portrait ────────────────────────────*/
.lp-hero-full {
  position: relative;
  padding: 120px 0 120px;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
}
.lp-hero-full .lp-container {
  width: 100%;
}

.lp-hero-bg-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 55%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.lp-hero-bg-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--bg) 38%,
    rgba(248,248,246,0.92) 52%,
    rgba(248,248,246,0.5) 65%,
    transparent 80%
  );
  z-index: 1;
}

.lp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.lp-hero-full h1 { margin: 16px 0 22px; }
.lp-hero-full h1 em { font-style: italic; color: var(--r2e-gold); font-weight: 500; }

.lp-hero-stamp {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}
.lp-hero-stamp .sm {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-2);
  font-weight: 600;
}
.lp-hero-stamp .lg {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--r2e-navy);
}

/* ── Office photo banner ─────────────────────────────────────────────*/
.lp-banner-photo {
  background-size: cover;
  background-position: center center;
  position: relative;
}
.lp-banner-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 30, 60, 0.82);
  z-index: 1;
}
.lp-banner-photo .lp-banner-inner {
  position: relative;
  z-index: 2;
}

/* ── Hero responsive ─────────────────────────────────────────────────*/
@media (max-width: 1050px) {
  .lp-hero-bg-img { width: 100%; opacity: 0.15; }
  .lp-hero-bg-fade {
    background: linear-gradient(to right, var(--bg) 0%, rgba(248,248,246,0.95) 100%);
  }
  .lp-hero-content { max-width: 100%; }
}

/* ── Founder meta — 4 items ──────────────────────────────────────────*/
.lp-founder-meta { flex-wrap: wrap; gap: 24px 40px; }

/* ── Hero intro line ─────────────────────────────────────────────────*/
.lp-hero-intro {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--r2e-gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* =====================================================================
   Contact Form Section
   ===================================================================== */
.lp-contact-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.lp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

/* Left column: intro + contact details */
.lp-contact-intro .eyebrow { margin-bottom: 12px; }
.lp-contact-intro h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}
.lp-contact-intro > p {
  font-size: 17px;
  color: var(--fg-1);
  line-height: 1.65;
  margin-bottom: 40px;
}

.lp-contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.lp-contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--fg-1);
}
.lp-contact-detail svg { color: var(--r2e-gold); flex-shrink: 0; }
.lp-contact-detail a {
  color: var(--r2e-navy);
  text-decoration: none;
  font-weight: 500;
  transition: color 150ms ease;
}
.lp-contact-detail a:hover { color: var(--r2e-gold); }

.lp-contact-stamp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-2);
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.lp-contact-stamp svg { color: var(--r2e-gold); flex-shrink: 0; }

/* Right column: form */
.lp-contact-form-wrap {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px;
}

.lp-contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lp-form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lp-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-form-field > label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--r2e-navy);
}
.lp-form-field .req {
  color: var(--r2e-gold);
  margin-left: 2px;
}
.lp-form-optional {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--fg-2);
}

.lp-contact-form input[type="text"],
.lp-contact-form input[type="email"],
.lp-contact-form input[type="tel"],
.lp-contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg);
  transition: border-color 160ms ease, box-shadow 160ms ease;
  outline: none;
  box-sizing: border-box;
}
.lp-contact-form input::placeholder,
.lp-contact-form textarea::placeholder {
  color: var(--fg-2);
  opacity: 0.7;
}
.lp-contact-form input:focus,
.lp-contact-form textarea:focus {
  border-color: var(--r2e-navy);
  box-shadow: 0 0 0 3px rgba(18, 61, 122, 0.10);
}
.lp-contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Radio group */
.lp-form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-radio {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  padding: 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  transition: border-color 160ms ease, background 160ms ease;
}
.lp-radio:has(input:checked) {
  border-color: var(--r2e-navy);
  background: rgba(18, 61, 122, 0.04);
}
.lp-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.lp-radio-box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg);
  margin-top: 3px;
  transition: border-color 160ms ease, background 160ms ease;
  position: relative;
}
.lp-radio:has(input:checked) .lp-radio-box {
  border-color: var(--r2e-navy);
  background: var(--r2e-navy);
}
.lp-radio:has(input:checked) .lp-radio-box::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.lp-radio-label {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.lp-radio-label strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}
.lp-radio-label span {
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.4;
}

/* Submit + fine print */
.lp-form-submit {
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.lp-form-fine {
  text-align: center;
  font-size: 13px;
  color: var(--fg-2);
  margin: 0;
}

.lp-form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 48px 32px;
  border: 1px solid var(--r2e-gold);
  border-radius: 8px;
  background: var(--bg-alt);
  color: var(--fg-0);
}
.lp-form-success.is-visible {
  display: flex;
}
.lp-form-success svg {
  color: var(--r2e-gold);
  flex-shrink: 0;
}
.lp-form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
}
.lp-form-success p {
  color: var(--fg-1);
  font-size: 15px;
  margin: 0;
  max-width: 34ch;
}

/* Mobile */
@media (max-width: 1050px) {
  .lp-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lp-contact-form-wrap {
    padding: 28px 20px;
  }
  .lp-form-row--2 {
    grid-template-columns: 1fr;
  }
}

/* Checkbox variant of the selection cards */
.lp-radio:has(input[type="checkbox"]:checked) {
  border-color: var(--r2e-navy);
  background: rgba(18, 61, 122, 0.04);
}
.lp-check-box {
  border-radius: 4px; /* square for checkbox */
}
.lp-radio:has(input[type="checkbox"]:checked) .lp-check-box {
  border-color: var(--r2e-navy);
  background: var(--r2e-navy);
}
.lp-radio:has(input[type="checkbox"]:checked) .lp-check-box::after {
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -65%) rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 50%;
}

/* Select dropdown in contact form */
.lp-form-select {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: var(--bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23123D7A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center;
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg);
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  outline: none;
  box-sizing: border-box;
}
.lp-form-select:focus {
  border-color: var(--r2e-navy);
  box-shadow: 0 0 0 3px rgba(18, 61, 122, 0.10);
}
.lp-form-select option[disabled] { color: var(--fg-2); }

/* =====================================================================
   Article Modal
   ===================================================================== */
.lp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, 0.72);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.lp-modal-overlay:not([aria-hidden="true"]) {
  opacity: 1;
  pointer-events: auto;
}

.lp-modal {
  background: var(--bg);
  border-radius: 10px;
  width: 100%;
  max-width: 780px;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.28);
  transform: translateY(16px) scale(0.98);
  transition: transform 240ms cubic-bezier(0.2, 0.6, 0.2, 1);
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.lp-modal-overlay:not([aria-hidden="true"]) .lp-modal {
  transform: translateY(0) scale(1);
}

.lp-modal-close {
  position: sticky;
  top: 0;
  float: right;
  margin: 20px 20px 0 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--fg-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
  flex-shrink: 0;
}
.lp-modal-close:hover {
  background: var(--r2e-navy);
  color: #fff;
  border-color: var(--r2e-navy);
}

.lp-modal-content {
  padding: 0 52px 52px;
  clear: both;
}

/* Article typography inside modal */
.lp-article .lp-article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.lp-article h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  color: var(--r2e-navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.lp-article-intro {
  font-size: 17px;
  color: var(--fg-1);
  line-height: 1.7;
  border-left: 3px solid var(--r2e-gold);
  padding-left: 18px;
  margin-bottom: 36px;
}
.lp-article h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--r2e-navy);
  margin: 32px 0 10px;
}
.lp-article p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-1);
  margin-bottom: 14px;
}
.lp-article p strong {
  color: var(--fg);
  font-weight: 600;
}
.lp-article-cta {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-article-cta p {
  font-size: 15px;
  color: var(--fg-2);
  margin: 0;
}

/* Prevent body scroll when modal open */
body.modal-open {
  overflow: hidden;
}

@media (max-width: 1050px) {
  .lp-modal-content { padding: 0 24px 36px; }
  .lp-modal-close { margin: 16px 16px 0 0; }
}
