:root {
  --accent: #D63A6B;
  --text-primary: #1F1415;
  --text-secondary: #6B7280;
  --surface: #F9F9FC;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--surface);
}

h1 {
  color: var(--accent);
  font-size: 28px;
  margin-bottom: 4px;
}

h1 + p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 32px;
}

h2 {
  color: var(--text-primary);
  font-size: 18px;
  margin-top: 32px;
  margin-bottom: 8px;
}

p {
  margin-bottom: 12px;
  color: var(--text-primary);
}

ul {
  margin-bottom: 12px;
  padding-left: 24px;
}

li {
  margin-bottom: 4px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.hero {
  text-align: center;
  padding: 32px 0 16px;
}

.logo {
  width: 128px;
  height: 128px;
  border-radius: 28px;
  display: block;
  margin: 0 auto 24px;
}

.hero h1 {
  margin: 0 0 8px;
}

.tagline {
  color: var(--text-secondary);
  font-size: 16px;
  margin: 0 auto 32px;
  max-width: 28ch;
}

.app-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
  padding: 10px 22px;
  border-radius: 12px;
  text-decoration: none;
  line-height: 1.1;
}

.app-store:hover {
  text-decoration: none;
  opacity: 0.85;
}

.app-store__mark {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.app-store__text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.app-store__prefix {
  font-size: 10px;
  letter-spacing: 0.02em;
}

.app-store__name {
  font-size: 18px;
  font-weight: 600;
}

.footer {
  text-align: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 14px;
}

.footer a {
  color: var(--text-secondary);
  margin: 0 8px;
}
