@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --bg: #faf6f1;
  --bg-alt: #f0ebe4;
  --fg: #1a1615;
  --fg-muted: #6b5e55;
  --accent: #c45d3e;
  --accent-light: #e8a48f;
  --accent-bg: #fdf0ec;
  --cream: #fff9f4;
  --warm-gray: #d4cbc3;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ──────── HERO ──────── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  opacity: 0.3;
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-bg);
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero h1 span {
  color: var(--accent);
}

.hero .lede {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-card {
  background: var(--cream);
  border: 1px solid var(--warm-gray);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-4px);
}

.hero-card:nth-child(2) {
  transform: translateY(24px);
}

.hero-card:nth-child(2):hover {
  transform: translateY(20px);
}

.hero-card-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.hero-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ──────── STATS BAR ──────── */
.stats-bar {
  background: var(--fg);
  color: var(--bg);
  padding: 56px 60px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent-light);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.7;
  letter-spacing: 0.5px;
}

/* ──────── FEATURES ──────── */
.features {
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.features h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 60px;
  max-width: 600px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-item {
  background: var(--cream);
  border: 1px solid var(--warm-gray);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.feature-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-item:hover::after {
  opacity: 1;
}

.feature-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-light);
  opacity: 0.4;
  margin-bottom: 16px;
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-item p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ──────── NICHES ──────── */
.niches {
  background: var(--bg-alt);
  padding: 100px 60px;
}

.niches-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.niches h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.niches .section-desc {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 56px;
}

.niche-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.niche-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--cream);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--warm-gray);
}

.niche-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.niche-item h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.niche-item p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ──────── CLOSING ──────── */
.closing {
  padding: 120px 60px;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
  pointer-events: none;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.closing p {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ──────── FOOTER ──────── */
footer {
  border-top: 1px solid var(--warm-gray);
  padding: 32px 60px;
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

/* ──────── RESPONSIVE ──────── */
@media (max-width: 900px) {
  .hero { padding: 80px 28px 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-card:nth-child(2) { transform: none; }
  .hero-card:nth-child(2):hover { transform: translateY(-4px); }
  .stats-bar { padding: 40px 28px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .features { padding: 60px 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .niches { padding: 60px 28px; }
  .niche-list { grid-template-columns: 1fr; }
  .closing { padding: 80px 28px; }
  footer { padding: 28px; }
}

@media (max-width: 480px) {
  .hero h1 { letter-spacing: -1px; }
  .hero-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-number { font-size: 32px; }
}