/* ErrandDrop
   Hand-written, no framework and no build step. Everything here is
   one file a person can read, which is the point: a site that needs
   npm install to change a phone number is a site nobody changes. */

:root {
  --teal: #12B394;
  --teal-deep: #0B7A66;
  --teal-wash: #F0FEFA;
  --orange: #FF6B35;
  --ink: #0F1B2D;
  --body: #5A6472;
  --muted: #8A94A6;
  --line: #ECEFF3;
  --page: #F8FAFC;
  --radius: 20px;
  --wrap: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter,
               Roboto, Helvetica, Arial, sans-serif;
  background: #fff;
  color: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Header ── */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 28px; height: 68px; }
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 19px; color: var(--ink);
  text-decoration: none; letter-spacing: -0.4px;
}
.logo img { width: 32px; height: 32px; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a {
  color: var(--body); text-decoration: none;
  font-size: 15px; font-weight: 500;
}
.nav-links a:hover { color: var(--teal-deep); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: #fff;
  padding: 12px 22px; border-radius: 100px;
  font-weight: 700; font-size: 15px;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(18,179,148,.28); }
.btn-ghost {
  background: #fff; color: var(--ink); border: 1.5px solid var(--line);
}
.btn-ghost:hover { box-shadow: 0 8px 20px rgba(15,27,45,.08); }

/* ── Hero ── */
.hero {
  padding: 84px 0 72px;
  background:
    radial-gradient(1100px 480px at 15% -10%, #E6FBF5 0%, transparent 60%),
    radial-gradient(900px 420px at 90% 0%, #FFF1EA 0%, transparent 55%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 56px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-wash); color: var(--teal-deep);
  padding: 7px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 700;
  border: 1px solid #D1F2EB; margin-bottom: 22px;
}
h1 {
  font-size: clamp(38px, 5.2vw, 60px);
  line-height: 1.08; letter-spacing: -1.8px;
  color: var(--ink); font-weight: 800; margin-bottom: 20px;
}
.lede { font-size: 19px; line-height: 1.6; margin-bottom: 30px; max-width: 34em; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.phone {
  width: 100%; max-width: 320px; margin: 0 auto; display: block;
  border-radius: 34px;
  box-shadow: 0 30px 70px rgba(15,27,45,.18);
}

/* ── Sections ── */
section { padding: 78px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
h2 {
  font-size: clamp(28px, 3.6vw, 38px);
  color: var(--ink); font-weight: 800;
  letter-spacing: -1px; margin-bottom: 14px; line-height: 1.18;
}
.section-head p { font-size: 17px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
}
.card-icon {
  width: 46px; height: 46px; border-radius: 15px;
  background: var(--teal-wash);
  display: grid; place-items: center;
  font-size: 22px; margin-bottom: 16px;
}
.card h3 { font-size: 17.5px; color: var(--ink); font-weight: 800; margin-bottom: 8px; }
.card p { font-size: 15px; }

/* ── Protect ── */
.protect { background: var(--page); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  background: #fff; border-radius: var(--radius);
  padding: 26px; border: 1px solid var(--line); position: relative;
}
.step-n {
  width: 32px; height: 32px; border-radius: 11px;
  background: var(--teal); color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 15px; margin-bottom: 15px;
}
.step h3 { font-size: 17px; color: var(--ink); font-weight: 800; margin-bottom: 7px; }
.step p { font-size: 15px; }

.note {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--teal-wash); border: 1px solid #D1F2EB;
  border-radius: 16px; padding: 18px; margin-top: 22px;
  color: var(--teal-deep); font-size: 15px;
}

/* ── Download ── */
.download { text-align: center; }
.stores { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.stores img { height: 52px; }

/* ── Footer ── */
footer {
  background: var(--ink); color: rgba(255,255,255,.72);
  padding: 54px 0 34px; font-size: 15px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.foot-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.foot-logo img { width: 30px; height: 30px; }
.foot-logo span { color: #fff; font-weight: 800; font-size: 18px; }
footer h4 {
  color: #fff; font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .8px; margin-bottom: 14px;
}
footer a { color: rgba(255,255,255,.72); text-decoration: none; display: block; margin-bottom: 9px; }
footer a:hover { color: #fff; }
.foot-base {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px; font-size: 13.5px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* ── Legal pages ── */
.legal { padding: 56px 0 84px; max-width: 780px; }
.legal h1 { font-size: 38px; margin-bottom: 10px; }
.updated { color: var(--muted); font-size: 15px; margin-bottom: 40px; }
.legal h2 {
  font-size: 22px; margin: 40px 0 12px;
  padding-top: 20px; border-top: 1px solid var(--line);
}
.legal h3 { font-size: 17px; color: var(--ink); margin: 22px 0 8px; font-weight: 700; }
.legal p, .legal li { font-size: 16px; margin-bottom: 13px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--teal-deep); }

/* ── Phones ── */
@media (max-width: 860px) {
  .hero-grid, .cards, .steps, .foot-grid { grid-template-columns: 1fr; }
  .hero { padding: 52px 0 48px; }
  section { padding: 54px 0; }
  .nav-links { display: none; }
  .phone { max-width: 260px; margin-top: 34px; }
  .foot-grid { gap: 30px; }
}
