/* WristTales Binder — deltas only.
   The tokens, base type, header, buttons, frames, CTA and footer all come from
   ../styles.css, which this page loads first. Everything here is a component
   that exists only on the Binder page, or a measurement that differs from the
   iOS page (longer prose, landscape screenshots, four steps instead of three). */

/* Binder prose runs longer than the iOS page's */
.lede { max-width: 58ch; }

/* the display italic breaks to its own line in every Binder headline */
.hero h1 .serif,
.sec-head h2 .serif,
.cta h2 .serif { display: block; }

.hero h1 { max-width: 16ch; margin-bottom: 26px; }

/* ---------- techs strip: a real list, not one string ---------- */

.techs { margin-top: 42px; }
.techs-in {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 22px;
  padding-block: 20px;
}
.techs-in ul { display: contents; list-style: none; margin: 0; padding: 0; }
.techs-in li { font-size: 13px; color: var(--muted); }
.techs-in li + li::before { content: "·"; color: var(--faint); margin-right: 22px; }

/* ---------- sections ---------- */

main > section { padding-top: clamp(64px, 8vw, 92px); }
main > section.cta { padding-top: 0; margin-top: clamp(72px, 9vw, 100px); }

.eyebrow { margin-bottom: 30px; }

.sec-head { max-width: 62ch; margin-bottom: 48px; }
.sec-head h2 { font-size: clamp(28px, 5.2vw, 42px); margin-bottom: 20px; }
.sec-head p { color: var(--muted); font-size: 16.5px; }

/* four steps, not three */
.steps { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 34px 40px; }
.step p { font-size: 14.5px; }

.feats li { padding: 22px 0; }
.feats h3 { font-size: 16.5px; }
.feats p { font-size: 14.5px; }
.feats a { color: var(--accent); text-underline-offset: 3px; }

/* ---------- landscape app screenshots ---------- */

.shot { padding-top: 30px; padding-bottom: 10px; }
.shot figure { margin: 0; }
.shot figcaption {
  margin-top: 14px; text-align: left;
  font-size: 13px; color: var(--faint); max-width: 62ch;
}

/* ---------- the offline promise ---------- */

.priv-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(224px, 1fr));
  gap: 18px;
  margin-top: 8px;
}
.priv-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 22px 24px;
}
.priv-card.is-exception { border-color: var(--accent); }
.tag {
  display: inline-block;
  font-size: 10.5px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  color: var(--faint); border: 1px solid var(--line); border-radius: 999px;
  padding: 2px 9px; margin-bottom: 13px;
}
.priv-card.is-exception .tag { color: var(--accent); border-color: var(--accent); }
.priv-card h3 { font-size: 16px; margin-bottom: 9px; }
.priv-card p { font-size: 14px; color: var(--muted); }

.quote {
  margin: 40px 0 0;
  font-family: var(--font-accent); font-style: italic;
  font-size: clamp(20px, 3.4vw, 26px);
  line-height: 1.34; color: var(--ink);
  max-width: 30ch;
  border-left: 2px solid var(--accent);
  padding-left: 22px;
}

/* ---------- CTA (headline carries no class on this page) ---------- */

.cta-in { padding-block: clamp(62px, 8vw, 86px); text-align: center; }
.cta-in img { width: 46px; height: 46px; margin: 0 auto 26px; }
.cta h2 { font-size: clamp(30px, 6vw, 48px); margin-bottom: 20px; }
.cta h2 .serif { color: var(--accent); }
.cta-in > p { color: var(--cta-muted); max-width: 46ch; margin-inline: auto; font-size: 16px; }
.cta .btn-gold { margin-top: 28px; }
.cta-fine { margin-top: 18px; font-size: 13px; color: var(--cta-muted); opacity: .8; }
