/* Landing styles — tokens (--lp-*) live in logged-out-tokens.css (dark + light). */

/* ---------------------------------------------------------------
   BASE
   --------------------------------------------------------------- */
.landing-container {
  max-width: var(--lp-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-heading {
  font-family: var(--lp-font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--lp-text);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

/* ---------------------------------------------------------------
   SECTION 1: HERO
   --------------------------------------------------------------- */
.landing-hero {
  padding: 6rem 0 5rem;
  background: linear-gradient(180deg, var(--lp-bg-darker) 0%, var(--lp-bg-dark) 100%);
  position: relative;
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-headline {
  font-family: var(--lp-font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--lp-text);
  margin: 0 0 1.25rem;
  letter-spacing: -0.025em;
}

.hero-sub {
  font-family: var(--lp-font-body);
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--lp-text-secondary);
  margin: 0 0 2rem;
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--lp-font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--lp-radius-sm);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease-out;
  line-height: 1;
}

.btn-cta-primary {
  background: var(--lp-accent-warm);
  color: #1a1a1a;
  box-shadow: 0 2px 12px rgba(245,158,11,0.3);
}

.btn-cta-primary:hover {
  background: var(--lp-accent-warm-hover);
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 20px rgba(245,158,11,0.4);
}

.btn-cta-primary:active {
  transform: translateY(0) scale(0.99);
}

.hero-cta-note {
  font-family: var(--lp-font-body);
  font-size: 0.85rem;
  color: var(--lp-text-muted);
}

.hero-trust-signal {
  border-left: 3px solid var(--lp-accent);
  padding: 0.875rem 1rem;
  background: rgba(14,165,233,0.04);
  border-radius: 0 var(--lp-radius-sm) var(--lp-radius-sm) 0;
  max-width: 480px;
}

.hero-quote {
  font-family: var(--lp-font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--lp-text-secondary);
  font-style: italic;
  margin: 0;
}

.hero-cite {
  display: block;
  font-family: var(--lp-font-body);
  font-size: 0.8rem;
  color: var(--lp-text-muted);
  font-style: normal;
  margin-top: 0.5rem;
}

/* Hero Visual — compact chart preview */
.hero-chart-preview {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  overflow: hidden;
  box-shadow: var(--lp-shadow);
}

.hero-chart-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--lp-border);
}

.hero-chart-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lp-text-muted);
  opacity: 0.4;
}

.hero-chart-dot:first-child { background: #ef4444; opacity: 0.7; }
.hero-chart-dot:nth-child(2) { background: #f59e0b; opacity: 0.7; }
.hero-chart-dot:nth-child(3) { background: #22c55e; opacity: 0.7; }

.hero-chart-title {
  font-family: var(--lp-font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lp-text-secondary);
  margin-left: 0.5rem;
}

.hero-chart-shell {
  padding: 0.875rem 0.875rem 0.625rem;
}

.hero-charts-container {
  position: relative;
  height: 248px;
}

.hero-chart-panel {
  position: absolute;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
}

.hero-chart-panel.active {
  display: block;
  position: relative;
}

.hero-chart-panel canvas {
  width: 100% !important;
  height: 100% !important;
}

.hero-chart-tabs {
  display: flex;
  gap: 0.5rem;
  padding: 0 0.875rem 0.875rem;
}

.hero-chart-tab {
  flex: 1;
  min-height: 42px;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--lp-text-secondary);
  font-family: var(--lp-font-body);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem;
  transition: all 0.18s ease;
  cursor: pointer;
}

.hero-chart-tab i {
  color: var(--lp-accent);
  font-size: 0.8rem;
}

.hero-chart-tab:hover,
.hero-chart-tab:focus-visible {
  border-color: var(--lp-accent);
  color: var(--lp-text);
  background: rgba(14,165,233,0.12);
  outline: none;
}

.hero-chart-tab.active {
  border-color: var(--lp-accent);
  background: rgba(14,165,233,0.16);
  color: var(--lp-text);
  box-shadow: 0 0 0 1px rgba(14,165,233,0.25) inset;
}

/* ---------------------------------------------------------------
   SECTION 2: HOW IT WORKS
   --------------------------------------------------------------- */
.landing-how-it-works {
  padding: 5rem 0;
  background: var(--lp-bg-dark);
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.step-item {
  flex: 1;
  max-width: 240px;
  text-align: center;
  padding: 0 1rem;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 1.5rem;
  color: var(--lp-accent);
  font-size: 0.85rem;
  opacity: 0.5;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-accent) 0%, #0284c7 100%);
  color: white;
  font-family: var(--lp-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 0 20px rgba(14,165,233,0.25);
}

.step-item h3 {
  font-family: var(--lp-font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lp-text);
  margin: 0 0 0.5rem;
}

.step-item p {
  font-family: var(--lp-font-body);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--lp-text-secondary);
  margin: 0;
}

/* ---------------------------------------------------------------
   QUICK ANSWER (GEO)
   --------------------------------------------------------------- */
.quick-answer-section {
  padding: 2.5rem 0;
  background: var(--lp-bg-darker);
}

.ai-answer-box {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(14,165,233,0.04);
  border: 1px solid rgba(14,165,233,0.15);
  border-radius: var(--lp-radius);
  padding: 1.5rem 2rem;
}

.ai-answer-box p {
  font-family: var(--lp-font-body);
  margin: 0;
  line-height: 1.7;
  color: var(--lp-text-secondary);
}

.ai-answer-box p:first-child {
  margin-bottom: 0.75rem;
}

.ai-answer-box strong {
  color: var(--lp-text);
}

/* ---------------------------------------------------------------
   SECTION 3: SOCIAL PROOF
   --------------------------------------------------------------- */
.landing-social-proof {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--lp-bg-dark) 0%, var(--lp-bg-darker) 100%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.testimonial-featured {
  grid-row: span 1;
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-featured blockquote {
  font-family: var(--lp-font-body);
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--lp-text);
  font-style: italic;
  margin: 0 0 1.25rem;
}

.testimonial-card-sm {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 1.5rem;
}

.testimonial-card-sm blockquote {
  font-family: var(--lp-font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--lp-text-secondary);
  font-style: italic;
  margin: 0 0 1rem;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-meta strong {
  font-family: var(--lp-font-heading);
  color: var(--lp-text);
  font-size: 0.95rem;
}

.testimonial-meta span {
  font-family: var(--lp-font-body);
  color: var(--lp-text-muted);
  font-size: 0.8rem;
}

/* Community Stats */
.community-stats-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2rem;
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  margin-bottom: 3rem;
}

.cs-item {
  text-align: center;
}

.cs-num {
  display: block;
  font-family: var(--lp-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--lp-accent);
}

.cs-label {
  display: block;
  font-family: var(--lp-font-body);
  font-size: 0.8rem;
  color: var(--lp-text-muted);
  margin-top: 0.25rem;
}

/* Community Findings */
.community-findings {
  text-align: center;
}

.community-findings h3 {
  font-family: var(--lp-font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--lp-text);
  margin-bottom: 1.5rem;
}

.findings-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.finding-card {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 180px;
  text-align: left;
  transition: border-color 0.2s;
}

.finding-card:hover {
  border-color: rgba(14,165,233,0.3);
}

.finding-supp {
  font-family: var(--lp-font-heading);
  font-weight: 600;
  color: var(--lp-text);
  font-size: 0.95rem;
}

.finding-badge {
  font-family: var(--lp-font-body);
  font-size: 0.85rem;
  font-weight: 600;
}

.finding-up {
  color: #22c55e;
}

.finding-note {
  font-family: var(--lp-font-body);
  font-size: 0.75rem;
  color: var(--lp-text-muted);
}

.findings-link {
  font-family: var(--lp-font-body);
  color: var(--lp-accent);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.findings-link:hover {
  color: #38bdf8;
}

.findings-link i {
  margin-left: 0.25rem;
  font-size: 0.8rem;
}

/* ---------------------------------------------------------------
   SECTION 4: PERSONAS (tab-based)
   --------------------------------------------------------------- */
.landing-personas {
  padding: 5rem 0;
  background: var(--lp-bg-dark);
}

.persona-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.persona-tab {
  font-family: var(--lp-font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  background: transparent;
  color: var(--lp-text-secondary);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.persona-tab:hover {
  border-color: var(--lp-accent);
  color: var(--lp-text);
}

.persona-tab.active {
  background: rgba(14,165,233,0.12);
  border-color: var(--lp-accent);
  color: var(--lp-text);
}

.persona-tab i {
  font-size: 0.9rem;
}

.persona-panels {
  max-width: 640px;
  margin: 0 auto;
}

.persona-panel {
  display: none;
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 2rem;
  animation: fadeSlideIn 0.3s ease-out;
}

.persona-panel.active {
  display: block;
}

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

.persona-panel h3 {
  font-family: var(--lp-font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--lp-text);
  margin: 0 0 1.25rem;
}

.persona-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.persona-panel li {
  font-family: var(--lp-font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--lp-text-secondary);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.persona-panel li::before {
  content: "\2713";
  color: var(--lp-accent);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.persona-panel li strong {
  color: var(--lp-text);
}

/* ---------------------------------------------------------------
   SECTION 5: TRUST & SECURITY
   --------------------------------------------------------------- */
.landing-trust {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--lp-bg-darker) 0%, var(--lp-bg-dark) 100%);
}

.trust-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.trust-founder {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.founder-photo-wrap {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--lp-bg-card);
  border: 2px solid var(--lp-border);
}

.founder-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-photo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--lp-text-muted);
  background: var(--lp-bg-card);
}

.founder-bio h3 {
  font-family: var(--lp-font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--lp-text);
  margin: 0 0 0.75rem;
}

.founder-bio p {
  font-family: var(--lp-font-body);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--lp-text-secondary);
  margin: 0;
}

.founder-bio strong {
  color: var(--lp-text);
}

.trust-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.trust-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.trust-point > i {
  color: var(--lp-accent);
  font-size: 1.15rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.trust-point strong {
  display: block;
  font-family: var(--lp-font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lp-text);
}

.trust-point span {
  font-family: var(--lp-font-body);
  font-size: 0.85rem;
  color: var(--lp-text-muted);
  line-height: 1.4;
}

/* Integrations */
.trust-integrations {
  text-align: center;
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 2rem;
}

.trust-integrations h3 {
  font-family: var(--lp-font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--lp-text);
  margin: 0 0 0.5rem;
}

.trust-integrations > p {
  font-family: var(--lp-font-body);
  font-size: 0.9rem;
  color: var(--lp-text-secondary);
  margin: 0 0 1.25rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

.integration-badges {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.int-badge {
  font-family: var(--lp-font-body);
  font-size: 0.85rem;
  color: var(--lp-text-secondary);
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.15);
  border-radius: 999px;
  padding: 0.4rem 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.int-badge i {
  color: var(--lp-accent);
  font-size: 0.9rem;
}

.int-badge-soon {
  opacity: 0.5;
}

/* ---------------------------------------------------------------
   SECTION 6: FAQ
   --------------------------------------------------------------- */
.landing-faq {
  padding: 5rem 0;
  background: var(--lp-bg-dark);
}

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

.faq-item {
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--lp-bg-card);
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(14,165,233,0.2);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--lp-font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-text);
  line-height: 1.4;
  gap: 1rem;
}
.faq-q:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring, 0 0 0 3px color-mix(in oklch, var(--lp-accent) 40%, transparent));
  border-radius: var(--lp-radius-sm);
}

.faq-q:hover {
  background: rgba(14,165,233,0.03);
}

.faq-chevron {
  color: var(--lp-accent);
  font-size: 0.85rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-a {
  max-height: 600px;
}

.faq-a p {
  font-family: var(--lp-font-body);
  padding: 0 1.5rem 1.25rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--lp-text-secondary);
}

/* ---------------------------------------------------------------
   SECTION 7: FINAL CTA
   --------------------------------------------------------------- */
.landing-final-cta {
  padding: 5rem 0 6rem;
  background: linear-gradient(135deg, var(--lp-bg-darker) 0%, var(--lp-final-cta-mid) 50%, var(--lp-bg-dark) 100%);
  text-align: center;
}

.landing-final-cta h2 {
  font-family: var(--lp-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--lp-text);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.landing-final-cta > .landing-container > p {
  font-family: var(--lp-font-body);
  font-size: 1.05rem;
  color: var(--lp-text-secondary);
  margin: 0 0 2rem;
  line-height: 1.6;
}

.final-cta-note {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--lp-font-body);
  font-size: 0.85rem;
  color: var(--lp-text-muted);
}

/* ---------------------------------------------------------------
   STICKY CTA BAR
   --------------------------------------------------------------- */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--lp-sticky-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--lp-border);
  padding: 0.75rem 1.5rem;
  z-index: 1000;
  display: flex;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-cta-bar .btn-cta {
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
}

/* ---------------------------------------------------------------
   SCROLL-TRIGGERED ANIMATIONS
   --------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .sticky-cta-bar {
    transition: none;
  }
  .faq-a {
    transition: none;
  }
}

/* ---------------------------------------------------------------
   MOBILE RESPONSIVE
   --------------------------------------------------------------- */
@media (max-width: 768px) {
  .section-heading {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  /* Hero */
  .landing-hero { padding: 3rem 0 2.5rem; }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-headline {
    font-size: 1.85rem;
    text-align: center;
    line-height: 1.2;
  }

  .hero-sub {
    text-align: center;
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-cta-group {
    align-items: center;
    width: 100%;
  }

  .hero-cta-group .btn-cta {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    font-size: 1.05rem;
  }

  .hero-cta-note { text-align: center; }

  .hero-trust-signal {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-chart-shell {
    padding: 0.75rem 0.75rem 0.5rem;
  }

  .hero-charts-container {
    height: 210px;
  }

  .hero-chart-tabs {
    gap: 0.4rem;
    padding: 0 0.75rem 0.75rem;
  }

  .hero-chart-tab {
    min-height: 44px;
    font-size: 0.74rem;
    padding: 0.45rem;
  }

  .hero-chart-tab span {
    white-space: nowrap;
  }

  /* How It Works */
  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .step-connector {
    padding-top: 0;
    transform: rotate(90deg);
    margin: 0.5rem 0;
  }

  .step-item {
    max-width: 100%;
  }

  /* Social Proof */
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .community-stats-bar {
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .cs-num { font-size: 1.5rem; }

  .findings-grid {
    gap: 0.75rem;
  }

  .finding-card {
    min-width: 140px;
    flex: 1 1 140px;
  }

  /* Personas */
  .persona-tabs {
    gap: 0.5rem;
  }

  .persona-tab {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  /* Trust */
  .trust-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trust-founder {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .founder-bio h3,
  .founder-bio p {
    text-align: left;
  }

  /* FAQ */
  .faq-q {
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
  }

  .faq-a p {
    padding: 0 1.25rem 1rem;
    font-size: 0.9rem;
  }

  /* Final CTA */
  .landing-final-cta h2 {
    font-size: 1.5rem;
  }

  .landing-final-cta .btn-cta {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  /* Sticky CTA: full width on mobile */
  .sticky-cta-bar .btn-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 1.6rem; }
  .community-stats-bar { gap: 1rem; }
  .cs-item { flex: 1 1 40%; }
}

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.active { display: flex; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-image { max-width: 100%; max-height: 90vh; border-radius: 8px; }
.lightbox-close {
  position: absolute;
  top: -2rem;
  right: 0;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}
