/* Dilate marketing site — #718A9E primary + portfolio Ink accents on paper/ink.
   Self-hosted system fonts, no CDN, no telemetry (DIL-009 trust posture). */

:root {
  --primary: #718A9E;   /* slate blue-grey */
  --paper: #FAF7F1;     /* cream */
  --ink: #11120F;       /* near-black text */
  --accent-deep: #3A3A3A;
  --accent-mid: #5A5A5A;
  --brass: #8A6D3B;
  --white: #FFFFFF;
  --measure: 64ch;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brass); }
a:hover { color: var(--accent-deep); }

.wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 72px 24px 64px;
}
.hero img.mark { width: 112px; height: 112px; }
.hero h1 {
  font-size: 44px;
  font-weight: 300;
  letter-spacing: 2px;
  margin: 8px 0 4px;
}
.hero .tagline {
  font-size: 19px;
  font-weight: 300;
  opacity: 0.92;
  max-width: 34ch;
  margin: 0 auto 28px;
}

/* ── Store badges ─────────────────────────────────────────────────── */
.stores { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.18);
}
.badge:hover { background: var(--accent-deep); color: var(--white); }
.badge small { display: block; font-size: 10px; font-weight: 400; opacity: 0.8; letter-spacing: .5px; }
.badge .store { font-size: 15px; line-height: 1.1; }

/* ── Content sections ─────────────────────────────────────────────── */
section { padding: 56px 0; }
section h2 {
  font-size: 28px;
  font-weight: 400;
  color: var(--accent-deep);
  margin: 0 0 8px;
}
section p { max-width: var(--measure); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
.step {
  background: var(--white);
  border: 1px solid #e7e0d4;
  border-radius: 10px;
  padding: 22px;
}
.step .n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--primary); color: var(--white); font-weight: 700; margin-bottom: 10px;
}
.step h3 { margin: 0 0 6px; font-size: 17px; color: var(--ink); }
.step p { margin: 0; font-size: 15px; color: var(--accent-mid); }

.note {
  border-left: 3px solid var(--brass);
  padding: 8px 0 8px 16px;
  color: var(--accent-mid);
  font-size: 15px;
  max-width: var(--measure);
}

/* ── Footer ───────────────────────────────────────────────────────── */
footer {
  background: var(--accent-deep);
  color: #cfcfcf;
  padding: 36px 24px;
  font-size: 14px;
}
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
footer a { color: #fff; text-decoration: none; margin-right: 18px; }
footer a:hover { text-decoration: underline; }
footer .trust { color: #9fb0bd; max-width: 40ch; }

/* ── Legal pages ──────────────────────────────────────────────────── */
.legal { padding: 56px 0 72px; }
.legal h1 { font-size: 32px; font-weight: 400; color: var(--accent-deep); }
.legal h2 { font-size: 20px; font-weight: 600; color: var(--ink); margin-top: 32px; }
.legal p, .legal li { max-width: var(--measure); color: var(--accent-deep); }
.legal .updated { color: var(--accent-mid); font-size: 14px; }
.legal .back { display: inline-block; margin-bottom: 24px; }

@media (max-width: 720px) {
  .steps { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
}
