:root {
  --bg: #fbfaf6;
  --ink: #0b1020;
  --ink-soft: #2a3046;
  --muted: #6b7280;
  --line: #e6e4dc;
  --card: #ffffff;
  --accent: #0c66e4;
  --accent-soft: #e9f2ff;
  --accent-ink: #082f6e;
  --primary: #0b1020;
  --primary-ink: #ffffff;
  --warm: #f4f1e8;
  --shadow: 0 1px 2px rgba(11, 16, 32, 0.04), 0 8px 28px rgba(11, 16, 32, 0.06);
  --radius: 16px;
  --maxw: 1080px;
}

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

body {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }

/* ------- Nav ------- */
.nav {
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.85);
  backdrop-filter: saturate(140%) blur(6px);
  position: sticky; top: 0; z-index: 10;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 44px; height: 44px; object-fit: contain; border-radius: 10px; }
.brand-name {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700; font-size: 19px; letter-spacing: -0.01em;
}
.brand-portfolio {
  font-weight: 500; font-size: 12px; color: var(--muted);
  letter-spacing: 0.08em; text-transform: uppercase; margin-left: 8px;
}
.nav-links { display: flex; gap: 28px; font-weight: 500; font-size: 15px; color: var(--ink-soft); }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--primary); color: var(--primary-ink);
  padding: 10px 18px; border-radius: 999px;
  font-weight: 600; font-size: 14.5px;
}
.nav-cta:hover { background: #161e3a; }

/* ------- Hero ------- */
.hero { padding: 88px 0 56px; border-bottom: 1px solid var(--line); }
.eyebrow {
  font-weight: 600; font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent-ink); margin-bottom: 22px;
}
.hero h1 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700; font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.04; letter-spacing: -0.02em; margin: 0 0 28px; max-width: 18ch;
}
.hero h1 .ital { font-style: italic; font-weight: 500; color: var(--accent-ink); }
.lede { font-size: 19px; line-height: 1.6; color: var(--ink-soft); max-width: 60ch; margin: 0 0 28px; }

/* ------- Create-screen mock ------- */
.mock {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 18px 20px; box-shadow: var(--shadow);
  margin: 32px 0 12px; max-width: 560px;
}
.mock-row { display: flex; align-items: center; gap: 12px; padding: 8px 0; font-size: 14.5px; }
.mock-row + .mock-row { border-top: 1px solid var(--line); }
.mock-label { width: 110px; flex-shrink: 0; color: var(--muted); font-size: 13px; }
.mock-value { color: var(--ink); font-weight: 500; }
.mock-pick {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-soft); color: var(--accent-ink);
  padding: 4px 12px; border-radius: 999px; font-weight: 600; font-size: 13.5px;
}
.mock-fill { color: var(--accent-ink); font-weight: 600; }
.byline-caption { font-size: 12.5px; color: var(--muted); margin: 6px 0 0; letter-spacing: 0.02em; }

.cta-row { display: flex; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 14.5px; padding: 12px 20px;
  border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary { background: var(--primary); color: var(--primary-ink); }
.btn-primary:hover { background: #161e3a; }
.btn-ghost { border-color: #d6d2c5; color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); background: rgba(11, 16, 32, 0.04); }
.arrow { display: inline-block; transition: transform 0.15s ease; }
.btn:hover .arrow { transform: translateX(2px); }

/* ------- Sections ------- */
section.section { padding: 80px 0; border-top: 1px solid var(--line); }
section.section h2 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700; font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -0.015em; margin: 0 0 36px; max-width: 22ch;
}

.features {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px;
}
.features li {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.features h3 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 19px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 8px;
}
.features p { font-size: 14.5px; color: var(--ink-soft); margin: 0; line-height: 1.55; }
.features .feat-icon { font-size: 22px; margin-bottom: 12px; display: block; }

/* ------- How it works (steps) ------- */
.section-lede {
  font-size: 17px; line-height: 1.6; color: var(--ink-soft);
  max-width: 62ch; margin: -18px 0 36px;
}
.how-cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 22px;
}
.how-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
}
.how-card h3 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 20px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 4px;
}
.how-card .how-sub { font-size: 13.5px; color: var(--muted); margin: 0 0 22px; }
.steps { list-style: none; counter-reset: step; padding: 0; margin: 0; }
.steps li { position: relative; padding: 0 0 20px 46px; counter-increment: step; }
.steps li:last-child { padding-bottom: 0; }
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: -2px;
  width: 30px; height: 30px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-ink);
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center;
}
.steps li:not(:last-child)::after {
  content: ''; position: absolute; left: 15px; top: 32px; bottom: 6px;
  width: 2px; background: var(--line);
}
.steps .step-title { font-size: 15.5px; color: var(--ink); font-weight: 600; line-height: 1.5; }
.steps p { font-size: 14.5px; color: var(--ink-soft); margin: 5px 0 0; line-height: 1.55; }
.steps strong { color: var(--ink); font-weight: 700; }
.steps code { background: var(--warm); padding: 1px 6px; border-radius: 5px; font-size: 13px; }
.how-help {
  font-size: 13.5px; color: var(--muted); margin: 22px 0 0;
  padding-top: 18px; border-top: 1px solid var(--line); line-height: 1.6;
}
.how-help a { color: var(--accent-ink); text-decoration: underline; }

/* ------- FAQ (AEO) ------- */
.faq-list { display: grid; gap: 14px; max-width: 820px; }
.faq-item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 4px 24px;
}
.faq-item summary {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700; font-size: 17px; letter-spacing: -0.01em;
  padding: 18px 0; cursor: pointer; list-style: none; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--accent-ink); font-size: 22px; font-weight: 400; }
.faq-item[open] summary::after { content: '–'; }
.faq-item .faq-a { padding: 0 0 20px; margin: 0; font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; }
.faq-item .faq-a code { background: var(--warm); padding: 1px 6px; border-radius: 5px; font-size: 13.5px; }

/* trust */
.trust { background: var(--warm); }
.trust-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px;
}
.trust-list li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
}
.trust-list .feat-icon { font-size: 22px; margin-bottom: 10px; display: block; }
.trust-list h3 { font-family: 'Bricolage Grotesque', system-ui, sans-serif; font-size: 17px; margin: 0 0 6px; font-weight: 700; }
.trust-list p { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.55; }

/* ------- Footer ------- */
.foot { border-top: 1px solid var(--line); padding: 30px 0; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; color: var(--muted); }
.foot-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 18px; }
.foot-links a:hover { color: var(--ink); }

/* ------- Docs (privacy + security pages) ------- */
.doc-main { padding: 56px 0 80px; }
.doc-main h1 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; letter-spacing: -0.015em; margin: 0 0 8px;
}
.doc-main h2 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 22px; font-weight: 700; letter-spacing: -0.01em;
  margin: 40px 0 14px;
}
.doc-main h3 { font-family: 'Bricolage Grotesque', system-ui, sans-serif; font-size: 17px; margin: 24px 0 8px; }
.doc-main p, .doc-main li { font-size: 15.5px; line-height: 1.66; color: var(--ink-soft); }
.doc-main table { border-collapse: collapse; width: 100%; margin: 14px 0; font-size: 14.5px; }
.doc-main th, .doc-main td { border: 1px solid var(--line); padding: 8px 12px; text-align: left; }
.doc-main th { background: var(--warm); }
.doc-main code { background: var(--warm); padding: 1px 6px; border-radius: 5px; font-size: 13.5px; }

/* ------- Responsive ------- */
@media (max-width: 640px) {
  .nav-inner { height: 60px; }
  .brand-name { font-size: 17px; }
  .nav-links { gap: 18px; font-size: 14px; }
  .nav-cta { padding: 8px 14px; font-size: 13.5px; }
  .hero { padding: 56px 0 48px; }
  section.section { padding: 56px 0; }
  .lede { font-size: 17px; }
  .mock-label { width: 84px; }
}
