:root {
  color-scheme: light;
  --bg: #fbfbfd;
  --text: #17181c;
  --muted: #626672;
  --card: #ffffff;
  --line: #e5e7ef;
  --accent: #e65b8f;
  --accent-dark: #b83268;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--accent-dark);
}

.page {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 24px;
}

.language-switch {
  display: flex;
  gap: 8px;
}

.language-switch a {
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.language-switch a.active {
  background: var(--text);
  border-color: var(--text);
  color: white;
}

.home-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}

.hero {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: .02em;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(44px, 9vw, 84px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 32px 0 10px;
  font-size: 22px;
}

p,
li {
  font-size: 17px;
}

.lead {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 21px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 176px;
  min-height: 56px;
  padding: 8px 14px;
  border-radius: 10px;
  background: #111;
  color: white;
  border: 1px solid #111;
}

.store-icon {
  font-size: 28px;
  line-height: 1;
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #46d16b;
  filter: drop-shadow(8px 0 0 #4ea5ff) drop-shadow(14px 0 0 #ffd84d);
  margin-right: 10px;
}

.store-small,
.store-name {
  display: block;
}

.store-small {
  font-size: 11px;
  color: #d7d9df;
  line-height: 1.1;
}

.store-name {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.button.secondary {
  background: white;
  color: var(--text);
  border: 1px solid var(--line);
}

.document {
  max-width: 760px;
}

.document h1 {
  font-size: clamp(38px, 7vw, 64px);
}

.back {
  display: inline-block;
  margin-bottom: 24px;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 560px) {
  .top-nav {
    align-items: flex-start;
    flex-direction: column;
  }
}

.muted {
  color: var(--muted);
}

.email {
  font-size: 22px;
  font-weight: 700;
}
