:root {
  --bg: #fff8f5;
  --blush: #fbeaf0;
  --rose: #dc5b82;
  --plum: #5f2d4d;
  --ink: #2b1b26;
  --muted: #745a68;
  --line: #ead4dd;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header,
footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
  padding: 22px 24px;
}

.brand {
  align-items: center;
  display: flex;
  font-size: 22px;
  font-weight: 800;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  border-radius: 14px;
  height: 42px;
  width: 42px;
}

nav,
footer {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

nav a,
footer a {
  text-decoration: none;
}

.hero {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  margin: 0 auto;
  max-width: 1120px;
  padding: 72px 24px 96px;
}

.eyebrow {
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(42px, 7vw, 76px);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.lead {
  color: var(--muted);
  font-size: 20px;
  max-width: 650px;
}

.actions,
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 14px;
}

.button,
.store-buttons span {
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  padding: 14px 20px;
  text-decoration: none;
}

.primary {
  background: var(--plum);
  color: var(--white);
}

.secondary,
.store-buttons span {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--plum);
}

.trust {
  color: var(--muted);
  font-size: 14px;
}

.phone {
  background: var(--ink);
  border-radius: 42px;
  box-shadow: 0 24px 70px rgba(95, 45, 77, 0.25);
  margin: 0 auto;
  max-width: 360px;
  min-height: 690px;
  padding: 18px;
  width: 100%;
}

.phone-top {
  background: #130d12;
  border-radius: 0 0 18px 18px;
  height: 28px;
  margin: 0 auto 20px;
  width: 120px;
}

.screen-card {
  background: linear-gradient(180deg, #fff8f5, #fbeaf0);
  border-radius: 28px;
  min-height: 590px;
  padding: 28px;
}

.phase,
.badge {
  background: rgba(220, 91, 130, 0.12);
  border-radius: 999px;
  color: var(--plum);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
  padding: 8px 12px;
}

.screen-card h2 {
  font-size: 34px;
}

.metric-row {
  align-items: center;
  background: var(--white);
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding: 16px;
}

.band {
  background: var(--white);
  padding: 76px 24px;
}

.section-heading,
.split,
.download,
.legal-page {
  margin: 0 auto;
  max-width: 1120px;
}

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px auto 0;
  max-width: 1120px;
}

article,
.plus-card,
.notice {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.split {
  align-items: start;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  padding: 76px 24px;
}

.check-list {
  color: var(--muted);
  margin: 0;
  padding-left: 20px;
}

.check-list li {
  margin-bottom: 10px;
}

.plus-card {
  background: var(--blush);
}

.download {
  padding: 42px 24px 90px;
  text-align: center;
}

.download .lead,
.download p {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

.store-buttons {
  justify-content: center;
}

.legal-page {
  padding: 56px 24px 80px;
}

.legal-page section {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.legal-page h1 {
  max-width: 760px;
}

.legal-page h2 {
  font-size: 28px;
}

footer {
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .split,
  .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .phone {
    min-height: auto;
  }

  .screen-card {
    min-height: 500px;
  }
}
