/* ─────────────────────────────────────────────────────────────────────────────
   Evangel.chat

   The blue is #0F7BFF, sampled from the app logo — two chat bubbles overlapping
   into a cross. The page follows that idea: conversation first, everything else
   quiet around it. Plenty of white, one accent, no decoration competing with the
   words, because the words are the product.
   ───────────────────────────────────────────────────────────────────────────── */

:root {
  --blue:   #0F7BFF;
  --blue-d: #0A63D2;
  --ink:    #0E1726;
  --muted:  #5B6577;
  --paper:  #FFFFFF;
  --tint:   #F5F8FD;
  --line:   #E3E9F2;
  --font:   "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 1rem; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--font); font-size: 1.0625rem; line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, p { margin: 0; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.wrap { width: min(1080px, calc(100% - 48px)); margin-inline: auto; }

.skip { position: fixed; top: -100px; left: 16px; z-index: 60; background: var(--paper);
        padding: 12px 16px; border-radius: 8px; border: 1px solid var(--line); }
.skip:focus { top: 12px; }

/* ── header ───────────────────────────────────────────────────────────────── */
.head { padding-block: 18px; border-bottom: 1px solid var(--line); }
.head-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 800; font-size: 1.16rem; letter-spacing: -.02em; }
.brand img { width: 38px; height: 38px; border-radius: 9px; }
.brand .dot { color: var(--blue); }
.nav { display: flex; align-items: center; gap: 26px; font-size: .95rem; font-weight: 500; }
.nav a { text-decoration: none; }
.nav a:not(.btn):hover { color: var(--blue); }

/* ── buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 24px; border-radius: 10px;
  font-family: var(--font); font-weight: 600; font-size: 1rem;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn-sm { min-height: 40px; padding: 0 16px; font-size: .92rem; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 22px -12px rgba(15,123,255,.9); }
.btn-primary:hover { background: var(--blue-d); transform: translateY(-1px); }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

/* ── hero ─────────────────────────────────────────────────────────────────── */
.hero { padding-block: clamp(56px, 9vw, 116px) clamp(44px, 7vw, 88px); }
.hero-inner { max-width: 760px; }
.hero h1 {
  font-size: clamp(2.4rem, 6.6vw, 4.15rem); font-weight: 800;
  line-height: 1.04; letter-spacing: -.038em;
}
.hero h1 em { font-style: normal; color: var(--blue); }
.lede { margin-top: 22px; font-size: clamp(1.08rem, 1.7vw, 1.28rem); color: var(--muted); max-width: 56ch; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* ── sections ─────────────────────────────────────────────────────────────── */
section { padding-block: clamp(48px, 7vw, 92px); }
.sec-head { max-width: 640px; margin-bottom: 40px; }
.sec-head h2, .app h2, .get h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.35rem); font-weight: 800; letter-spacing: -.028em; line-height: 1.15;
}

/* ── how it works ─────────────────────────────────────────────────────────── */
.how { background: var(--tint); border-block: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; list-style: none; padding: 0; margin: 0; counter-reset: none; }
.steps li { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 26px; }
.num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(15,123,255,.1); color: var(--blue);
  font-weight: 800; font-size: .95rem; margin-bottom: 14px;
}
.steps h3 { font-size: 1.14rem; font-weight: 700; letter-spacing: -.015em; }
.steps p { margin-top: 8px; color: var(--muted); font-size: .98rem; }

/* ── the app ──────────────────────────────────────────────────────────────── */
.app-inner { display: grid; grid-template-columns: 148px 1fr; gap: 44px; align-items: start; }
.app-logo { width: 148px; height: 148px; border-radius: 26px; box-shadow: 0 18px 40px -20px rgba(15,123,255,.6); }
.app p { margin-top: 18px; color: var(--muted); max-width: 62ch; }

/* ── get the app ──────────────────────────────────────────────────────────── */
.get { background: var(--tint); border-top: 1px solid var(--line); }
.get-inner { display: grid; grid-template-columns: 1fr auto; gap: 56px; align-items: center; }
.get p { margin-top: 18px; color: var(--muted); max-width: 54ch; }
.stores { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
/* Not links: there are no store URLs yet, and a badge that looks tappable and does
   nothing is worse than one that says so. Swap for <a class="store"> when listed. */
.store {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 11px;
  background: var(--paper); border: 1px dashed #C9D6E8;
  font-weight: 600; font-size: .95rem; color: var(--muted);
}
.store b { font-weight: 700; font-size: .78rem; color: var(--blue); letter-spacing: .02em; }
a.store { border-style: solid; text-decoration: none; color: var(--ink); transition: transform .18s ease, box-shadow .18s ease; }
a.store:hover { transform: translateY(-1px); box-shadow: 0 12px 24px -14px rgba(14,23,38,.5); }
.note { font-size: .93rem; }
.note a { color: var(--blue); }
.qr { margin: 0; text-align: center; }
.qr img { width: 190px; height: 190px; border-radius: 14px; border: 1px solid var(--line); background: #fff; padding: 10px; }
.qr figcaption { margin-top: 10px; font-size: .85rem; color: var(--muted); }

/* ── footer ───────────────────────────────────────────────────────────────── */
.foot { border-top: 1px solid var(--line); padding-block: 26px 32px; }
.foot-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .92rem; color: var(--muted); }
.foot a { color: var(--blue); text-decoration: none; }

/* ── responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; }
  .app-inner { grid-template-columns: 1fr; gap: 24px; }
  .app-logo { width: 112px; height: 112px; }
  .get-inner { grid-template-columns: 1fr; gap: 34px; }
  .qr { text-align: left; }
}
@media (max-width: 620px) {
  .wrap { width: calc(100% - 32px); }
  .nav a:not(.btn) { display: none; }
  .nav { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
