/* ============================================================
   Drafty — Minimal landing page
   Fonts: Syne (display) / Plus Jakarta Sans (body)
   ============================================================ */

:root {
  --ink:        #1b1916;
  --ink-soft:   #4a463e;
  --muted:      #6b665c;
  --faint:      #8a857a;
  --hint:       #a39d90;
  --line:       #ece8df;
  --line-strong:#cfcabd;
  --bg:         #fcfcfa;
  --bg-alt:     #f6f4ee;
  --max:        1080px;
}

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

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

.container { max-width: var(--max); margin: 0 auto; padding-left: 36px; padding-right: 36px; }

.eyebrow {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--hint);
}

/* ---------- Header ---------- */
.site-header { border-bottom: 1px solid var(--line); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 26px; padding-bottom: 26px;
}
.logo { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 19px; letter-spacing: -.01em; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a { font-size: 13.5px; color: var(--muted); }
.nav a:hover { color: var(--ink); }
.nav .nav-cta { color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; }

.lang-switch { display: inline-flex; align-items: center; gap: 2px; }
.lang-btn {
  font-family: inherit; font-size: 12px; letter-spacing: .04em; font-weight: 500;
  color: var(--hint); background: none; border: none; cursor: pointer;
  padding: 5px 8px; border-radius: 7px; transition: color .15s, background .15s;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.is-active { color: var(--ink); background: var(--bg-alt); }

/* ---------- Hero ---------- */
.hero { max-width: 880px; margin: 0 auto; padding: 130px 36px 96px; text-align: center; }
.hero h1 {
  margin-top: 30px;
  font-family: 'Syne', sans-serif; font-weight: 500;
  font-size: 64px; line-height: 1.04; letter-spacing: -.03em;
}
.hero-sub {
  margin: 32px auto 0; max-width: 540px;
  font-size: 17px; line-height: 1.7; color: var(--muted); font-weight: 300;
}
.hero-actions {
  margin-top: 42px;
  display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap;
}
.hero-note { margin-top: 24px; font-size: 12px; color: var(--hint); }

.btn-solid {
  font-size: 14px; font-weight: 500; color: var(--bg);
  background: var(--ink); padding: 15px 30px; border-radius: 999px;
  display: inline-block; transition: opacity .15s;
}
.btn-solid:hover { opacity: .85; }
.btn-solid.btn-sm { padding: 11px 20px; align-self: flex-start; }

.link-arrow {
  font-size: 14px; color: var(--ink);
  border-bottom: 1px solid var(--line-strong); padding-bottom: 3px;
  transition: border-color .15s;
}
.link-arrow:hover { border-color: var(--ink); }

/* ---------- Stats ---------- */
.stats {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: center;
}
.stat {
  flex: 1; min-width: 160px; text-align: center;
  padding: 34px 16px; border-left: 1px solid var(--line);
}
.stat:first-child { border-left: none; }
.stat-v { font-family: 'Syne', sans-serif; font-weight: 500; font-size: 30px; letter-spacing: -.02em; }
.stat-l { margin-top: 6px; font-size: 12.5px; color: var(--faint); }

/* ---------- Section scaffolding ---------- */
.section { padding-top: 120px; padding-bottom: 120px; }
.section-head { max-width: 560px; margin-bottom: 72px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 {
  margin-top: 18px;
  font-family: 'Syne', sans-serif; font-weight: 500;
  font-size: 40px; line-height: 1.12; letter-spacing: -.025em;
}
.section-head p { margin-top: 18px; font-size: 15px; color: var(--muted); font-weight: 300; }

/* ---------- Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 64px 72px;
}
.feature { border-top: 1px solid var(--ink); padding-top: 24px; }
.feature-n { font-family: 'Syne', sans-serif; font-size: 13px; color: var(--hint); letter-spacing: .04em; }
.feature h3 {
  margin-top: 16px;
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: 21px; letter-spacing: -.01em;
}
.feature p { margin-top: 12px; font-size: 14.5px; line-height: 1.7; color: var(--muted); font-weight: 300; }

/* ---------- Pricing ---------- */
.pricing-band { border-top: 1px solid var(--line); }
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  border-top: 1px solid var(--ink);
}
.plan {
  padding: 36px 32px; border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 20px;
}
.plan.plan-last { border-right: 1px solid var(--line); }
.plan-popular { background: var(--bg-alt); }
.plan-name { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 18px; display: flex; align-items: center; gap: 8px; }
.plan-tag { font-size: 12.5px; color: var(--faint); margin-top: 5px; }
.badge {
  font-size: 10.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); border: 1px solid var(--ink); padding: 2px 7px; border-radius: 999px;
}
.plan-price { display: flex; align-items: baseline; gap: 5px; }
.plan-price .price { font-family: 'Syne', sans-serif; font-weight: 500; font-size: 38px; letter-spacing: -.02em; }
.plan-price .per { font-size: 13px; color: var(--hint); }
.plan-docs { font-size: 13px; color: var(--muted); padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.plan-popular .plan-docs { border-bottom-color: #ddd8cc; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.plan-features li {
  font-size: 13.5px; color: var(--muted); font-weight: 300;
  padding-left: 20px; position: relative;
}
.plan-features li::before { content: '\2014'; position: absolute; left: 0; color: var(--line-strong); }
.plan-popular .plan-features li { color: var(--ink-soft); }
.plan-popular .plan-features li::before { color: var(--hint); }
.plan > .link-arrow, .plan > .btn-solid { margin-top: auto; align-self: flex-start; }

/* ---------- FAQ ---------- */
.faq-title {
  text-align: center; margin-bottom: 56px;
  font-family: 'Syne', sans-serif; font-weight: 500; font-size: 40px; letter-spacing: -.025em;
}
.faq { max-width: 760px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 24px 2px; background: none; border: none; cursor: pointer; text-align: left;
  font-size: 16.5px; font-weight: 500; color: var(--ink);
}
.faq-sign { font-size: 18px; color: var(--hint); font-weight: 300; flex: none; }
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
.faq-a > p {
  overflow: hidden;
  padding: 0 2px; font-size: 14.5px; line-height: 1.75; color: var(--muted); font-weight: 300;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a > p { padding-bottom: 26px; }

/* ---------- Waitlist ---------- */
.waitlist-band { border-top: 1px solid var(--line); }
.waitlist-inner { max-width: 620px; margin: 0 auto; padding: 110px 36px; text-align: center; }
.waitlist-inner h2 {
  font-family: 'Syne', sans-serif; font-weight: 500;
  font-size: 42px; line-height: 1.1; letter-spacing: -.025em;
}
.waitlist-inner > p { margin-top: 18px; font-size: 15px; color: var(--muted); font-weight: 300; }
.waitlist-form {
  margin: 32px auto 0; display: flex; gap: 12px; max-width: 420px;
  border-bottom: 1px solid var(--ink); padding-bottom: 6px;
}
.waitlist-form input {
  flex: 1; font-family: inherit; font-size: 15px; color: var(--ink);
  background: none; border: none; outline: none;
}
.waitlist-form button {
  font-size: 14px; font-weight: 500; color: var(--ink);
  background: none; border: none; cursor: pointer; white-space: nowrap;
}
.waitlist-thanks { margin-top: 30px; font-size: 14.5px; color: var(--ink); }

.footer-bar { border-top: 1px solid var(--line); }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 30px; padding-bottom: 30px;
}
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 15px; }
.footer-logo span { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 300; font-size: 12px; color: var(--hint); }
.footer-rights { font-size: 12px; color: var(--hint); }

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .hero { padding-top: 80px; padding-bottom: 64px; }
  .hero h1 { font-size: 40px; }
  .section { padding-top: 80px; padding-bottom: 80px; }
  .nav { gap: 18px; }
  .nav a:not(.nav-cta) { display: none; }
  .plan { border-left: none; border-top: 1px solid var(--line); }
  .plan.plan-last { border-right: none; }
}
