@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Syne:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS (matching app theme) ── */
:root {
  --bg: #07080d;
  --surface: #0d1017;
  --surface2: #131822;
  --border: #1e2535;
  --accent: #3dffc0;
  --accent2: #4d9fff;
  --accent3: #ff6b6b;
  --accent-dim: rgba(61, 255, 192, 0.10);
  --text: #e2e8f0;
  --text-muted: #64748b;
  --text-dim: #94a3b8;
  --glow: rgba(61, 255, 192, 0.15);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.75;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 8, 13, 0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(30, 37, 53, 0.5);
  transition: background 0.3s;
}

.lp-nav-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.lp-nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.lp-nav-links a:hover { color: var(--accent); }

.lp-nav-cta {
  background: var(--accent) !important;
  color: #07080d !important;
  padding: 0.5rem 1.25rem;
  border-radius: 0.375rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem !important;
  letter-spacing: 0.06em;
  transition: opacity 0.2s, transform 0.2s !important;
}

.lp-nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* Mobile nav toggle */
.lp-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  padding: 0.5rem 0.625rem;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.lp-menu-toggle span {
  display: block;
  width: 1.125rem;
  height: 2px;
  background: var(--text-dim);
  border-radius: 1px;
  transition: all 0.2s;
}

/* ── HERO ── */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(61,255,192,0.06) 0%, rgba(77,159,255,0.03) 40%, transparent 70%);
  pointer-events: none;
}

.lp-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

/* Grid background */
.lp-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,37,53,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,37,53,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 100%);
  pointer-events: none;
}

.lp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-dim);
  border: 1px solid rgba(61,255,192,0.22);
  border-radius: 100px;
  padding: 0.375rem 1.125rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.07em;
  margin-bottom: 2rem;
  animation: fadeInDown 0.6s ease-out;
}

.lp-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

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

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

.lp-hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s ease-out 0.1s both;
}

.lp-hero h1 .hl { color: var(--accent); }
.lp-hero h1 .hl2 { color: var(--accent2); }

.lp-hero-sub {
  font-size: 1.125rem;
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  animation: fadeInUp 0.7s ease-out 0.25s both;
}

.lp-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease-out 0.4s both;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.lp-btn-primary {
  background: var(--accent);
  color: #07080d;
  box-shadow: 0 0 30px rgba(61,255,192,0.15);
}

.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(61,255,192,0.25);
}

.lp-btn-secondary {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
}

.lp-btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.lp-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  animation: fadeInUp 0.7s ease-out 0.55s both;
}

.lp-stat-value {
  font-family: 'Space Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.lp-stat-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── SECTIONS COMMON ── */
.lp-section {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.lp-section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.lp-section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.lp-section-desc {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.lp-divider {
  border: none;
  height: 1px;
  background: var(--border);
  max-width: 1100px;
  margin: 0 auto;
}

/* ── WHAT IS IT ── */
.lp-what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.lp-what-text p {
  color: var(--text-dim);
  font-size: 0.9375rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

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

.lp-what-highlight {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1.25rem 1.5rem;
}

.lp-what-highlight .wh-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.lp-what-highlight p {
  font-size: 0.8125rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0;
}

.lp-what-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lp-mini-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.625rem;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.25s, transform 0.25s;
}

.lp-mini-card:hover {
  border-color: rgba(61,255,192,0.25);
  transform: translateY(-2px);
}

.lp-mini-card-icon {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.lp-mini-card h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 0.375rem;
}

.lp-mini-card p {
  font-size: 0.8125rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ── FEATURES ── */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lp-feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem 1.75rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.lp-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.lp-feature-card:hover {
  border-color: rgba(61,255,192,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.lp-feature-card:hover::before { opacity: 1; }

.lp-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  background: var(--accent-dim);
  border: 1px solid rgba(61,255,192,0.15);
}

.lp-feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 0.625rem;
}

.lp-feature-card p {
  font-size: 0.8125rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* alternate icon colors */
.lp-feature-card:nth-child(2) .lp-feature-icon { background: rgba(77,159,255,0.1); border-color: rgba(77,159,255,0.15); }
.lp-feature-card:nth-child(3) .lp-feature-icon { background: rgba(167,139,250,0.1); border-color: rgba(167,139,250,0.15); }
.lp-feature-card:nth-child(4) .lp-feature-icon { background: rgba(251,146,60,0.1); border-color: rgba(251,146,60,0.15); }
.lp-feature-card:nth-child(5) .lp-feature-icon { background: rgba(244,114,182,0.1); border-color: rgba(244,114,182,0.15); }
.lp-feature-card:nth-child(6) .lp-feature-icon { background: rgba(52,211,153,0.1); border-color: rgba(52,211,153,0.15); }

/* ── THE 8 STEPS ── */
.lp-steps-timeline {
  position: relative;
  padding-left: 3rem;
}

.lp-steps-timeline::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent2), #a78bfa, #fb923c, #f472b6, #34d399, #60a5fa, #facc15);
  border-radius: 2px;
}

.lp-step-item {
  position: relative;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.625rem;
  transition: border-color 0.25s;
}

.lp-step-item:hover { border-color: rgba(61,255,192,0.2); }

.lp-step-item::before {
  content: '';
  position: absolute;
  left: -2.625rem;
  top: 1.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
  z-index: 1;
}

.lp-step-item:nth-child(2)::before { background: var(--accent2); }
.lp-step-item:nth-child(3)::before { background: #a78bfa; }
.lp-step-item:nth-child(4)::before { background: #fb923c; }
.lp-step-item:nth-child(5)::before { background: #f472b6; }
.lp-step-item:nth-child(6)::before { background: #34d399; }
.lp-step-item:nth-child(7)::before { background: #60a5fa; }
.lp-step-item:nth-child(8)::before { background: #facc15; }

.lp-step-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.lp-step-item:nth-child(2) .lp-step-num { color: var(--accent2); }
.lp-step-item:nth-child(3) .lp-step-num { color: #a78bfa; }
.lp-step-item:nth-child(4) .lp-step-num { color: #fb923c; }
.lp-step-item:nth-child(5) .lp-step-num { color: #f472b6; }
.lp-step-item:nth-child(6) .lp-step-num { color: #34d399; }
.lp-step-item:nth-child(7) .lp-step-num { color: #60a5fa; }
.lp-step-item:nth-child(8) .lp-step-num { color: #facc15; }

.lp-step-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.375rem;
}

.lp-step-desc {
  font-size: 0.8125rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ── WHO IS IT FOR ── */
.lp-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lp-audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}

.lp-audience-card:hover {
  border-color: rgba(61,255,192,0.2);
  transform: translateY(-3px);
}

.lp-audience-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.lp-audience-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.lp-audience-card p {
  font-size: 0.8125rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ── CTA SECTION ── */
.lp-cta-section {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
}

.lp-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(61,255,192,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.lp-cta-box {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid rgba(61,255,192,0.15);
  border-radius: 1rem;
  padding: 4rem 3rem;
  box-shadow: 0 0 60px rgba(61,255,192,0.05);
}

.lp-cta-box h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}

.lp-cta-box p {
  color: var(--text-dim);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.lp-free-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.2);
  color: #34d399;
  padding: 0.25rem 0.875rem;
  border-radius: 100px;
  font-family: 'Space Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

/* ── FOOTER ── */
.lp-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.lp-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.lp-footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.lp-footer-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.lp-footer-col h4 {
  font-family: 'Space Mono', monospace;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.lp-footer-col a {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

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

.lp-footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.lp-footer-copy {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.lp-footer-legal {
  display: flex;
  gap: 1.5rem;
}

.lp-footer-legal a {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ── SELF-EXPLANATORY CALLOUT ── */
.lp-selfx {
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.lp-selfx::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(61,255,192,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.lp-selfx-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid rgba(61,255,192,0.2);
  border-radius: 1.25rem;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(61,255,192,0.04);
}

.lp-selfx-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 30%, var(--accent2) 70%, transparent 100%);
}

.lp-selfx-top {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
}

.lp-selfx-icon {
  font-size: 3.5rem;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 0 20px rgba(61,255,192,0.3));
}

.lp-selfx-heading {
  flex: 1;
}

.lp-selfx-heading .lp-section-label {
  margin-bottom: 0.75rem;
}

.lp-selfx-heading h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.lp-selfx-heading h2 .hl { color: var(--accent); }

.lp-selfx-heading p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 560px;
}

.lp-selfx-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.lp-selfx-point {
  background: rgba(61,255,192,0.04);
  border: 1px solid rgba(61,255,192,0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: border-color 0.25s, background 0.25s;
}

.lp-selfx-point:hover {
  border-color: rgba(61,255,192,0.25);
  background: rgba(61,255,192,0.07);
}

.lp-selfx-point-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.lp-selfx-point h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: 0.375rem;
}

.lp-selfx-point p {
  font-size: 0.8125rem;
  color: var(--text-dim);
  line-height: 1.65;
}

.lp-selfx-quote {
  margin-top: 2.5rem;
  padding: 1.25rem 1.75rem;
  background: var(--surface2);
  border-left: 3px solid var(--accent);
  border-radius: 0 0.5rem 0.5rem 0;
  font-family: 'Space Mono', monospace;
  font-size: 0.875rem;
  color: var(--accent);
  line-height: 1.7;
}

.lp-selfx-quote span {
  color: var(--text-dim);
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
}

@media (max-width: 768px) {
  .lp-selfx { padding: 3rem 1.5rem; }
  .lp-selfx-inner { padding: 2rem 1.5rem; }
  .lp-selfx-top { flex-direction: column; gap: 1.5rem; }
  .lp-selfx-icon { font-size: 2.5rem; }
  .lp-selfx-points { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .lp-selfx-points { grid-template-columns: repeat(2, 1fr); }
}

/* ── SCROLL ANIMATIONS ── */
.lp-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .lp-nav-links { display: none; }
  .lp-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    gap: 1rem;
  }
  .lp-menu-toggle { display: flex; }

  .lp-hero { min-height: auto; padding: 7rem 1.5rem 4rem; }
  .lp-hero h1 { font-size: 2.25rem; }
  .lp-hero-stats { gap: 1.5rem; }

  .lp-section { padding: 4rem 1.5rem; }

  .lp-what-grid { grid-template-columns: 1fr; }
  .lp-features-grid { grid-template-columns: 1fr; }
  .lp-audience-grid { grid-template-columns: 1fr; }

  .lp-steps-timeline { padding-left: 2.5rem; }

  .lp-cta-box { padding: 3rem 1.5rem; }

  .lp-footer-top { flex-direction: column; }
  .lp-footer-bottom { flex-direction: column; text-align: center; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-audience-grid { grid-template-columns: repeat(2, 1fr); }
}
