/* Reload — Warm, editorial, premium */

:root {
  --bg: #F7F4EE;
  --surface: #FFFFFF;
  --accent: #C8623A;
  --accent-light: #F0E8E0;
  --text: #1A1714;
  --text-muted: #6B6560;
  --border: #E0D9CF;
  --success: #3A8C5C;
  --action: #D4880A;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

* { 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;
}

/* Nav */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Hero */
.hero {
  padding: 160px 48px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.eyebrow-text {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
}

.stat { text-align: left; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.stat-div {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* Inbox mock */
.inbox-mock {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 23, 20, 0.08);
}

.mock-header {
  background: #F2EEE8;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.mock-dot:first-child { background: #FF5F57; }
.mock-dot:nth-child(2) { background: #FEBC2E; }
.mock-dot:nth-child(3) { background: #28C840; }

.mock-title {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.mock-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-email {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid transparent;
}

.mock-email.done {
  background: #F0F7F3;
  border-color: #D4EDDA;
}

.mock-email.action {
  background: #FFF8EC;
  border-color: #FFE8A3;
}

.email-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.done .email-icon { background: var(--success); color: white; }
.action .email-icon { background: var(--action); color: white; }

.email-subject {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

.email-meta {
  font-size: 11px;
  color: var(--text-muted);
}

/* Manifesto */
.manifesto {
  background: #1A1714;
  color: #F7F4EE;
  padding: 100px 48px;
}

.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
}

blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #F7F4EE;
  margin-bottom: 36px;
  font-weight: 400;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}

.manifesto-body {
  font-size: 17px;
  line-height: 1.75;
  color: #A8A39D;
  margin-bottom: 20px;
}

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

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

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 12px;
}

.features-sub {
  font-size: 18px;
  color: var(--text-muted);
}

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

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

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 23, 20, 0.07);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

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

/* Weekly report mock */
.features-cta {
  display: flex;
  justify-content: center;
}

.weekly-report-mock {
  background: #1A1714;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 580px;
  box-shadow: 0 24px 60px rgba(26, 23, 20, 0.15);
}

.report-header {
  background: #252220;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
}

.report-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #F7F4EE;
}

.report-date {
  font-size: 12px;
  color: #6B6560;
}

.report-summary {
  display: flex;
  padding: 20px 24px;
  border-bottom: 1px solid #2a2a28;
  gap: 0;
}

.report-stat {
  flex: 1;
  text-align: center;
  border-right: 1px solid #2a2a28;
}

.report-stat:last-child { border-right: none; }

.rnum {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #F7F4EE;
  letter-spacing: -0.03em;
}

.rlabel {
  display: block;
  font-size: 11px;
  color: #6B6560;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.report-items {
  padding: 16px 24px;
}

.ri {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #252220;
  font-size: 13px;
  color: #A8A39D;
}

.ri:last-child { border-bottom: none; }

.ri-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}

.ri.done .ri-icon { background: var(--success); color: white; }
.ri.decision .ri-icon { background: var(--action); color: white; }
.ri.decision { color: #D4C5A9; }

/* Pricing */
.pricing {
  padding: 100px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-header {
  max-width: 600px;
  margin: 0 auto 64px;
  text-align: center;
}

.pricing-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 12px;
}

.pricing-header p {
  font-size: 18px;
  color: var(--text-muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}

.pricing-card.featured {
  background: #1A1714;
  border-color: #1A1714;
  color: #F7F4EE;
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.featured .plan-name { color: #F7F4EE; }

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

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

.featured .plan-price span { color: #A8A39D; }

.plan-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.featured .plan-desc { color: #A8A39D; border-color: #333; }

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

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

.plan-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

.featured .plan-features li { color: #A8A39D; }

.plan-footer {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

.featured .plan-footer { color: #6B6560; }

.pricing-note {
  max-width: 600px;
  margin: 48px auto 0;
  text-align: center;
}

.pricing-note p {
  font-size: 14px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-style: italic;
}

/* Testimonials / Who it's for */
.testimonials {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  margin-bottom: 48px;
}

.testimonials-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.avatars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.avatar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.avatar-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.avatar-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.avatar-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Closing */
.closing {
  background: #F0E8E0;
  padding: 100px 48px;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.closing-rule {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 40px;
  border-radius: 2px;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.closing p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.closing-cta {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text) !important;
  font-weight: 600;
  margin-top: 24px;
}

/* Footer */
footer {
  background: #1A1714;
  padding: 48px;
}

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

.footer-logo {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #F7F4EE;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.footer-tagline {
  display: block;
  font-size: 13px;
  color: #6B6560;
}

.footer-meta {
  font-size: 13px;
  color: #6B6560;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .avatars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  nav, .hero, .manifesto, .features, .pricing, .testimonials, .closing, footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .features-grid { grid-template-columns: 1fr; }
  .avatars-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-div { display: none; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
}