:root {
  --bg: #fafaf9;
  --bg-alt: #f0ede8;
  --fg: #1a1a2e;
  --fg-muted: #6b6b7b;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --white: #ffffff;
  --border: #e5e0d8;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { color: var(--fg-muted); line-height: 1.7; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 40px 60px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
  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 { display: flex; flex-direction: column; gap: 24px; }

.hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'DM Sans', sans-serif;
}

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

/* Product Grid */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 440px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(26,26,46,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26,26,46,0.1);
}

.card-offset { margin-top: 20px; }

.product-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--fg);
}

.icon-accent { background: var(--accent); }
.icon-light { background: #e8e4de; }

.product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
}

.product-price {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

/* Sections */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.section-eyebrow.light { color: rgba(245,158,11,0.7); }

.section-sub {
  max-width: 560px;
  margin-top: 16px;
  font-size: 1.05rem;
}

/* Products Section */
.products { background: var(--white); }
.products h2 { margin-bottom: 16px; }

.product-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.category {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--bg-alt);
}

.cat-templates { background: #e8f4e8; }
.cat-guides { background: #e8edf8; }
.cat-tools { background: #f8e8e8; }
.cat-bundles { background: #f8f0e8; }

.category p { font-size: 0.9rem; }

/* Philosophy */
.philosophy {
  background: var(--fg);
  color: var(--white);
  padding: 100px 40px;
}

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

.philosophy-content { display: flex; flex-direction: column; gap: 20px; }

.philosophy-content h2 { color: var(--white); }
.philosophy-content p { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.75; }
.philosophy-content p:last-child { color: var(--accent); font-weight: 600; }

.stat-block {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-num {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  font-family: 'DM Sans', sans-serif;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  max-width: 180px;
  line-height: 1.4;
  margin-top: 4px;
}

/* Pricing */
.pricing-section { background: var(--bg-alt); }
.pricing-section h2 { margin-bottom: 16px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.pricing-card-featured {
  border-color: var(--accent);
  border-width: 2px;
}

.price-tag {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--fg);
}

.pricing-card h4 { font-size: 1.1rem; }
.pricing-card p { font-size: 0.9rem; }

.popular-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Closing */
.closing {
  background: var(--white);
  padding: 100px 40px;
  text-align: center;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.closing h2 { color: var(--fg); }
.closing p { color: var(--fg-muted); font-size: 1.05rem; max-width: 560px; }
.closing p:last-child {
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
}

/* Footer */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fg);
}

.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-brand p { font-size: 0.875rem; color: var(--fg-muted); }

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}

.footer-meta span {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero { padding: 60px 24px 40px; }
  .hero-visual { order: -1; }

  .product-grid { max-width: 360px; margin: 0 auto; }

  .product-categories { grid-template-columns: repeat(2, 1fr); }
  .philosophy-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 64px auto 0; }
  .section-inner { padding: 80px 24px; }

  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-meta { text-align: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .product-categories { grid-template-columns: 1fr; }
  .hero { padding: 48px 20px 32px; }
  .philosophy { padding: 80px 20px; }
}