:root {
  color-scheme: light;
  --bg: #fff7fb;
  --surface: #ffffff;
  --text: #1d2541;
  --muted: #6b7280;
  --accent: #f472b6;
  --accent2: #60a5fa;
  --accent3: #fb923c;
  --shadow: 0 24px 60px rgba(29, 37, 65, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.7;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.page-header,
.page-footer {
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(29, 37, 65, 0.08);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--text);
}

.page-nav {
  display: flex;
  gap: 1rem;
}

.page-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

.page-nav a:hover {
  color: var(--text);
}

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #fff1fb 0%, #eff8ff 100%);
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin: 0;
  line-height: 1.05;
}

.hero-content p {
  margin: 1.5rem 0 2rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.section {
  padding: 4.5rem 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
  border-radius: 28px;
  box-shadow: var(--shadow);
  color: var(--text);
}

.feature-card h2 {
  margin-top: 0;
}

.bright {
  background: linear-gradient(135deg, #ffe4fb 0%, #fff0ca 100%);
}

.pastel {
  background: linear-gradient(135deg, #dbeafe 0%, #f7d6ff 100%);
}

.fresh {
  background: linear-gradient(135deg, #d9f99d 0%, #a7f3d0 100%);
}

.story-card {
  padding: 2rem;
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stats-row div {
  background: #f8f3ff;
  border-radius: 24px;
  padding: 1rem;
}

.stats-row strong {
  display: block;
  font-size: 1.5rem;
  color: var(--text);
}

.stats-row span {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .cards-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
