/* ==========================================
   Base Styles & Reset
   ========================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color .35s var(--ease), color .35s var(--ease);
}

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

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Sections */
section {
  padding: 100px 0;
}

.spacer {
  height: 70px;
}

/* Typography */
h1 {
  margin: 0 0 20px;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.08;
  letter-spacing: -1.4px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text) 0%, color-mix(in srgb, var(--text) 70%, transparent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

ul {
  margin: 0;
  padding-left: 20px;
  color: color-mix(in srgb, var(--text) 88%, transparent);
}

li {
  margin: 10px 0;
  line-height: 1.7;
}

li::marker {
  color: var(--accent);
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  * {
    transition: none !important;
    animation: none !important;
  }
  
  .reveal,
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
}
