/* Launchpathio — lpth.css
   Palette tokens (from design-spec):
   surface-base:        #F7F4EE  (light/cream)
   surface-warm:        #F0EAD8  (warm cream)
   surface-deep:        #1C2B1A  (very dark green)
   surface-panel:       #243322  (dark green panel)
   accent-primary:      #2D6A4F  (forest green)
   accent-warm:         #C97D4E  (terracotta)
   accent-warm-light:   #F0A875
   text-on-dark-primary:#F7F4EE
   text-on-dark-muted:  #A8B8A5
   text-on-light-primary:#1C2B1A
   text-on-light-muted: #5E6E5C
   text-on-light-accent:#2D6A4F
   border-on-light:     #DDD6C4
   border-on-dark:      #3A4F38
   cta-primary-bg:      #2D6A4F
   cta-primary-text:    #F7F4EE
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #1C2B1A;
  background: #F7F4EE;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ===== TYPOGRAPHY SCALE ===== */
.lpth-display { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 800; line-height: 1.08; }
.lpth-h1      { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 800; line-height: 1.1; }
.lpth-h2      { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.2; }
.lpth-h3      { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }
.lpth-label   { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.lpth-small   { font-size: 0.875rem; }

/* ===== LAYOUT CONTAINERS ===== */
.lpth-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.lpth-container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

/* ===== SECTIONS BG CONTEXTS ===== */
.lpth-section--dark {
  background: #1C2B1A;
  color: #F7F4EE;
}
.lpth-section--dark-alt {
  background: #243322;
  color: #F7F4EE;
}
.lpth-section--light {
  background: #F7F4EE;
  color: #1C2B1A;
}
.lpth-section--warm {
  background: #F0EAD8;
  color: #1C2B1A;
}
.lpth-section--white {
  background: #ffffff;
  color: #1C2B1A;
}
.lpth-section--cream {
  background: #F0EAD8;
  color: #1C2B1A;
}

/* ===== NAV ===== */
.lpth-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 0;
}

/* Dark-top pages: nav is transparent over dark hero */
.lpth-page--dark-top .lpth-nav {
  background: transparent;
}
.lpth-page--dark-top .lpth-nav.lpth-nav--scrolled {
  background: #1C2B1A;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

/* Light-top pages: nav has solid light bg */
.lpth-page--light-top .lpth-nav {
  background: #F7F4EE;
  box-shadow: 0 1px 0 #DDD6C4;
}
.lpth-page--light-top .lpth-nav.lpth-nav--scrolled {
  background: #F7F4EE;
  box-shadow: 0 2px 8px rgba(28,43,26,0.08);
}

.lpth-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
}

.lpth-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.lpth-nav__logo img {
  height: 32px;
  width: auto;
}

.lpth-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Nav link colors: dark-top (over dark) = light sand */
.lpth-page--dark-top .lpth-nav__links a {
  color: #A8B8A5;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
}
.lpth-page--dark-top .lpth-nav__links a:hover {
  color: #F7F4EE;
}

/* Light-top = dark green links */
.lpth-page--light-top .lpth-nav__links a {
  color: #1C2B1A;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
}
.lpth-page--light-top .lpth-nav__links a:hover {
  color: #2D6A4F;
}

.lpth-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Sign In ghost link */
.lpth-page--dark-top .lpth-nav__sign-in {
  color: #A8B8A5;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
}
.lpth-page--dark-top .lpth-nav__sign-in:hover {
  color: #F7F4EE;
}
.lpth-page--light-top .lpth-nav__sign-in {
  color: #5E6E5C;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
}
.lpth-page--light-top .lpth-nav__sign-in:hover {
  color: #2D6A4F;
}

/* Hamburger */
.lpth-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.lpth-page--dark-top .lpth-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #F7F4EE;
  border-radius: 2px;
  transition: all 0.3s;
}
.lpth-page--light-top .lpth-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1C2B1A;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav open */
.lpth-nav--open .lpth-nav__hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lpth-nav--open .lpth-nav__hamburger span:nth-child(2) { opacity: 0; }
.lpth-nav--open .lpth-nav__hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.lpth-nav__mobile {
  display: none;
  background: #1C2B1A;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem);
}
.lpth-page--light-top .lpth-nav__mobile {
  background: #F7F4EE;
  border-top: 1px solid #DDD6C4;
}
.lpth-nav--open .lpth-nav__mobile { display: block; }

.lpth-nav__mobile a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid #3A4F38;
  font-weight: 500;
  color: #F7F4EE;
}
.lpth-page--light-top .lpth-nav__mobile a {
  border-bottom-color: #DDD6C4;
  color: #1C2B1A;
}
.lpth-nav__mobile a:last-child { border-bottom: none; }

/* ===== BUTTONS ===== */
.lpth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6875rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.2s;
  line-height: 1;
  white-space: nowrap;
}

.lpth-btn--primary {
  background: #2D6A4F;
  color: #F7F4EE;
  border-color: #2D6A4F;
}
.lpth-btn--primary:hover {
  background: #245940;
  border-color: #245940;
  color: #F7F4EE;
}

.lpth-btn--outline-light {
  background: transparent;
  color: #2D6A4F;
  border-color: #2D6A4F;
}
.lpth-btn--outline-light:hover {
  background: #2D6A4F;
  color: #F7F4EE;
}

.lpth-btn--ghost-dark {
  background: transparent;
  color: #F7F4EE;
  border-color: rgba(247,244,238,0.35);
}
.lpth-btn--ghost-dark:hover {
  background: rgba(247,244,238,0.1);
  border-color: rgba(247,244,238,0.6);
  color: #F7F4EE;
}

.lpth-btn--ghost-light {
  background: transparent;
  color: #2D6A4F;
  border-color: transparent;
}
.lpth-btn--ghost-light:hover {
  color: #1C2B1A;
}

.lpth-btn--sm {
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
}

/* ===== NAV CTA (inside nav — special sizing) ===== */
.lpth-nav__cta {
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
}

/* ===== HERO — INDEX ===== */
.lpth-hero {
  padding-top: 120px;
  padding-bottom: 80px;
  background: #1C2B1A;
  position: relative;
  overflow: hidden;
}

.lpth-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.lpth-hero__eyebrow {
  color: #C97D4E;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.lpth-hero__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: #F7F4EE;
  margin-bottom: 1.25rem;
}

.lpth-hero__title em {
  font-style: normal;
  color: #C97D4E;
}

.lpth-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #A8B8A5;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.lpth-hero__ctas {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* Hero text/visual layout columns */
.lpth-hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lpth-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero routing diagram */
.lpth-routing-diagram {
  background: #243322;
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  border: 1px solid #3A4F38;
}

.lpth-routing-diagram__title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #A8B8A5;
  margin-bottom: 1.5rem;
}

.lpth-routing-nodes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.lpth-routing-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.lpth-routing-node__circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2D6A4F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #F7F4EE;
  border: 2px solid #3A6A54;
}

.lpth-routing-node__circle--target {
  background: #C97D4E;
  border-color: #D48A5E;
}

.lpth-routing-node__label {
  font-size: 0.75rem;
  color: #A8B8A5;
  text-align: center;
  max-width: 80px;
  line-height: 1.3;
}

.lpth-routing-path {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lpth-routing-path svg {
  width: 100%;
  max-width: 80px;
  height: 24px;
}

.lpth-routing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(45,106,79,0.2);
  border: 1px solid rgba(45,106,79,0.4);
  border-radius: 20px;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  color: #A8D5B8;
  font-weight: 500;
}

.lpth-routing-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2D6A4F;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Animated dashes on routing path */
@keyframes dash {
  to { stroke-dashoffset: -20; }
}

/* ===== STAT STRIP ===== */
.lpth-stat-strip {
  padding: 3rem 0;
  background: #243322;
}

.lpth-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

/* Stat card wrapper */
.lpth-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lpth-stat__number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #C97D4E;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.lpth-stat__label {
  font-size: 0.875rem;
  color: #A8B8A5;
  line-height: 1.4;
}

/* ===== PROBLEM SECTION ===== */
.lpth-problem {
  padding: 5rem 0;
}

.lpth-problem__inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}

.lpth-problem__headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #1C2B1A;
  margin-bottom: 1rem;
}

.lpth-problem__body {
  color: #5E6E5C;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.lpth-comparison-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.lpth-comparison-card {
  border-radius: 8px;
  padding: 1.25rem;
  border: 1px solid #DDD6C4;
}

.lpth-comparison-card--before {
  background: #fff;
}

.lpth-comparison-card--after {
  background: #F0EAD8;
  border-color: #2D6A4F;
}

.lpth-comparison-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.625rem;
  color: #5E6E5C;
}

.lpth-comparison-card--after .lpth-comparison-card__label {
  color: #2D6A4F;
}

.lpth-comparison-card__content {
  font-size: 0.875rem;
  color: #1C2B1A;
  line-height: 1.5;
}

.lpth-pull-quote {
  padding: 1.5rem;
  background: #F7F4EE;
  border-left: 3px solid #C97D4E;
  border-radius: 0 8px 8px 0;
}

.lpth-pull-quote__text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.125rem;
  font-style: italic;
  color: #1C2B1A;
  line-height: 1.6;
  margin-bottom: 0.875rem;
}

.lpth-pull-quote__attribution {
  font-size: 0.8125rem;
  color: #5E6E5C;
  font-weight: 500;
}

/* ===== FOUR PILLARS ===== */
.lpth-pillars {
  padding: 5rem 0;
  background: #ffffff;
}

.lpth-pillars__headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #1C2B1A;
  margin-bottom: 0.75rem;
}

.lpth-pillars__sub {
  color: #5E6E5C;
  margin-bottom: 3rem;
}

.lpth-pillars-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.lpth-pillar {
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid #DDD6C4;
  background: #F7F4EE;
}

.lpth-pillar--large {
  background: #1C2B1A;
  border-color: #3A4F38;
}

.lpth-pillar--large .lpth-pillar__headline {
  color: #F7F4EE;
}

.lpth-pillar--large .lpth-pillar__body {
  color: #A8B8A5;
}

.lpth-pillar__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

.lpth-pillar__headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1C2B1A;
  margin-bottom: 0.625rem;
}

.lpth-pillar__body {
  font-size: 0.9375rem;
  color: #5E6E5C;
  line-height: 1.65;
}

/* ===== ROUTING DEEP ===== */
.lpth-routing-deep {
  padding: 5rem 0;
}

.lpth-routing-deep__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lpth-routing-deep__headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #F7F4EE;
  margin-bottom: 2rem;
}

.lpth-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lpth-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.lpth-step__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2D6A4F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #F7F4EE;
  margin-top: 2px;
}

.lpth-step__text {
  color: #A8B8A5;
  line-height: 1.65;
}

.lpth-step__title {
  color: #F7F4EE;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* Pipeline Mock */
.lpth-pipeline-mock {
  background: #243322;
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid #3A4F38;
  overflow-x: auto;
}

.lpth-pipeline-mock__header {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #A8B8A5;
  margin-bottom: 1rem;
}

.lpth-pipeline-stages {
  display: flex;
  gap: 0.75rem;
  min-width: 480px;
}

.lpth-pipeline-stage {
  flex: 1;
  min-width: 0;
}

.lpth-pipeline-stage__label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #A8B8A5;
  margin-bottom: 0.625rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid #3A4F38;
}

.lpth-pipeline-card {
  background: #1C2B1A;
  border-radius: 6px;
  padding: 0.625rem 0.75rem;
  margin-bottom: 0.5rem;
  border: 1px solid #3A4F38;
}

.lpth-pipeline-card__name {
  font-size: 0.75rem;
  color: #F7F4EE;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.lpth-pipeline-card__meta {
  font-size: 0.625rem;
  color: #A8B8A5;
}

.lpth-pipeline-card__badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 600;
  margin-top: 0.375rem;
}

.lpth-pipeline-card__badge--warm {
  background: rgba(45,106,79,0.25);
  color: #A8D5B8;
}

.lpth-pipeline-card__badge--pending {
  background: rgba(201,125,78,0.2);
  color: #F0A875;
}

/* Routing mock in deep section */
.lpth-routing-mock {
  background: #243322;
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid #3A4F38;
}

.lpth-intro-path {
  border-radius: 8px;
  background: #1C2B1A;
  border: 1px solid #3A4F38;
  padding: 1rem;
  margin-bottom: 0.75rem;
}

.lpth-intro-path__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.lpth-intro-path__name {
  font-size: 0.875rem;
  color: #F7F4EE;
  font-weight: 600;
}

.lpth-intro-path__score {
  font-size: 0.75rem;
  color: #A8D5B8;
  background: rgba(45,106,79,0.2);
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}

.lpth-intro-path__chain {
  font-size: 0.75rem;
  color: #A8B8A5;
  margin-bottom: 0.625rem;
}

.lpth-intro-path__btn {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #F7F4EE;
  background: #2D6A4F;
  border: none;
  padding: 0.375rem 0.875rem;
  border-radius: 4px;
  cursor: pointer;
}

/* ===== FOUNDER STORIES ===== */
.lpth-stories {
  padding: 5rem 0;
}

.lpth-stories__headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #1C2B1A;
  margin-bottom: 2.5rem;
}

.lpth-stories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.lpth-story-card {
  border: 1px solid #DDD6C4;
  border-radius: 10px;
  padding: 2rem;
  background: #ffffff;
}

.lpth-story-card__header {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.lpth-story-card__photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
}

.lpth-story-card__founder {
  font-weight: 700;
  color: #1C2B1A;
  font-size: 0.9375rem;
  line-height: 1.3;
}

.lpth-story-card__company {
  font-size: 0.8125rem;
  color: #5E6E5C;
}

.lpth-story-card__stage {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #2D6A4F;
  background: rgba(45,106,79,0.1);
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  margin-top: 0.25rem;
  display: inline-block;
}

.lpth-story-card__outcome {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1C2B1A;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.lpth-story-card__excerpt {
  font-size: 0.9375rem;
  color: #5E6E5C;
  line-height: 1.65;
}

/* ===== PRICING PREVIEW ===== */
.lpth-pricing-preview {
  padding: 5rem 0;
}

.lpth-pricing-preview__headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #1C2B1A;
  margin-bottom: 0.5rem;
}

.lpth-pricing-preview__sub {
  color: #5E6E5C;
  margin-bottom: 2.5rem;
}

.lpth-pricing-preview-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.lpth-preview-card {
  border-radius: 10px;
  padding: 1.75rem;
  border: 1px solid #DDD6C4;
  background: #ffffff;
}

.lpth-preview-card--featured {
  border-color: #2D6A4F;
  background: #F0EAD8;
}

.lpth-preview-card__name {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5E6E5C;
  margin-bottom: 0.375rem;
}

.lpth-preview-card__price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #1C2B1A;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.lpth-preview-card__cycle {
  font-size: 0.8125rem;
  color: #5E6E5C;
  margin-bottom: 1rem;
}

.lpth-preview-card__tagline {
  font-size: 0.9375rem;
  color: #1C2B1A;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.lpth-preview-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lpth-preview-card__features li {
  font-size: 0.875rem;
  color: #5E6E5C;
  padding-left: 1.25rem;
  position: relative;
}

.lpth-preview-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2D6A4F;
}

.lpth-pricing-preview__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: #2D6A4F;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: gap 0.2s;
}
.lpth-pricing-preview__link:hover { gap: 0.625rem; }

/* ===== BOTTOM CTA SECTION ===== */
.lpth-cta-bottom {
  padding: 6rem 0;
  text-align: center;
}

.lpth-cta-bottom__headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #F7F4EE;
  margin-bottom: 0.875rem;
}

.lpth-cta-bottom__sub {
  color: #A8B8A5;
  font-size: 1.0625rem;
  margin-bottom: 2rem;
}

.lpth-cta-bottom__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.lpth-footer {
  background: #1C2B1A;
  padding: 4rem 0 2rem;
  color: #F7F4EE;
}

.lpth-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #3A4F38;
  margin-bottom: 2rem;
}

.lpth-footer__brand-tagline {
  font-size: 0.875rem;
  color: #A8B8A5;
  margin-top: 0.75rem;
  line-height: 1.5;
}

.lpth-footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #A8B8A5;
  margin-bottom: 1rem;
}

.lpth-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.lpth-footer__links a {
  color: #A8B8A5;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.lpth-footer__links a:hover {
  color: #F7F4EE;
}

.lpth-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.lpth-footer__copy {
  font-size: 0.8125rem;
  color: #A8B8A5;
}

.lpth-footer__cookie-link {
  font-size: 0.8125rem;
  color: #A8B8A5;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.lpth-footer__cookie-link:hover {
  color: #F7F4EE;
}

/* ===== PRODUCT PAGE ===== */
.lpth-product-hero {
  padding-top: 120px;
  padding-bottom: 80px;
  background: #1C2B1A;
}

.lpth-product-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.lpth-product-hero__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: #F7F4EE;
  margin-bottom: 1.125rem;
  line-height: 1.1;
}

.lpth-product-hero__sub {
  color: #A8B8A5;
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* Dashboard Mock */
.lpth-dashboard-mock {
  background: #243322;
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid #3A4F38;
}

.lpth-dashboard-mock__topbar {
  display: flex;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.lpth-dashboard-mock__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3A4F38;
}

.lpth-dashboard-mock__dot--r { background: #7A4433; }
.lpth-dashboard-mock__dot--y { background: #7A6033; }
.lpth-dashboard-mock__dot--g { background: #2D6A4F; }

.lpth-dashboard-mock__tabs {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 1.25rem;
}

.lpth-dashboard-mock__tab {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  color: #A8B8A5;
  cursor: default;
}

.lpth-dashboard-mock__tab--active {
  background: #2D6A4F;
  color: #F7F4EE;
}

/* ===== FEATURE SECTIONS (product.html) ===== */
.lpth-feature-section {
  padding: 5rem 0;
}

.lpth-feature-section--alt {
  background: #ffffff;
}

.lpth-feature-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lpth-feature-section__inner--reversed {
  direction: rtl;
}

.lpth-feature-section__inner--reversed > * {
  direction: ltr;
}

.lpth-feature__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2D6A4F;
  margin-bottom: 0.75rem;
}

.lpth-feature__headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #1C2B1A;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.lpth-feature__body {
  color: #5E6E5C;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.lpth-feature__metric {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(45,106,79,0.1);
  border-radius: 6px;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  color: #2D6A4F;
  font-weight: 600;
}

/* Cap Table Mock */
.lpth-captable-mock {
  background: #F0EAD8;
  border: 1px solid #DDD6C4;
  border-radius: 10px;
  padding: 1.5rem;
  overflow: hidden;
}

.lpth-captable-mock__title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #5E6E5C;
  margin-bottom: 1rem;
}

.lpth-captable-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #DDD6C4;
  font-size: 0.875rem;
}

.lpth-captable-row:last-child { border-bottom: none; }
.lpth-captable-row__name { color: #1C2B1A; font-weight: 500; }
.lpth-captable-row__pct { color: #2D6A4F; font-weight: 700; }
.lpth-captable-row__type { color: #5E6E5C; font-size: 0.75rem; }

.lpth-captable-scenario {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.lpth-captable-scenario__btn {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  border: 1px solid #DDD6C4;
  background: #ffffff;
  color: #5E6E5C;
  cursor: pointer;
}

.lpth-captable-scenario__btn--active {
  background: #2D6A4F;
  color: #F7F4EE;
  border-color: #2D6A4F;
}

/* Deck Version Mock */
.lpth-deck-mock {
  background: #F7F4EE;
  border: 1px solid #DDD6C4;
  border-radius: 10px;
  padding: 1.5rem;
}

.lpth-deck-mock__title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #5E6E5C;
  margin-bottom: 1rem;
}

.lpth-deck-version {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem 0;
  border-bottom: 1px solid #DDD6C4;
  font-size: 0.875rem;
}

.lpth-deck-version:last-child { border-bottom: none; }

.lpth-deck-version__tag {
  font-weight: 700;
  color: #2D6A4F;
  font-size: 0.8125rem;
  min-width: 40px;
}

.lpth-deck-version__info {
  color: #5E6E5C;
  font-size: 0.8125rem;
}

.lpth-deck-version__heatmap {
  display: flex;
  gap: 3px;
}

.lpth-heatmap-bar {
  width: 16px;
  border-radius: 2px;
}

/* Comparison table */
.lpth-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.lpth-before-after__col {
  padding: 1rem;
  border-radius: 8px;
}

.lpth-before-after__col--before {
  background: #ffffff;
  border: 1px solid #DDD6C4;
}

.lpth-before-after__col--after {
  background: #F0EAD8;
  border: 1px solid #2D6A4F;
}

.lpth-before-after__label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #5E6E5C;
  margin-bottom: 0.625rem;
}

.lpth-before-after__col--after .lpth-before-after__label {
  color: #2D6A4F;
}

.lpth-before-after__item {
  font-size: 0.8125rem;
  color: #1C2B1A;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(221,214,196,0.5);
}
.lpth-before-after__item:last-child { border-bottom: none; }

/* ===== PRICING PAGE ===== */
.lpth-pricing-hero {
  padding: 6rem 0 3rem;
  text-align: center;
}

.lpth-pricing-hero__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: #1C2B1A;
  margin-bottom: 0.875rem;
}

.lpth-pricing-hero__sub {
  color: #5E6E5C;
  font-size: 1.0625rem;
  margin-bottom: 1.5rem;
}

/* Annual toggle */
.lpth-billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  background: #F0EAD8;
  border-radius: 40px;
  padding: 0.375rem 0.75rem;
  border: 1px solid #DDD6C4;
}

.lpth-billing-toggle__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #5E6E5C;
}

/* Billing label state modifiers */
.lpth-billing-label--monthly,
.lpth-billing-label--annual {
  transition: font-weight 0.2s, color 0.2s;
}

.lpth-billing-toggle__label--active {
  color: #1C2B1A;
  font-weight: 700;
}

.lpth-billing-toggle__switch {
  width: 36px;
  height: 20px;
  background: #2D6A4F;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  border: none;
}

.lpth-billing-toggle__switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}

.lpth-billing-toggle__switch.lpth-toggle--annual::after {
  transform: translateX(16px);
}

.lpth-pricing-tiers {
  padding: 3rem 0 5rem;
}

.lpth-pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.lpth-pricing-card {
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #DDD6C4;
  background: #F7F4EE;
  position: relative;
}

.lpth-pricing-card--featured {
  border-color: #2D6A4F;
  background: #1C2B1A;
}

.lpth-pricing-card--featured .lpth-pricing-card__name,
.lpth-pricing-card--featured .lpth-pricing-card__price,
.lpth-pricing-card--featured .lpth-pricing-card__desc,
.lpth-pricing-card--featured .lpth-pricing-card__features li {
  color: #F7F4EE;
}

.lpth-pricing-card--featured .lpth-pricing-card__features li {
  color: #A8B8A5;
}

.lpth-pricing-card--featured .lpth-pricing-card__features li::before {
  background: #A8D5B8;
}

.lpth-pricing-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: #C97D4E;
  color: #F7F4EE;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.25rem 0.875rem;
  border-radius: 20px;
  white-space: nowrap;
}

.lpth-pricing-card__name {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5E6E5C;
  margin-bottom: 0.5rem;
}

.lpth-pricing-card__price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3rem;
  font-weight: 800;
  color: #1C2B1A;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.lpth-pricing-card__price span {
  font-size: 1.125rem;
  font-weight: 600;
  vertical-align: top;
  margin-top: 0.5rem;
  display: inline-block;
}

.lpth-pricing-card__cycle {
  font-size: 0.8125rem;
  color: #5E6E5C;
  margin-bottom: 0.75rem;
}

.lpth-pricing-card--featured .lpth-pricing-card__cycle {
  color: #A8B8A5;
}

.lpth-pricing-card__desc {
  font-size: 0.9375rem;
  color: #5E6E5C;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.lpth-pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}

.lpth-pricing-card__features li {
  font-size: 0.9rem;
  color: #5E6E5C;
  padding-left: 1.375rem;
  position: relative;
  line-height: 1.45;
}

.lpth-pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2D6A4F;
}

.lpth-pricing-card__annual-note {
  font-size: 0.8125rem;
  color: #5E6E5C;
  margin-top: 0.75rem;
}

.lpth-pricing-card--featured .lpth-pricing-card__annual-note {
  color: #A8B8A5;
}

.lpth-pricing-card__footnote {
  font-size: 0.8125rem;
  color: #5E6E5C;
  text-align: center;
  margin-top: 1.5rem;
}

/* FAQ */
.lpth-faq {
  padding: 5rem 0;
}

.lpth-faq__headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #1C2B1A;
  margin-bottom: 2rem;
}

.lpth-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
}

.lpth-faq-item {
  border-bottom: 1px solid #DDD6C4;
}

.lpth-faq-item__trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: #1C2B1A;
  cursor: pointer;
  gap: 1rem;
}

.lpth-faq-item__trigger:hover {
  color: #2D6A4F;
}

.lpth-faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
  color: #5E6E5C;
}

.lpth-faq-item--open .lpth-faq-item__icon {
  transform: rotate(45deg);
}

.lpth-faq-item__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.lpth-faq-item--open .lpth-faq-item__body {
  max-height: 400px;
}

.lpth-faq-item__answer {
  padding-bottom: 1.25rem;
  color: #5E6E5C;
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ===== ABOUT PAGE ===== */
.lpth-about-hero {
  padding: 6rem 0 4rem;
}

.lpth-about-hero__inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: center;
}

.lpth-about-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2D6A4F;
  margin-bottom: 1rem;
}

.lpth-about-hero__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #1C2B1A;
  margin-bottom: 1.125rem;
  line-height: 1.1;
}

.lpth-about-hero__sub {
  color: #5E6E5C;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.lpth-about-hero__photo {
  width: 100%;
  aspect-ratio: 5/6;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
}

/* About story */
.lpth-story {
  padding: 5rem 0;
}

.lpth-story__inner {
  max-width: 720px;
}

.lpth-story p {
  color: #5E6E5C;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}

.lpth-story .lpth-pull-quote {
  margin: 2rem 0;
}

/* Team */
.lpth-team {
  padding: 5rem 0;
}

.lpth-team__headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #1C2B1A;
  margin-bottom: 2.5rem;
}

.lpth-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.lpth-team-member {
  text-align: center;
}

.lpth-team-member__photo {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.lpth-team-member__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1C2B1A;
  margin-bottom: 0.25rem;
}

.lpth-team-member__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2D6A4F;
  margin-bottom: 0.5rem;
}

.lpth-team-member__bio {
  font-size: 0.875rem;
  color: #5E6E5C;
  line-height: 1.6;
}

/* Values */
.lpth-values {
  padding: 5rem 0;
}

.lpth-value {
  padding: 2.5rem 0;
  border-bottom: 1px solid #3A4F38;
  max-width: 640px;
}

.lpth-value:last-child { border-bottom: none; }

.lpth-value__headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #F7F4EE;
  margin-bottom: 0.75rem;
}

.lpth-value__body {
  color: #A8B8A5;
  line-height: 1.7;
}

/* About CTA */
.lpth-about-cta {
  padding: 5rem 0;
  text-align: center;
}

.lpth-about-cta__headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #1C2B1A;
  margin-bottom: 0.625rem;
}

.lpth-about-cta__email {
  font-size: 1.0625rem;
  color: #2D6A4F;
  font-weight: 600;
  margin-bottom: 2rem;
  display: block;
}

/* ===== BLOG LIST PAGE ===== */
.lpth-blog-hero {
  padding: 5rem 0 3rem;
}

.lpth-blog-hero__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: #1C2B1A;
  margin-bottom: 0.625rem;
}

.lpth-blog-hero__sub {
  color: #5E6E5C;
  font-size: 1.0625rem;
}

/* Ornament for sub-page hero visual weight */
.lpth-blog-hero__ornament {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lpth-blog-hero__ornament-line {
  height: 2px;
  width: 64px;
  background: #C97D4E;
}

.lpth-blog-hero__ornament-text {
  font-size: 0.8125rem;
  color: #5E6E5C;
  font-weight: 500;
}

.lpth-blog-grid-section {
  padding: 2rem 0 5rem;
  background: #ffffff;
}

.lpth-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.lpth-blog-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #DDD6C4;
  background: #F7F4EE;
  transition: transform 0.2s, box-shadow 0.2s;
  color: inherit;
  display: block;
}

.lpth-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(28,43,26,0.1);
  color: inherit;
}

.lpth-blog-card__cover {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.lpth-blog-card__body {
  padding: 1.25rem;
}

.lpth-blog-card__meta {
  font-size: 0.75rem;
  color: #5E6E5C;
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.lpth-blog-card__meta-sep {
  color: #DDD6C4;
}

.lpth-blog-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1C2B1A;
  line-height: 1.35;
  margin-bottom: 0.625rem;
}

.lpth-blog-card:hover .lpth-blog-card__title {
  color: #2D6A4F;
}

.lpth-blog-card__excerpt {
  font-size: 0.875rem;
  color: #5E6E5C;
  line-height: 1.6;
}

/* ===== BLOG ARTICLE PAGE ===== */
.lpth-article-hero {
  padding-top: 80px;
  padding-bottom: 0;
}

.lpth-article-hero__cover-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.lpth-article-hero__cover {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.lpth-article-hero__meta {
  max-width: 900px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  padding-bottom: 2rem;
}

.lpth-article-hero__tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2D6A4F;
  margin-bottom: 0.75rem;
}

.lpth-article-hero__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #1C2B1A;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.lpth-article-hero__byline {
  font-size: 0.875rem;
  color: #5E6E5C;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* Article body */
.lpth-article-body {
  padding: 3rem 0 5rem;
  background: #ffffff;
}

.lpth-article-content {
  max-width: 720px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.lpth-article-content p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
  color: #1C2B1A;
}

.lpth-article-content h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1C2B1A;
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
}

.lpth-article-content h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1C2B1A;
  margin-top: 2rem;
  margin-bottom: 0.625rem;
}

.lpth-article-content ul,
.lpth-article-content ol {
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
}

.lpth-article-content ul { list-style: disc; }
.lpth-article-content ol { list-style: decimal; }

.lpth-article-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: #1C2B1A;
}

.lpth-article-content blockquote {
  border-left: 3px solid #C97D4E;
  padding: 0.75rem 0 0.75rem 1.5rem;
  margin: 1.75rem 0;
  font-style: italic;
  color: #5E6E5C;
  font-size: 1.0625rem;
  line-height: 1.65;
}

/* Article inline pull-quote */
.lpth-article-pull-quote {
  border-left: 3px solid #C97D4E;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: #F7F4EE;
  border-radius: 0 8px 8px 0;
}

.lpth-article-pull-quote p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #1C2B1A;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Article CTA */
.lpth-article-cta {
  padding: 4rem 0;
  text-align: center;
}

.lpth-article-cta__headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #F7F4EE;
  margin-bottom: 1.5rem;
}

/* Related articles */
.lpth-related {
  padding: 4rem 0;
}

.lpth-related__headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #1C2B1A;
  margin-bottom: 1.5rem;
}

.lpth-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ===== CONTACT PAGE ===== */
.lpth-contact-hero {
  padding: 6rem 0 3rem;
}

.lpth-contact-hero__ornament {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.lpth-contact-hero__ornament-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C97D4E;
}

.lpth-contact-hero__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: #1C2B1A;
  margin-bottom: 0.75rem;
}

.lpth-contact-hero__sub {
  color: #5E6E5C;
  font-size: 1.0625rem;
}

.lpth-contact-form-section {
  padding: 2rem 0 5rem;
}

.lpth-contact-form-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}

.lpth-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lpth-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.lpth-form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1C2B1A;
}

.lpth-form-group input,
.lpth-form-group textarea {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 1px solid #DDD6C4;
  background: #ffffff;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 1rem;
  color: #1C2B1A;
  outline: none;
  transition: border-color 0.2s;
}

.lpth-form-group input:focus,
.lpth-form-group textarea:focus {
  border-color: #2D6A4F;
}

.lpth-form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.lpth-contact-info {
  padding: 2rem;
  background: #F0EAD8;
  border-radius: 10px;
  border: 1px solid #DDD6C4;
}

.lpth-contact-info__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1C2B1A;
  margin-bottom: 1.5rem;
}

.lpth-contact-info__item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.lpth-contact-info__item:last-child { margin-bottom: 0; }

.lpth-contact-info__icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #2D6A4F;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #F7F4EE;
  font-size: 0.875rem;
}

.lpth-contact-info__text {
  font-size: 0.9375rem;
  color: #1C2B1A;
  line-height: 1.55;
}

.lpth-contact-info__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #5E6E5C;
  margin-bottom: 0.25rem;
}

/* ===== LOGIN / AUTH PAGES ===== */
.lpth-auth-split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.lpth-auth-side {
  background: #1C2B1A;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
}

.lpth-auth-side__logo {
  height: 32px;
  width: auto;
  margin-bottom: 2.5rem;
}

.lpth-auth-side__tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: #F7F4EE;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.lpth-auth-side__sub {
  color: #A8B8A5;
  line-height: 1.65;
  font-size: 0.9375rem;
}

.lpth-auth-panel {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.lpth-auth-form-wrap {
  width: 100%;
  max-width: 400px;
}

.lpth-auth-form-wrap__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1C2B1A;
  margin-bottom: 0.5rem;
}

.lpth-auth-form-wrap__sub {
  color: #5E6E5C;
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}

.lpth-auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.lpth-auth-form__footer {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: center;
}

.lpth-auth-form__link {
  font-size: 0.875rem;
  color: #5E6E5C;
  transition: color 0.2s;
}

.lpth-auth-form__link:hover {
  color: #2D6A4F;
}

.lpth-auth-form__link--accent {
  color: #2D6A4F;
  font-weight: 600;
}

.lpth-demo-notice {
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  background: #F0EAD8;
  border-radius: 6px;
  border: 1px solid #DDD6C4;
  font-size: 0.875rem;
  color: #5E6E5C;
  display: none;
}

.lpth-demo-notice--visible {
  display: block;
}

/* Reset password */
.lpth-reset-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #F7F4EE;
}

.lpth-reset-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  border: 1px solid #DDD6C4;
}

.lpth-reset-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1C2B1A;
  margin-bottom: 0.5rem;
}

.lpth-reset-card__sub {
  color: #5E6E5C;
  font-size: 0.9375rem;
  margin-bottom: 1.75rem;
}

/* ===== AUTH SPLIT PAGES (login/signup/reset) ===== */
.lpth-page--auth body,
.lpth-page--auth {
  background: #F7F4EE;
}

.lpth-auth-split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.lpth-auth-split__panel {
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 3.5rem);
  min-height: 100vh;
}

.lpth-auth-split__panel--dark {
  background: #1C2B1A;
  color: #F7F4EE;
}

.lpth-auth-split__logo {
  display: block;
  margin-bottom: 3rem;
}

.lpth-auth-split__brand {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lpth-auth-split__quote {
  border-left: 3px solid #C97D4E;
  padding-left: 1.25rem;
  margin: 0;
}

.lpth-auth-split__quote p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-style: italic;
  color: #F7F4EE;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.lpth-auth-split__quote footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.lpth-auth-split__quote-author {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #F7F4EE;
}

.lpth-auth-split__quote-role {
  font-size: 0.8125rem;
  color: #A8B8A5;
}

.lpth-auth-split__panel-stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  border-top: 1px solid #3A4F38;
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.lpth-auth-split__stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
  color: #C97D4E;
}

.lpth-auth-split__stat-label {
  font-size: 0.875rem;
  color: #A8B8A5;
}

.lpth-auth-split__panel-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: #F7F4EE;
  margin-bottom: 2rem;
  line-height: 1.25;
}

.lpth-auth-split__feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: #A8B8A5;
}

.lpth-auth-split__check {
  color: #A8D5B8;
  font-weight: 700;
  margin-right: 0.5rem;
}

.lpth-auth-split__form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: #ffffff;
}

.lpth-auth-form-wrap {
  width: 100%;
  max-width: 400px;
}

.lpth-auth-form-wrap__heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.875rem;
  font-weight: 800;
  color: #1C2B1A;
  margin-bottom: 0.5rem;
}

.lpth-auth-form-wrap__sub {
  font-size: 0.9375rem;
  color: #5E6E5C;
  margin-bottom: 1.75rem;
}

.lpth-auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lpth-form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1C2B1A;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lpth-form-label__link {
  font-size: 0.8125rem;
  color: #2D6A4F;
  font-weight: 500;
  text-decoration: underline;
}

.lpth-form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 1px solid #DDD6C4;
  background: #F7F4EE;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 1rem;
  color: #1C2B1A;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lpth-form-input:focus {
  border-color: #2D6A4F;
  box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
}

.lpth-auth-submit {
  width: 100%;
  padding: 0.875rem;
  margin-top: 0.5rem;
  font-size: 1rem;
}

.lpth-demo-notice {
  margin-top: 0;
  padding: 0.875rem 1rem;
  background: #F0EAD8;
  border-radius: 6px;
  border: 1px solid #DDD6C4;
  font-size: 0.875rem;
  color: #5E6E5C;
  display: none;
  line-height: 1.55;
}

.lpth-demo-notice--visible {
  display: block;
}

.lpth-demo-notice a {
  color: #2D6A4F;
  text-decoration: underline;
}

.lpth-demo-notice strong {
  color: #1C2B1A;
}

.lpth-auth-form-wrap__switch {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: #5E6E5C;
  text-align: center;
}

.lpth-auth-form-wrap__switch a {
  color: #2D6A4F;
  font-weight: 600;
  text-decoration: underline;
}

.lpth-auth-form-wrap__legal {
  font-size: 0.8125rem;
  color: #5E6E5C;
  line-height: 1.55;
}

.lpth-auth-form-wrap__legal a {
  color: #2D6A4F;
  text-decoration: underline;
}

/* Reset password — centered card layout */
.lpth-auth-centered {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F7F4EE;
  padding: 2rem;
}

.lpth-auth-centered__card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
  border: 1px solid #DDD6C4;
  box-shadow: 0 4px 24px rgba(28,43,26,0.08);
}

.lpth-auth-centered__logo {
  display: block;
  margin-bottom: 2rem;
}

.lpth-auth-centered__heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #1C2B1A;
  margin-bottom: 0.5rem;
}

.lpth-auth-centered__sub {
  font-size: 0.9375rem;
  color: #5E6E5C;
  margin-bottom: 2rem;
  line-height: 1.55;
}

/* Auth page responsive */
@media (max-width: 768px) {
  .lpth-auth-split {
    grid-template-columns: 1fr;
  }
  .lpth-auth-split__panel--dark {
    display: none;
  }
  .lpth-auth-split__form-side {
    min-height: 100vh;
  }
}

/* ===== LEGAL PAGES ===== */
.lpth-legal-page {
  padding-top: 80px;
  min-height: 60vh;
}

.lpth-legal-hero {
  padding: 4rem 0 2rem;
  background: #F7F4EE;
}

.lpth-legal-hero__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #1C2B1A;
}

.lpth-legal-content {
  padding: 3rem 0 5rem;
  background: #ffffff;
}

.legal-article {
  max-width: 760px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.legal-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #DDD6C4;
}

.legal-header h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #1C2B1A;
  margin-bottom: 0.5rem;
}

.legal-meta {
  font-size: 0.875rem;
  color: #5E6E5C;
}

.legal-article section {
  margin-bottom: 2rem;
}

.legal-article h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1C2B1A;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.legal-article h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1C2B1A;
  margin-bottom: 0.5rem;
  margin-top: 1.25rem;
}

.legal-article p {
  color: #5E6E5C;
  line-height: 1.75;
  margin-bottom: 0.875rem;
}

.legal-article ul, .legal-article ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  list-style: disc;
}

.legal-article li {
  color: #5E6E5C;
  margin-bottom: 0.375rem;
  line-height: 1.65;
}

.legal-article address {
  font-style: normal;
  color: #5E6E5C;
  line-height: 1.75;
}

.legal-article a {
  color: #2D6A4F;
  text-decoration: underline;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
  padding: 0.625rem 0.875rem;
  text-align: left;
  border: 1px solid #DDD6C4;
  color: #5E6E5C;
}

.legal-table th {
  background: #F7F4EE;
  font-weight: 600;
  color: #1C2B1A;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1C2B1A;
  border-top: 1px solid #3A4F38;
  padding: 1rem 0;
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.875rem;
  color: #A8B8A5;
  line-height: 1.55;
  flex: 1;
  min-width: 200px;
}

.cookie-banner__text a {
  color: #A8D5B8;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Manrope', system-ui, sans-serif;
  border: none;
}

.cookie-banner__btn--primary {
  background: #2D6A4F;
  color: #F7F4EE;
}

.cookie-banner__btn--primary:hover {
  background: #245940;
  color: #F7F4EE;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .lpth-hero__inner,
  .lpth-routing-deep__inner,
  .lpth-product-hero__inner,
  .lpth-feature-section__inner {
    grid-template-columns: 1fr;
  }

  .lpth-routing-deep__inner,
  .lpth-feature-section__inner--reversed {
    direction: ltr;
  }

  .lpth-stats { grid-template-columns: repeat(2, 1fr); }

  .lpth-problem__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .lpth-pillars-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lpth-about-hero__inner {
    grid-template-columns: 1fr;
  }

  .lpth-about-hero__photo {
    max-width: 360px;
  }

  .lpth-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .lpth-auth-split { grid-template-columns: 1fr; }
  .lpth-auth-side { display: none; }
}

@media (max-width: 768px) {
  .lpth-nav__links,
  .lpth-nav__actions { display: none; }
  .lpth-nav__hamburger { display: flex; }

  .lpth-stats { grid-template-columns: repeat(2, 1fr); }

  .lpth-pillars-grid {
    grid-template-columns: 1fr;
  }

  .lpth-stories-grid { grid-template-columns: 1fr; }

  .lpth-pricing-preview-cards { grid-template-columns: 1fr; }

  .lpth-pricing-cards { grid-template-columns: 1fr; }

  .lpth-blog-grid { grid-template-columns: 1fr; }

  .lpth-team-grid { grid-template-columns: 1fr 1fr; }

  .lpth-comparison-cards { grid-template-columns: 1fr; }

  .lpth-contact-form-inner { grid-template-columns: 1fr; }

  .lpth-before-after { grid-template-columns: 1fr; }

  .lpth-footer__top {
    grid-template-columns: 1fr;
  }

  .lpth-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .lpth-related-grid { grid-template-columns: 1fr 1fr; }

  .lpth-hero__sub { max-width: 100%; }

  .lpth-cta-bottom__headline {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }
}

@media (max-width: 480px) {
  .lpth-routing-nodes { flex-direction: column; }
  .lpth-routing-path { display: none; }
  .lpth-team-grid { grid-template-columns: 1fr; }
  .lpth-related-grid { grid-template-columns: 1fr; }
  .lpth-hero__ctas { flex-direction: column; }
  .lpth-cta-bottom__btns { flex-direction: column; align-items: center; }
}

/* ===== UTILITY / HELPERS ===== */
.lpth-mt-0 { margin-top: 0; }
.lpth-section-pad { padding: 5rem 0; }
.lpth-text-center { text-align: center; }

/* Page top padding for fixed nav */
.lpth-page-top-pad { padding-top: 64px; }

/* Fade in animation */
.lpth-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.lpth-fade-in--visible {
  opacity: 1;
  transform: none;
}
