:root {
  --red: #ef2e25;
  --red-2: #f36d52;
  --text: #1f2324;
  --muted: #666;
  --bg: #fff;
  --alt: #fff7f6;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
}
a { color: var(--red); }
.wrap { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }

.top {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #f3d4d2;
}
.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand { font-weight: 700; font-size: 20px; color: var(--red); }
.nav a { margin-left: 20px; text-decoration: none; color: var(--text); }

.hero {
  background: linear-gradient(180deg, #fff7f6, #fff);
  padding: 64px 0 40px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
}
h1 { font-size: 42px; line-height: 1.15; margin: 8px 0 16px; }
.lead { font-size: 18px; line-height: 1.5; color: var(--muted); }
.cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 16px;
  background: linear-gradient(0.56turn, var(--red-2), var(--red));
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.btn.ghost {
  background: #fff;
  color: var(--red);
  box-shadow: inset 0 0 0 2px var(--red);
}

.phone {
  background: linear-gradient(0.56turn, var(--red-2), var(--red));
  border-radius: 36px;
  padding: 28px 18px;
  min-height: 420px;
}
.phone-screen {
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-height: 360px;
}
.tile {
  background: linear-gradient(0.56turn, var(--red-2), var(--red));
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  text-align: center;
  padding: 12px;
}

.section { padding: 72px 0; }
.section.alt { background: var(--alt); }
h2 { font-size: 32px; margin: 0 0 28px; }
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card {
  border: 1px solid #f3d4d2;
  border-radius: 20px;
  padding: 20px;
}
.card h3 { margin: 0 0 8px; }
.card p, .note { color: var(--muted); line-height: 1.5; }
.steps { padding-left: 20px; font-size: 18px; line-height: 1.8; }

.download { text-align: center; }
.store {
  display: inline-flex;
  margin-top: 12px;
  padding: 14px 28px;
  border-radius: 14px;
  background: #1f2324;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.privacy-body h1 { font-size: 28px; margin: 0 0 12px; }
.privacy-body h2 { font-size: 20px; margin: 28px 0 12px; }
.privacy-body p { font-size: 16px; line-height: 1.55; color: #312f2e; }

.footer {
  border-top: 1px solid #f3d4d2;
  padding: 28px 0 40px;
  color: var(--muted);
}

@media (max-width: 800px) {
  h1 { font-size: 30px; }
  .hero-inner, .cards { grid-template-columns: 1fr; }
  .nav { display: none; }
}
