/* === NAV === */
.lpth-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}
/* Default dark-top: transparent, links white */
.lpth-nav {
  background: transparent;
}
/* Scrolled → solid dark */
.lpth-nav.lpth-nav--scrolled {
  background: var(--lpth-bg-dark);
  box-shadow: var(--lpth-shadow-nav);
  backdrop-filter: none;
}
/* Light-top pages: always solid white from load */
body.lpth-page--light-top .lpth-nav {
  background: var(--lpth-bg-white);
  box-shadow: var(--lpth-shadow-nav);
}
body.lpth-page--light-top .lpth-nav.lpth-nav--scrolled {
  background: var(--lpth-bg-dark);
  box-shadow: var(--lpth-shadow-nav);
}
/* Dark-top pages body bg must match hero so transparent nav is correct */
body.lpth-page--dark-top {
  background: var(--lpth-bg-dark);
}

.lpth-nav__inner {
  width: 100%;
  max-width: var(--lpth-container-max);
  margin: 0 auto;
  padding: 0 var(--lpth-gutter);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.lpth-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.lpth-nav__logo img {
  height: 32px;
  width: auto;
  max-width: 180px;
}

.lpth-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lpth-nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  text-decoration: none;
}
/* Dark-top nav links: white */
.lpth-nav .lpth-nav__link {
  color: rgba(255,255,255,0.85);
}
.lpth-nav .lpth-nav__link:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
/* Light-top: dark links until scroll */
body.lpth-page--light-top .lpth-nav:not(.lpth-nav--scrolled) .lpth-nav__link {
  color: var(--lpth-fg-light-primary);
}
body.lpth-page--light-top .lpth-nav:not(.lpth-nav--scrolled) .lpth-nav__link:hover {
  color: var(--lpth-fg-light-primary);
  background: rgba(14,31,56,0.06);
}
/* After scroll (solid dark): white links for ALL page themes */
.lpth-nav.lpth-nav--scrolled .lpth-nav__link {
  color: rgba(255,255,255,0.85) !important;
}
.lpth-nav.lpth-nav--scrolled .lpth-nav__link:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.08) !important;
}

.lpth-nav__ctas {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lpth-nav__cta-login {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: var(--lpth-radius-btn);
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
}
/* dark-top / scrolled: ghost white */
.lpth-nav .lpth-nav__cta-login {
  color: rgba(255,255,255,0.85);
}
.lpth-nav .lpth-nav__cta-login:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
body.lpth-page--light-top .lpth-nav:not(.lpth-nav--scrolled) .lpth-nav__cta-login {
  color: var(--lpth-fg-light-secondary);
}
body.lpth-page--light-top .lpth-nav:not(.lpth-nav--scrolled) .lpth-nav__cta-login:hover {
  color: var(--lpth-fg-light-primary);
  background: rgba(14,31,56,0.04);
}
.lpth-nav.lpth-nav--scrolled .lpth-nav__cta-login {
  color: rgba(255,255,255,0.85) !important;
}

.lpth-nav__cta-start {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: var(--lpth-radius-btn);
  background: var(--lpth-accent-deco);
  color: var(--lpth-bg-dark);
  border: 2px solid var(--lpth-accent-deco);
  transition: background 0.15s, border-color 0.15s;
  text-decoration: none;
}
.lpth-nav__cta-start:hover {
  background: #00A892;
  border-color: #00A892;
  color: var(--lpth-bg-dark);
}

/* Hamburger */
.lpth-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.lpth-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,0.9);
  transition: transform 0.25s, opacity 0.25s;
}
body.lpth-page--light-top .lpth-nav:not(.lpth-nav--scrolled) .lpth-nav__hamburger span {
  background: var(--lpth-fg-light-primary);
}
.lpth-nav.lpth-nav--scrolled .lpth-nav__hamburger span {
  background: rgba(255,255,255,0.9) !important;
}
.lpth-nav__hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.lpth-nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.lpth-nav__hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.lpth-nav__mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--lpth-bg-dark);
  padding: 1rem var(--lpth-gutter) 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 999;
}
.lpth-nav__mobile-menu.is-open { display: block; }
.lpth-nav__mobile-links {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.lpth-nav__mobile-links li a {
  display: block;
  padding: 0.6rem 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: 6px;
  transition: background 0.15s;
}
.lpth-nav__mobile-links li a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.lpth-nav__mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--lpth-border-dark);
  padding-top: 1rem;
}
.lpth-nav__mobile-ctas .lpth-btn {
  width: 100%;
  justify-content: center;
}

/* === FOOTER === */
.lpth-footer {
  background: var(--lpth-bg-dark);
  padding: 4rem 0 2rem;
}
.lpth-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--lpth-border-dark);
  margin-bottom: 2rem;
}
.lpth-footer__brand {}
.lpth-footer__brand .lpth-nav__logo img {
  height: 28px;
  margin-bottom: 1rem;
}
.lpth-footer__brand p {
  font-size: 0.875rem;
  color: var(--lpth-fg-dark-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.lpth-footer__socials {
  display: flex;
  gap: 0.75rem;
}
.lpth-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: var(--lpth-fg-dark-secondary);
  font-size: 0.875rem;
  transition: background 0.15s, color 0.15s;
}
.lpth-footer__social-link:hover {
  background: rgba(0,191,165,0.15);
  color: var(--lpth-accent-aa-dark);
}
.lpth-footer__col-heading {
  font-family: var(--lpth-font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lpth-fg-dark-primary);
  margin-bottom: 1rem;
}
.lpth-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.lpth-footer__links li a {
  font-size: 0.875rem;
  color: var(--lpth-fg-dark-secondary);
  transition: color 0.15s;
}
.lpth-footer__links li a:hover {
  color: var(--lpth-fg-dark-primary);
}
.lpth-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.lpth-footer__copy {
  font-size: 0.8125rem;
  color: var(--lpth-fg-dark-secondary);
}
.lpth-footer__meta {
  font-size: 0.8125rem;
  color: var(--lpth-fg-dark-secondary);
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.lpth-footer__meta a {
  color: var(--lpth-fg-dark-secondary);
  transition: color 0.15s;
}
.lpth-footer__meta a:hover {
  color: var(--lpth-fg-dark-primary);
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--lpth-bg-dark-alt);
  border-top: 1px solid var(--lpth-border-dark);
  padding: 1rem var(--lpth-gutter);
}
.cookie-banner__inner {
  max-width: var(--lpth-container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  font-size: 0.875rem;
  color: var(--lpth-fg-dark-secondary);
  min-width: 200px;
}
.cookie-banner__text a {
  color: var(--lpth-accent-aa-dark);
  text-decoration: underline;
}
.cookie-banner__actions {
  flex-shrink: 0;
}
.cookie-banner__btn {
  font-family: var(--lpth-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: var(--lpth-radius-btn);
  cursor: pointer;
  border: none;
  transition: background 0.15s;
}
.cookie-banner__btn--primary {
  background: var(--lpth-accent-deco);
  color: var(--lpth-bg-dark);
}
.cookie-banner__btn--primary:hover {
  background: #00A892;
}
/* Banner modifier (generated by cookie-banner.js) — inherit base styles */
.cookie-banner--notice { /* Notice-only variant: same as base */ }

/* === CARDS === */
.lpth-card {
  background: var(--lpth-bg-white);
  border: 1px solid var(--lpth-border-light);
  border-radius: var(--lpth-radius-card);
  padding: 2rem;
  box-shadow: var(--lpth-shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
}
.lpth-card:hover {
  box-shadow: var(--lpth-shadow-hover);
  transform: translateY(-2px);
}
.lpth-card--dark {
  background: var(--lpth-bg-dark-alt);
  border-color: var(--lpth-border-dark);
}
.lpth-card--dark h2,
.lpth-card--dark h3,
.lpth-card--dark h4,
.lpth-card--dark p,
.lpth-card--dark li {
  color: var(--lpth-fg-dark-primary);
}
.lpth-card--dark .lpth-muted { color: var(--lpth-fg-dark-secondary); }

/* === ICON CIRCLE === */
.lpth-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0,191,165,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.lpth-icon-circle i {
  color: var(--lpth-accent-aa-light);
  font-size: 1.25rem;
}
.lpth-section--dark .lpth-icon-circle,
.lpth-section--dark-alt .lpth-icon-circle,
.lpth-card--dark .lpth-icon-circle {
  background: rgba(0,191,165,0.18);
}
.lpth-section--dark .lpth-icon-circle i,
.lpth-section--dark-alt .lpth-icon-circle i,
.lpth-card--dark .lpth-icon-circle i {
  color: var(--lpth-accent-aa-dark);
}

/* === LETTER AVATAR === */
.lpth-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lpth-font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--lpth-bg-dark);
  background: var(--lpth-accent-deco);
  flex-shrink: 0;
}
.lpth-avatar--lg {
  width: 56px;
  height: 56px;
  font-size: 1.125rem;
}
.lpth-avatar--img {
  background: none;
}
.lpth-avatar--img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* === INLINE MOCK PANEL === */
.lpth-mock-panel {
  background: var(--lpth-bg-dark);
  border-radius: var(--lpth-radius-card);
  padding: 1.25rem;
  font-family: var(--lpth-font-mono);
  font-size: 0.75rem;
  overflow: hidden;
}
.lpth-mock-panel__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--lpth-border-dark);
}
.lpth-mock-panel__title {
  font-family: var(--lpth-font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lpth-fg-dark-secondary);
}
.lpth-mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.lpth-mock-dot--red { background: #FF5F57; }
.lpth-mock-dot--yellow { background: #FEBC2E; }
.lpth-mock-dot--green { background: #28C840; }

/* Cap table mock */
.lpth-mock-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.7rem;
  line-height: 1.3;
}
.lpth-mock-table th {
  text-align: left;
  padding: 0.35rem 0.5rem;
  background: rgba(0,191,165,0.15);
  color: var(--lpth-accent-aa-dark);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.lpth-mock-table td {
  padding: 0.35rem 0.5rem;
  color: var(--lpth-fg-dark-primary);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lpth-mock-table tr:last-child td { border-bottom: none; }
.lpth-mock-table td:last-child { text-align: right; color: var(--lpth-accent-aa-dark); }

/* Deck version mock */
.lpth-mock-deck-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.lpth-mock-deck-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  font-family: var(--lpth-font-mono);
  font-size: 0.7rem;
}
.lpth-mock-deck-item__name { color: var(--lpth-fg-dark-primary); }
.lpth-mock-deck-item__date { color: var(--lpth-fg-dark-secondary); }
.lpth-mock-badge {
  font-size: 0.6rem;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-family: var(--lpth-font-body);
}
.lpth-mock-badge--active  { background: rgba(16,185,129,0.2); color: #10B981; }
.lpth-mock-badge--shared  { background: rgba(0,191,165,0.15); color: var(--lpth-accent-aa-dark); }
.lpth-mock-badge--draft   { background: rgba(148,163,184,0.15); color: var(--lpth-fg-dark-secondary); }

/* Pipeline kanban mock */
.lpth-mock-kanban {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
}
.lpth-mock-kanban-col {
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  padding: 0.5rem;
}
.lpth-mock-kanban-col__header {
  font-family: var(--lpth-font-body);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--lpth-fg-dark-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: flex;
  justify-content: space-between;
}
.lpth-mock-kanban-col__count {
  background: rgba(0,191,165,0.2);
  color: var(--lpth-accent-aa-dark);
  border-radius: 9999px;
  padding: 0 0.35rem;
  font-size: 0.6rem;
}
.lpth-mock-card {
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 0.3rem 0.4rem;
  margin-bottom: 0.3rem;
  font-size: 0.65rem;
  color: var(--lpth-fg-dark-primary);
  border-left: 2px solid var(--lpth-accent-deco);
}

/* Testimonial quote */
.lpth-testimonial-card {
  background: var(--lpth-bg-dark-alt);
  border: 1px solid var(--lpth-border-dark);
  border-radius: var(--lpth-radius-card);
  padding: 2rem;
  position: relative;
}
.lpth-testimonial-card__quote-mark {
  font-size: 3.5rem;
  line-height: 1;
  color: var(--lpth-accent-deco);
  opacity: 0.4;
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
  display: block;
}
.lpth-testimonial-card p {
  font-size: 1rem;
  color: var(--lpth-fg-dark-primary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.lpth-testimonial-card__attr {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lpth-testimonial-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lpth-fg-dark-primary);
}
.lpth-testimonial-card__role {
  font-size: 0.8rem;
  color: var(--lpth-fg-dark-secondary);
}

/* === PILL BADGE === */
.lpth-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--lpth-radius-pill);
  line-height: 1.4;
}
.lpth-section--light .lpth-pill,
.lpth-section--white .lpth-pill,
.lpth-section--cream .lpth-pill {
  background: rgba(0,122,107,0.1);
  color: var(--lpth-accent-aa-light);
}
.lpth-section--dark .lpth-pill,
.lpth-section--dark-alt .lpth-pill {
  background: rgba(0,191,165,0.15);
  color: var(--lpth-accent-aa-dark);
}
.lpth-pill--tag {
  background: var(--lpth-bg-light);
  color: var(--lpth-fg-light-secondary);
  border: 1px solid var(--lpth-border-light);
}

/* === FORM ELEMENTS === */
.lpth-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.lpth-form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lpth-fg-light-primary);
}
.lpth-form-label--dark { color: var(--lpth-fg-dark-secondary); }
.lpth-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--lpth-radius-input);
  border: 1.5px solid var(--lpth-border-light);
  font-family: var(--lpth-font-body);
  font-size: 0.9375rem;
  background: var(--lpth-bg-white);
  color: var(--lpth-fg-light-primary);
  transition: border-color 0.15s, box-shadow 0.15s;
  max-width: 480px;
}
.lpth-input:focus {
  outline: none;
  border-color: var(--lpth-accent-aa-light);
  box-shadow: 0 0 0 3px rgba(0,122,107,0.1);
}
.lpth-input--dark {
  background: rgba(255,255,255,0.07);
  border-color: var(--lpth-border-dark);
  color: var(--lpth-fg-dark-primary);
  max-width: 100%;
}
.lpth-input--dark::placeholder { color: var(--lpth-fg-dark-secondary); }
.lpth-input--dark:focus {
  border-color: var(--lpth-accent-deco);
  box-shadow: 0 0 0 3px rgba(0,191,165,0.12);
}
textarea.lpth-input {
  resize: vertical;
  min-height: 120px;
  max-width: 100%;
}

/* === BLOG CARD === */
.lpth-blog-card {
  background: var(--lpth-bg-white);
  border: 1px solid var(--lpth-border-light);
  border-radius: var(--lpth-radius-card);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.lpth-blog-card:hover {
  box-shadow: var(--lpth-shadow-hover);
  transform: translateY(-3px);
}
.lpth-blog-card__img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--lpth-bg-light);
}
.lpth-blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.lpth-blog-card:hover .lpth-blog-card__img {
  transform: scale(1.03);
}
.lpth-blog-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.lpth-blog-card__cat {
  margin-bottom: 0.75rem;
}
.lpth-blog-card__title {
  font-family: var(--lpth-font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--lpth-fg-light-primary);
  line-height: 1.35;
  margin-bottom: 0.6rem;
  flex: 1;
}
.lpth-blog-card__desc {
  font-size: 0.875rem;
  color: var(--lpth-fg-light-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.lpth-blog-card__meta {
  font-size: 0.8rem;
  color: var(--lpth-fg-light-secondary);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
}

/* === BLOG ARTICLE === */
.lpth-blog-article__cover {
  width: 100%;
  height: auto;
  border-radius: var(--lpth-radius-card);
  margin-bottom: 2rem;
}
.lpth-blog-article__header {
  max-width: 760px;
  margin: 0 auto;
}
.lpth-blog-article__body {
  max-width: 760px;
  margin: 0 auto;
}
.lpth-blog-article__body h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--lpth-fg-light-primary);
}
.lpth-blog-article__body h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--lpth-fg-light-primary);
}
.lpth-blog-article__body p {
  color: var(--lpth-fg-light-secondary);
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.75;
}
.lpth-blog-article__body li {
  color: var(--lpth-fg-light-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.lpth-blog-article__body a {
  color: var(--lpth-accent-aa-light);
  text-decoration: underline;
}
.lpth-blog-article__body blockquote {
  border-left: 3px solid var(--lpth-accent-aa-light);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--lpth-fg-light-secondary);
}

/* === CHANGELOG === */
.lpth-changelog-timeline {
  position: relative;
  padding-left: 2rem;
}
.lpth-changelog-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--lpth-border-light);
}
.lpth-changelog-entry {
  position: relative;
  padding-bottom: 3rem;
  padding-left: 2rem;
}
.lpth-changelog-entry::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lpth-accent-aa-light);
  border: 2px solid var(--lpth-bg-white);
}
.lpth-changelog-entry__date {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lpth-accent-aa-light);
  margin-bottom: 0.5rem;
}
.lpth-changelog-entry__label {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lpth-fg-light-primary);
  margin-bottom: 1rem;
}
.lpth-changelog-entry ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.lpth-changelog-entry ul li {
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.9375rem;
  color: var(--lpth-fg-light-secondary);
  margin-bottom: 0.4rem;
  line-height: 1.6;
}
.lpth-changelog-entry ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--lpth-accent-aa-light);
  font-size: 0.75rem;
  top: 0.15em;
}
.lpth-changelog-entry__note {
  font-style: italic;
  font-size: 0.875rem;
  color: var(--lpth-fg-light-secondary);
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--lpth-accent-aa-light);
  background: var(--lpth-bg-light);
  border-radius: 0 6px 6px 0;
}

/* === PRICING === */
.lpth-pricing-card {
  border: 1.5px solid var(--lpth-border-light);
  border-radius: var(--lpth-radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  background: var(--lpth-bg-white);
  transition: box-shadow 0.2s;
}
.lpth-pricing-card--featured {
  background: var(--lpth-bg-dark);
  border-color: var(--lpth-accent-deco);
  box-shadow: 0 0 0 1px var(--lpth-accent-deco), 0 8px 32px rgba(0,191,165,0.15);
}
.lpth-pricing-card--featured h3,
.lpth-pricing-card--featured p,
.lpth-pricing-card--featured li,
.lpth-pricing-card--featured .lpth-pricing-price,
.lpth-pricing-card--featured .lpth-pricing-period {
  color: var(--lpth-fg-dark-primary);
}
.lpth-pricing-card--featured .lpth-pricing-feature { color: var(--lpth-fg-dark-secondary); }
.lpth-pricing-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  background: var(--lpth-accent-deco);
  color: var(--lpth-bg-dark);
}
.lpth-pricing-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--lpth-fg-light-primary);
}
.lpth-pricing-card--featured .lpth-pricing-name { color: var(--lpth-fg-dark-primary); }
.lpth-pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--lpth-font-heading);
  line-height: 1;
  color: var(--lpth-fg-light-primary);
}
.lpth-pricing-price sup { font-size: 1.25rem; vertical-align: top; margin-top: 0.4rem; }
.lpth-pricing-period {
  font-size: 0.875rem;
  color: var(--lpth-fg-light-secondary);
  margin-bottom: 0.25rem;
}
.lpth-pricing-target {
  font-size: 0.875rem;
  color: var(--lpth-fg-light-secondary);
  margin-bottom: 1.5rem;
}
.lpth-pricing-card--featured .lpth-pricing-target { color: var(--lpth-fg-dark-secondary); }
.lpth-pricing-divider {
  border: none;
  border-top: 1px solid var(--lpth-border-light);
  margin: 1.25rem 0;
}
.lpth-pricing-card--featured .lpth-pricing-divider {
  border-color: var(--lpth-border-dark);
}
.lpth-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.lpth-pricing-feature {
  display: flex;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--lpth-fg-light-secondary);
  align-items: flex-start;
}
.lpth-pricing-feature i {
  color: var(--lpth-success);
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.lpth-pricing-card--featured .lpth-pricing-feature i { color: var(--lpth-accent-deco); }

/* FAQ accordion */
.lpth-faq-item {
  border-bottom: 1px solid var(--lpth-border-light);
}
.lpth-faq-item:first-child { border-top: 1px solid var(--lpth-border-light); }
.lpth-faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--lpth-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--lpth-fg-light-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.lpth-faq-question:hover { color: var(--lpth-accent-aa-light); }
.lpth-faq-question i {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--lpth-fg-light-secondary);
}
.lpth-faq-item.is-open .lpth-faq-question i { transform: rotate(180deg); }
.lpth-faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-bottom: 0;
}
.lpth-faq-item.is-open .lpth-faq-answer {
  max-height: 400px;
  padding-bottom: 1.25rem;
}
.lpth-faq-answer p {
  font-size: 0.9375rem;
  color: var(--lpth-fg-light-secondary);
  line-height: 1.7;
}

/* === AUTH PAGES === */
.lpth-auth-page {
  min-height: 100vh;
  background: var(--lpth-bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 2rem;
}
.lpth-auth-logo {
  margin-bottom: 2rem;
}
.lpth-auth-logo img {
  height: 32px;
  width: auto;
}
.lpth-auth-card {
  background: var(--lpth-bg-dark-alt);
  border: 1px solid var(--lpth-border-dark);
  border-radius: var(--lpth-radius-card);
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
}
.lpth-auth-card h1 {
  font-size: 1.625rem;
  color: var(--lpth-fg-dark-primary);
  margin-bottom: 0.5rem;
}
.lpth-auth-card p.lpth-auth-sub {
  font-size: 0.9rem;
  color: var(--lpth-fg-dark-secondary);
  margin-bottom: 1.75rem;
}
.lpth-auth-card .lpth-form-group {
  margin-bottom: 1rem;
}
.lpth-auth-card .lpth-form-label { color: var(--lpth-fg-dark-secondary); }
.lpth-auth-card .lpth-input { max-width: 100%; }
.lpth-auth-card .lpth-btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}
.lpth-auth-footer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--lpth-fg-dark-secondary);
}
.lpth-auth-footer a { color: var(--lpth-accent-aa-dark); }
.lpth-auth-footer a:hover { text-decoration: underline; }
.lpth-auth-divider {
  border: none;
  border-top: 1px solid var(--lpth-border-dark);
  margin: 1.25rem 0;
}
.lpth-auth-trust {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.lpth-auth-trust li {
  font-size: 0.8rem;
  color: var(--lpth-fg-dark-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lpth-auth-trust li i {
  color: var(--lpth-accent-aa-dark);
  font-size: 0.75rem;
}

/* === LEGAL PAGES === */
.lpth-legal-page {
  padding-top: 96px;
}
.lpth-legal-page .lpth-container {
  max-width: 820px;
}
.legal-article {
  padding: 3rem 0 5rem;
}
.legal-header h1 {
  font-size: 2rem;
  color: var(--lpth-fg-light-primary);
  margin-bottom: 0.5rem;
}
.legal-meta {
  font-size: 0.875rem;
  color: var(--lpth-fg-light-secondary);
  margin-bottom: 0.25rem;
}
.legal-article section {
  margin-top: 2.5rem;
}
.legal-article h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lpth-fg-light-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--lpth-border-light);
}
.legal-article h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--lpth-fg-light-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.legal-article p {
  font-size: 0.9375rem;
  color: var(--lpth-fg-light-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.legal-article ul, .legal-article ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-article li {
  font-size: 0.9375rem;
  color: var(--lpth-fg-light-secondary);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}
.legal-article a {
  color: var(--lpth-accent-aa-light);
  text-decoration: underline;
}
.legal-article address {
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--lpth-fg-light-secondary);
  line-height: 1.8;
  padding: 1rem;
  background: var(--lpth-bg-light);
  border-radius: 8px;
  margin-top: 0.75rem;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: 1rem 0;
}
.legal-table th {
  text-align: left;
  padding: 0.6rem 0.75rem;
  background: var(--lpth-bg-light);
  color: var(--lpth-fg-light-primary);
  font-weight: 600;
  border: 1px solid var(--lpth-border-light);
}
.legal-table td {
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--lpth-border-light);
  color: var(--lpth-fg-light-secondary);
  vertical-align: top;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .lpth-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .lpth-nav__links { display: none; }
  .lpth-nav__ctas { display: none; }
  .lpth-nav__hamburger { display: flex; margin-left: auto; }
  .lpth-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .lpth-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .lpth-auth-card { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .lpth-footer__top {
    grid-template-columns: 1fr;
  }
}
