/* Base */
:root {
  --bg: #faf8f4;
  --ink: #1a1a2e;
  --ink-light: #4a4a6a;
  --blue: #3b5bdb;
  --amber: #f4a261;
  --surface: #f0ede6;
  --border: #e0dcd3;
}

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

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

/* Nav */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  border-bottom: 1px solid var(--border);
}
.nav-brand { }
.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--ink-light);
  letter-spacing: 0.05em;
}

/* Hero */
.hero {
  padding: 80px 60px 60px;
  overflow: hidden;
}
.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-accent {
  background: linear-gradient(135deg, var(--blue), #7b93ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 460px;
}
.hero-stat-row {
  display: flex;
  gap: 36px;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--blue);
}
.stat-label {
  font-size: 12px;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Inbox visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
}
.inbox-stack {
  position: relative;
  width: 300px;
  height: 220px;
}
.inbox-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 18px 20px;
  box-shadow: 0 4px 20px rgba(26,26,46,0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-back {
  width: 230px;
  height: 90px;
  top: 0;
  right: 0;
  transform: rotate(4deg) translate(20px, 10px);
  opacity: 0.5;
  background: var(--surface);
}
.card-mid {
  width: 250px;
  height: 95px;
  top: 30px;
  right: 10px;
  transform: rotate(1.5deg) translate(10px, 20px);
  opacity: 0.75;
  background: white;
}
.card-front {
  width: 280px;
  height: 110px;
  top: 60px;
  left: 0;
  transform: rotate(-1deg);
  background: white;
  border-left: 3px solid var(--blue);
}
.card-line {
  height: 8px;
  border-radius: 4px;
  background: var(--surface);
}
.w90 { width: 90%; }
.w80 { width: 80%; }
.w60 { width: 60%; }
.w50 { width: 50%; }
.w40 { width: 40%; }
.card-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  margin-bottom: 4px;
}
.card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
  width: fit-content;
}
.badge-urgent { background: #fee2e2; color: #991b1b; }
.badge-action { background: #dbeafe; color: #1e40af; }
.card-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 11px;
  color: #16a34a;
  font-weight: 500;
}
.card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.card-dot.done { background: #16a34a; }

/* Manifesto */
.manifesto {
  background: var(--ink);
  color: var(--bg);
  padding: 70px 60px;
}
.manifesto-inner { max-width: 720px; margin: 0 auto; }
.manifesto-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  line-height: 1.5;
  font-style: italic;
  color: #e8e4dc;
}
.manifesto-text strong { color: var(--bg); font-style: normal; }

/* Showcase */
.showcase {
  padding: 80px 60px;
  border-bottom: 1px solid var(--border);
}
.showcase-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-light);
  margin-bottom: 48px;
  text-align: center;
}
.showcase-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.showcase-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  max-width: 240px;
}
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
}
.step-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.6;
}
.step-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  margin: 0 30px;
  flex-shrink: 0;
}

/* Features */
.features {
  padding: 80px 60px;
  background: var(--surface);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.feature-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,26,46,0.08);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: #eef0ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}
.feature-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.65;
}

/* Quote */
.quote-section {
  padding: 80px 60px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.quote-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.quote-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 36px;
}
.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.quote-meta { text-align: left; }
.quote-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.quote-role {
  display: block;
  font-size: 12px;
  color: var(--ink-light);
}

/* Closing */
.closing {
  padding: 100px 60px 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 16px;
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* Footer */
.footer {
  padding: 32px 60px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand { display: flex; flex-direction: column; gap: 2px; }
.footer-name {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--ink);
}
.footer-desc {
  font-size: 12px;
  color: var(--ink-light);
}
.footer-copy {
  font-size: 12px;
  color: var(--ink-light);
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 48px 24px 40px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 40px; letter-spacing: -1px; }
  .hero-stat-row { gap: 24px; }
  .manifesto { padding: 48px 24px; }
  .showcase { padding: 56px 24px; }
  .showcase-steps { flex-direction: column; gap: 40px; }
  .step-divider { width: 40px; height: 1px; margin: 0 auto; }
  .features { padding: 56px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .quote-section { padding: 56px 24px; }
  .closing { padding: 72px 24px 56px; }
  .footer { padding: 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) {
  .hero-stat-row { flex-wrap: wrap; }
}