:root {
  --paper: #faf7f2;
  --paper-2: #f3ede3;
  --ink: #1f1b17;
  --ink-soft: #5a5249;
  --ink-faint: #8a8076;
  --copper: #b06b3a;
  --copper-deep: #8f5024;
  --line: #e4dccf;
  --white: #fffdfa;
  --shadow: 0 18px 50px rgba(60, 42, 24, 0.12);
  --radius: 16px;
  --wrap: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4, .price span {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}
.btn-solid { background: var(--copper); color: var(--white); }
.btn-solid:hover { background: var(--copper-deep); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(176,107,58,0.3); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: var(--white); }
.btn-ghost:hover { border-color: var(--copper); color: var(--copper); }
.btn-lg { padding: 14px 26px; font-size: 1rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; }
.brand-mark {
  font-family: "Fraunces", serif;
  display: inline-grid;
  place-items: center;
  width: 30px; height: 30px;
  background: var(--copper);
  color: var(--white);
  border-radius: 8px;
  font-size: 1rem;
}
.brand-name { font-family: "Fraunces", serif; font-size: 1.3rem; font-weight: 600; }
.nav-links { display: flex; gap: 28px; font-size: 0.95rem; color: var(--ink-soft); }
.nav-links a:hover { color: var(--copper); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.link-muted { color: var(--ink-soft); font-size: 0.95rem; }
.link-muted:hover { color: var(--ink); }

/* Hero */
.hero { padding: 84px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-copy h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); margin-bottom: 22px; }
.lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 30ch; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-note { font-size: 0.88rem; color: var(--ink-faint); }

/* Editor card art */
.editor-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(0.4deg);
}
.editor-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 16px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: #d8cdbd; }
.dot:nth-child(1){ background:#e2a08a; } .dot:nth-child(2){ background:#e6c98a; } .dot:nth-child(3){ background:#a9c79a; }
.editor-file { margin-left: 10px; font-size: 0.8rem; color: var(--ink-faint); }
.editor-body { padding: 28px 30px 22px; }
.kicker { font-size: 0.72rem; letter-spacing: 0.18em; color: var(--copper); font-weight: 600; margin-bottom: 10px; }
.editor-body h3 { font-size: 1.65rem; margin-bottom: 8px; }
.byline-row { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 22px; }
.line { height: 9px; border-radius: 6px; background: var(--paper-2); margin-bottom: 13px; }
.line.short { width: 62%; } .line.med { width: 82%; }
.cursor { display: inline-block; width: 2px; height: 18px; background: var(--copper); animation: blink 1.1s steps(1) infinite; vertical-align: middle; }
@keyframes blink { 50% { opacity: 0; } }
.editor-foot {
  display: flex; justify-content: space-between;
  padding: 13px 30px; border-top: 1px solid var(--line);
  font-size: 0.8rem; color: var(--ink-faint);
}
.saved { color: #7c9a6a; }

/* Strip */
.strip { padding: 30px 0 10px; }
.strip-label { text-align: center; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 18px; }
.strip-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; font-family: "Fraunces", serif; font-size: 1.15rem; color: var(--ink-faint); }

/* Sections */
.section { padding: 88px 0; }
.section-tint { background: var(--paper-2); }
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); }

/* Features */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-ico {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--paper-2);
  color: var(--copper);
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.feature h3 { font-size: 1.25rem; margin-bottom: 10px; }
.feature p { color: var(--ink-soft); font-size: 0.96rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step { padding-top: 22px; border-top: 2px solid var(--copper); }
.step-num { font-family: "Fraunces", serif; font-size: 2.4rem; color: var(--copper); display: block; margin-bottom: 10px; }
.step h3 { font-size: 1.35rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); }

/* Quotes */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.quote blockquote { font-family: "Fraunces", serif; font-size: 1.18rem; line-height: 1.45; margin-bottom: 22px; }
.quote figcaption strong { display: block; }
.quote figcaption span { font-size: 0.88rem; color: var(--ink-faint); }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
}
.plan-feature { border-color: var(--copper); box-shadow: var(--shadow); }
.plan-tag {
  position: absolute; top: -12px; left: 28px;
  background: var(--copper); color: var(--white);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  padding: 5px 12px; border-radius: 999px;
}
.plan h3 { font-size: 1.4rem; margin-bottom: 6px; }
.price { color: var(--ink-faint); font-size: 0.95rem; margin-bottom: 22px; }
.price span { font-size: 2.6rem; color: var(--ink); }
.plan ul { list-style: none; margin-bottom: 26px; flex: 1; }
.plan li { padding: 9px 0 9px 26px; position: relative; color: var(--ink-soft); border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--copper); font-weight: 700; }

/* CTA */
.cta { padding: 96px 0; text-align: center; }
.cta-inner h2 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); margin-bottom: 12px; }
.cta-inner p { color: var(--ink-soft); font-size: 1.15rem; margin-bottom: 28px; }

/* Footer */
.site-footer { background: var(--ink); color: #cfc6ba; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 44px; }
.footer-brand .brand-mark { background: var(--copper); }
.footer-brand .brand-name { color: var(--white); margin-left: 9px; }
.footer-brand p { margin-top: 14px; font-size: 0.92rem; color: var(--ink-faint); max-width: 24ch; }
.footer-col h4 { font-family: "Inter", sans-serif; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: #9a9082; margin-bottom: 16px; }
.footer-col a { display: block; padding: 5px 0; font-size: 0.94rem; color: #cfc6ba; }
.footer-col a:hover { color: var(--copper); }
.footer-base {
  display: flex; justify-content: space-between;
  border-top: 1px solid #3a342d; padding-top: 24px;
  font-size: 0.85rem; color: #8a8076;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .lede { max-width: none; }
  .feature-grid, .steps, .quotes, .price-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .nav-cta .link-muted { display: none; }
  .footer-base { flex-direction: column; gap: 8px; }
}
