:root {
  --bg: #faf8f5;
  --bg-dark: #f0ede6;
  --fg: #1a1a1a;
  --fg-muted: #6b6560;
  --fg-light: #9c9690;
  --accent: #e85f2b;
  --accent-dark: #c94e22;
  --card-bg: #ffffff;
  --border: #e5e0d8;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

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

/* Nav */
.nav { padding: 20px 48px; border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--serif); font-size: 22px; letter-spacing: -0.5px; color: var(--fg); }
.nav-tagline { font-size: 13px; color: var(--fg-muted); font-style: italic; }

/* Hero */
.hero { padding: 80px 48px 64px; }
.hero-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; }
.hero-eyebrow { font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); font-weight: 500; margin-bottom: 16px; }
.hero-headline { font-family: var(--serif); font-size: clamp(42px, 5vw, 64px); line-height: 1.08; letter-spacing: -1.5px; color: var(--fg); margin-bottom: 20px; }
.hero-sub { font-size: 18px; color: var(--fg-muted); line-height: 1.6; max-width: 480px; margin-bottom: 40px; }
.hero-proof { display: flex; gap: 40px; }
.hero-proof-item { display: flex; flex-direction: column; }
.proof-amount { font-family: var(--serif); font-size: 28px; color: var(--accent); line-height: 1; }
.proof-label { font-size: 13px; color: var(--fg-muted); margin-top: 4px; }

/* Hero card */
.hero-visual { position: relative; }
.hero-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 24px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.card-creator { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.creator-avatar { width: 40px; height: 40px; background: var(--fg); color: var(--bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; flex-shrink: 0; }
.creator-info { flex: 1; display: flex; flex-direction: column; }
.creator-name { font-size: 15px; font-weight: 600; }
.creator-handle { font-size: 13px; color: var(--fg-muted); }
.card-price { font-family: var(--serif); font-size: 20px; color: var(--accent); font-weight: 400; }
.card-message { display: flex; align-items: flex-start; gap: 12px; background: var(--bg); border-radius: 10px; padding: 14px 16px; margin-bottom: 16px; }
.msg-icon { width: 32px; height: 32px; background: var(--fg); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--bg); margin-top: 2px; }
.msg-body { display: flex; flex-direction: column; gap: 3px; }
.msg-label { font-size: 14px; font-weight: 500; }
.msg-meta { font-size: 13px; color: var(--fg-muted); }
.card-reply { display: flex; align-items: center; justify-content: space-between; }
.reply-badge { display: flex; align-items: center; gap: 5px; font-size: 13px; color: #16a34a; font-weight: 500; }
.reply-earning { font-family: var(--serif); font-size: 22px; color: var(--accent); }
.hero-earnings { position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%); background: var(--fg); color: var(--bg); border-radius: 40px; padding: 8px 20px; display: flex; align-items: center; gap: 10px; white-space: nowrap; box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.earnings-label { font-size: 12px; opacity: 0.7; }
.earnings-value { font-family: var(--serif); font-size: 18px; font-weight: 400; }

/* Proof strip */
.proof { background: var(--bg-dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 48px; }
.proof-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 0; }
.proof-stat { display: flex; flex-direction: column; gap: 4px; padding: 0 48px; }
.proof-stat:first-child { padding-left: 0; }
.proof-number { font-family: var(--serif); font-size: 32px; color: var(--fg); }
.proof-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.4; max-width: 220px; }
.proof-divider { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

/* Section labels */
.section-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-light); margin-bottom: 12px; font-weight: 500; }
.section-headline { font-family: var(--serif); font-size: clamp(28px, 3.5vw, 44px); line-height: 1.15; letter-spacing: -0.8px; color: var(--fg); margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--fg-muted); max-width: 480px; line-height: 1.6; }

/* How */
.how { padding: 96px 48px; }
.how-header { max-width: 1100px; margin: 0 auto 56px; }
.how-steps { max-width: 1100px; margin: 0 auto; display: flex; align-items: flex-start; gap: 0; }
.step { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.step-number { font-family: var(--serif); font-size: 48px; color: var(--border); line-height: 1; font-style: italic; }
.step-title { font-size: 17px; font-weight: 600; }
.step-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.5; }
.step-connector { width: 60px; height: 1px; background: var(--border); margin-top: 28px; flex-shrink: 0; }

/* Features */
.features { background: var(--bg-dark); padding: 96px 48px; }
.features-header { max-width: 1100px; margin: 0 auto 56px; }
.features-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 48px; }
.feature { display: flex; flex-direction: column; gap: 10px; }
.feature-icon { width: 44px; height: 44px; background: var(--accent); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; }
.feature-title { font-size: 17px; font-weight: 600; }
.feature-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.5; }

/* Who */
.who { padding: 96px 48px; }
.who-header { max-width: 1100px; margin: 0 auto 48px; }
.who-grid { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 16px; }
.who-item { display: flex; align-items: center; gap: 10px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 40px; padding: 10px 20px; font-size: 15px; font-weight: 500; }
.who-icon { color: var(--fg-muted); display: flex; }
.who-item-more { color: var(--fg-muted); font-style: italic; }

/* Closing */
.closing { background: var(--fg); color: var(--bg); padding: 96px 48px; text-align: center; }
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing-headline { font-family: var(--serif); font-size: clamp(36px, 5vw, 64px); line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 16px; }
.closing-sub { font-size: 20px; color: rgba(250,248,245,0.6); }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 32px 48px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 24px; }
.footer-logo { font-family: var(--serif); font-size: 20px; }
.footer-note { font-size: 14px; color: var(--fg-muted); max-width: 480px; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 420px; margin: 0 auto; width: 100%; }
  .hero-proof { gap: 24px; }
  .proof-inner { flex-direction: column; gap: 24px; }
  .proof-stat { padding: 0; }
  .proof-divider { display: none; }
  .how-steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .nav, .hero, .proof, .how, .features, .who, .closing, .footer { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 480px) {
  .nav-tagline { display: none; }
  .hero-earnings { position: static; transform: none; margin-top: 16px; }
  .hero-visual { position: static; }
}
