:root {
  color-scheme: light;
  --accent: #0262a7;
  --accent-dark: #064b7a;
  --accent-soft: #e8f3fb;
  --border: #d8e6ef;
  --text: #17202a;
  --muted: #5f6f7a;
  --surface: #ffffff;
  --background: #f5f8fa;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  width: min(100%, 960px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 72px 32px 28px;
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.app-icon {
  display: block;
  width: 176px;
  height: 176px;
  border-radius: 38px;
  box-shadow:
    0 22px 46px rgb(21 45 68 / 0.16),
    0 4px 12px rgb(21 45 68 / 0.1);
}

.copy {
  max-width: 650px;
}

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

h1 {
  max-width: 620px;
  margin: 0;
  color: var(--accent-dark);
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.description {
  margin-top: 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.description p {
  margin: 0;
}

.description p + p {
  margin-top: 20px;
}

.footer {
  margin-top: 64px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}

.footer a {
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: 4px;
}

.footer a:hover,
.footer a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .page {
    padding: 48px 24px 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 36px;
  }

  .app-icon {
    width: 128px;
    height: 128px;
    border-radius: 28px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .description {
    margin-top: 28px;
    font-size: 17px;
  }

  .footer {
    margin-top: 48px;
  }
}

@media (max-width: 420px) {
  .page {
    padding-inline: 20px;
  }

  .footer nav {
    gap-inline: 20px;
  }
}
