:root {
  --bg: #ffffff;
  --ink: #1a1a1a;
  --ink-soft: #5c5c5c;
  --accent: #c2185b;
  --rule: #e8e8e8;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, sans-serif;
  line-height: 1.65;
  font-size: 16px;
}
.wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  text-decoration: none;
  color: var(--ink);
}
.brand svg { flex-shrink: 0; }
.brand span {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.meta {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0 0 32px;
}
.lede {
  color: var(--ink-soft);
  margin: 0 0 40px;
}
hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 32px 0;
}
h2 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 12px;
  display: flex;
  gap: 10px;
  align-items: baseline;
}
h2 .num { color: var(--accent); font-variant-numeric: tabular-nums; }
p, li { color: var(--ink); margin: 0 0 14px; }
ul { margin: 0 0 14px; padding-left: 20px; }
li { margin-bottom: 6px; }
a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(194,24,91,0.3); }
a:hover { border-bottom-color: var(--accent); }
nav.crumbs { margin-bottom: 40px; }
nav.crumbs a { font-size: 14px; font-weight: 600; margin-right: 16px; border: none; }
footer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 13px;
}
footer a { color: var(--ink-soft); border-bottom: 1px solid rgba(0,0,0,0.15); }
.feature-list { color: var(--ink-soft); }

/* ---- Hero (landing, prayerlock-style) ---- */
body.home {
  height: 100vh;
  overflow: hidden;
}
.hero2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  padding: 12vh 10vw;
  height: 100vh;
  box-sizing: border-box;
}
.hero2-left {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero2-h1 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 7vw, 108px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #111;
  margin: 0 0 6px;
}
.hero2-h1.accent-line { color: #d4527e; }
.hero2-sub {
  font-size: 19px;
  color: #444;
  margin: 8px 0 32px;
}
.hero2-sub .accent { color: #d4527e; font-weight: 600; }
.hero2-links {
  margin-top: 36px;
  font-size: 13px;
  color: #999;
}
.hero2-links a { color: #999; border: none; }
.hero2-links a:hover { color: #d4527e; }
.hero2-right {
  background: #ffffff;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
}
.phone-outer {
  width: 340px;
  height: 620px;
  border-radius: 32px;
  background: linear-gradient(160deg, #e75f8e, #c2185b);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  box-shadow: 0 20px 40px rgba(196, 50, 110, 0.2);
}
.phone-frame {
  width: 165px;
  height: 330px;
  background: #1a1a1a;
  border-radius: 30px;
  padding: 6px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.28);
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: #fdf2f5;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.phone-quote {
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.4;
  text-align: center;
  color: #3a1a26;
  margin: 0;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  background: #1a1a1a;
  color: #fff;
  padding: 18px 30px;
  border-radius: 16px;
  text-decoration: none;
  border: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.store-badge:hover { transform: translateY(-2px); opacity: 0.92; }
.store-badge .store-text { text-align: left; line-height: 1.15; }
.store-badge .store-small { font-size: 13px; color: #d8d8d8; display: block; }
.store-badge .store-big { font-size: 21px; font-weight: 600; display: block; color: #fff; }

@media (max-width: 780px) {
  body.home { height: auto; overflow: visible; }
  .hero2 { grid-template-columns: 1fr; min-height: auto; height: auto; align-items: normal; }
  .hero2-left { padding: 56px 24px 8px; text-align: center; align-items: center; }
  .hero2-sub { margin-bottom: 24px; }
  .hero2-right { padding: 8px 24px 56px; }
  .phone-outer { width: 190px; height: 300px; }
  .phone-frame { width: 130px; height: 250px; }
}
