/* Breadcrumb Navigation - Consistent across all pages */
.lm-breadcrumb, .lm-breadcrumbs {
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: #9CA3AF;
}

.lm-breadcrumb ol, .lm-breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.5rem;
}

.lm-breadcrumb li, .lm-breadcrumbs li {
    display: flex;
    align-items: center;
}

.lm-breadcrumb li:not(:last-child)::after,
.lm-breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: #6B7280;
}

.lm-breadcrumb a, .lm-breadcrumbs a {
    color: #8B5CF6;
    text-decoration: none;
}

.lm-breadcrumb a:hover, .lm-breadcrumbs a:hover {
    text-decoration: underline;
}
/*

Theme Name: LockMargin Theme

Theme URI: https://lockmargin.com

Author: LockMargin Team

Description: Zero-decoration, premium engineering tool design system. Dark, matte, strict.

Version: 2.0.0

Text Domain: lockmargin

*/



/* ===== CSS RESET & VARIABLES ===== */

:root {

  /* Colors — high contrast, WCAG AA compliant */

  --bg-primary: #0A0A0A;

  --bg-secondary: #141414;

  --bg-card: #0A0A0A;

  --text-primary: #FFFFFF;

  --text-secondary: #D4D4D4;

  --text-tertiary: #A3A3A3;

  --text-muted: #73737A;

  --bg-tertiary: #1A1A1E;

  --accent: #7C3AED;

  --accent-hover: #6D28D9;

  --accent-light: #A78BFA;

  --border: #2A2A2A;

  --border-light: #1F1F1F;

  --success: #22C55E;

  --warning: #F59E0B;

  --danger: #EF4444;



  /* Spacing */

  --sp-xs: 8px;

  --sp-sm: 16px;

  --sp-md: 24px;

  --sp-lg: 48px;

  --sp-xl: 64px;



  /* Typography */

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;

  --text-xs: 0.75rem;

  --text-sm: 0.875rem;

  --text-base: 0.9375rem;

  --text-lg: 1rem;

  --text-xl: 1.125rem;

  --text-2xl: 1.25rem;

  --text-3xl: 1.5rem;

  --text-4xl: 2rem;



  /* Layout */

  --container: 1200px;

  --radius: 8px;

  --radius-sm: 4px;

}



/* ===== ICONS — unified sizing ===== */

.lm-feature-icon {

  width: 32px;

  height: 32px;

  stroke-width: 1.5;

  color: var(--text-secondary);

  flex-shrink: 0;

}

.lm-pricing-icon {

  width: 40px;

  height: 40px;

  stroke-width: 1.5;

  color: var(--text-secondary);

  flex-shrink: 0;

}

.lm-hero-icon {

  width: 48px;

  height: 48px;

  stroke-width: 1.5;

  color: var(--accent);

  flex-shrink: 0;

}

.lm-nav-icon {

  width: 18px;

  height: 18px;

  stroke-width: 1.5;

  color: var(--text-secondary);

  flex-shrink: 0;

}



/* ===== ACCESSIBILITY ===== */

:focus-visible {

  outline: 2px solid var(--accent);

  outline-offset: 2px;

}

@media (prefers-reduced-motion: reduce) {

  *, *::before, *::after {

    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;

  }

}

.skip-link {

  position: absolute;

  top: -40px;

  left: 0;

  background: var(--accent);

  color: white;

  padding: 8px 16px;

  z-index: 100;

  transition: top 0.2s;

}

.skip-link:focus { top: 0; }



/* ===== BASE ===== */

*, *::before, *::after {

  box-sizing: border-box;

  margin: 0;

  padding: 0;

}



html {

  scroll-behavior: smooth;

  font-size: 16px;

}



body {

  font-family: var(--font-sans);

  font-size: var(--text-base);

  line-height: 1.6;

  color: var(--text-primary);

  background: var(--bg-primary);

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}



/* ===== UTILITY ===== */

.lm-container {

  max-width: var(--container);

  margin: 0 auto;

  padding: 0 var(--sp-md);

}



.lm-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-md); }

.lm-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-md); }

.lm-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-md); }



img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; }

a:hover { color: var(--accent-hover); }



/* ===== TYPOGRAPHY ===== */

h1 { font-size: var(--text-4xl); font-weight: 700; line-height: 1.2; margin-bottom: var(--sp-sm); }

h2 { font-size: var(--text-3xl); font-weight: 600; line-height: 1.3; margin-bottom: var(--sp-sm); }

h3 { font-size: var(--text-2xl); font-weight: 600; line-height: 1.4; margin-bottom: var(--sp-xs); }

h4 { font-size: var(--text-xl); font-weight: 600; line-height: 1.4; margin-bottom: var(--sp-xs); }

p { margin-bottom: var(--sp-sm); color: var(--text-secondary); }

code { font-family: var(--font-mono); font-size: 0.875em; background: var(--bg-secondary); padding: 2px 6px; border-radius: var(--radius-sm); color: var(--text-primary); }

pre { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--sp-sm); overflow-x: auto; margin-bottom: var(--sp-md); }

pre code { background: none; padding: 0; border-radius: 0; }

ul, ol { margin-bottom: var(--sp-sm); padding-left: var(--sp-md); color: var(--text-secondary); }

li { margin-bottom: var(--sp-xs); }

blockquote { border-left: 3px solid var(--accent); padding-left: var(--sp-sm); margin: var(--sp-md) 0; color: var(--text-tertiary); font-style: italic; }

hr { border: none; border-top: 1px solid var(--border-light); margin: var(--sp-lg) 0; }



/* ===== HEADER & NAV ===== */

.lm-header {

  background: var(--bg-secondary);

  border-bottom: 1px solid var(--border);

  position: sticky;

  top: 0;

  z-index: 50;

}



.lm-nav-wrapper {

  display: flex;

  align-items: center;

  justify-content: space-between;

  height: 60px;

}



.lm-logo {

  font-size: var(--text-xl);

  font-weight: 700;

  color: var(--text-primary);

  letter-spacing: -0.02em;

}

.lm-logo:hover { color: var(--text-primary); }



.lm-logo-link {

  display: flex;

  align-items: center;

  gap: 10px;

  text-decoration: none;

  color: var(--text-primary);

  font-weight: 600;

  font-size: 1.1rem;

}

.lm-logo-link:hover { color: var(--text-primary); }

.lm-logo-icon {

  width: 24px;

  height: 24px;

  flex-shrink: 0;

}



.lm-nav {

  display: flex;

  align-items: center;

  gap: var(--sp-md);

}



.lm-nav-toggle {

  display: none;

  background: none;

  border: 1px solid var(--border);

  border-radius: var(--radius-sm);

  padding: var(--sp-xs);

  cursor: pointer;

  color: var(--text-primary);

  width: 36px;

  height: 36px;

}

.lm-nav-toggle svg {

  width: 24px;

  height: 24px;

  stroke: currentColor;

  stroke-width: 2;

  fill: none;

}

.lm-nav-toggle:hover { border-color: var(--text-secondary); }



.lm-nav-link {

  font-size: var(--text-sm);

  font-weight: 500;

  color: var(--text-secondary);

  transition: color 0.15s;

  padding: var(--sp-xs) 0;

}

.lm-nav-link:hover { color: var(--text-primary); }



/* ===== BUTTONS ===== */

.lm-btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: var(--sp-xs);

  font-family: var(--font-sans);

  font-weight: 500;

  font-size: var(--text-sm);

  padding: 8px 20px;

  border-radius: var(--radius);

  cursor: pointer;

  transition: background 0.15s, border-color 0.15s, color 0.15s;

  text-decoration: none;

  border: 1px solid transparent;

  line-height: 1.4;

}



.lm-btn-primary {

  background: var(--accent);

  color: white;

  border-color: var(--accent);

}

.lm-btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: white; }



.lm-btn-secondary {

  background: transparent;

  color: var(--text-primary);

  border-color: var(--border);

}

.lm-btn-secondary:hover { background: var(--bg-secondary); color: var(--text-primary); }



.lm-btn-sm { padding: 6px 14px; font-size: var(--text-xs); }



.lm-btn-lg { padding: 12px 28px; font-size: var(--text-base); }



/* ===== HERO SECTION ===== */

.lm-hero {

  padding: var(--sp-xl) 0;

  text-align: center;

}



.lm-hero-sub {

  font-size: var(--text-lg);

  color: var(--text-tertiary);

  max-width: 600px;

  margin: 0 auto var(--sp-md);

}



.lm-hero-actions {

  display: flex;

  justify-content: center;

  gap: var(--sp-sm);

  margin-top: var(--sp-md);

}



/* ===== HERO MOCKUP (Task 2) ===== */

.lm-hero-mockup {

  display: flex;

  align-items: center;

  justify-content: center;

  margin-top: 32px;

}

.lm-mockup-frame {

  background: var(--bg-secondary);

  border: 1px solid var(--border);

  border-radius: 8px;

  overflow: hidden;

  width: 100%;

  max-width: 560px;

  aspect-ratio: 16 / 10;

}

.lm-mockup-header {

  background: var(--bg-tertiary);

  padding: 10px 14px;

  display: flex;

  align-items: center;

  gap: 6px;

  border-bottom: 1px solid var(--border);

}

.lm-mockup-dot {

  width: 10px;

  height: 10px;

  border-radius: 50%;

}

.lm-dot-red { background: #EF4444; }

.lm-dot-yellow { background: #EAB308; }

.lm-dot-green { background: #22C55E; }

.lm-mockup-title {

  margin-left: 12px;

  font-size: 0.75rem;

  color: var(--text-muted);

  font-family: ui-monospace, monospace;

}

.lm-mockup-body {

  display: flex;

  align-items: center;

  justify-content: center;

  height: calc(100% - 40px);

}

.lm-mockup-placeholder {

  color: var(--text-muted);

  font-size: 0.875rem;

  font-style: italic;

}



/* ===== SECTIONS ===== */

.lm-section {

  padding: var(--sp-lg) 0;

  text-align: left;

}



.lm-section-divider {

  border: none;

  height: 1px;

  background: var(--border-light);

  margin: 0;

}



/* ===== FEATURE CARDS (Zero-Decoration) ===== */

.lm-feature-card {

  background: var(--bg-card);

  border: 1px solid var(--border);

  border-radius: var(--radius);

  padding: var(--sp-md);

  display: flex;

  flex-direction: column;

  gap: var(--sp-xs);

}



.lm-feature-title {

  font-size: var(--text-lg);

  font-weight: 600;

  margin-bottom: var(--sp-xs);

}



.lm-feature-desc {

  font-size: var(--text-sm);

  color: var(--text-tertiary);

  line-height: 1.6;

}



.lm-step-num {

  width: 32px;

  height: 32px;

  border: 1px solid var(--border);

  border-radius: var(--radius-sm);

  display: flex;

  align-items: center;

  justify-content: center;

  font-family: var(--font-mono);

  font-size: var(--text-xs);

  color: var(--text-tertiary);

  margin-bottom: var(--sp-xs);

  flex-shrink: 0;

}



/* ===== CARDS (Generic, Clickable) ===== */

.lm-card {

  background: var(--bg-card);

  border: 1px solid var(--border);

  border-radius: var(--radius);

  padding: var(--sp-md);

  transition: border-color 0.15s;

}

.lm-card:hover { border-color: var(--accent); }



/* ===== PRICING ===== */

.lm-pricing-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: var(--sp-md);

}



.lm-pricing-card {

  background: var(--bg-card);

  border: 1px solid var(--border);

  border-radius: var(--radius);

  padding: var(--sp-md);

  display: flex;

  flex-direction: column;

  gap: var(--sp-sm);

}



.lm-pricing-name {

  font-size: var(--text-xl);

  font-weight: 600;

}



.lm-pricing-price {

  font-size: var(--text-4xl);

  font-weight: 700;

  line-height: 1;

}



.lm-pricing-period {

  font-size: var(--text-sm);

  color: var(--text-tertiary);

}



.lm-pricing-features {

  list-style: none;

  padding: 0;

  margin: 0;

  display: flex;

  flex-direction: column;

  gap: var(--sp-xs);

}

.lm-pricing-features li {

  padding: var(--sp-xs) 0;

  border-bottom: 1px solid var(--border-light);

  color: var(--text-secondary);

  font-size: var(--text-sm);

}

.lm-pricing-features li:last-child { border-bottom: none; }



.lm-subtle {

  font-size: var(--text-xs);

  color: var(--text-tertiary);

  display: block;

  margin-top: var(--sp-xs);

}



/* ===== SAVINGS CALCULATOR ===== */

.lm-savings-calc {

  text-align: center;

  border-top: 1px solid var(--border-light);

  padding-top: var(--sp-lg);

  margin-top: var(--sp-lg);

}

.lm-savings-calc h3 {

  margin-bottom: var(--sp-xs);

}

.lm-savings-calc p {

  max-width: 500px;

  margin: 0 auto var(--sp-xs);

}

.lm-highlight {

  color: var(--accent);

  font-weight: 600;

}

.lm-text-link {

  color: var(--accent);

  font-size: var(--text-sm);

}

.lm-text-link:hover {

  color: var(--accent-hover);

}



/* ===== FOOTER ===== */

.lm-footer {

  background: var(--bg-secondary);

  padding: 2rem 1rem 1rem;

  border-top: 1px solid var(--border);

  padding: 16px 0;

  margin-top: auto;

}



.lm-footer-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: var(--sp-md);

  margin-bottom: var(--sp-lg);

}



.lm-footer-col h4 {

  font-size: var(--text-sm);

  font-weight: 600;

  margin-bottom: var(--sp-sm);

  color: var(--text-primary);

}



.lm-footer-col ul {

  list-style: none;

  padding: 0;

  margin: 0;

}



.lm-footer-col ul li {

  margin-bottom: var(--sp-xs);

}



.lm-footer-col a {

  font-size: var(--text-sm);

  color: var(--text-tertiary);

}

.lm-footer-col a:hover { color: var(--text-primary); }



.lm-footer-bottom {

  border-top: 1px solid var(--border-light);

  padding-top: var(--sp-md);

  text-align: center;

}



.lm-footer-bottom p {

  font-size: var(--text-sm);

  color: var(--text-tertiary);

  margin: 0;

}



/* ===== DOWNLOAD PAGE ===== */

.lm-download-note {

  font-size: var(--text-xs);

  color: var(--text-tertiary);

  margin-top: var(--sp-xs);

  word-break: break-all;

}

.lm-copy-btn {

  background: none;

  border: 1px solid var(--border);

  border-radius: var(--radius-sm);

  color: var(--text-tertiary);

  font-family: var(--font-sans);

  font-size: var(--text-xs);

  padding: 2px 8px;

  cursor: pointer;

  transition: border-color 0.15s, color 0.15s;

}

.lm-copy-btn:hover { border-color: var(--accent); color: var(--accent); }



/* ===== FEATURES PAGE SPECIFIC ===== */

.lm-features-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: var(--sp-md);

  margin-top: var(--sp-md);

}



.lm-feature-block {

  border: 1px solid var(--border);

  border-radius: var(--radius);

  padding: var(--sp-md);

}

.lm-feature-block h3 {

  font-size: var(--text-lg);

  margin-bottom: var(--sp-xs);

}

.lm-feature-block p {

  font-size: var(--text-sm);

  color: var(--text-tertiary);

}

.lm-feature-block ul {

  list-style: none;

  padding: 0;

  margin-top: var(--sp-xs);

}

.lm-feature-block ul li {

  font-size: var(--text-sm);

  color: var(--text-tertiary);

  padding: 4px 0;

  border-bottom: 1px solid var(--border-light);

}

.lm-feature-block ul li:last-child { border-bottom: none; }



/* ===== BLOG ===== */

.lm-article-meta {

  font-size: var(--text-xs);

  color: var(--text-tertiary);

  margin-bottom: var(--sp-sm);

}



/* ===== BLOG SEPARATOR ===== */

.lm-separator {

  border: none;

  height: 1px;

  background: var(--border);

  margin: var(--sp-lg) 0;

}



/* ===== DOCS PAGE ===== */

.lm-docs-layout {

  display: grid;

  grid-template-columns: 240px 1fr;

  gap: var(--sp-lg);

  align-items: start;

}



.lm-docs-sidebar {
  position: sticky;
  top: 20px;
  border-right: 1px solid var(--border-light);
  padding-right: var(--sp-md);
  height: calc(100vh - 40px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #4B5563 transparent;
}

.lm-docs-sidebar::-webkit-scrollbar {
  width: 6px;
}

.lm-docs-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.lm-docs-sidebar::-webkit-scrollbar-thumb {
  background-color: #4B5563;
  border-radius: 3px;
}

.lm-docs-sidebar::-webkit-scrollbar-thumb:hover {
  background-color: #6B7280;
}



.lm-docs-sidebar h4 {

  font-size: var(--text-sm);

  font-weight: 600;

  color: var(--text-tertiary);

  margin-bottom: var(--sp-xs);

  text-transform: uppercase;

  letter-spacing: 0.05em;

}



.lm-docs-sidebar ul {

  list-style: none;

  padding: 0;

  margin: 0 0 var(--sp-md) 0;

}



.lm-docs-sidebar li {

  margin-bottom: 2px;

}



.lm-docs-sidebar a {

  display: block;

  padding: 6px 0;

  font-size: var(--text-sm);

  color: var(--text-tertiary);

  border-bottom: 1px solid transparent;

  transition: color 0.15s;

}

.lm-docs-sidebar a:hover { color: var(--text-primary); }

.lm-docs-sidebar a.lm-docs-active { color: var(--accent); font-weight: 500; }



.lm-docs-content {

  min-width: 0;

}



.lm-docs-content h2 {

  margin-top: var(--sp-lg);

  padding-top: var(--sp-md);

  border-top: 1px solid var(--border-light);

}

.lm-docs-content h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }



.lm-docs-content h3 {

  margin-top: var(--sp-md);

  color: var(--text-primary);

}



.lm-docs-content ul {

  margin-bottom: var(--sp-md);

}



.lm-docs-content li {

  color: var(--text-secondary);

}



.lm-docs-content table {

  width: 100%;

  border-collapse: collapse;

  margin: var(--sp-md) 0;

  font-size: var(--text-sm);

}



.lm-docs-content th {

  background: var(--bg-secondary);

  color: var(--text-primary);

  font-weight: 600;

  text-align: left;

  padding: var(--sp-xs) var(--sp-sm);

  border: 1px solid var(--border);

}



.lm-docs-content td {

  padding: var(--sp-xs) var(--sp-sm);

  border: 1px solid var(--border);

  color: var(--text-secondary);

}



.lm-docs-content td:first-child {

  font-family: var(--font-mono);

  font-size: 0.8125rem;

  color: var(--text-primary);

  white-space: nowrap;

}



.lm-docs-content .lm-note {

  background: var(--bg-secondary);

  border: 1px solid var(--border);

  border-left: 3px solid var(--accent);

  border-radius: var(--radius);

  padding: var(--sp-sm);

  margin: var(--sp-md) 0;

  font-size: var(--text-sm);

  color: var(--text-secondary);

}



.lm-docs-content .lm-checklist {

  list-style: none;

  padding: 0;

  counter-reset: step;

}



.lm-docs-content .lm-checklist li {

  counter-increment: step;

  padding: var(--sp-xs) 0 var(--sp-xs) 28px;

  position: relative;

  color: var(--text-secondary);

}

.lm-docs-content .lm-checklist li::before {

  content: counter(step);

  position: absolute;

  left: 0;

  top: var(--sp-xs);

  width: 20px;

  height: 20px;

  border: 1px solid var(--border);

  border-radius: var(--radius-sm);

  display: flex;

  align-items: center;

  justify-content: center;

  font-family: var(--font-mono);

  font-size: var(--text-xs);

  color: var(--text-tertiary);

}



/* ===== EARLY ACCESS PAGE ===== */

.sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  white-space: nowrap;

  border: 0;

}



/* ===== STORY SECTION (Who Built This) ===== */

.lm-story-lead {

  font-size: 1.1rem;

  color: var(--text-secondary);

  max-width: 720px;

  margin: 0 auto 48px;

  line-height: 1.6;

}

.lm-story-card {

  background: var(--bg-secondary);

  border: 1px solid var(--border);

  border-radius: 8px;

  padding: 24px;

}

.lm-story-card-title {

  font-size: 1rem;

  color: var(--text-primary);

  margin-bottom: 8px;

  font-weight: 600;

}

.lm-story-card-text {

  font-size: 0.9rem;

  color: var(--text-secondary);

  line-height: 1.5;

}

.lm-story-footer {

  text-align: center;

  margin-top: 32px;

  color: var(--text-tertiary);

  font-size: 0.875rem;

}



/* ===== AUTHOR BIO ===== */

.lm-author-bio {

  margin: 48px 0 24px;

  padding: 24px;

  background: var(--bg-secondary);

  border-left: 3px solid var(--accent);

  font-size: 0.9rem;

  color: var(--text-secondary);

}

.lm-author-bio strong { color: var(--text-primary); }



/* ===== EARLY ACCESS CO-BUILDER ===== */

.lm-early-note {

  text-align: center;

  color: var(--text-tertiary);

  font-size: 0.875rem;

  margin-top: var(--sp-md);

}



/* ===== HONESTY BOX ===== */

.lm-honesty-box {

  margin: 32px auto;

  padding: 24px;

  background: var(--bg-secondary);

  border: 1px solid var(--border);

  border-radius: 8px;

  max-width: 720px;

}

.lm-honesty-box h3 {

  font-size: 1.1rem;

  margin-bottom: 16px;

  color: var(--text-primary);

}

.lm-honesty-box p {

  font-size: 0.95rem;

  color: var(--text-secondary);

  line-height: 1.6;

  margin-bottom: 12px;

}

.lm-honesty-meta {

  font-family: var(--font-mono);

  font-size: 0.85rem;

  color: var(--text-tertiary);

}



/* ===== FOOTER TAGLINE ===== */

.lm-footer-tagline {

  text-align: center;

  color: var(--text-tertiary);

  font-size: 0.8rem;

  margin-bottom: 4px;

}

.lm-footer-copy {

  text-align: center;

  color: var(--text-tertiary);

  font-size: 0.8rem;

}



/* ===== RESPONSIVE: Tablet ===== */

@media (max-width: 1024px) {

  .lm-grid-4 { grid-template-columns: repeat(2, 1fr); }

  .lm-footer-grid { grid-template-columns: repeat(2, 1fr); }

  .lm-pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .lm-docs-layout { grid-template-columns: 1fr; }

  .lm-docs-sidebar { position: static; border-right: none; padding-right: 0; margin-bottom: var(--sp-md); border-bottom: 1px solid var(--border-light); padding-bottom: var(--sp-md); }

  .lm-docs-sidebar ul { display: flex; flex-wrap: wrap; gap: var(--sp-xs); }

  .lm-docs-sidebar li { margin: 0; }

  .lm-docs-sidebar a { padding: 4px 8px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: var(--text-xs); }

  .lm-docs-sidebar h4 { display: none; }

}



/* ===== RESPONSIVE: Mobile ===== */

@media (max-width: 768px) {

  .lm-nav { display: none; }

  .lm-nav-toggle { display: block; }

  .lm-nav.active { display: flex; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--bg-primary); padding: var(--sp-sm); border-bottom: 1px solid var(--border); gap: var(--sp-xs); z-index: 100; }

  .lm-nav.active a { width: 100%; padding: var(--sp-xs) 0; }

  .lm-nav.active .lm-btn { width: 100%; justify-content: center; margin-top: var(--sp-xs); }



  h1 { font-size: var(--text-3xl); }

  h2 { font-size: var(--text-2xl); }



  .lm-grid-2, .lm-grid-3, .lm-grid-4 {

    grid-template-columns: 1fr;

  }



  .lm-hero { padding: var(--sp-lg) 0; }

  .lm-hero-actions { flex-direction: column; align-items: center; }



  .lm-footer-grid { grid-template-columns: 1fr; }

  .lm-pricing-grid { max-width: 100%; }



  .lm-features-grid { grid-template-columns: 1fr; }



  .lm-docs-content table { font-size: var(--text-xs); }

  .lm-docs-content td:first-child { white-space: normal; }

}



/* ===== PRINT ===== */

@media print {

  .lm-header, .lm-footer, .lm-nav-toggle, .skip-link, .lm-docs-sidebar { display: none; }

  body { background: white; color: black; }

  .lm-docs-layout { grid-template-columns: 1fr; }

  a { color: black; text-decoration: underline; }

}

/* Legal disclaimer for blog articles */

.lm-legal-disclaimer {

  margin: 32px 0;

  padding: 16px;

  background: var(--bg-tertiary);

  border-left: 3px solid var(--text-muted);

  border-radius: var(--radius, 4px);

  font-size: 0.8rem;

  color: var(--text-muted);

  line-height: 1.5;

}

.lm-legal-disclaimer p {

  margin: 0;

}



/* ===== STICKY FOOTER LAYOUT ===== */

body {

  display: flex !important;

  flex-direction: column !important;

  min-height: 100vh !important;

  margin: 0 !important;

}



main, .lm-main {

  flex: 1;

  width: 100%;

}



/* Compact Footer */

.lm-footer {

  padding: 12px 0 !important;

  margin-top: auto !important;

  border-top: 1px solid var(--border, #2A2A2A);

  background: var(--bg-primary, #0A0A0A);

}



.lm-footer .lm-container,

.lm-footer-inner {

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 6px;

  text-align: center;

}



.lm-footer-tagline {

  color: var(--text-muted, #73737A);

  font-size: 0.8rem;

  margin: 0 !important;

}



.lm-footer-copy {

  color: var(--text-muted, #73737A);

  font-size: 0.75rem;

  margin: 0 !important;

}



/* ===== ACTIVE NAV STATE ===== */

.lm-nav a[aria-current="page"],

.lm-nav a.active {

  color: var(--text-primary);

  border-bottom: 2px solid var(--accent);

  padding-bottom: 2px;

}



/* ===== PRICING CARD ALIGNMENT ===== */

.lm-pricing-card {

  display: flex;

  flex-direction: column;

  height: 100%;

}

.lm-pricing-card ul,

.lm-pricing-features {

  flex-grow: 1;

  margin-bottom: 24px;

}

.lm-pricing-card .lm-btn {

  margin-top: auto;

  align-self: stretch;

}



/* ===== COMPARISON TABLE ===== */

.lm-comparison-table {

  width: 100%;

  max-width: 1000px;

  margin: 40px auto;

  border-collapse: collapse;

}

.lm-comparison-table th,

.lm-comparison-table td {

  padding: 12px 16px;

  min-width: 180px;

  text-align: left;

  border-bottom: 1px solid var(--border-light);

  font-size: var(--text-sm);

}

.lm-comparison-table th {

  color: var(--text-primary);

  font-weight: 600;

  background: var(--bg-secondary);

}

.lm-comparison-table td {

  color: var(--text-secondary);

}



/* ===== EARLY ACCESS FORM ===== */

.lm-early-access-form {

  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  align-items: stretch;

  justify-content: center;

  margin: 0 auto;

  max-width: 600px;

}

.lm-early-access-form input,

.lm-early-access-form select,

.lm-early-access-form button {

  height: 48px;

  min-height: 48px;

}

.lm-input,

.lm-early-access-form input,

.lm-early-access-form select {

  background: var(--bg-secondary);

  color: var(--text-primary);

  border: 1px solid var(--border);

  border-radius: var(--radius);

  padding: 12px 16px;

  font-family: var(--font-sans);

  font-size: var(--text-base);

  transition: border-color 0.15s, background 0.15s;

}

.lm-input:focus,

.lm-early-access-form input:focus,

.lm-early-access-form select:focus {

  outline: none;

  border-color: var(--accent);

  background: var(--bg-tertiary);

}

.lm-input::placeholder,

.lm-early-access-form input::placeholder {

  color: var(--text-tertiary);

}



/* ===== BLOG SECTION LAYOUT ===== */

.lm-blog-section:first-of-type {

  padding-top: 40px;

}



/* ===== BLOG CARDS (Task P0) ===== */

.lm-blog-card {

  background: var(--bg-secondary);

  border: 1px solid var(--border);

  border-radius: 8px;

  padding: 24px;

  margin-bottom: 20px;

}

.lm-blog-card:hover { border-color: var(--accent); }

.lm-blog-card-meta { display: flex; gap: 12px; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 12px; }

.lm-blog-card-author, .lm-blog-card-tag { padding: 2px 8px; background: var(--bg-tertiary); border-radius: 4px; }

.lm-blog-card-title { font-size: 1.25rem; margin-bottom: 8px; }

.lm-blog-card-title a { color: var(--text-primary); text-decoration: none; }

.lm-blog-card-title a:hover { color: var(--accent); }

.lm-blog-card-excerpt { color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }



/* ===== LEGAL PAGES (Task P0) ===== */

.lm-page-title { font-size: 2rem; margin-bottom: 8px; }

.lm-page-subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 40px; }

.lm-legal-section { margin-bottom: 32px; }

.lm-legal-section h2 { font-size: 1.25rem; margin-bottom: 12px; }

.lm-legal-section p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }

.lm-legal-section a { color: var(--accent); text-decoration: none; }



/* ===== FOOTER CONTACT (Task P0) ===== */

.lm-footer-contact { color: var(--text-muted); font-size: 0.8rem; text-align: center; margin-bottom: 4px; }

.lm-footer-contact a { color: var(--accent); text-decoration: none; }



/* ===== VS COMPARISON PAGES (Task P1) ===== */

.lm-vs-page { max-width: 800px; }

.lm-vs-intro { margin-bottom: 40px; }

.lm-vs-intro p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }

.lm-vs-section { margin-bottom: 48px; }

.lm-vs-section h2 { font-size: 1.5rem; margin-bottom: 20px; border-bottom: 1px solid var(--border); padding-bottom: 8px; }

.lm-vs-section h3 { font-size: 1.1rem; margin-top: 24px; margin-bottom: 8px; color: var(--text-primary); }

.lm-vs-section p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }

.lm-vs-section ul { list-style: disc; margin-left: 24px; color: var(--text-secondary); line-height: 1.8; }

.lm-vs-table { width: 100%; border-collapse: collapse; margin-bottom: 16px; }

.lm-vs-table th, .lm-vs-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }

.lm-vs-table th { background: var(--bg-tertiary); font-weight: 600; color: var(--text-primary); }

.lm-vs-table td { color: var(--text-secondary); }

.lm-vs-total td { background: var(--bg-secondary); font-weight: 600; }

.lm-vs-savings td { background: var(--accent); color: #fff; font-weight: 600; }

.lm-vs-note { font-size: 0.85rem; color: var(--text-muted); font-style: italic; }

.lm-vs-features td:first-child { font-weight: 500; }

.lm-vs-cta { text-align: center; padding: 40px; background: var(--bg-secondary); border-radius: 8px; margin-top: 48px; }

.lm-vs-cta h2 { margin-bottom: 12px; }

.lm-vs-cta p { color: var(--text-secondary); margin-bottom: 24px; }

.lm-vs-cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }



/* ===== PRICING CALCULATOR (Task P1) ===== */

.lm-calculator-section { background: var(--bg-secondary); padding: 60px 0; }

.lm-calculator { max-width: 600px; margin: 0 auto; background: var(--bg-primary); padding: 32px; border-radius: 8px; border: 1px solid var(--border); }

.lm-calculator-controls { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }

.lm-calculator-controls label { display: flex; flex-direction: column; gap: 8px; color: var(--text-secondary); font-size: 0.9rem; }

.lm-calculator-controls select { padding: 10px 12px; background: var(--bg-tertiary); color: var(--text-primary); border: 1px solid var(--border); border-radius: 4px; font-size: 1rem; }

.lm-calculator-result { display: flex; flex-direction: column; gap: 12px; }

.lm-calc-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); }

.lm-calc-row span:first-child { color: var(--text-secondary); }

.lm-calc-saving { color: var(--accent); font-weight: 600; font-size: 1.1rem; }

.lm-calc-highlight { font-size: 1.5rem; color: #22C55E; }

.lm-calculator-note { margin-top: 16px; font-size: 0.8rem; color: var(--text-muted); font-style: italic; }



/* ===== CONTRIBUTORS SECTION (blog-archive) ===== */

.lm-contributors-section { padding: 48px 0; background: var(--bg-primary); border-top: 1px solid var(--border); margin-top: 48px; }

.lm-contributors-section h2 { text-align: center; margin-bottom: 16px; }

.lm-contributors-intro { text-align: center; max-width: 720px; margin: 0 auto 40px; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

.lm-authors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }

.lm-author-card { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 8px; padding: 24px; }

.lm-author-card h3 { font-size: 1.05rem; margin: 0 0 4px; color: var(--text-primary); }

.lm-author-role { font-size: 0.8rem; color: var(--accent); margin: 0 0 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

.lm-author-bio { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.55; margin: 0; }



/* ===== 1.1 HERO ANIMATED GRADIENT BACKGROUND ===== */

.lm-hero-gradient {

  background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 50%, #0F0F0F 100%);

  background-size: 200% 200%;

  animation: gradientShift 15s ease infinite;

}



@keyframes gradientShift {

  0% { background-position: 0% 50%; }

  50% { background-position: 100% 50%; }

  100% { background-position: 0% 50%; }

}



/* ===== 1.2 GLOW EFFECT ON PRIMARY BUTTONS ===== */

.lm-btn-primary {

  position: relative;

  transition: all 0.3s ease;

}



.lm-btn-primary::before {

  content: '';

  position: absolute;

  top: -2px;

  left: -2px;

  right: -2px;

  bottom: -2px;

  background: linear-gradient(90deg, #7C3AED, #A78BFA);

  border-radius: 8px;

  opacity: 0;

  z-index: -1;

  transition: opacity 0.3s ease;

  filter: blur(8px);

}



.lm-btn-primary:hover::before {

  opacity: 0.6;

}



.lm-btn-primary:hover {

  transform: translateY(-2px);

  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);

}



/* ===== 1.3 HOVER LIFT ON CARDS (pricing, features) ===== */

.lm-card {

  transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.lm-card:hover {

  transform: translateY(-8px);

  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.15);

}



/* ===== 1.4 FADE-IN ON SCROLL (CSS only) ===== */

.lm-fade-in {

  opacity: 0;

  transform: translateY(24px);

  animation: fadeInUp 0.6s ease forwards;

}



@keyframes fadeInUp {

  to {

    opacity: 1;

    transform: translateY(0);

  }

}



/* Stagger delay for sequential elements */

.lm-fade-in:nth-child(1) { animation-delay: 0.1s; }

.lm-fade-in:nth-child(2) { animation-delay: 0.2s; }

.lm-fade-in:nth-child(3) { animation-delay: 0.3s; }

.lm-fade-in:nth-child(4) { animation-delay: 0.4s; }



/* ===== 1.5 FOCUS-VISIBLE FOR KEYBOARD NAVIGATION ===== */

:focus-visible {

  outline: 2px solid #7C3AED;

  outline-offset: 2px;

  border-radius: 4px;

}



/* Remove default outline for mouse users */

:focus:not(:focus-visible) {

  outline: none;

}



/* ===== 1.6 PREFERS-REDUCED-MOTION ===== */

@media (prefers-reduced-motion: reduce) {

  *,

  *::before,

  *::after {

    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;

  }

  

  .lm-hero-gradient {

    animation: none;

    background: #0F0F0F;

  }

}



/* ===== 1.7 PULSING LIVE INDICATOR ===== */

.lm-live-indicator {

  display: inline-flex;

  align-items: center;

  gap: 6px;

}



.lm-live-indicator::before {

  content: '';

  width: 8px;

  height: 8px;

  background: #22C55E;

  border-radius: 50%;

  animation: pulse 2s ease infinite;

}



@keyframes pulse {

  0%, 100% { opacity: 1; transform: scale(1); }

  50% { opacity: 0.5; transform: scale(1.2); }

}



/* ===== 1.8 ANIMATED UNDERLINE LINKS ===== */

.lm-link-animated {

  position: relative;

  text-decoration: none;

}



.lm-link-animated::after {

  content: '';

  position: absolute;

  bottom: -2px;

  left: 0;

  width: 0;

  height: 1px;

  background: #A78BFA;

  transition: width 0.3s ease;

}



.lm-link-animated:hover::after {

  width: 100%;

}



/* ===== BLOG META (dates + categories) ===== */

.lm-blog-meta {

  display: flex;

  gap: 0.75rem;

  align-items: center;

  margin-bottom: 0.75rem;

  font-size: 0.75rem;

  color: var(--text-muted, #6B7280);

}



.lm-blog-date::before {

  content: '•';

  margin-right: 0.75rem;

  color: var(--text-muted, #6B7280);

}



/* ===== SCROLL-TO-TOP BUTTON ===== */

.lm-scroll-top {

  position: fixed;

  bottom: 2rem;

  right: 2rem;

  width: 44px;

  height: 44px;

  background: var(--bg-secondary, #1A1A1A);

  border: 1px solid var(--border, #2A2A2A);

  border-radius: 50%;

  color: var(--text-secondary, #A3A3A3);

  cursor: pointer;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: all 0.3s ease;

  z-index: 999;

}



.lm-scroll-top:hover {

  background: var(--accent, #7C3AED);

  color: #fff;

  border-color: var(--accent, #7C3AED);

  transform: translateY(-2px);

}



.lm-scroll-top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.lm-scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.lm-scroll-top[hidden] {
  display: none;
}

/* ===== PRICING POPULAR BADGE ===== */

.lm-pricing-card.popular {

  border: 1px solid var(--accent, #7C3AED);

  position: relative;

}



.lm-pricing-card.popular::before {

  content: 'Most Popular';

  position: absolute;

  top: -12px;

  left: 50%;

  transform: translateX(-50%);

  background: var(--accent, #7C3AED);

  color: #fff;

  padding: 0.25rem 1rem;

  font-size: 0.75rem;

  font-weight: 600;

  border-radius: 999px;

}

/* ===== 7.1 STATS COUNTERS ===== */

.lm-stats-section {

  padding: 4rem 2rem;

  max-width: 1100px;

  margin: 0 auto;

}



.lm-stats-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 1.5rem;

}



.lm-stat-card {

  background: var(--bg-secondary, #1A1A1A);

  border: 1px solid var(--border, #2A2A2A);

  border-radius: 12px;

  padding: 2rem;

  text-align: center;

  transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.lm-stat-card:hover {

  transform: translateY(-4px);

  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.1);

}



.lm-stat-number {

  font-size: 2.5rem;

  font-weight: 700;

  color: var(--accent, #7C3AED);

  font-family: var(--font-mono, monospace);

  line-height: 1;

}



.lm-stat-suffix {

  font-size: 1.25rem;

  font-weight: 600;

  color: var(--accent-light, #A78BFA);

}



.lm-stat-label {

  display: block;

  margin-top: 0.5rem;

  font-size: 1rem;

  font-weight: 600;

  color: var(--text-primary, #F5F5F5);

}



.lm-stat-sublabel {

  display: block;

  margin-top: 0.25rem;

  font-size: 0.875rem;

  color: var(--text-secondary, #A3A3A3);

}



.lm-visually-hidden {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  white-space: nowrap;

  border: 0;

}



@media (max-width: 640px) {

  .lm-stats-grid {

    grid-template-columns: repeat(2, 1fr);

  }

  .lm-stat-number {

    font-size: 1.75rem;

  }

}



/* ===== 7.2 TESTIMONIALS ===== */

.lm-testimonials-section {

  padding: 4rem 2rem;

  max-width: 1100px;

  margin: 0 auto;

}



.lm-testimonials-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 1.5rem;

  margin-top: 2rem;

}



.lm-testimonial-card {

  background: var(--bg-secondary, #1A1A1A);

  border: 1px solid var(--border, #2A2A2A);

  border-radius: 12px;

  padding: 1.5rem;

  transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.lm-testimonial-card:hover {

  transform: translateY(-4px);

  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.1);

}



.lm-testimonial-stars {

  color: #F59E0B;

  font-size: 1.125rem;

  letter-spacing: 0.125em;

  margin-bottom: 1rem;

}



.lm-testimonial-text {

  font-size: 1rem;

  line-height: 1.6;

  color: var(--text-primary, #F5F5F5);

  margin: 0 0 1.5rem 0;

  font-style: normal;

}



.lm-testimonial-author {

  display: flex;

  align-items: center;

  gap: 0.75rem;

  border-top: 1px solid var(--border, #2A2A2A);

  padding-top: 1rem;

}



.lm-testimonial-avatar {

  width: 40px;

  height: 40px;

  border-radius: 50%;

  background: linear-gradient(135deg, var(--accent, #7C3AED), var(--accent-light, #A78BFA));

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 0.875rem;

  font-weight: 700;

  color: #fff;

  flex-shrink: 0;

}



.lm-testimonial-name {

  font-style: normal;

  font-weight: 600;

  color: var(--text-primary, #F5F5F5);

  display: block;

}



.lm-testimonial-role {

  font-size: 0.875rem;

  color: var(--text-secondary, #A3A3A3);

}



@media (max-width: 640px) {

  .lm-testimonials-grid {

    grid-template-columns: 1fr;

  }

}



/* ===== 7.3 FAQ ACCORDION ===== */

.lm-faq-section {

  padding: 4rem 2rem;

  max-width: 800px;

  margin: 0 auto;

}



.lm-faq-list {

  margin-top: 2rem;

  display: flex;

  flex-direction: column;

  gap: 0.75rem;

}



.lm-faq-item {

  background: var(--bg-secondary, #1A1A1A);

  border: 1px solid var(--border, #2A2A2A);

  border-radius: 8px;

  overflow: hidden;

  transition: border-color 0.2s ease;

}



.lm-faq-item[open] {

  border-color: rgba(124, 58, 237, 0.3);

}



.lm-faq-question {

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 1.25rem;

  cursor: pointer;

  font-weight: 600;

  color: var(--text-primary, #F5F5F5);

  list-style: none;

  transition: color 0.2s ease;

}



.lm-faq-question::-webkit-details-marker {

  display: none;

}



.lm-faq-question:hover {

  color: var(--accent, #7C3AED);

}



.lm-faq-icon {

  font-size: 1.25rem;

  color: var(--text-secondary, #A3A3A3);

  transition: transform 0.3s ease, color 0.2s ease;

  flex-shrink: 0;

  margin-left: 1rem;

}



.lm-faq-item[open] .lm-faq-icon {

  transform: rotate(45deg);

  color: var(--accent, #7C3AED);

}



.lm-faq-answer {

  padding: 0 1.25rem 1.25rem 1.25rem;

  color: var(--text-secondary, #A3A3A3);

  line-height: 1.6;

}



.lm-faq-answer p {

  margin: 0;

}



.lm-faq-answer p + p {

  margin-top: 0.75rem;

}



/* ===== 7.4 NEWSLETTER ===== */

.lm-newsletter-section {

  padding: 4rem 2rem;

  max-width: 600px;

  margin: 0 auto;

}



.lm-newsletter-container {

  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);

  border: 1px solid rgba(124, 58, 237, 0.2);

  border-radius: 16px;

  padding: 2.5rem;

  text-align: center;

}



.lm-newsletter-title {

  font-size: 1.5rem;

  font-weight: 700;

  color: var(--text-primary, #F5F5F5);

  margin: 0 0 0.5rem 0;

}



.lm-newsletter-desc {

  color: var(--text-secondary, #A3A3A3);

  margin: 0 0 1.5rem 0;

  line-height: 1.5;

}



.lm-newsletter-form {

  margin-top: 1.5rem;

}



.lm-newsletter-input-wrap {

  display: flex;

  gap: 0.75rem;

  margin-bottom: 0.75rem;

}



.lm-newsletter-input {

  flex: 1;

  padding: 0.875rem 1rem;

  background: var(--bg-primary, #0F0F0F);

  border: 1px solid var(--border, #2A2A2A);

  border-radius: 8px;

  color: var(--text-primary, #F5F5F5);

  font-size: 1rem;

  outline: none;

  transition: border-color 0.2s ease, box-shadow 0.2s ease;

}



.lm-newsletter-input:focus {

  border-color: var(--accent, #7C3AED);

  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);

}



.lm-newsletter-input::placeholder {

  color: var(--text-muted, #6B7280);

}



.lm-newsletter-btn {

  padding: 0.875rem 1.5rem;

  background: var(--accent, #7C3AED);

  color: #fff;

  border: none;

  border-radius: 8px;

  font-size: 1rem;

  font-weight: 600;

  cursor: pointer;

  transition: all 0.2s ease;

  white-space: nowrap;

}



.lm-newsletter-btn:hover {

  background: var(--accent-hover, #6D28D9);

  transform: translateY(-1px);

}



.lm-newsletter-btn:active {

  transform: translateY(0);

}



.lm-newsletter-btn-success {

  color: var(--success, #22C55E);

}



.lm-newsletter-privacy {

  font-size: 0.75rem;

  color: var(--text-muted, #6B7280);

  margin: 0;

}



.lm-newsletter-privacy a {

  color: var(--accent, #7C3AED);

  text-decoration: none;

}



.lm-newsletter-privacy a:hover {

  text-decoration: underline;

}



@media (max-width: 480px) {

  .lm-newsletter-input-wrap {

    flex-direction: column;

  }

  .lm-newsletter-btn {

    width: 100%;

  }

}/* Skip link — accessibility */

.lm-skip-link {

  position: absolute;

  top: -40px;

  left: 0;

  background: var(--accent, #7C3AED);

  color: #fff;

  padding: 8px 16px;

  text-decoration: none;

  border-radius: 0 0 4px 0;

  z-index: 10000;

  transition: top 0.3s ease;

}



.lm-skip-link:focus {

  top: 0;

}



/* Hero Visual — CSS-only app mockup */

.lm-hero-visual { margin: 3rem auto; max-width: 800px; position: relative; }

.lm-hero-screenshot { position: relative; z-index: 2; }

.lm-screenshot-frame { background: var(--bg-secondary, #1A1A1A); border: 1px solid var(--border, #2A2A2A); border-radius: 12px; overflow: hidden; box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4); }

.lm-screenshot-header { background: var(--bg-tertiary, #252525); padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.5rem; border-bottom: 1px solid var(--border, #2A2A2A); }

.lm-dot { width: 10px; height: 10px; border-radius: 50%; }

.lm-dot.red { background: #EF4444; }

.lm-dot.yellow { background: #F59E0B; }

.lm-dot.green { background: #22C55E; }

.lm-screenshot-title { margin-left: 0.5rem; font-size: 0.75rem; color: var(--text-muted, #6B7280); font-family: var(--font-mono, monospace); }

.lm-screenshot-body { display: flex; min-height: 300px; }

.lm-screenshot-sidebar { width: 160px; background: var(--bg-primary, #0F0F0F); padding: 1rem 0; border-right: 1px solid var(--border, #2A2A2A); }

.lm-screenshot-nav-item { padding: 0.5rem 1rem; font-size: 0.875rem; color: var(--text-secondary, #A3A3A3); cursor: default; }

.lm-screenshot-nav-item.active { color: var(--accent, #7C3AED); background: rgba(124, 58, 237, 0.1); border-left: 2px solid var(--accent, #7C3AED); }

.lm-screenshot-main { flex: 1; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }

.lm-screenshot-metric { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 1rem; background: var(--bg-tertiary, #252525); border-radius: 6px; }

.lm-metric-label { font-size: 0.875rem; color: var(--text-secondary, #A3A3A3); }

.lm-metric-value { font-size: 1.25rem; font-weight: 700; color: var(--text-primary, #F5F5F5); font-family: var(--font-mono, monospace); }

.lm-screenshot-chart { display: flex; align-items: flex-end; gap: 0.5rem; height: 120px; padding: 1rem; background: var(--bg-tertiary, #252525); border-radius: 6px; }

.lm-chart-bar { flex: 1; background: linear-gradient(180deg, var(--accent, #7C3AED) 0%, var(--accent-light, #A78BFA) 100%); border-radius: 3px 3px 0 0; min-height: 10px; transform-origin: bottom; }

.lm-screenshot-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 120%; height: 120%; background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%); z-index: -1; pointer-events: none; }

.lm-screenshot-frame:hover .lm-chart-bar { animation: chartGrow 0.6s ease forwards; }

.lm-screenshot-frame:hover .lm-chart-bar:nth-child(1) { animation-delay: 0s; }

.lm-screenshot-frame:hover .lm-chart-bar:nth-child(2) { animation-delay: 0.1s; }

.lm-screenshot-frame:hover .lm-chart-bar:nth-child(3) { animation-delay: 0.2s; }

.lm-screenshot-frame:hover .lm-chart-bar:nth-child(4) { animation-delay: 0.3s; }

.lm-screenshot-frame:hover .lm-chart-bar:nth-child(5) { animation-delay: 0.4s; }

.lm-screenshot-frame:hover .lm-chart-bar:nth-child(6) { animation-delay: 0.5s; }

@keyframes chartGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }



/* Hover-lift for pricing and feature cards */

.lm-pricing-card:hover,

.lm-feature-card:hover {

  transform: translateY(-8px);

  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.15);

  transition: transform 0.3s ease, box-shadow 0.3s ease;

}



/* Stats Counters */

.lm-stats-section { padding: 4rem 2rem; max-width: 1100px; margin: 0 auto; }

.lm-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }

.lm-stat-card { background: var(--bg-secondary, #1A1A1A); border: 1px solid var(--border, #2A2A2A); border-radius: 12px; padding: 2rem; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }

.lm-stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(124, 58, 237, 0.1); }

.lm-stat-number { font-size: 2.5rem; font-weight: 700; color: var(--accent, #7C3AED); font-family: var(--font-mono, monospace); line-height: 1; }

.lm-stat-suffix { font-size: 1.25rem; font-weight: 600; color: var(--accent-light, #A78BFA); }

.lm-stat-label { display: block; margin-top: 0.5rem; font-size: 1rem; font-weight: 600; color: var(--text-primary, #F5F5F5); }

.lm-stat-sublabel { display: block; margin-top: 0.25rem; font-size: 0.875rem; color: var(--text-secondary, #A3A3A3); }

.lm-visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

@media (max-width: 640px) { .lm-stats-grid { grid-template-columns: repeat(2, 1fr); } .lm-stat-number { font-size: 1.75rem; } }



/* Testimonials */

.lm-testimonials-section { padding: 4rem 2rem; max-width: 1100px; margin: 0 auto; }

.lm-testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 2rem; }

.lm-testimonial-card { background: var(--bg-secondary, #1A1A1A); border: 1px solid var(--border, #2A2A2A); border-radius: 12px; padding: 1.5rem; transition: transform 0.3s ease, box-shadow 0.3s ease; }

.lm-testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(124, 58, 237, 0.1); }

.lm-testimonial-stars { display: flex; gap: 0.125rem; align-items: center; margin-bottom: 1rem; }
.lm-testimonial-stars svg { flex-shrink: 0; width: 16px; height: 16px; }

.lm-testimonial-text { font-size: 1rem; line-height: 1.6; color: var(--text-primary, #F5F5F5); margin: 0 0 1.5rem 0; font-style: normal; }

.lm-testimonial-author { display: flex; align-items: center; gap: 0.75rem; border-top: 1px solid var(--border, #2A2A2A); padding-top: 1rem; }

.lm-testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--accent, #7C3AED), var(--accent-light, #A78BFA)); display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 700; color: #fff; flex-shrink: 0; }

.lm-testimonial-name { font-style: normal; font-weight: 600; color: var(--text-primary, #F5F5F5); display: block; }

.lm-testimonial-role { font-size: 0.875rem; color: var(--text-secondary, #A3A3A3); }

@media (max-width: 640px) { .lm-testimonials-grid { grid-template-columns: 1fr; } }



/* FAQ Accordion */

.lm-faq-section { padding: 4rem 2rem; max-width: 800px; margin: 0 auto; }

.lm-faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }

.lm-faq-item { background: var(--bg-secondary, #1A1A1A); border: 1px solid var(--border, #2A2A2A); border-radius: 8px; overflow: hidden; transition: border-color 0.2s ease; }

.lm-faq-item[open] { border-color: rgba(124, 58, 237, 0.3); }

.lm-faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem; cursor: pointer; font-weight: 600; color: var(--text-primary, #F5F5F5); list-style: none; transition: color 0.2s ease; }

.lm-faq-question::-webkit-details-marker { display: none; }

.lm-faq-question:hover { color: var(--accent, #7C3AED); }

.lm-faq-icon { font-size: 1.25rem; color: var(--text-secondary, #A3A3A3); transition: transform 0.3s ease, color 0.2s ease; flex-shrink: 0; margin-left: 1rem; }

.lm-faq-item[open] .lm-faq-icon { transform: rotate(45deg); color: var(--accent, #7C3AED); }

.lm-faq-answer { padding: 0 1.25rem 1.25rem 1.25rem; color: var(--text-secondary, #A3A3A3); line-height: 1.6; }

.lm-faq-answer p { margin: 0; }

.lm-faq-answer p + p { margin-top: 0.75rem; }



/* Newsletter */

.lm-newsletter-section { padding: 4rem 2rem; max-width: 600px; margin: 0 auto; }

.lm-newsletter-container { background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%); border: 1px solid rgba(124, 58, 237, 0.2); border-radius: 16px; padding: 2.5rem; text-align: center; }

.lm-newsletter-title { font-size: 1.5rem; font-weight: 700; color: var(--text-primary, #F5F5F5); margin: 0 0 0.5rem 0; }

.lm-newsletter-desc { color: var(--text-secondary, #A3A3A3); margin: 0 0 1.5rem 0; line-height: 1.5; }

.lm-newsletter-form { margin-top: 1.5rem; }

.lm-newsletter-input-wrap { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; }

.lm-newsletter-input { flex: 1; padding: 0.875rem 1rem; background: var(--bg-primary, #0F0F0F); border: 1px solid var(--border, #2A2A2A); border-radius: 8px; color: var(--text-primary, #F5F5F5); font-size: 1rem; outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease; }

.lm-newsletter-input:focus { border-color: var(--accent, #7C3AED); box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15); }

.lm-newsletter-input::placeholder { color: var(--text-muted, #6B7280); }

.lm-newsletter-btn { padding: 0.875rem 1.5rem; background: var(--accent, #7C3AED); color: #fff; border: none; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.2s ease; white-space: nowrap; }

.lm-newsletter-btn:hover { background: var(--accent-hover, #6D28D9); transform: translateY(-1px); }

.lm-newsletter-btn:active { transform: translateY(0); }

.lm-newsletter-btn-success { color: var(--success, #22C55E); }

.lm-newsletter-privacy { font-size: 0.75rem; color: var(--text-muted, #6B7280); margin: 0; }

.lm-newsletter-privacy a { color: var(--accent, #7C3AED); text-decoration: none; }

.lm-newsletter-privacy a:hover { text-decoration: underline; }

@media (max-width: 480px) { .lm-newsletter-input-wrap { flex-direction: column; } .lm-newsletter-btn { width: 100%; } }



/* Pricing Calculator */

.lm-savings-section { padding: 4rem 2rem; max-width: 900px; margin: 0 auto; }

.lm-section-title { font-size: var(--text-3xl, 1.875rem); text-align: center; margin-bottom: 0.5rem; }

.lm-section-subtitle { text-align: center; color: var(--text-secondary, #A3A3A3); margin-bottom: 2rem; }

.lm-savings-calculator { background: var(--bg-secondary, #1A1A1A); border: 1px solid var(--border, #2A2A2A); border-radius: 12px; padding: 2rem; }

.lm-savings-inputs { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }

.lm-savings-field label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text-secondary, #A3A3A3); }

.lm-savings-select { width: 100%; padding: 0.75rem; background: var(--bg-primary, #0F0F0F); border: 1px solid var(--border, #2A2A2A); border-radius: 6px; color: var(--text-primary, #F5F5F5); font-size: 0.875rem; cursor: pointer; }

.lm-savings-slider-wrap { display: flex; align-items: center; gap: 1rem; }

.lm-savings-slider { flex: 1; -webkit-appearance: none; appearance: none; height: 6px; background: var(--bg-tertiary, #252525); border-radius: 3px; outline: none; }

.lm-savings-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 20px; height: 20px; background: var(--accent, #7C3AED); border-radius: 50%; cursor: pointer; transition: transform 0.2s ease; }

.lm-savings-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

.lm-savings-years-display { font-size: 0.875rem; color: var(--text-secondary, #A3A3A3); min-width: 60px; }

.lm-savings-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.lm-savings-result-card { background: var(--bg-primary, #0F0F0F); border: 1px solid var(--border, #2A2A2A); border-radius: 8px; padding: 1.5rem; text-align: center; }

.lm-savings-label { display: block; font-size: 0.875rem; color: var(--text-secondary, #A3A3A3); margin-bottom: 0.5rem; }

.lm-savings-value { display: block; font-size: 2rem; font-weight: 700; color: var(--text-primary, #F5F5F5); font-family: var(--font-mono, monospace); transition: all 0.3s ease; }

.lm-savings-lockmargin .lm-savings-value { color: var(--accent, #7C3AED); }

.lm-savings-total { background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.3); }

.lm-savings-total .lm-savings-value { color: var(--success, #22C55E); }

.lm-savings-badge { display: inline-block; margin-top: 0.5rem; padding: 0.25rem 0.75rem; background: var(--success, #22C55E); color: var(--bg-primary, #0F0F0F); font-size: 0.75rem; font-weight: 700; border-radius: 999px; }

@media (max-width: 640px) { .lm-savings-results { grid-template-columns: 1fr; } }



/* Feature Icons */

.lm-feature-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.5rem; }

.lm-feature-icon.purple { background: rgba(124, 58, 237, 0.15); color: var(--accent, #7C3AED); }

.lm-feature-icon.green { background: rgba(34, 197, 94, 0.15); color: var(--success, #22C55E); }

.lm-feature-icon.blue { background: rgba(59, 130, 246, 0.15); color: #3B82F6; }

.lm-feature-icon.orange { background: rgba(245, 158, 11, 0.15); color: #F59E0B; }

.lm-feature-icon.red { background: rgba(239, 68, 68, 0.15); color: #EF4444; }

.lm-feature-card { position: relative; overflow: hidden; }

.lm-feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent, #7C3AED), var(--accent-light, #A78BFA)); opacity: 0; transition: opacity 0.3s ease; }

.lm-feature-card:hover::before { opacity: 1; }



/* Table of Contents */

.lm-toc { position: sticky; top: 100px; width: 240px; max-height: calc(100vh - 120px); overflow-y: auto; padding: 1.5rem; background: var(--bg-secondary, #1A1A1A); border: 1px solid var(--border, #2A2A2A); border-radius: 8px; align-self: flex-start; }

.lm-toc-title { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-secondary, #A3A3A3); margin-bottom: 1rem; }

.lm-toc-list { list-style: none; padding: 0; margin: 0; }

.lm-toc-item { margin-bottom: 0.25rem; }

.lm-toc-item.lm-toc-sub { padding-left: 1rem; }

.lm-toc-link { display: block; padding: 0.375rem 0.5rem; font-size: 0.875rem; color: var(--text-secondary, #A3A3A3); text-decoration: none; border-radius: 4px; transition: all 0.15s ease; }

.lm-toc-link:hover, .lm-toc-link.active { color: var(--accent, #7C3AED); background: rgba(124, 58, 237, 0.1); }

.lm-toc-link.active { font-weight: 600; }

.lm-docs-layout { display: flex; gap: 2rem; max-width: 1200px; margin: 0 auto; padding: 2rem; }

.lm-docs-content { flex: 1; min-width: 0; }

@media (max-width: 1024px) { .lm-toc { display: none; } }



/* Copy SHA-256 */

.lm-sha-container { display: flex; align-items: center; gap: 1rem; background: var(--bg-secondary, #1A1A1A); border: 1px solid var(--border, #2A2A2A); border-radius: 8px; padding: 1rem; font-family: var(--font-mono, monospace); }

.lm-sha-container code { flex: 1; color: var(--text-primary, #F5F5F5); word-break: break-all; }

.lm-copy-btn { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: var(--accent, #7C3AED); color: #fff; border: none; border-radius: 6px; cursor: pointer; font-size: 0.875rem; transition: all 0.2s ease; }

.lm-copy-btn:hover { background: var(--accent-hover, #6D28D9); }



/* Breadcrumbs */

.lm-breadcrumb { padding: 1rem 0; margin-bottom: 1rem; }

.lm-breadcrumb-list { display: flex; list-style: none; padding: 0; margin: 0; font-size: 0.875rem; }

.lm-breadcrumb-item { display: flex; align-items: center; }

.lm-breadcrumb-item:not(:last-child)::after { content: '/'; margin: 0 0.75rem; color: var(--text-muted, #6B7280); }

.lm-breadcrumb-item a { color: var(--text-secondary, #A3A3A3); text-decoration: none; transition: color 0.2s ease; }

.lm-breadcrumb-item a:hover { color: var(--accent, #7C3AED); }

.lm-breadcrumb-item.active { color: var(--text-primary, #F5F5F5); }



/* ===== 1.1 Hero animated gradient background ===== */

.lm-hero-gradient {

  background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 50%, #0F0F0F 100%);

  background-size: 200% 200%;

  animation: gradientShift 15s ease infinite;

}



@keyframes gradientShift {

  0% { background-position: 0% 50%; }

  50% { background-position: 100% 50%; }

  100% { background-position: 0% 50%; }

}



/* ===== 1.2 Glow effect on Primary buttons ===== */

.lm-btn-primary {

  position: relative;

  transition: all 0.3s ease;

}



.lm-btn-primary::before {

  content: '';

  position: absolute;

  top: -2px;

  left: -2px;

  right: -2px;

  bottom: -2px;

  background: linear-gradient(90deg, #7C3AED, #A78BFA);

  border-radius: 8px;

  opacity: 0;

  z-index: -1;

  transition: opacity 0.3s ease;

  filter: blur(8px);

}



.lm-btn-primary:hover::before {

  opacity: 0.6;

}



.lm-btn-primary:hover {

  transform: translateY(-2px);

  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);

}



/* ===== 1.3 Hover-lift on cards (pricing, features) ===== */

.lm-card {

  transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.lm-card:hover {

  transform: translateY(-8px);

  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.15);

}



/* ===== 1.4 Fade-in on scroll (CSS only) ===== */

.lm-fade-in {

  opacity: 0;

  transform: translateY(24px);

  animation: fadeInUp 0.6s ease forwards;

}



@keyframes fadeInUp {

  to {

    opacity: 1;

    transform: translateY(0);

  }

}



/* Stagger for sequential elements */

.lm-fade-in:nth-child(1) { animation-delay: 0.1s; }

.lm-fade-in:nth-child(2) { animation-delay: 0.2s; }

.lm-fade-in:nth-child(3) { animation-delay: 0.3s; }

.lm-fade-in:nth-child(4) { animation-delay: 0.4s; }



/* ===== 1.5 Focus-visible for keyboard navigation ===== */

:focus-visible {

  outline: 2px solid #7C3AED;

  outline-offset: 2px;

  border-radius: 4px;

}



/* Remove default outline for mouse users */

:focus:not(:focus-visible) {

  outline: none;

}



/* ===== 1.6 Prefers-reduced-motion ===== */

@media (prefers-reduced-motion: reduce) {

  *,

  *::before,

  *::after {

    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;

  }



  .lm-hero-gradient {

    animation: none;

    background: #0F0F0F;

  }

}



/* ===== 1.7 Pulsing Live indicator ===== */

.lm-live-indicator {

  display: inline-flex;

  align-items: center;

  gap: 6px;

}



.lm-live-indicator::before {

  content: '';

  width: 8px;

  height: 8px;

  background: #22C55E;

  border-radius: 50%;

  animation: pulse 2s ease infinite;

}



@keyframes pulse {

  0%, 100% { opacity: 1; transform: scale(1); }

  50% { opacity: 0.5; transform: scale(1.2); }

}



/* ===== 1.8 Animated underline links ===== */

.lm-link-animated {

  position: relative;

  text-decoration: none;

}



.lm-link-animated::after {

  content: '';

  position: absolute;

  bottom: -2px;

  left: 0;

  width: 0;

  height: 1px;

  background: #A78BFA;

  transition: width 0.3s ease;

}



.lm-link-animated:hover::after {

  width: 100%;

}

/* Blog CTA block (added by content audit fix) */

.lm-blog-cta {

  margin-top: 2rem;

  padding: 1.5rem;

  background: #1A1A1A;

  border: 1px solid #2A2A2A;

  border-radius: 8px;

  border-left: 3px solid #7C3AED;

}

.lm-blog-cta p {

  margin: 0 0 0.5rem 0;

  color: #F5F5F5;

}

.lm-blog-cta a {
  color: #7C3AED;
  text-decoration: underline;
}

/* About Page */
.lm-about-hero {
  padding: 6rem 2rem 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.lm-about-hero-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: start;
}

.lm-about-photo-col {
  text-align: center;
}

.lm-founder-photo-wrap {
  margin-bottom: 0;
}

.lm-founder-photo {
  width: 320px;
  height: 240px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
  border: 2px solid var(--border, #2A2A2A);
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.2), 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lm-founder-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(124, 58, 237, 0.3), 0 12px 32px rgba(0, 0, 0, 0.5);
}

.lm-about-text-col {
  padding-top: 1rem;
}

.lm-about-text-col .lm-lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-secondary, #A3A3A3);
  margin: 0;
}

.lm-about-story,
.lm-about-building,
.lm-about-principles,
.lm-about-cta {
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.lm-about-story h2,
.lm-about-building h2,
.lm-about-principles h2,
.lm-about-cta h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary, #F5F5F5);
}

.lm-about-story p,
.lm-about-building p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary, #A3A3A3);
  margin-bottom: 1rem;
}

.lm-about-location {
  font-style: italic;
  color: var(--accent, #7C3AED) !important;
  margin-top: 1.5rem;
}

.lm-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.lm-principle-card {
  background: var(--bg-secondary, #1A1A1A);
  border: 1px solid var(--border, #2A2A2A);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lm-principle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.1);
}

.lm-principle-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.lm-principle-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary, #F5F5F5);
}

.lm-principle-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary, #A3A3A3);
  margin: 0;
}

.lm-about-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(124, 58, 237, 0.1) 100%);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 16px;
  margin: 3rem auto;
  padding: 3rem 2rem;
}

.lm-about-cta h2 {
  margin-bottom: 1rem;
}

.lm-about-cta p {
  font-size: 1.125rem;
  color: var(--text-secondary, #A3A3A3);
  margin-bottom: 2rem;
}

.lm-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .lm-about-hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .lm-about-text-col {
    padding-top: 0;
  }

  .lm-founder-photo {
    width: 280px;
    height: 210px;
    margin: 0 auto;
  }
  
  .lm-principles-grid {
    grid-template-columns: 1fr;
  }
  
  .lm-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .lm-cta-buttons a {
    width: 100%;
    max-width: 280px;
  }
}

/* Founder Profile — About Page caption */
.lm-founder-name {
    font-family: Georgia, 'Times New Roman', 'Palatino Linotype', serif;
    font-size: 1.25rem;
    font-weight: 400;
    font-style: italic;
    color: #D1D5DB;
    margin-top: 1.5rem;
    margin-bottom: 0.25rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Signature underline effect */
.lm-founder-name::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, #8B5CF6 0%, transparent 100%);
    margin-top: 0.75rem;
    opacity: 0.5;
}

.lm-founder-role {
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: #8B5CF6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.lm-founder-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 400;
  color: #7C3AED;
  margin: 0.5rem 0 0 0;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .lm-founder-name {
    font-size: 1.5rem;
  }
  .lm-founder-role {
    font-size: 0.9rem;
  }
}

/* Back to Top Button */
.lm-back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: #8B5CF6;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.lm-back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4);
}

.lm-back-to-top:active {
    transform: translateY(0);
}

.lm-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .lm-back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
    }
}


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

/* Mobile Responsive */
@media (max-width: 768px) {
  /* === 2. Typography (Fluid scaling) === */
  .lm-hero-title, h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
  }

  .lm-hero-subtitle, h2 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
  }

  body {
    font-size: 16px;
  }

  /* === 3. Navigation (Hamburger Menu) === */
  .lm-nav-links {
    display: none;
  }

  .lm-hamburger, .lm-nav-toggle {
    display: flex !important;
  }

  .lm-nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #111827;
    padding: 1.5rem;
    border-top: 1px solid #374151;
    z-index: 100;
    gap: 1rem;
  }

  .lm-nav-links.active a {
    padding: 0.75rem 0;
    border-bottom: 1px solid #1F2937;
  }

  /* === 4. Hero section (Stack layout) === */
  .lm-hero-content, .lm-hero {
    flex-direction: column;
    gap: 2rem;
  }

  .lm-hero-visual, .lm-hero-screenshot {
    order: 2;
    width: 100%;
  }

  .lm-hero-text {
    order: 1;
    text-align: center;
  }

  /* === 5. Cards (Grid → 1 column) === */
  .lm-features-grid,
  .lm-stats-grid,
  .lm-testimonials-grid,
  .lm-principles-grid,
  .lm-pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .lm-feature-card,
  .lm-stat-card,
  .lm-testimonial-card,
  .lm-pricing-card {
    max-width: 100%;
  }

  /* === 6. Tables (Horizontal scroll) === */
  .lm-table-wrapper,
  table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
  }

  table {
    min-width: 600px;
  }

  /* === 7. Forms (Full width) === */
  .lm-form-input,
  .lm-form-select,
  .lm-form-textarea,
  .lm-btn {
    width: 100%;
    max-width: 100%;
  }

  .lm-btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    touch-action: manipulation;
  }

  /* === 8. Sidebar in Docs === */
  .lm-docs-sidebar {
    position: static;
    height: auto;
    width: 100%;
    margin-bottom: 2rem;
    border-right: none;
    border-bottom: 1px solid #374151;
    padding-bottom: 1rem;
  }

  .lm-docs-sidebar nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  /* === 9. Footer === */
  .lm-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .lm-footer-column ul {
    padding: 0;
  }

  /* === 10. Breadcrumbs === */
  .lm-breadcrumb {
    padding: 1rem 0;
    font-size: 0.875rem;
  }

  .lm-breadcrumb ol {
    flex-wrap: wrap;
  }

  /* === 11. Back to Top Button === */
  .lm-back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 1024px) {
  /* Tablet adjustments */
}

/* Early Access Form - Web3Forms Integration */
.lm-early-access-form {
  max-width: 500px;
  margin: 0 auto;
}

.lm-form-group {
  margin-bottom: 1.5rem;
}

.lm-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #E5E7EB;
  font-size: 0.95rem;
}

.lm-optional {
  font-weight: 400;
  color: #9CA3AF;
  font-size: 0.85rem;
}

.lm-form-input,
.lm-form-select,
.lm-form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #111827;
  border: 1px solid #374151;
  border-radius: 6px;
  color: #F9FAFB;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lm-form-input:focus,
.lm-form-select:focus,
.lm-form-textarea:focus {
  outline: none;
  border-color: #8B5CF6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.lm-form-input::placeholder,
.lm-form-textarea::placeholder {
  color: #6B7280;
}

.lm-form-select {
  cursor: pointer;
  appearance: none;
  background-image: 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='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.lm-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.lm-btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  width: 100%;
}

.lm-form-success {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid #8B5CF6;
  border-radius: 6px;
  color: #A78BFA;
  text-align: center;
}

.lm-form-success p {
  margin: 0;
}

/* About Page - Reduce top spacing */
.lm-about-hero {
    padding-top: 0.5rem;
    margin-top: 0;
}

.lm-about-hero-layout {
    margin-top: 0;
}

.lm-founder-photo-wrap {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.lm-founder-caption {
    margin-top: 0.25rem;
}

.lm-founder-name {
    margin-top: 0;
    margin-bottom: 0.25rem;
}

.lm-founder-role {
    margin-bottom: 1rem;
}

.lm-about-text-col {
    margin-top: 0.5rem;
}

/* Tighten breadcrumb bottom margin on about page */
.lm-breadcrumb {
    margin-bottom: 0.5rem;
}

/* Mobile responsive */
@media (max-width: 640px) {
  .lm-early-access-form {
    max-width: 100%;
  }
  
  .lm-btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

/* ============================================
   ARTICLE IMAGES — For blog article content
   ============================================ */

.article-image {
  margin: var(--sp-md) 0;
}

.article-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  filter: brightness(0.95) contrast(1.05);
  transition: filter 0.3s ease;
}

.article-image img:hover {
  filter: brightness(1) contrast(1.05);
}

.article-image figcaption {
  font-size: 13px;
  color: #9CA3AF;
  margin-top: 8px;
  font-style: italic;
  text-align: center;
}

/* Float left variant for decorative images */
.article-image.float-left {
  float: left;
  margin: 0 24px 24px 0;
  max-width: 40%;
  clear: left;
}

.article-image.float-left figcaption {
  text-align: left;
}

/* Clearfix for article content */
.article-content::after {
  content: '';
  display: table;
  clear: both;
}

/* Mobile adaptation */
@media (max-width: 768px) {
  .article-image.float-left {
    float: none;
    max-width: 100%;
    margin: 24px 0;
  }
  
  .article-image.float-left figcaption {
    text-align: center;
  }
}
