:root {
  --paper: #E6E0CC;
  --canvas: #FAFAF0;
  --panel: #F5F2E0;
  --ink: #1C1F1C;
  --muted: #5F5F55;
  --border: #2E312A;
  --amber: #F2990F;
  --amber-dark: #DB7D08;
  --amber-stroke: #945705;
  --teal: #24D1B8;
  --teal-dark: #057A6E;
  --green: #127A5C;
  --green-dark: #0B5E46;
  --green-stroke: #053D2E;
  --radius: 10px;
  --shadow: 4px 4px 0 var(--border);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

.wrap { max-width: 1020px; margin: 0 auto; padding: 0 22px; }

/* ---- top nav ---- */
.nav {
  border-bottom: 2px solid var(--border);
  background: rgba(230, 224, 204, 0.9);
  backdrop-filter: saturate(120%) blur(6px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav .wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 64px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 18px; }
.brand img { width: 34px; height: 34px; border-radius: 8px; border: 2px solid var(--border); }
.nav-links { display: flex; gap: 20px; margin-left: auto; align-items: center; font-weight: 800; font-size: 15px; }
.nav-links a { padding: 4px 0; border-bottom: 3px solid transparent; }
.nav-links a:hover, .nav-links a.active { border-bottom-color: var(--amber); }
.nav-cta { margin-left: 4px; }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  font-size: 16px;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: transform 0.05s ease, box-shadow 0.05s ease;
}
.btn:active { transform: translate(2px, 2px); }
.btn-green {
  background: var(--green);
  color: var(--canvas);
  border-color: var(--green-stroke);
  box-shadow: 0 3px 0 var(--green-stroke);
}
.btn-green:active { box-shadow: 0 1px 0 var(--green-stroke); }
.btn-amber {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber-stroke);
  box-shadow: 0 3px 0 var(--amber-stroke);
}
.btn-amber:active { box-shadow: 0 1px 0 var(--amber-stroke); }
.btn-ghost { background: var(--panel); color: var(--ink); }
.btn-sm { font-size: 14px; padding: 8px 15px; }
.btn .sub { font-weight: 700; font-size: 12px; opacity: 0.85; }

/* ---- hero ---- */
.hero { padding: 78px 0 64px; text-align: center; }
.hero .icon {
  width: 128px; height: 128px; border-radius: 28px;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 26px;
}
.hero h1 { font-size: 58px; font-weight: 900; letter-spacing: -1.5px; line-height: 1.02; }
.hero .tagline { font-size: 24px; font-weight: 900; color: var(--teal-dark); margin-top: 14px; }
.hero p.lede {
  font-size: 19px; color: var(--muted); font-weight: 600;
  max-width: 620px; margin: 18px auto 0;
}
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.hero .note { font-size: 13px; color: var(--muted); font-weight: 700; margin-top: 16px; }

/* ---- kicker + section headers ---- */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 900; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--teal-dark);
}
.section { padding: 60px 0; border-top: 2px solid var(--border); }
.section h2 { font-size: 34px; font-weight: 900; letter-spacing: -0.5px; margin: 12px 0 8px; }
.section .sub { font-size: 17px; color: var(--muted); font-weight: 600; max-width: 640px; }

/* ---- steps ---- */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 34px; }
.step {
  background: var(--canvas); border: 2px solid var(--border); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow);
}
.step .num {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--amber); border: 2px solid var(--amber-stroke);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px; margin-bottom: 14px;
}
.step h3 { font-size: 19px; font-weight: 900; margin-bottom: 6px; }
.step p { font-size: 15px; color: var(--muted); font-weight: 600; }

/* ---- privacy promises ---- */
.promises { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 34px; }
.promise {
  background: var(--panel); border: 2px solid var(--border); border-radius: var(--radius);
  padding: 20px;
}
.promise .h { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 900; }
.promise .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--teal-dark); border: 2px solid var(--border); flex: none;
}
.promise p { font-size: 14px; color: var(--muted); font-weight: 600; margin-top: 8px; }

/* ---- conversions ---- */
.cat { margin-top: 30px; }
.cat h3 {
  font-size: 14px; font-weight: 900; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.conv-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.conv {
  background: var(--canvas); border: 2px solid var(--border); border-radius: var(--radius);
  padding: 15px 16px;
}
.conv .pair { font-size: 16px; font-weight: 900; display: flex; align-items: center; gap: 7px; }
.conv .pair .arrow { color: var(--teal-dark); }
.conv .why { font-size: 13px; color: var(--muted); font-weight: 600; margin-top: 5px; }
.tag {
  display: inline-block; font-size: 11px; font-weight: 900; letter-spacing: 0.6px;
  color: var(--teal-dark); border: 1.5px solid var(--teal-dark); border-radius: 6px;
  padding: 1px 7px; margin-left: 7px; vertical-align: 2px;
}

/* ---- final CTA band ---- */
.band {
  border-top: 2px solid var(--border);
  background: var(--teal-dark);
  color: var(--canvas);
  text-align: center;
  padding: 64px 22px;
}
.band h2 { font-size: 36px; font-weight: 900; letter-spacing: -0.5px; }
.band p { font-size: 17px; font-weight: 600; opacity: 0.9; margin-top: 10px; }
.band .cta-row { margin-top: 28px; }

/* ---- article (privacy / support pages) ---- */
.article { padding: 54px 0 64px; }
.article h1 { font-size: 42px; font-weight: 900; letter-spacing: -1px; margin: 14px 0 6px; }
.article .updated { font-size: 14px; color: var(--muted); font-weight: 700; }
.article h2 { font-size: 24px; font-weight: 900; margin: 34px 0 10px; }
.article h3 { font-size: 18px; font-weight: 900; margin: 24px 0 6px; }
.article p { font-size: 16px; color: #34342E; margin-bottom: 12px; }
.article ul { margin: 0 0 14px 22px; }
.article li { font-size: 16px; color: #34342E; margin-bottom: 6px; }
.article a.link { color: var(--teal-dark); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.callout {
  background: var(--panel); border: 2px solid var(--border); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--shadow); margin: 22px 0;
}
.callout p { margin: 0; font-weight: 700; color: var(--ink); }

/* ---- footer ---- */
.footer { border-top: 2px solid var(--border); background: var(--paper); padding: 40px 0; }
.footer .wrap { display: flex; flex-wrap: wrap; gap: 18px 40px; align-items: center; }
.footer .brand { font-size: 16px; }
.footer .f-links { display: flex; gap: 20px; font-weight: 800; font-size: 15px; }
.footer .f-links a:hover { color: var(--teal-dark); }
.footer .spacer { flex: 1 1 auto; }
.footer .email { font-weight: 800; font-size: 15px; }
.footer .email:hover { color: var(--teal-dark); }
.footer .copy { flex-basis: 100%; font-size: 13px; color: var(--muted); font-weight: 600; margin-top: 6px; }

/* ---- responsive ---- */
@media (max-width: 820px) {
  .hero h1 { font-size: 44px; }
  .steps, .promises, .conv-grid { grid-template-columns: 1fr; }
  .promises { grid-template-columns: 1fr; }
  .nav-links { gap: 14px; font-size: 14px; }
  .nav-links .hide-sm { display: none; }
}
@media (max-width: 560px) {
  .nav-links .nav-cta { display: none; }
  .hero { padding: 52px 0 44px; }
  .hero h1 { font-size: 38px; }
  .section h2, .band h2 { font-size: 28px; }
}
