:root {
  --paper: #F7F4ED;
  --surface: #FFFDFA;
  --ink: #1F1C17;
  --muted: #746E63;
  --line: #E1DACE;
  --blue: #3457E6;
  --yellow: #FFD84D;
  --green: #269D68;
  --radius: 18px;
  --maxw: 1080px;
  --font: "Nunito", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

a { color: var(--blue); }

/* ---------- header ---------- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}

.brand img { width: 32px; height: 32px; border-radius: 9px; display: block; }

.site-head nav { display: flex; align-items: center; gap: 22px; }

.site-head nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.site-head nav a:hover { color: var(--ink); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid var(--blue);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(52, 87, 230, 0.28); }

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn.ghost:hover { box-shadow: none; border-color: var(--ink); }

.btn.small { padding: 10px 18px; font-size: 15px; }

/* ---------- hero ---------- */

.hero { padding: 84px 0 72px; }

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

h1 {
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 900;
  margin: 0 0 20px;
}

.lede { font-size: 20px; color: var(--muted); margin: 0 0 30px; max-width: 30em; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.cta-note { font-size: 14px; color: var(--muted); margin-top: 16px; }

.hero-shot {
  display: block;
  width: 100%;
  max-width: 340px;
  margin-left: auto;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(31, 28, 23, 0.14);
}

/* ---------- sections ---------- */

section { padding: 72px 0; }

section.alt { background: var(--surface); border-block: 1px solid var(--line); }

h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 900;
  margin: 0 0 14px;
}

.section-lede { color: var(--muted); font-size: 18px; max-width: 34em; margin: 0 0 44px; }

/* ---------- steps ---------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

section.alt .step { background: var(--paper); }

.step .num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--yellow);
  font-weight: 900;
  font-size: 15px;
  margin-bottom: 16px;
}

.step h3 { margin: 0 0 8px; font-size: 20px; font-weight: 800; letter-spacing: -0.01em; }

.step p { margin: 0; color: var(--muted); font-size: 16px; }

/* ---------- feature rows ---------- */

.feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 46px 0;
}

.feature + .feature { border-top: 1px solid var(--line); }

.feature.flip .shot { order: 2; }

.feature .shot {
  width: 100%;
  max-width: 300px;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(31, 28, 23, 0.12);
  display: block;
}

.feature h3 { font-size: 27px; font-weight: 900; letter-spacing: -0.02em; margin: 0 0 12px; }

.feature p { color: var(--muted); margin: 0 0 14px; }

.tick { list-style: none; padding: 0; margin: 0; }

.tick li { position: relative; padding-left: 28px; margin-bottom: 8px; color: var(--muted); }

.tick li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--green);
}

/* ---------- pricing ---------- */

.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 760px; }

.plan {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}

.plan.pro { border-color: var(--blue); border-width: 2px; }

.plan h3 { margin: 0 0 4px; font-size: 22px; font-weight: 900; }

.plan .price { font-size: 15px; color: var(--muted); margin: 0 0 18px; font-weight: 700; }

/* ---------- faq ---------- */

.faq { max-width: 760px; }

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 18px;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after { content: "+"; float: right; color: var(--muted); font-weight: 700; }

.faq details[open] summary::after { content: "\2013"; }

.faq p { color: var(--muted); margin: 12px 0 0; }

/* ---------- closing ---------- */

.closing { text-align: center; }

.closing h2 { max-width: 16em; margin-inline: auto; }

.closing .cta-row { justify-content: center; }

.closing .section-lede { margin-inline: auto; }

/* ---------- footer ---------- */

footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 56px;
  color: var(--muted);
  font-size: 15px;
}

footer .wrap { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; }

footer nav { display: flex; gap: 20px; flex-wrap: wrap; }

footer a { color: var(--muted); text-decoration: none; font-weight: 700; }

footer a:hover { color: var(--ink); }

/* ---------- legal pages ---------- */

.legal { padding: 60px 0 80px; }

.legal .wrap { max-width: 760px; }

.legal h1 { font-size: clamp(32px, 4.4vw, 46px); margin-bottom: 8px; }

.legal .updated { color: var(--muted); font-size: 15px; margin: 0 0 40px; }

.legal h2 { font-size: 24px; margin: 40px 0 12px; }

.legal h3 { font-size: 19px; margin: 26px 0 8px; font-weight: 800; }

.legal p, .legal li { color: #3b362e; }

.legal ul { padding-left: 22px; }

.legal li { margin-bottom: 8px; }

.legal table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 16px; }

.legal th, .legal td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }

.legal th { background: var(--surface); font-weight: 800; }

.callout {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 24px 0;
}

.callout p { margin: 0; }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .hero .wrap, .feature { grid-template-columns: 1fr; gap: 36px; }
  .feature.flip .shot { order: 0; }
  .hero-shot, .feature .shot { margin: 0 auto; }
  .steps { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .site-head nav a:not(.btn) { display: none; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .hero { padding: 56px 0 48px; }
  section { padding: 56px 0; }
  .lede { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
