/* ── CashClaw Base Styles (tree layer) ── */
/* Layout primitives, section patterns, footer, responsive breakpoints */

/* ── Section layout ── */
.section { padding: var(--space-16) 0; position: relative; z-index: 1; }
.section-heading {
  text-align: center;
  font-family: var(--font-heading);
  font-size: var(--text-display);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  letter-spacing: -1px;
  line-height: 1.1;
}
.section-subheading {
  text-align: center;
  color: var(--text-muted);
  font-size: var(--text-lg);
  margin-bottom: var(--space-12);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Footer ── */
.landing-footer {
  text-align: center;
  padding: var(--space-12) var(--space-6);
  border-top: 1px solid var(--color-border-subtle);
  color: var(--text-muted);
  font-size: 11px;
  font-family: var(--font-mono);
  position: relative;
  z-index: 1;
}

/* ── Responsive breakpoints ── */
@media (max-width: 1024px) {
  .nav-links { gap: var(--space-4); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .section { padding: var(--space-12) 0; }
  .section-heading { font-size: var(--text-2xl); }
  .section-subheading { font-size: var(--text-base); margin-bottom: var(--space-8); }
}

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