/* Self-hosted fonts — same files as the app itself. Even the marketing site
   makes zero third-party requests, which is a small but real extension of
   the "nothing leaves your device" story. */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('./fonts/fraunces-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('./fonts/fraunces-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('./fonts/nunito-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('./fonts/nunito-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --cream: #faf7f3;
  --surface: #ffffff;
  --ink: #2e2e30;
  --muted: #8b8b8f;
  --muted-strong: #6b6b6e;
  --line: #ece6dd;
  --plum: #6e5a7c;
  --accent: #b27c88;
  --accent-hover: #9d6a76;
  --accent-soft: #f3ebe9;
  --good: #6b9d7f;
  --shadow-soft: 0 4px 18px rgba(64, 58, 53, 0.05);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

code {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  background: var(--accent-soft);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.85em;
  color: #7a4f56;
}

.font-display {
  font-family: 'Fraunces', Georgia, serif;
  font-optical-sizing: auto;
  letter-spacing: -0.01em;
}

/* Layout */
.wrap { width: 100%; display: flex; flex-direction: column; align-items: center; }
.container { width: 100%; box-sizing: border-box; padding-left: 24px; padding-right: 24px; max-width: 760px; }
.container-wide { width: 100%; box-sizing: border-box; padding-left: 24px; padding-right: 24px; max-width: 1040px; }

/* Nav */
.nav {
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.brand { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.brand span { font-family: 'Fraunces', Georgia, serif; font-size: 20px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.nav-link { font-size: 14px; font-weight: 700; color: var(--muted-strong); white-space: nowrap; }
.nav-link.accent { color: var(--accent); }

/* Hero */
.hero { padding-top: 40px; padding-bottom: 56px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
h1 { font-weight: 500; line-height: 1.14; color: var(--ink); font-size: clamp(34px, 6vw, 52px); margin: 18px 0 0; }
.hero p.lede { margin: 20px auto 0; font-size: 18px; line-height: 1.6; color: var(--muted-strong); max-width: 560px; }
.reassure { margin-top: 14px; font-size: 14px; font-weight: 700; color: var(--muted); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, var(--plum), var(--accent)) border-box;
  border: 1.5px solid transparent;
  color: var(--ink); font-weight: 700; font-size: 15px;
  padding: 14.5px 29.5px; border-radius: 999px;
  cursor: pointer;
  transition: color 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { color: var(--plum); box-shadow: 0 2px 10px rgba(110, 90, 124, 0.18); }

/* Cards */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 24px;
  padding: 26px 28px; box-shadow: var(--shadow-soft);
}
.card-row { display: flex; gap: 18px; align-items: flex-start; }
.icon-badge {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 999px;
  background: var(--accent-soft); display: flex; align-items: center; justify-content: center;
}
.icon-badge.small { width: 38px; height: 38px; }
.icon-badge svg { stroke: var(--accent); }

/* Steps */
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { margin: 0; font-family: 'Fraunces', Georgia, serif; font-size: 32px; font-weight: 500; color: var(--ink); }
.section-head p { margin: 12px 0 0; font-size: 15px; color: var(--muted); }

.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 22px; padding: 26px 0; border-top: 1px solid var(--line); }
.step:last-child { border-bottom: 1px solid var(--line); }
.step-num { flex-shrink: 0; width: 36px; font-family: 'Fraunces', Georgia, serif; font-size: 22px; font-weight: 500; color: var(--accent); }
.step-title { font-size: 16px; font-weight: 700; color: var(--ink); }
.step-body { margin-top: 6px; font-size: 14px; line-height: 1.65; color: var(--muted-strong); }

/* Fact grid (data page) */
.fact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.fact-card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 24px; }
.fact-card p.title { margin: 14px 0 0; font-size: 14.5px; font-weight: 700; color: var(--ink); }
.fact-card p.body { margin: 6px 0 0; font-size: 13px; line-height: 1.6; color: var(--muted); }
@media (max-width: 720px) {
  .fact-grid { grid-template-columns: 1fr; }
}

/* Table (data page) */
table { border-collapse: collapse; width: 100%; }
th, td { text-align: left; padding: 12px 16px; font-size: 14px; }
th { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); font-weight: 700; border-bottom: 1px solid var(--line); }
td { border-bottom: 1px solid var(--line); color: var(--ink); }
tr:last-child td { border-bottom: none; }
.good { font-weight: 700; color: var(--good); }

/* Numbered verify list */
.verify { display: flex; flex-direction: column; }
.verify-row { display: flex; gap: 18px; padding: 20px 0; border-top: 1px solid var(--line); }
.verify-row:last-child { border-bottom: 1px solid var(--line); }
.verify-num { flex-shrink: 0; width: 26px; font-family: 'Fraunces', Georgia, serif; font-size: 18px; color: var(--accent); }
.verify-title { font-size: 15px; font-weight: 700; color: var(--ink); }
.verify-body { margin-top: 4px; font-size: 13.5px; line-height: 1.6; color: var(--muted-strong); }

/* Callout */
.callout { display: flex; gap: 16px; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 22px 26px; }
.callout .title { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.callout .body { margin-top: 3px; font-size: 13px; line-height: 1.5; color: var(--muted); }

/* Footer */
.site-footer { padding: 56px 24px 48px; text-align: center; font-size: 12px; color: #b3aea6; display: flex; align-items: center; justify-content: center; gap: 6px; }

.pad-top-lg { padding-top: 88px; }
.pad-top-xl { padding-top: 64px; }
