/* ============================================
   DATAMETRE — Landing Page v2.0
   Premium editorial data-viz interface
   ============================================ */

/* ============================================
   1. PAGE LAYOUT OVERRIDE FOR HOME
   ============================================ */

[data-page="home"] .site-wrapper {
  display: block;
}

[data-page="home"] .sidebar,
[data-page="home"] .sidebar__mobile-btn {
  display: none;
}

[data-page="home"] .site-main {
  display: none; /* replaced by direct body markup */
}

/* ============================================
   2. TOP NAVIGATION
   ============================================ */

.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}

.topnav.is-scrolled {
  background: rgba(10, 14, 20, 0.92);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom-color: var(--border);
}

[data-theme="light"] .topnav.is-scrolled {
  background: rgba(248, 250, 252, 0.92);
}

.topnav__inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-8);
  height: 64px;
}

/* Logo */
.topnav__logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
}

.topnav__logo-data,
.topnav__logo-metre {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
}

.topnav__logo-data {
  color: var(--accent);
}

.topnav__logo-metre {
  color: var(--text-primary);
}

.topnav__logo-pulse {
  position: absolute;
  top: -3px;
  right: -8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* Nav links */
.topnav__links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  margin-left: var(--space-4);
  list-style: none;
}

.topnav__link {
  padding: var(--space-2) var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.topnav__link:hover {
  color: var(--text-primary);
  background: var(--bg-hover);
}

/* Actions */
.topnav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-left: auto;
}

.topnav__count {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.topnav__theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.topnav__theme-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-strong);
  background: var(--bg-elevated);
}

.topnav__theme-btn svg {
  display: block;
}

.topnav__theme-btn .theme-icon-sun { display: block; }
.topnav__theme-btn .theme-icon-moon { display: none; }
[data-theme="light"] .topnav__theme-btn .theme-icon-sun { display: none; }
[data-theme="light"] .topnav__theme-btn .theme-icon-moon { display: block; }

.topnav__cta {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-4);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  color: white;
  background: var(--accent);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
  white-space: nowrap;
}

.topnav__cta:hover {
  background: var(--accent-hover);
  color: white;
}

/* Hamburger */
.topnav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
}

.topnav__hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
}

/* Mobile menu */
.topnav__mobile {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: var(--space-4) var(--space-8);
}

.topnav__mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.topnav__mobile a {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-md);
}

.topnav__mobile a:hover {
  background: var(--bg-hover);
}

/* ============================================
   3. HERO
   ============================================ */

.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: 96px var(--space-8) var(--space-16);
  max-width: 1440px;
  margin: 0 auto;
}

.lp-hero__canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.35;
}

.lp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 20, 0.95) 0%,
    rgba(10, 14, 20, 0.8) 40%,
    rgba(10, 14, 20, 0.3) 100%
  );
  z-index: 0;
  pointer-events: none;
}

[data-theme="light"] .lp-hero__overlay {
  background: linear-gradient(
    135deg,
    rgba(248, 250, 252, 0.96) 0%,
    rgba(248, 250, 252, 0.85) 40%,
    rgba(248, 250, 252, 0.4) 100%
  );
}

.lp-hero__body {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.lp-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-6);
}

.lp-eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.lp-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.lp-hero__title em {
  font-style: italic;
  color: var(--accent);
}

.lp-hero__subtitle {
  font-size: clamp(var(--text-base), 2vw, var(--text-xl));
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: var(--space-10);
}

/* Counters */
.lp-hero__counters {
  display: flex;
  gap: var(--space-8);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.lp-counter {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.lp-counter__value {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 3vw, var(--text-3xl));
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  transition: color 0.3s;
}

.lp-counter--accent .lp-counter__value {
  color: var(--accent);
}

.lp-counter__label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* CTA */
.lp-hero__cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Scroll hint */
.lp-hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  animation: scrollBounce 2s ease-in-out infinite;
}

.lp-scroll-dot {
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ============================================
   4. DATA TICKER
   ============================================ */

.lp-ticker {
  display: flex;
  align-items: center;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  height: 44px;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

/* Fade edges */
.lp-ticker::before,
.lp-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.lp-ticker::before {
  left: 80px;
  background: linear-gradient(90deg, var(--bg-surface), transparent);
}

.lp-ticker::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-surface), transparent);
}

.lp-ticker__label {
  flex-shrink: 0;
  padding: 0 var(--space-4);
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: var(--accent-muted);
  height: 100%;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border);
  z-index: 3;
  position: relative;
}

.lp-ticker__rail {
  flex: 1;
  overflow: hidden;
  height: 100%;
}

.lp-ticker__track {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  height: 100%;
  white-space: nowrap;
  animation: ticker 50s linear infinite;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.lp-ticker__track:hover {
  animation-play-state: paused;
}

.lp-ticker__item {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.lp-ticker__item strong {
  color: var(--text-primary);
  font-weight: 700;
}

.lp-ticker__sep {
  color: var(--text-ghost);
  font-size: var(--text-sm);
}

/* ============================================
   5. LANDING PAGE SECTIONS
   ============================================ */

.lp-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.lp-section {
  padding: var(--space-16) 0;
}

.lp-section__header {
  margin-bottom: var(--space-10);
}

.lp-section__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-3);
}

.lp-section__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin: 0 0 var(--space-2);
}

.lp-section__more {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-4);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--transition-fast);
}

.lp-section__more:hover {
  color: var(--accent-hover);
}

/* ============================================
   6. POSTS GRID
   ============================================ */

.lp-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

/* ============================================
   7. THEMES GRID
   ============================================ */

.lp-themes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.lp-theme-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
}

.lp-theme-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
  border-radius: var(--radius-lg);
}

.lp-theme-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.lp-theme-card:hover::after {
  opacity: 1;
}

/* Color variants */
.lp-theme-card--red {
  --card-color: var(--accent);
  --card-bg: rgba(239, 68, 68, 0.06);
  color: var(--accent);
}

.lp-theme-card--red:hover {
  background: var(--accent-muted);
}

.lp-theme-card--blue {
  --card-color: var(--primary);
  --card-bg: rgba(59, 130, 246, 0.06);
  color: var(--primary);
}

.lp-theme-card--blue:hover {
  background: var(--primary-muted);
}

.lp-theme-card--green {
  --card-color: #10b981;
  --card-bg: rgba(16, 185, 129, 0.06);
  color: #10b981;
}

.lp-theme-card--green:hover {
  background: rgba(16, 185, 129, 0.08);
}

.lp-theme-card--amber {
  --card-color: #f59e0b;
  --card-bg: rgba(245, 158, 11, 0.06);
  color: #f59e0b;
}

.lp-theme-card--amber:hover {
  background: rgba(245, 158, 11, 0.08);
}

/* Top accent bar */
.lp-theme-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--card-color, var(--accent));
  opacity: 0.6;
  transition: opacity 0.25s;
}

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

.lp-theme-card__sparkline {
  padding: var(--space-4) var(--space-4) 0;
  height: 80px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.lp-theme-card__sparkline svg {
  width: 100%;
  height: 48px;
}

.lp-theme-card__body {
  padding: var(--space-4);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lp-theme-card__num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-2);
}

.lp-theme-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: var(--space-2);
  margin-top: 0;
}

.lp-theme-card__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
}

.lp-theme-card__arrow {
  margin-top: var(--space-4);
  color: var(--card-color, var(--accent));
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
}

.lp-theme-card:hover .lp-theme-card__arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ============================================
   8. MANIFESTO
   ============================================ */

.lp-manifesto {
  padding: var(--space-16) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.lp-manifesto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.lp-manifesto__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin: 0 0 var(--space-6);
}

.lp-manifesto__title em {
  font-style: italic;
  color: var(--accent);
}

.lp-manifesto__lead {
  font-size: var(--text-lg);
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.lp-manifesto__body {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.lp-manifesto__pillars {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.lp-pillar {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.lp-pillar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent-muted);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-md);
  color: var(--accent);
  flex-shrink: 0;
}

.lp-pillar__title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.lp-pillar__desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.lp-manifesto__link {
  margin-top: var(--space-2);
}

/* Chart area */
.lp-manifesto__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-manifesto__chart-wrap {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.lp-manifesto__chart-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

.lp-manifesto__chart {
  display: block;
  width: 100%;
  height: auto;
  max-height: 220px;
}

.lp-manifesto__chart-source {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--text-ghost);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--space-3);
}

/* ============================================
   9. CTA STRIP
   ============================================ */

.lp-cta-strip {
  padding: var(--space-16) 0;
}

.lp-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  padding: var(--space-10);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.lp-cta-strip__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--primary));
}

.lp-cta-strip__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 var(--space-2);
}

.lp-cta-strip__desc {
  font-size: var(--text-base);
  color: var(--text-secondary);
  margin: 0;
}

.lp-cta-strip__actions {
  display: flex;
  gap: var(--space-4);
  flex-shrink: 0;
}

/* ============================================
   10. FOOTER
   ============================================ */

.lp-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: var(--space-12) 0 var(--space-8);
}

.lp-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.lp-footer__brand-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.lp-footer__brand-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.lp-footer__status {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--success);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lp-footer__status-dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.lp-footer__nav-title {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

.lp-footer__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.lp-footer__nav-link {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.lp-footer__nav-link:hover {
  color: var(--text-primary);
}

.lp-footer__bottom {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-wrap: wrap;
}

.lp-footer__divider {
  color: var(--text-ghost);
}

/* ============================================
   11. SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal-section {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-section.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-item:nth-child(1) { transition-delay: 0ms; }
.reveal-item:nth-child(2) { transition-delay: 80ms; }
.reveal-item:nth-child(3) { transition-delay: 160ms; }
.reveal-item:nth-child(4) { transition-delay: 240ms; }

/* ============================================
   12. RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
  .lp-themes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-manifesto__grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .lp-manifesto__visual {
    order: -1;
  }
}

@media (max-width: 900px) {
  .topnav__links,
  .topnav__cta,
  .topnav__count {
    display: none;
  }

  .topnav__hamburger {
    display: flex;
  }

  .lp-hero {
    padding: 80px var(--space-6) var(--space-12);
  }

  .lp-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-cta-strip__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .topnav__inner {
    padding: 0 var(--space-4);
  }

  .lp-hero {
    padding: 80px var(--space-4) var(--space-10);
  }

  .lp-container {
    padding: 0 var(--space-4);
  }

  .lp-hero__counters {
    gap: var(--space-5);
  }

  .lp-posts-grid,
  .lp-themes-grid {
    grid-template-columns: 1fr;
  }

  .lp-footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .lp-footer__bottom {
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
  }

  .lp-cta-strip__actions {
    width: 100%;
    flex-direction: column;
  }

  .lp-cta-strip__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   13. REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .reveal-section,
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .lp-ticker__track {
    animation: none;
  }

  .lp-hero__scroll,
  .lp-scroll-dot,
  .lp-eyebrow-dot,
  .lp-footer__status-dot,
  .topnav__logo-pulse {
    animation: none;
  }
}
