/* DispatchSam marketing site — deliberately small and dependency-free.
   This site exists to be read by two audiences: contractors evaluating the
   service, and reviewers at Google and the mobile carriers verifying the
   business is real. Both are better served by plain, honest pages than by
   anything clever. */

:root {
  --ink: #14181f;
  --body: #3d4653;
  --muted: #6b7684;
  --rule: #e2e6ec;
  --bg: #ffffff;
  --bg-alt: #f6f8fa;
  --accent: #1f5f4b;
  --accent-soft: #eaf3ef;
  --max: 46rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f2f4f7;
    --body: #c3cad4;
    --muted: #8d97a4;
    --rule: #2a3039;
    --bg: #12151a;
    --bg-alt: #1a1f26;
    --accent: #6ec3a3;
    --accent-soft: #17251f;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto,
    Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

header.site {
  border-bottom: 1px solid var(--rule);
  padding: 1.1rem 0;
}
header.site .wrap { display: flex; align-items: baseline; gap: 1.5rem; }
.brand {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
header.site nav { margin-left: auto; display: flex; gap: 1.25rem; }
header.site nav a { color: var(--muted); text-decoration: none; font-size: 0.9rem; }
header.site nav a:hover { color: var(--ink); }

h1, h2, h3 { color: var(--ink); line-height: 1.25; letter-spacing: -0.02em; }
h1 { font-size: 2.1rem; margin: 2.5rem 0 0.75rem; }
h2 { font-size: 1.3rem; margin: 2.5rem 0 0.6rem; }
h3 { font-size: 1.02rem; margin: 1.75rem 0 0.4rem; }
p { margin: 0 0 1rem; }
a { color: var(--accent); }

.lede { font-size: 1.12rem; color: var(--body); }
.tagline { color: var(--muted); font-size: 0.95rem; margin-top: -0.4rem; }

ul { padding-left: 1.15rem; margin: 0 0 1rem; }
li { margin-bottom: 0.4rem; }

.card {
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  margin: 1.5rem 0;
}
.card h3 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }

.steps { list-style: none; padding: 0; counter-reset: s; }
.steps li {
  counter-increment: s;
  padding-left: 2.4rem;
  position: relative;
  margin-bottom: 1rem;
}
.steps li::before {
  content: counter(s);
  position: absolute;
  left: 0; top: 0.05rem;
  width: 1.6rem; height: 1.6rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.steps strong { color: var(--ink); }

table { border-collapse: collapse; width: 100%; margin: 1.25rem 0; font-size: 0.94rem; }
th, td { text-align: left; padding: 0.6rem 0.7rem; border-bottom: 1px solid var(--rule); vertical-align: top; }
th { color: var(--ink); font-weight: 600; background: var(--bg-alt); }
.scroll-x { overflow-x: auto; }

footer.site {
  border-top: 1px solid var(--rule);
  margin-top: 4rem;
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: 0.88rem;
}
footer.site a { color: var(--muted); }
footer.site nav { display: flex; gap: 1.1rem; flex-wrap: wrap; margin-bottom: 0.75rem; }

.legal { font-size: 0.95rem; }
.legal h2 { font-size: 1.12rem; margin-top: 2.2rem; }
.updated { color: var(--muted); font-size: 0.88rem; }

.notice {
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  padding: 0.85rem 1rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
  font-size: 0.94rem;
}
.notice p:last-child { margin-bottom: 0; }
