:root {
  --primary: #e9553b;
  --primary-dark: #c23616;
  --secondary: #2d3436;
  --border: #eee;
  --text: #1f2937;
  --text-light: #6b7280;
  --text-light: #6b7280;
  --bg: #fcf9f2;
  --bg-light: #f9fafb;
  --bg-code: #1e293b;
  --radius: 12px;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  overflow-x: hidden;
}

section {
  padding: 0 2rem;
}

.loading {
  display: none;
}

/* Features */
.features {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}
