@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Serif+Display&display=swap');

:root {
  --bg: #faf6f1;
  --bg-dark: #f0e8de;
  --fg: #2c1810;
  --fg-muted: #6b5244;
  --accent: #c76f30;
  --accent-light: #e8a46d;
  --accent-glow: rgba(199, 111, 48, 0.15);
  --cream: #fff8f0;
  --sage: #7a8f6e;
  --sage-light: rgba(122, 143, 110, 0.12);
  --terracotta: #c76f30;
  --espresso: #3d2215;
  --radius: 16px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(170deg, var(--bg) 0%, var(--bg-dark) 50%, var(--cream) 100%);
  overflow: hidden;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: var(--espresso);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--espresso);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--terracotta);
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 300;
}

.hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--espresso);
}

.hero-price span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--fg-muted);
}

/* ===== WHAT'S INSIDE ===== */
.whats-inside {
  padding: 6rem 2rem;
  background: var(--cream);
}

.whats-inside-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--espresso);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 500px;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 3.5rem;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.item-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(61, 34, 21, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(61, 34, 21, 0.08);
}

.item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.item-icon.ergonomic { background: rgba(199, 111, 48, 0.12); }
.item-icon.snacks { background: rgba(122, 143, 110, 0.15); }
.item-icon.tools { background: rgba(61, 34, 21, 0.08); }
.item-icon.wellness { background: rgba(178, 132, 190, 0.15); }
.item-icon.desk { background: rgba(199, 111, 48, 0.1); }
.item-icon.surprise { background: rgba(212, 175, 55, 0.12); }

.item-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 0.5rem;
}

.item-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 6rem 2rem;
  background: var(--espresso);
  color: var(--cream);
}

.how-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.how-it-works .section-label {
  color: var(--accent-light);
}

.how-it-works .section-title {
  color: var(--cream);
  margin-bottom: 3.5rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: left;
}

.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.step p {
  font-size: 0.9rem;
  color: rgba(255, 248, 240, 0.65);
  line-height: 1.6;
  font-weight: 300;
}

/* ===== WHO IT'S FOR ===== */
.audience {
  padding: 6rem 2rem;
  background: var(--bg);
}

.audience-inner {
  max-width: 900px;
  margin: 0 auto;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(61, 34, 21, 0.05);
}

.audience-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.audience-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 0.2rem;
}

.audience-item p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ===== CLOSING ===== */
.closing {
  padding: 7rem 2rem;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg) 100%);
  text-align: center;
}

.closing-inner {
  max-width: 650px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--espresso);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.closing p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

.closing-tagline {
  margin-top: 2.5rem;
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--terracotta);
}

/* ===== FOOTER ===== */
.footer {
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid rgba(61, 34, 21, 0.06);
}

.footer p {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .items-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .audience-list { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; padding: 5rem 1.5rem 3rem; }
  .whats-inside, .how-it-works, .audience, .closing { padding: 4rem 1.5rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .items-grid { grid-template-columns: repeat(2, 1fr); }
}