:root {
  --bg: #F7F3ED;
  --bg-alt: #EDE8DF;
  --fg: #1A1814;
  --fg-muted: #6B6560;
  --accent: #C4512B;
  --accent-light: #E8C4B8;
  --panel-bg: #FFFFFF;
  --panel-border: #E5DDD3;
  --stat-green: #2D8A5A;
  --stat-blue: #2A6B9A;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--panel-border);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  background: var(--accent);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.5px;
}
.brand-name {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.2px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 48px 96px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* Mockup panel */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}
.mockup-panel {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
}
.mockup-header {
  background: var(--bg-alt);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--panel-border);
}
.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-dot.red { background: #FF5F57; }
.mockup-dot.yellow { background: #FEBC2E; }
.mockup-dot.green { background: #28C840; }
.mockup-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-left: 8px;
  font-weight: 500;
}
.mockup-body {
  padding: 24px;
}
.mockup-stat {
  display: inline-block;
  margin-right: 24px;
  margin-bottom: 16px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--stat-green);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mockup-divider {
  height: 1px;
  background: var(--panel-border);
  margin: 12px 0 16px;
}
.mockup-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.row-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  flex-shrink: 0;
}
.row-icon.msg { background: #E8F4EF; }
.row-icon.cal { background: #E8EFF4; }
.row-icon.rev { background: #F4EEE8; }
.row-text {
  font-size: 13px;
  color: var(--fg);
}

/* Proof section */
.proof {
  background: var(--panel-bg);
  border-top: 1px solid var(--panel-border);
  border-bottom: 1px solid var(--panel-border);
  padding: 80px 48px;
}
.proof-header {
  max-width: 600px;
  margin: 0 auto 56px;
  text-align: center;
}
.proof-header h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 14px;
}
.proof-header p {
  color: var(--fg-muted);
  font-size: 16px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.proof-card {
  background: var(--bg);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 28px;
}
.proof-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.proof-card h3 {
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}
.proof-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Features section */
.features {
  padding: 96px 48px;
}
.features-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.features-left h2 {
  font-size: clamp(24px, 2.5vw, 36px);
  margin-bottom: 20px;
}
.features-body {
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  background: var(--bg-alt);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-item {
  display: flex;
  gap: 16px;
  font-size: 15px;
  line-height: 1.6;
}
.feature-check {
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}
.feature-check::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 7px;
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

/* Manifesto */
.manifesto {
  background: var(--fg);
  color: white;
  padding: 80px 48px;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto blockquote {
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.4;
  font-style: italic;
  color: #F7F3ED;
  margin-bottom: 28px;
}
.manifesto-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Closing */
.closing {
  padding: 96px 48px;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 28px;
}
.closing p {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Footer */
footer {
  border-top: 1px solid var(--panel-border);
  padding: 32px 48px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
}
.brand-mark-sm {
  background: var(--accent);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 11px;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 56px 24px 64px; }
  .hero-visual { justify-content: flex-start; }
  .mockup-panel { max-width: 100%; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .features-inner { grid-template-columns: 1fr; gap: 48px; }
  .navbar { padding: 16px 24px; }
  .proof, .features, .closing { padding: 64px 24px; }
  .manifesto { padding: 64px 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 600px) {
  .proof-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 28px; }
  .navbar .nav-tagline { display: none; }
}