/* ===== CSS RESET & ROOT ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest: #1a3a2a;
  --forest-mid: #2d5a3d;
  --forest-light: #3a6b4a;
  --amber: #e8a838;
  --amber-light: #f0c060;
  --cream: #faf6f0;
  --warm-white: #fefcf8;
  --charcoal: #1e1e1e;
  --mid-gray: #5a5a4e;
  --light-gray: #a8a49c;
  --border: rgba(26, 58, 42, 0.12);
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--charcoal); background: var(--warm-white); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--serif); font-size: 22px; color: var(--forest);
  letter-spacing: -0.5px;
}
header nav { display: flex; gap: 28px; }
header nav a { font-size: 14px; font-weight: 500; color: var(--mid-gray); transition: color 0.2s; }
header nav a:hover { color: var(--forest); }

/* ===== HERO ===== */
.hero {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 80px 0 72px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1; color: var(--forest); margin-bottom: 20px;
  letter-spacing: -1px;
}
.lede { font-size: 18px; line-height: 1.65; color: var(--mid-gray); margin-bottom: 40px; max-width: 480px; }
.hero-stat-row { display: flex; gap: 40px; }
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number { font-family: var(--serif); font-size: 32px; color: var(--forest); line-height: 1; }
.stat-label { font-size: 12px; color: var(--mid-gray); line-height: 1.4; max-width: 140px; }

/* Hero visual */
.hero-visual { position: relative; }
.signal-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--forest); color: white; font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.signal-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.1); }
}
.message-thread {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px; padding: 20px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 4px 24px rgba(26, 58, 42, 0.06);
}
.msg { border-radius: 12px; padding: 12px 14px; position: relative; }
.msg.incoming { background: #f0ede8; }
.msg.outgoing { background: var(--forest); color: white; }
.msg p { font-size: 13px; line-height: 1.5; }
.msg.confirmed { background: var(--amber); color: var(--forest); }
.msg .timestamp { display: block; font-size: 10px; opacity: 0.5; margin-top: 4px; }

/* ===== OUTCOME ===== */
.outcome { padding: 80px 0; background: white; }
.outcome-inner { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.outcome-label, .how-label, .niches-label, .pricing-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 16px;
}
.outcome h2 {
  font-family: var(--serif); font-size: clamp(24px, 3vw, 38px);
  color: var(--forest); line-height: 1.2; margin-bottom: 52px; max-width: 680px;
  letter-spacing: -0.5px;
}
.outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.outcome-item { }
.outcome-icon { margin-bottom: 16px; }
.outcome-item h3 { font-size: 17px; font-weight: 600; color: var(--forest); margin-bottom: 8px; }
.outcome-item p { font-size: 15px; line-height: 1.6; color: var(--mid-gray); }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 80px 0; background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.how-inner { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.how-it-works h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); color: var(--forest); margin-bottom: 8px; letter-spacing: -0.5px; }
.how-sub { font-size: 16px; color: var(--mid-gray); margin-bottom: 52px; }
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: start; gap: 0; }
.step { padding: 24px; }
.step-num { font-family: var(--serif); font-size: 40px; color: var(--amber); margin-bottom: 12px; line-height: 1; }
.step-body h3 { font-size: 16px; font-weight: 600; color: var(--forest); margin-bottom: 8px; }
.step-body p { font-size: 14px; line-height: 1.6; color: var(--mid-gray); }
.step-connector { display: flex; align-items: center; justify-content: center; padding-top: 24px; }

/* ===== NICHES ===== */
.niches { padding: 80px 0; background: white; }
.niches-inner { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.niches-header { margin-bottom: 52px; }
.niches h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); color: var(--forest); margin-bottom: 12px; letter-spacing: -0.5px; }
.niches-header p { font-size: 16px; color: var(--mid-gray); }
.niche-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.niche-card { border: 1px solid var(--border); border-radius: 16px; padding: 28px; transition: box-shadow 0.2s, border-color 0.2s; }
.niche-card:hover { box-shadow: 0 4px 20px rgba(26, 58, 42, 0.07); border-color: var(--forest-light); }
.niche-icon { margin-bottom: 16px; }
.niche-card h3 { font-size: 15px; font-weight: 600; color: var(--forest); margin-bottom: 8px; }
.niche-card p { font-size: 13px; line-height: 1.6; color: var(--mid-gray); }

/* ===== PRICING ===== */
.pricing { padding: 80px 0; background: var(--cream); border-top: 1px solid var(--border); }
.pricing-inner { max-width: 1160px; margin: 0 auto; padding: 0 32px; text-align: center; }
.pricing h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); color: var(--forest); margin-bottom: 12px; letter-spacing: -0.5px; }
.pricing-inner > p { font-size: 16px; color: var(--mid-gray); margin-bottom: 48px; }
.pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 800px; margin: 0 auto 32px; }
.pricing-card {
  background: white; border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 32px; text-align: left;
}
.pricing-card.featured { border-color: var(--forest); border-width: 2px; position: relative; }
.pricing-tier { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--forest); margin-bottom: 12px; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-start { font-size: 14px; color: var(--mid-gray); }
.price-number { font-family: var(--serif); font-size: 42px; color: var(--forest); line-height: 1; }
.per-mo { font-size: 18px; color: var(--mid-gray); }
.pricing-setup { font-size: 13px; color: var(--mid-gray); margin-bottom: 24px; }
.pricing-features { margin-bottom: 24px; }
.pricing-features li { font-size: 14px; color: var(--charcoal); padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.pricing-features li::before { content: ''; width: 16px; height: 16px; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%231a3a2a'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.pricing-cta { font-size: 14px; font-weight: 600; color: white; background: var(--forest); padding: 14px 20px; border-radius: 10px; text-align: center; }
.pricing-cta.featured { background: var(--amber); color: var(--forest); }
.pricing-note { font-size: 14px; color: var(--mid-gray); max-width: 500px; margin: 0 auto; line-height: 1.6; }

/* ===== CLOSING ===== */
.closing { padding: 80px 0; background: var(--forest); }
.closing-inner { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.closing h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 42px); color: white; line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.5px; }
.closing p { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.65; max-width: 640px; margin-bottom: 48px; }
.closing-stat { display: flex; align-items: center; gap: 24px; }
.cs-number { font-family: var(--serif); font-size: 80px; color: var(--amber); line-height: 1; }
.cs-text { font-size: 17px; color: rgba(255,255,255,0.8); line-height: 1.6; }
.cs-text em { color: white; font-style: normal; font-weight: 600; }

/* ===== FOOTER ===== */
footer { padding: 48px 0; background: var(--cream); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 0 32px; text-align: center; }
.footer-logo { font-family: var(--serif); font-size: 24px; color: var(--forest); margin-bottom: 8px; }
.footer-tagline { font-size: 14px; color: var(--mid-gray); margin-bottom: 24px; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 32px; }
.footer-links a { font-size: 14px; color: var(--mid-gray); font-weight: 500; }
.footer-links a:hover { color: var(--forest); }
.footer-copy { font-size: 12px; color: var(--light-gray); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .outcome-grid { grid-template-columns: 1fr 1fr; }
  .niche-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .pricing-cards { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 56px 0; }
  .outcome { padding: 56px 0; }
  .how-it-works { padding: 56px 0; }
  .niches { padding: 56px 0; }
  .pricing { padding: 56px 0; }
  .closing { padding: 56px 0; }
  .outcome-grid { grid-template-columns: 1fr; }
  .niche-grid { grid-template-columns: 1fr; }
  .hero-stat-row { flex-direction: column; gap: 16px; }
  header nav { display: none; }
}