/* ========================================
   LiThoughts Marketing Website
   Shared Styles, CSS Variables, Animations
   ======================================== */

/* Google Fonts - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* CSS Custom Properties - Light Theme (default) */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-tertiary: #f3f4f6;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --border-color: #e5e7eb;
  --accent: #0A66C2;
  --accent-hover: #084e96;
  --card-bg: #ffffff;
  --card-border: #e5e7eb;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --navbar-height: 72px;
  --max-width: 1200px;
  --section-spacing: 96px;
  --section-spacing-mobile: 64px;
  --card-radius: 12px;
  --card-padding: 24px;
  --transition-fast: 200ms ease;
  --transition-normal: 300ms ease;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-navbar: 0 1px 3px rgba(0,0,0,0.08);
}

/* Dark Theme */
html.dark {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-color: #334155;
  --accent: #0A66C2;
  --accent-hover: #3b82f6;
  --card-bg: #1e293b;
  --card-border: #334155;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.3), 0 2px 4px -2px rgba(0,0,0,0.2);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.35), 0 4px 6px -4px rgba(0,0,0,0.2);
  --shadow-navbar: 0 1px 3px rgba(0,0,0,0.3);
}

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.625rem, 6vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 48px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 80px;
  }
}

section {
  padding: var(--section-spacing-mobile) 0;
}

@media (min-width: 768px) {
  section {
    padding: var(--section-spacing) 0;
  }
}

/* ========================================
   Navbar
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  z-index: 1000;
  transition: background-color var(--transition-normal), box-shadow var(--transition-normal), backdrop-filter var(--transition-normal);
}

.navbar-scrolled {
  background-color: var(--bg-primary);
  box-shadow: var(--shadow-navbar);
  backdrop-filter: blur(12px);
}

html.dark .navbar-scrolled {
  background-color: rgba(15, 23, 42, 0.92);
}

html:not(.dark) .navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.92);
}

.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .navbar-inner {
    padding: 0 48px;
  }
}

@media (min-width: 1024px) {
  .navbar-inner {
    padding: 0 80px;
  }
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  flex-shrink: 0;
}

.navbar-logo .beta-badge {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--accent);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 100px;
  line-height: 1.4;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 1024px) {
  .navbar-links {
    display: flex;
  }
}

.navbar-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.navbar-links a:hover {
  color: var(--text-primary);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--text-secondary);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.theme-toggle:hover {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  display: none;
}

html.dark .theme-toggle .icon-sun {
  display: block;
}

html:not(.dark) .theme-toggle .icon-moon {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  padding: 10px 20px;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
}

.btn-primary-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 12px;
}

.btn-outline {
  border: 1.5px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--accent);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.navbar-cta {
  display: none;
}

@media (min-width: 1024px) {
  .navbar-cta {
    display: inline-flex;
  }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px 0;
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--bg-primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-menu .btn {
  margin-top: 16px;
  font-size: 1.125rem;
  padding: 14px 32px;
}

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

.hero {
  padding-top: calc(var(--navbar-height) + 80px);
  padding-bottom: 60px;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .hero {
    padding-top: calc(var(--navbar-height) + 120px);
    padding-bottom: 80px;
  }
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-inner {
    flex-direction: row;
    gap: 64px;
    align-items: center;
  }
}

.hero-text {
  flex: 1;
}

@media (min-width: 1024px) {
  .hero-text {
    flex: 0 0 55%;
  }
}

.hero-inner-centered {
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.hero-text-centered {
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero-text-centered {
    flex: none;
  }
}

/* Social proof line */
.hero-social-proof {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
}

.hero-social-proof::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--text-muted);
  margin: 0 auto 12px;
  opacity: 0.5;
}

/* Hero headline */
.hero-headline {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 56px;
  }
}

.hero-headline-accent {
  color: var(--accent);
}

.hero-text .hero-sub {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 680px;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-text .hero-sub {
    font-size: 19px;
  }
}

/* Hero CTA pulse glow */
@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(10, 102, 194, 0.4);
  }
  50% {
    box-shadow: 0 0 20px 8px rgba(10, 102, 194, 0);
  }
}

.hero-cta-pulse {
  animation: ctaPulse 2s ease-in-out infinite;
}

.hero-cta-pulse:hover {
  background-color: #004182;
}

/* Hero screenshot wrapper */
.hero-screenshot-wrapper {
  margin-top: 56px;
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-screenshot-wrapper .hero-screenshot {
  max-width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 50px rgba(10, 102, 194, 0.1), 0 8px 20px rgba(0, 0, 0, 0.06);
  animation: heroFloat 3.5s ease-in-out infinite;
}

html.dark .hero-screenshot-wrapper .hero-screenshot {
  box-shadow: 0 20px 50px rgba(10, 102, 194, 0.15), 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  padding: 0;
  margin: 0;
}

.hero-cta-group-centered {
  align-items: center;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta-group .btn {
  margin: 0;
}

.hero-cta-group .hero-note {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  padding: 0;
}

.btn-outline-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 12px;
}

.hero-trust {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 24px;
  letter-spacing: 0.02em;
}

.hero-visual {
  flex: 1;
  width: 100%;
  min-width: 0;
}

@media (min-width: 1024px) {
  .hero-visual {
    flex: 0 1 45%;
  }
}

/* ========================================
   Product Screenshot Mockup
   ======================================== */

.browser-mockup {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background-color: var(--bg-tertiary);
  border-bottom: 1px solid var(--card-border);
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.browser-dot:nth-child(1) { background-color: #ef4444; }
.browser-dot:nth-child(2) { background-color: #eab308; }
.browser-dot:nth-child(3) { background-color: #22c55e; }

.browser-url {
  flex: 1;
  margin-left: 12px;
  height: 28px;
  background-color: var(--bg-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 12px;
}

.browser-url-text {
  font-size: 11px;
  color: var(--text-muted);
  font-family: monospace;
}

.browser-body {
  padding: 20px;
  display: flex;
  gap: 16px;
  min-height: 300px;
}

@media (min-width: 768px) {
  .browser-body {
    padding: 24px;
    gap: 20px;
    min-height: 360px;
  }
}

.browser-sidebar {
  display: none;
  width: 180px;
  flex-shrink: 0;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 768px) {
  .browser-sidebar {
    display: flex;
  }
}

.sidebar-item {
  height: 36px;
  border-radius: 8px;
  background-color: var(--bg-secondary);
  transition: background-color var(--transition-fast);
}

.sidebar-item.active {
  background-color: var(--accent);
  opacity: 0.15;
}

.sidebar-label {
  height: 12px;
  width: 60%;
  background-color: var(--bg-tertiary);
  border-radius: 4px;
  margin: 16px 0 8px;
}

.browser-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--card-border);
}

.mockup-title {
  height: 14px;
  width: 120px;
  background-color: var(--bg-tertiary);
  border-radius: 4px;
}

.mockup-btn {
  height: 30px;
  width: 80px;
  background-color: var(--accent);
  border-radius: 6px;
  opacity: 0.8;
}

/* LinkedIn Preview Card in Mockup */
.linkedin-preview {
  background-color: var(--bg-secondary);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--accent);
  opacity: 0.25;
  flex-shrink: 0;
}

.lp-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-name {
  height: 10px;
  width: 90px;
  background-color: var(--bg-tertiary);
  border-radius: 3px;
}

.lp-headline {
  height: 8px;
  width: 140px;
  background-color: var(--bg-tertiary);
  border-radius: 3px;
  opacity: 0.6;
}

.lp-text-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.lp-line {
  height: 8px;
  background-color: var(--bg-tertiary);
  border-radius: 3px;
}

.lp-line:nth-child(1) { width: 100%; }
.lp-line:nth-child(2) { width: 92%; }
.lp-line:nth-child(3) { width: 88%; }
.lp-line:nth-child(4) { width: 95%; }
.lp-line:nth-child(5) { width: 60%; }
.lp-line:nth-child(6) { width: 0; height: 4px; }
.lp-line:nth-child(7) { width: 85%; }
.lp-line:nth-child(8) { width: 78%; }
.lp-line:nth-child(9) { width: 45%; }

.lp-engagement {
  display: flex;
  gap: 16px;
  padding-top: 8px;
  border-top: 1px solid var(--card-border);
}

.lp-reaction {
  height: 8px;
  width: 48px;
  background-color: var(--bg-tertiary);
  border-radius: 3px;
  opacity: 0.5;
}

/* ========================================
   Product Screenshots (light/dark toggle)
   ======================================== */

.screenshot-light,
.screenshot-dark {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
  -webkit-image-rendering: auto;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

html.dark .screenshot-light,
html.dark .screenshot-dark {
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

/* Light mode: show light, hide dark */
html:not(.dark) .screenshot-light { display: block; }
html:not(.dark) .screenshot-dark { display: none; }

/* Dark mode: show dark, hide light */
html.dark .screenshot-light { display: none; }
html.dark .screenshot-dark { display: block; }

/* Legacy hero-screenshot breakpoint styles removed - now handled by .hero-screenshot-wrapper */

/* How It Works screenshot: 900px max, centered */
.product-screenshot-wide {
  margin-top: 56px;
  text-align: center;
}

.product-screenshot-wide .screenshot-light,
.product-screenshot-wide .screenshot-dark {
  max-width: 100%;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .product-screenshot-wide .screenshot-light,
  .product-screenshot-wide .screenshot-dark {
    max-width: 900px;
  }
}

/* ========================================
   Section Shared Styles
   ======================================== */

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 60px;
  }
}

.section-header p {
  font-size: 1.125rem;
}

/* ========================================
   Problem Section
   ======================================== */

.problem-section {
  background-color: #0f172a;
  padding: 80px 0;
}

@media (min-width: 768px) {
  .problem-section {
    padding: 100px 0;
  }
}

html.dark .problem-section {
  background-color: #1e293b;
}

.problem-header {
  max-width: 800px;
}

.problem-header h2 {
  color: #f1f5f9;
  line-height: 1.45;
}

.problem-label {
  color: #3b82f6;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px;
  transition: opacity 600ms ease-out, transform 600ms ease-out, box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

html.dark .problem-card {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
}

.problem-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.problem-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: rgba(10, 102, 194, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #3b8ae0;
}

.problem-card .card-icon svg {
  width: 22px;
  height: 22px;
}

.problem-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f1f5f9;
}

.problem-card p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
}

.problem-lit-highlight {
  color: #3b8ae0;
  font-weight: 600;
}

/* ========================================
   Solution Section
   ======================================== */

.solution-section {
  background-color: var(--bg-primary);
  padding: 100px 0 80px;
}

@media (max-width: 767px) {
  .solution-section {
    padding: 80px 0 60px;
  }
}

.solution-section .section-header {
  max-width: 700px;
  margin-bottom: 48px;
}

.solution-lit-highlight {
  color: var(--accent);
}

.solution-feature-highlight {
  color: var(--accent);
  font-weight: 600;
}

/* ========================================
   Four Pillars Grid
   ======================================== */

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

.pillar {
  padding: 36px;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  transition: opacity 600ms ease-out, transform 600ms ease-out, box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.pillar:hover {
  box-shadow: var(--shadow-md);
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.pillar-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.pillar-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  background-color: rgba(10, 102, 194, 0.08);
  padding: 4px 12px;
  border-radius: 100px;
}

html.dark .pillar-label {
  background-color: rgba(10, 102, 194, 0.15);
}

.pillar h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .pillar h3 {
    font-size: 1.35rem;
  }
}

.pillar-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ========================================
   Founding Member Section
   ======================================== */

.founding-section {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.founding-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.founding-inner h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .founding-inner h2 {
    font-size: 52px;
  }
}

.founding-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.founding-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 36px;
}

@media (min-width: 640px) {
  .founding-perks {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }
}

.founding-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

.founding-perk svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ========================================
   Coming Soon Badge (pricing only)
   ======================================== */

.coming-soon-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  background-color: rgba(10, 102, 194, 0.08);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

html.dark .coming-soon-badge {
  background-color: rgba(10, 102, 194, 0.15);
}

/* ========================================
   Pricing Period
   ======================================== */

.pricing-period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ========================================
   Social Proof Section
   ======================================== */

.social-proof-section {
  background-color: var(--bg-secondary);
  padding: 100px 0;
}

@media (max-width: 767px) {
  .social-proof-section {
    padding: 80px 0;
  }
}

.social-proof-section .section-header {
  max-width: 750px;
}

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 16px;
  max-width: 800px;
  margin: 52px auto 0;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-bar {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

@media (min-width: 768px) {
  .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: var(--border-color);
    opacity: 0.5;
  }
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 44px;
  }
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Founder Note */
.founder-note {
  max-width: 720px;
  margin: 60px auto 0;
  text-align: center;
  position: relative;
}

.founder-quote-mark {
  font-size: 72px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -20px;
  font-family: Georgia, 'Times New Roman', serif;
}

.founder-quote {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-style: normal;
  border: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .founder-quote {
    font-size: 1.2rem;
  }
}

.founder-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.founder-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}

.founder-credit {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.founder-name {
  font-weight: 600;
  color: var(--text-primary);
}

.founder-role {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Testimonial Cards */
.testimonials-scroll {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  width: 100%;
  padding: 30px;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

@media (min-width: 640px) {
  .testimonial-card {
    width: calc(50% - 12px);
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    width: calc(33.333% - 16px);
  }
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #f59e0b;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.testimonial-divider {
  height: 1px;
  background-color: var(--border-color);
  margin-bottom: 16px;
  opacity: 0.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-tertiary);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-role {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ========================================
   How It Works Section
   ======================================== */

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 56px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.step-card {
  text-align: center;
}

@media (min-width: 768px) {
  .step-card {
    text-align: left;
  }
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
}

.step-card h3 {
  margin-bottom: 8px;
  font-size: 1.125rem;
}

.step-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
}

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

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 920px;
  margin: 0 auto;
}

.hero-feature-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 40px;
  background-color: var(--bg-secondary);
  border-left: 3px solid var(--accent);
  border-radius: 16px;
  transition: opacity 600ms ease-out, transform 600ms ease-out, box-shadow var(--transition-normal);
}

.hero-feature-card:hover {
  box-shadow: var(--shadow-md);
}

.hero-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(10, 102, 194, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

html.dark .hero-feature-icon {
  background-color: rgba(10, 102, 194, 0.15);
}

.hero-feature-icon svg {
  width: 24px;
  height: 24px;
}

.hero-feature-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
}

@media (min-width: 768px) {
  .hero-feature-content h3 {
    font-size: 1.5rem;
  }
}

.hero-feature-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  .hero-feature-content p {
    font-size: 1rem;
  }
}

.feature-lit-highlight {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 639px) {
  .hero-feature-card {
    flex-direction: column;
    padding: 28px;
  }
}

/* ========================================
   Features Grid
   ======================================== */

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 60px;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 30px;
  transition: opacity 600ms ease-out, transform 600ms ease-out, box-shadow var(--transition-normal);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
}

.feature-card .card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}

.feature-card .card-icon svg {
  width: 20px;
  height: 20px;
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ========================================
   Pricing Section
   ======================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pricing-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  padding: 32px var(--card-padding);
  position: relative;
  transition: box-shadow var(--transition-normal);
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
}

.pricing-card.highlighted {
  border-color: var(--accent);
  border-width: 2px;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.2;
}

.pricing-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-feature svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card .btn {
  width: 100%;
  padding: 12px;
}

.pricing-card.muted {
  opacity: 0.7;
}

.pricing-card .all-claimed {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background-color: var(--bg-tertiary);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

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

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-item .stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-item .stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

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

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--card-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: color var(--transition-fast);
  background: none;
  border: none;
  font-family: inherit;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  color: var(--text-muted);
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease;
}

.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   Final CTA Section
   ======================================== */

.final-cta {
  background-color: var(--bg-secondary);
  text-align: center;
}

.final-cta h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .final-cta h2 {
    font-size: 60px;
  }
}

.final-cta .cta-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.cta-lit-highlight {
  color: #0A66C2;
  font-weight: 600;
}

.final-cta .hero-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

.cta-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 400px;
  margin: 32px auto;
  color: var(--text-muted);
  font-size: 13px;
}

.cta-divider::before,
.cta-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--border-color);
}

/* Waitlist Form */
.waitlist-form {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.waitlist-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border: 1.5px solid var(--card-border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  background-color: var(--card-bg);
  color: var(--text-primary);
  transition: border-color var(--transition-fast);
  outline: none;
}

.waitlist-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

.waitlist-form input[type="email"]:focus {
  border-color: var(--accent);
}

.waitlist-form-lg {
  max-width: 480px;
  gap: 10px;
}

.waitlist-form-lg input[type="email"] {
  height: 48px;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 12px;
}

.waitlist-form-lg .btn {
  height: 48px;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 12px;
}

.waitlist-success-card {
  display: none;
  text-align: center;
  padding: 32px 24px;
}

.waitlist-success-card.show {
  display: block;
  animation: fadeUp 400ms ease-out;
}

.success-checkmark {
  width: 56px;
  height: 56px;
  max-width: 56px;
  max-height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-checkmark svg {
  width: 28px;
  height: 28px;
  max-width: 28px;
  max-height: 28px;
  color: #ffffff;
}

.waitlist-success-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.waitlist-success-card p {
  font-size: 1rem;
  color: var(--text-secondary);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.waitlist-error {
  display: none;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ef4444;
  padding: 12px 0;
}

.waitlist-error.show {
  display: block;
}

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

.footer {
  border-top: 1px solid var(--border-color);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
}

.footer-brand .footer-logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.footer-brand .footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-col .social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col .social-link svg {
  width: 18px;
  height: 18px;
}

.footer-linkedin {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  color: var(--text-secondary);
  transition: color 300ms ease;
}

.footer-linkedin:hover {
  color: #0A66C2;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

.powered-by {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  opacity: 0.7;
}

/* Minimal footer for legal/invite pages */
.footer-minimal {
  border-top: 1px solid var(--border-color);
  padding: 24px 0;
  text-align: center;
}

.footer-minimal-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 24px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-minimal-inner a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-minimal-inner a:hover {
  color: var(--accent);
}

.footer-minimal-inner .sep {
  color: var(--border-color);
}

/* ========================================
   Invite Page
   ======================================== */

/* Amber/Gold color variables */
:root {
  --color-amber-50: #FEF3C7;
  --color-amber-100: #FDE68A;
  --color-amber-200: #FCD34D;
  --color-amber-500: #F59E0B;
  --color-amber-600: #D97706;
  --color-amber-700: #B45309;
  --color-amber-800: #92400E;
}

html.dark {
  --color-amber-50: rgba(254, 243, 199, 0.08);
  --color-amber-100: rgba(253, 230, 138, 0.12);
}

.invite-hero-section {
  padding-top: calc(var(--navbar-height) + 24px);
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .invite-hero-section {
    padding-top: calc(var(--navbar-height) + 32px);
    padding-bottom: 48px;
  }
}

/* Invite Hero */
.invite-hero {
  padding-top: 0;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.invite-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.invite-hero p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
}

/* Founder's Letter */
.invite-letter {
  max-width: 680px;
  margin: 40px auto 0;
  padding: 32px 0 32px 28px;
  border-left: 3px solid var(--color-amber-500);
}

.invite-letter p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.invite-letter p:last-of-type {
  margin-bottom: 32px;
}

.invite-letter-signature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.founder-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-amber-500), var(--color-amber-600));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.founder-name {
  display: flex;
  flex-direction: column;
}

.founder-name strong {
  font-size: 1rem;
  color: var(--text-primary);
}

.founder-name span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Live Spots Counter */
.spots-counter-section {
  padding: 48px 0;
}

.spots-counter {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.spots-counter-number {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.spots-counter-number span:first-child {
  color: var(--color-amber-600);
}

html.dark .spots-counter-number span:first-child {
  color: var(--color-amber-500);
}

.spots-progress-track {
  width: 100%;
  height: 12px;
  background-color: var(--bg-tertiary);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 12px;
}

.spots-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-amber-500), var(--color-amber-600));
  border-radius: 6px;
  transition: width 800ms ease-out;
}

.spots-counter-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Price Escalation Ladder */
.price-ladder {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .price-ladder {
    grid-template-columns: repeat(4, 1fr);
  }

  .price-ladder-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.price-ladder-step {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  text-align: center;
  position: relative;
  transition: opacity var(--transition-normal);
}

.price-ladder-step:nth-child(2) {
  opacity: 0.85;
}

.price-ladder-step:nth-child(3) {
  opacity: 0.7;
}

.price-ladder-step:nth-child(4) {
  opacity: 0.55;
}

.price-ladder-step:nth-child(5) {
  opacity: 0.4;
}

.price-ladder-step-active {
  border-color: var(--color-amber-500);
  border-width: 2px;
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.15);
  opacity: 1 !important;
}

html.dark .price-ladder-step-active {
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.1);
}

.price-ladder-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-amber-500), var(--color-amber-600));
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.price-ladder-step h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.price-ladder-range {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.price-ladder-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.price-ladder-step-active .price-ladder-price {
  color: var(--color-amber-600);
}

html.dark .price-ladder-step-active .price-ladder-price {
  color: var(--color-amber-500);
}

.price-ladder-price span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.price-ladder-note {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.price-ladder-discount {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-amber-700);
  background-color: var(--color-amber-50);
  padding: 4px 12px;
  border-radius: 20px;
}

html.dark .price-ladder-discount {
  color: var(--color-amber-500);
}

.price-ladder-footnote {
  max-width: 680px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Savings Comparison */
.savings-comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .savings-comparison {
    grid-template-columns: 1fr 1fr;
  }
}

.savings-card {
  border-radius: var(--card-radius);
  padding: 32px var(--card-padding);
  text-align: center;
}

.savings-card-founder {
  background-color: var(--color-amber-50);
  border: 2px solid var(--color-amber-500);
}

.savings-card-regular {
  background-color: var(--bg-secondary);
  border: 1px solid var(--card-border);
}

.savings-card-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.savings-card-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.savings-card-founder .savings-card-price {
  color: var(--color-amber-600);
}

html.dark .savings-card-founder .savings-card-price {
  color: var(--color-amber-500);
}

.savings-card-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.savings-card-annual {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 4px;
}

.savings-card-note {
  display: block;
  margin-top: 12px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.savings-callout {
  max-width: 640px;
  margin: 24px auto 0;
  text-align: center;
  background-color: var(--bg-secondary);
  border-radius: var(--card-radius);
  padding: 20px 24px;
}

.savings-callout p {
  font-size: 1.125rem;
  color: var(--text-primary);
}

.savings-callout strong {
  color: var(--color-amber-600);
}

html.dark .savings-callout strong {
  color: var(--color-amber-500);
}

/* FM Benefits Grid (Value Stack) */
.fm-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .fm-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fm-benefit-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
}

.fm-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: var(--color-amber-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--color-amber-600);
}

html.dark .fm-benefit-icon {
  color: var(--color-amber-500);
}

.fm-benefit-icon svg {
  width: 22px;
  height: 22px;
}

.fm-benefit-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.fm-benefit-card p {
  font-size: 0.875rem;
  line-height: 1.65;
}

.fm-benefit-card {
  position: relative;
}

.fm-exclusive-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background-color: #0A66C2;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* WhatsApp Chat Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: background-color 300ms ease, transform 300ms ease;
  text-decoration: none;
}

.whatsapp-widget:hover {
  background-color: #1DA851;
  transform: scale(1.05);
}

.whatsapp-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 10px;
  white-space: nowrap;
  font-size: 12px;
  color: #fff;
  background-color: var(--text-primary);
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.whatsapp-widget:hover .whatsapp-tooltip {
  opacity: 1;
}

@media (max-width: 639px) {
  .whatsapp-widget {
    width: 50px;
    height: 50px;
  }

  .whatsapp-widget svg {
    width: 24px;
    height: 24px;
  }
}

/* Feature Attribution */
.fm-attribution-section {
  padding: 48px 0;
}

.fm-attribution {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 24px;
  background-color: var(--bg-secondary);
  border-radius: var(--card-radius);
  border: 1px solid var(--card-border);
}

.fm-attribution-main {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.5;
}

.fm-attribution-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.fm-attribution-link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-amber-600);
  transition: color var(--transition-fast);
}

html.dark .fm-attribution-link {
  color: var(--color-amber-500);
}

.fm-attribution-link:hover {
  color: var(--color-amber-700);
}

html.dark .fm-attribution-link:hover {
  color: var(--color-amber-200);
}

/* Invite Steps (updated for sub-text) */
.invite-steps {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.invite-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.invite-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-amber-500), var(--color-amber-600));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.invite-step strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.invite-step p {
  font-size: 0.9375rem;
  padding-top: 0;
  line-height: 1.6;
}

/* Invite CTA */
.invite-cta {
  text-align: center;
  padding: 48px 0 0;
}

.invite-cta-heading {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.invite-cta .btn {
  font-size: 1.125rem;
  padding: 16px 40px;
}

.invite-cta-secondary {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* Amber Button */
.btn-amber {
  background: linear-gradient(135deg, var(--color-amber-500), var(--color-amber-600));
  color: #ffffff;
}

.btn-amber:hover {
  background: linear-gradient(135deg, var(--color-amber-600), var(--color-amber-700));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

/* ========================================
   Legal Pages
   ======================================== */

.legal-page {
  padding-top: calc(var(--navbar-height) + 48px);
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 8px;
}

.legal-content .legal-updated {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-content h3 {
  font-size: 1.0625rem;
  margin-top: 24px;
  margin-bottom: 8px;
}

.terms-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.875rem;
}

.terms-table th,
.terms-table td {
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--border);
}

.terms-table th {
  background: var(--card-bg);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.terms-table td:first-child {
  font-weight: 500;
}

@media (max-width: 600px) {
  .terms-table {
    font-size: 0.8125rem;
  }
  .terms-table th,
  .terms-table td {
    padding: 8px 10px;
  }
}

/* Fair Usage Table */
.fair-usage-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
}

.fair-usage-table th,
.fair-usage-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--card-border, rgba(255,255,255,0.1));
}

.fair-usage-table th {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.fair-usage-table td {
  color: var(--text-secondary);
}

.fair-usage-table tbody tr:hover {
  background-color: var(--bg-tertiary, rgba(255,255,255,0.03));
}

@media (max-width: 600px) {
  .fair-usage-table {
    font-size: 13px;
  }
  .fair-usage-table th,
  .fair-usage-table td {
    padding: 8px 10px;
  }
}

.legal-content p {
  margin-bottom: 16px;
  font-size: 0.9375rem;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 20px;
}

.legal-content li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 8px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.legal-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--text-muted);
}

/* ========================================
   Animations
   ======================================== */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 400ms ease-out, transform 400ms ease-out;
}

.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Utility
   ======================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.body-locked {
  overflow: hidden;
}

/* Wide mockup variant */
.browser-mockup-wide .browser-body {
  min-height: 240px;
}

@media (min-width: 768px) {
  .browser-mockup-wide .browser-body {
    min-height: 320px;
  }
}

/* ========================================
   Billing Toggle
   ======================================== */

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.billing-toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.billing-toggle-label.active {
  color: var(--text-primary);
}

.billing-toggle-switch {
  width: 48px;
  height: 26px;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.billing-toggle-switch.annual {
  background-color: var(--accent);
  border-color: var(--accent);
}

.billing-toggle-knob {
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.billing-toggle-switch.annual .billing-toggle-knob {
  transform: translateX(22px);
}

.billing-save-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background-color: rgba(10, 102, 194, 0.08);
  padding: 3px 10px;
  border-radius: 100px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

html.dark .billing-save-badge {
  background-color: rgba(10, 102, 194, 0.15);
}

.billing-save-badge.visible {
  opacity: 1;
}

/* ========================================
   Pricing Card Additions
   ======================================== */

.pricing-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.pricing-includes {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pricing-footnote {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}

.pricing-badge.coming-soon {
  background-color: var(--bg-tertiary);
  color: var(--text-muted);
}

.pricing-feature.muted svg {
  color: var(--text-muted);
}

.pricing-feature.muted span {
  color: var(--text-muted);
}

/* ========================================
   Feature Comparison Table
   ======================================== */

.comparison-section {
  margin-top: 80px;
}

.comparison-heading {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .comparison-heading {
    font-size: 2rem;
  }
}

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
}

.comparison-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table thead {
  position: sticky;
  top: 0;
  z-index: 2;
}

.comparison-table th {
  background-color: var(--bg-secondary);
  padding: 14px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border-color);
  white-space: nowrap;
}

.comparison-table th:first-child {
  text-align: left;
  min-width: 200px;
}

.comparison-table .category-row td {
  background-color: var(--bg-secondary);
  padding: 12px 16px;
  font-weight: 700;
  font-size: 13px;
  color: var(--text-primary);
  border-top: 1px solid var(--border-color);
  cursor: pointer;
  user-select: none;
}

.comparison-table .category-row td:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.comparison-table .category-chevron {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.comparison-table .category-row.collapsed .category-chevron {
  transform: rotate(-90deg);
}

.comparison-table .feature-row td {
  padding: 10px 16px;
  text-align: center;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-color);
}

.comparison-table .feature-row td:first-child {
  text-align: left;
  color: var(--text-primary);
  font-weight: 500;
}

.comparison-table .feature-row.hidden-row {
  display: none;
}

.comparison-table .check {
  color: var(--accent);
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.comparison-table .dash {
  color: var(--text-muted);
  font-size: 16px;
}

.comparison-table .value {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

@media (max-width: 767px) {
  .comparison-table th:first-child,
  .comparison-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background-color: var(--card-bg);
  }

  .comparison-table .category-row td:first-child {
    background-color: var(--bg-secondary);
  }

  .comparison-table thead th:first-child {
    background-color: var(--bg-secondary);
  }
}

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

.footer-contact {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 4px 0;
}

.footer-entity {
  font-size: 13px;
  color: var(--text-muted);
}

/* ========================================
   Tooltips
   ======================================== */

[data-tooltip] {
  position: relative;
  cursor: help;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--text-primary);
  color: var(--bg-primary);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  padding: 8px 12px;
  border-radius: 6px;
  white-space: normal;
  width: max-content;
  max-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  pointer-events: none;
  z-index: 100;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

[data-tooltip]::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--text-primary);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  pointer-events: none;
  z-index: 100;
}

[data-tooltip]:hover::after,
[data-tooltip]:hover::before {
  opacity: 1;
  visibility: visible;
}

[data-tooltip].tooltip-active::after,
[data-tooltip].tooltip-active::before {
  opacity: 1;
  visibility: visible;
}

/* Tooltip repositioning for comparison table to avoid overflow */
.comparison-table [data-tooltip]::after {
  left: 0;
  transform: none;
}

.comparison-table [data-tooltip]::before {
  left: 20px;
  transform: none;
}

/* Pricing footnote */
.pricing-footnote {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 8px;
}

.pricing-footnote p {
  font-size: 13px;
  color: var(--text-muted);
}

.pricing-footnote a {
  color: var(--accent);
  text-decoration: underline;
}

/* ========================================
   Timeline Page
   ======================================== */

/* Timeline Hero */
.timeline-hero {
  padding-top: calc(var(--navbar-height) + 64px);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.timeline-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.timeline-hero-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* Filter Bar */
.timeline-filter-bar {
  position: sticky;
  top: var(--navbar-height);
  z-index: 100;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  transition: background-color var(--transition-normal);
}

.timeline-filter {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.timeline-filter::-webkit-scrollbar {
  display: none;
}

.timeline-filter-pill {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1.5px solid var(--border-color);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.timeline-filter-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.timeline-filter-pill.active {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.timeline-filter-count {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Timeline Container */
.timeline-section {
  padding: 48px 0 96px;
}

.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 32px;
}

.timeline-line {
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border-color);
}

/* Timeline Entry */
.timeline-entry {
  position: relative;
  margin-bottom: 32px;
}

.timeline-entry:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 24px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 3px solid var(--accent);
  z-index: 1;
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.timeline-entry[data-category="create"] .timeline-dot {
  border-color: #0A66C2;
}

.timeline-entry[data-category="grow"] .timeline-dot {
  border-color: #059669;
}

.timeline-entry[data-category="engage"] .timeline-dot {
  border-color: #7C3AED;
}

.timeline-entry[data-category="convert"] .timeline-dot {
  border-color: #EA580C;
}

.timeline-entry[data-category="platform"] .timeline-dot {
  border-color: #6B7280;
}

/* Timeline Card */
.timeline-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
}

.timeline-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.timeline-date {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Category Badges */
.timeline-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.timeline-category-create {
  background-color: rgba(10, 102, 194, 0.1);
  color: #0A66C2;
}

html.dark .timeline-category-create {
  background-color: rgba(10, 102, 194, 0.2);
  color: #60a5fa;
}

.timeline-category-grow {
  background-color: rgba(5, 150, 105, 0.1);
  color: #059669;
}

html.dark .timeline-category-grow {
  background-color: rgba(5, 150, 105, 0.2);
  color: #34d399;
}

.timeline-category-engage {
  background-color: rgba(124, 58, 237, 0.1);
  color: #7C3AED;
}

html.dark .timeline-category-engage {
  background-color: rgba(124, 58, 237, 0.2);
  color: #a78bfa;
}

.timeline-category-convert {
  background-color: rgba(234, 88, 12, 0.1);
  color: #EA580C;
}

html.dark .timeline-category-convert {
  background-color: rgba(234, 88, 12, 0.2);
  color: #fb923c;
}

.timeline-category-platform {
  background-color: rgba(107, 114, 128, 0.1);
  color: #6B7280;
}

html.dark .timeline-category-platform {
  background-color: rgba(107, 114, 128, 0.2);
  color: #9ca3af;
}

.timeline-card-title {
  font-size: 1.125rem;
  margin-bottom: 6px;
}

.timeline-card-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* FM Attribution Badge (for future entries) */
.timeline-fm-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  background-color: var(--color-amber-50);
  border: 1px solid var(--color-amber-200);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-amber-700);
}

html.dark .timeline-fm-badge {
  color: var(--color-amber-500);
  border-color: var(--color-amber-600);
}

.timeline-fm-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Timeline entry show/hide for filtering */
.timeline-entry.timeline-hidden {
  display: none;
}

/* Navbar Timeline Link */
.navbar-timeline-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.navbar-timeline-link:hover {
  color: var(--accent);
}

/* Responsive: larger screens - center the timeline */
@media (min-width: 768px) {
  .timeline {
    padding-left: 48px;
  }

  .timeline-line {
    left: 15px;
  }

  .timeline-dot {
    left: -48px;
    width: 18px;
    height: 18px;
  }

  .timeline-entry {
    margin-bottom: 40px;
  }
}
