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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { --orange: #e8570a; --text: #1a1a1a; --muted: #5a5550; --bg: #f5f0eb; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: #fff; }
a { color: var(--orange); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header { background: #fff; border-bottom: 1px solid #e0d8cf; padding: 16px 0; position: sticky; top: 0; z-index: 100; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.header-logo { max-width: 130px; }
.site-header nav { display: flex; align-items: center; gap: 20px; }
.site-header nav a { font-size: .9rem; color: var(--muted); text-decoration: none; }
.site-header nav a:hover { color: var(--text); }

/* Buttons */
.btn-outline { padding: 9px 20px; border: 2px solid #e0d8cf; border-radius: 6px; color: var(--text); font-weight: 600; font-size: .88rem; }
.btn-primary { padding: 10px 22px; background: var(--orange); border: 2px solid var(--orange); border-radius: 6px; color: #fff; font-weight: 600; font-size: .88rem; text-decoration: none; }
.btn-primary:hover { background: #bf460a; }

/* Hero */
.hero {
  background: var(--bg);
  background-image: radial-gradient(ellipse at 70% 50%, rgba(232,87,10,.07) 0%, transparent 60%);
  padding: 90px 0 80px;
}
.hero-inner { max-width: 680px; }
.eyebrow { font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; color: var(--orange); font-weight: 600; margin-bottom: 16px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.15; margin-bottom: 18px; }
.hero h1 em { font-style: italic; color: var(--orange); }
.hero-sub { font-size: 1.1rem; color: var(--muted); margin-bottom: 32px; }
.btn-hero { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: var(--orange); color: #fff; border-radius: 8px; font-weight: 700; font-size: 1rem; text-decoration: none; }
.btn-hero:hover { background: #bf460a; }

/* Challenges */
.challenges { padding: 70px 0; text-align: center; }
.challenges h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 16px; }
.challenges p { color: var(--muted); max-width: 660px; margin: 0 auto 32px; line-height: 1.8; }
.challenge-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.challenge-tags span { background: var(--bg); border: 1px solid #e0d8cf; padding: 6px 18px; border-radius: 99px; font-size: .88rem; color: var(--muted); }

/* Audiences */
.audiences { padding: 60px 0; background: var(--bg); }
.audiences h2 { font-family: 'Playfair Display', serif; font-size: 2rem; text-align: center; margin-bottom: 32px; }
.audience-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.card { background: #fff; border-radius: 10px; padding: 28px 22px; border: 1px solid #e0d8cf; }
.card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .9rem; }

/* Pricing */
.pricing { padding: 80px 0; text-align: center; }
.pricing h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 40px; }
.pricing-card { display: inline-block; background: #fff; border: 2px solid var(--orange); border-radius: 12px; padding: 40px 36px; max-width: 380px; width: 100%; }
.plan-badge { background: var(--orange); color: #fff; display: inline-block; padding: 4px 18px; border-radius: 99px; font-size: .82rem; font-weight: 700; margin-bottom: 20px; }
.plan-price { font-size: 3rem; font-weight: 900; font-family: 'Playfair Display', serif; }
.plan-price sup { font-size: 1.5rem; vertical-align: super; }
.plan-price span { font-size: 1.2rem; color: var(--muted); font-weight: 400; }
.pricing-card p { color: var(--muted); margin: 14px 0 20px; line-height: 1.6; }
.features { list-style: none; text-align: left; margin: 0 0 28px; }
.features li { padding: 8px 0; border-bottom: 1px solid #e0d8cf; font-size: .92rem; }
.features li:last-child { border-bottom: none; }
.free-note { margin-top: 20px; color: var(--muted); font-size: .9rem; }

/* Footer */
.site-footer { background: var(--text); color: #aaa; padding: 40px 0; text-align: center; }
.footer-logo { max-width: 130px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .7; }
.site-footer p { font-size: .85rem; }
.site-footer a { color: #aaa; }

@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  .pricing-card { padding: 28px 20px; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
}
