:root {
  --ink: #1c1a17;
  --ink-soft: #55504a;
  --paper: #faf6ef;
  --paper-2: #f2ebdf;
  --card: #ffffff;
  --accent: #c2410c;
  --accent-soft: #f6ddca;
  --line: #e6ddcd;
  --radius: 16px;
  --shadow: 0 18px 50px -24px rgba(40, 30, 15, 0.35);
  --maxw: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: "Fraunces", Georgia, serif; line-height: 1.1; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 600; font-size: 15px;
  padding: 11px 20px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--solid { background: var(--accent); color: #fff; box-shadow: 0 10px 24px -12px rgba(194,65,12,.7); }
.btn--solid:hover { background: #a8350a; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--paper-2); }
.btn--lg { padding: 15px 28px; font-size: 16px; }
.btn--block { width: 100%; }

.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: 12.5px;
  font-weight: 600; color: var(--accent); margin: 0 0 14px;
}

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(250,246,239,.82); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-family: "Fraunces", serif; font-weight: 700; font-size: 22px; }
.brand__mark {
  display: grid; place-items: center; width: 32px; height: 32px;
  background: var(--accent); color: #fff; border-radius: 9px; font-size: 18px;
}
.nav__links { display: flex; gap: 28px; font-size: 15px; color: var(--ink-soft); }
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: flex; gap: 10px; align-items: center; }

/* Hero */
.hero { padding: 84px 0 40px; text-align: center; }
.hero__inner { display: flex; flex-direction: column; align-items: center; }
.hero__title { font-size: clamp(48px, 8vw, 88px); font-weight: 600; letter-spacing: -.02em; }
.hero__title em { font-style: italic; color: var(--accent); }
.hero__lede { max-width: 620px; margin: 24px auto 0; font-size: 19px; color: var(--ink-soft); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin: 32px 0 12px; }
.hero__note { font-size: 14px; color: var(--ink-soft); }

.hero__panel { width: 100%; max-width: 760px; margin: 52px auto 0; }
.editor {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; text-align: left;
}
.editor__bar {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 16px; border-bottom: 1px solid var(--line); background: var(--paper-2);
}
.dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.dot--r { background: #e06650; } .dot--y { background: #e3b341; } .dot--g { background: #74b27a; }
.editor__file { margin-left: 12px; font-size: 13px; color: var(--ink-soft); }
.editor__body { padding: 38px 44px 46px; }
.ed-kicker { text-transform: uppercase; letter-spacing: .14em; font-size: 12px; color: var(--accent); font-weight: 600; }
.ed-h { font-size: 34px; margin: 8px 0 6px; font-weight: 600; }
.ed-meta { font-size: 14px; color: var(--ink-soft); margin-bottom: 20px; }
.ed-p { font-size: 17px; margin-bottom: 14px; max-width: 56ch; }
.ed-p--dim { color: var(--ink-soft); }
.ed-caret { display: inline-block; width: 2px; height: 22px; background: var(--accent); vertical-align: middle; animation: blink 1.1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* Trust */
.trust { padding: 28px 0 8px; }
.trust__label { text-align: center; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 18px; }
.trust__row {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 14px 44px; justify-content: center;
  font-family: "Fraunces", serif; font-size: 20px; color: #8a8174;
}

/* Sections */
.section { padding: 92px 0; }
.section--alt { background: var(--paper-2); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section__title { font-size: clamp(30px, 4.5vw, 44px); font-weight: 600; letter-spacing: -.01em; }
.section__sub { margin-top: 16px; font-size: 18px; color: var(--ink-soft); }

.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon {
  width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent); border-radius: 12px;
  font-size: 22px; margin-bottom: 18px;
}
.card h3 { font-size: 21px; font-weight: 600; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 15.5px; }

/* Steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; counter-reset: s; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; }
.step__n { font-family: "Fraunces", serif; font-size: 36px; color: var(--accent); font-weight: 600; }
.step h3 { font-size: 22px; font-weight: 600; margin: 10px 0 8px; }
.step p { color: var(--ink-soft); font-size: 15.5px; }

/* Quote */
.quote { padding: 92px 0; text-align: center; }
.quote blockquote {
  font-family: "Fraunces", serif; font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 500; line-height: 1.3; max-width: 880px; margin: 0 auto; letter-spacing: -.01em;
}
.quote__by { margin-top: 24px; color: var(--ink-soft); font-size: 16px; }

/* Plans */
.plans { align-items: start; }
.plan {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px; position: relative;
}
.plan--featured { border-color: var(--accent); box-shadow: var(--shadow); }
.plan__badge {
  position: absolute; top: -13px; left: 28px;
  background: var(--accent); color: #fff; font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 999px; letter-spacing: .04em;
}
.plan__name { font-size: 22px; font-weight: 600; }
.plan__price { font-family: "Fraunces", serif; margin: 12px 0 2px; color: var(--ink-soft); }
.plan__price span { font-size: 46px; font-weight: 600; color: var(--ink); }
.plan__tag { color: var(--ink-soft); font-size: 14px; margin-bottom: 22px; }
.plan__list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 11px; }
.plan__list li { position: relative; padding-left: 26px; font-size: 15px; color: var(--ink-soft); }
.plan__list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 12px; padding: 18px 22px;
}
.faq summary { cursor: pointer; font-weight: 600; font-size: 17px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: 12px; color: var(--ink-soft); font-size: 15.5px; }

/* CTA */
.cta { padding: 96px 0; text-align: center; }
.cta__inner {
  background: var(--ink); color: var(--paper);
  border-radius: 26px; padding: 64px 32px;
}
.cta h2 { font-size: clamp(30px, 4.5vw, 46px); font-weight: 600; }
.cta p { margin: 14px 0 28px; color: #d9d0c2; font-size: 18px; }

/* Footer */
.footer { border-top: 1px solid var(--line); padding: 56px 0 32px; }
.footer__inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer__brand .brand__name { font-family: "Fraunces", serif; font-weight: 700; font-size: 22px; margin-left: 9px; }
.footer__brand { display: flex; flex-direction: column; gap: 4px; }
.footer__brand p { color: var(--ink-soft); font-size: 14px; margin-top: 8px; }
.footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer__cols h4 { font-family: "Inter", sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); margin-bottom: 14px; }
.footer__cols a { display: block; font-size: 15px; color: var(--ink-soft); margin-bottom: 9px; }
.footer__cols a:hover { color: var(--ink); }
.footer__bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 14px; }

/* Responsive */
@media (max-width: 880px) {
  .nav__links { display: none; }
  .grid--3, .steps { grid-template-columns: 1fr; }
  .editor__body { padding: 28px 24px 34px; }
  .footer__inner { flex-direction: column; }
}
@media (max-width: 560px) {
  .hero { padding: 56px 0 24px; }
  .nav__cta .btn--ghost { display: none; }
}
