:root {
  --bg: #faf8f5;
  --surface: #ffffff;
  --text: #1c1a18;
  --text-muted: #7a746a;
  --border: #e8e3db;
  --accent: #c8693a;
  --accent-warm: #e8945a;
  --sage: #7a9e7e;
  --sage-light: #d4e4d6;
  --ink: #2a2420;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  color: var(--accent);
  font-size: 22px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 48px 80px;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow { margin-bottom: 24px; }

.eyebrow-tag {
  display: inline-block;
  background: var(--sage-light);
  color: #4a6e4a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Product Stack */
.hero-product-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
  max-width: 480px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.product-card--spreadsheet { border-top: 3px solid var(--accent); }
.product-card--guide { border-top: 3px solid #8b6ecf; }
.product-card--checklist { border-top: 3px solid var(--sage); }
.product-card--template { border-top: 3px solid #c97a3a; }

.card-icon {
  color: var(--text-muted);
  margin-bottom: 8px;
}

.card-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.card-type {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero CTA */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.btn-large { padding: 18px 32px; font-size: 16px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: var(--ink);
  background: var(--surface);
}

.social-pill {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 100px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 480px;
}

.floating-doc {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.doc-1 {
  top: 20px;
  left: 0;
  width: 240px;
  animation: float 4s ease-in-out infinite;
}

.doc-2 {
  top: 180px;
  right: 20px;
  width: 200px;
  animation: float 4s ease-in-out 1s infinite;
}

.doc-3 {
  bottom: 40px;
  left: 40px;
  width: 180px;
  background: var(--ink);
  color: #fff;
  animation: float 4s ease-in-out 2s infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.doc-header {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.doc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.doc-rows { margin-bottom: 12px; }

.doc-row {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.doc-bar {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
}

.doc-row--highlight .doc-bar { background: var(--sage); }

.doc-label {
  font-size: 11px;
  color: var(--text-muted);
  text-align: right;
}

.doc-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.check-done {
  color: var(--sage);
}

.check-mark {
  font-size: 14px;
  width: 18px;
  text-align: center;
}

.doc-pricing {
  text-align: center;
}

.price-tag {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.price-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.price-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Manifesto */
.manifesto {
  background: var(--ink);
  color: #fff;
  padding: 100px 48px;
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: -16px;
}

.manifesto-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-style: italic;
  line-height: 1.4;
  color: #fff;
  font-weight: 300;
}

.manifesto-body p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 16px;
}

.manifesto-body strong {
  color: #fff;
  font-weight: 600;
}

/* Proof */
.proof {
  padding: 80px 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.proof-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.stat-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.proof-products { border-top: 1px solid var(--border); padding-top: 40px; }

.proof-product-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.proof-tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
}

/* Features */
.features {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.15;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.2s;
}

.feature-card:hover {
  background: #fff;
}

.feature-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Pricing */
.pricing {
  padding: 100px 48px;
  background: var(--surface);
}

.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}

.pricing-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 12px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 32px;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
}

.pricing-card--pro {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.plan-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.pricing-card--pro .plan-price { color: #fff; }

.plan-price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card--pro .plan-price span { color: rgba(255,255,255,0.5); }

.plan-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-card--pro .plan-desc { color: rgba(255,255,255,0.55); }

.plan-features {
  list-style: none;
  margin-bottom: 32px;
}

.plan-features li {
  font-size: 14px;
  padding: 6px 0;
  color: var(--text);
}

.pricing-card--pro .plan-features li { color: rgba(255,255,255,0.85); }

.plan-features li.muted { color: var(--text-muted); }
.pricing-card--pro .plan-features li.muted { color: rgba(255,255,255,0.4); }

.plan-features li::before { content: '→ '; color: var(--sage); }
.pricing-card--pro .plan-features li::before { color: var(--accent-warm); }
.pricing-card--pro .plan-features li.muted::before { color: rgba(255,255,255,0.3); }

.pricing-card .btn-primary { width: 100%; justify-content: center; }
.pricing-card .btn-outline { width: 100%; justify-content: center; }

.pricing-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

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

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-copy a {
  color: var(--text);
  font-weight: 500;
}

/* Mobile */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }

  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    gap: 48px;
  }

  .hero-visual { display: none; }

  .hero-product-stack {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-copy {
    order: 3;
  }

  .manifesto, .features, .pricing, .proof, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}
