* {
  box-sizing: border-box;
}

html {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #172033;
  background: #dfe8f5;
}

body {
  margin: 0;
}

.page {
  width: min(1180px, calc(100% - 32px));
  margin: 48px auto;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  padding: clamp(28px, 5vw, 64px);
}

.intro {
  max-width: 700px;
  margin: 0 auto 42px;
  text-align: center;
}

.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #315f9d;
}

h1 {
  margin: 12px 0 18px;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.02;
}

p {
  line-height: 1.65;
  color: #596273;
}

.small {
  font-size: 14px;
}

.button {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  border-radius: 999px;
  color: white;
  background: #3268af;
  text-decoration: none;
  font-weight: 700;
}

.preview {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(45, 79, 120, .12);
  box-shadow: 0 20px 45px rgba(31, 58, 91, .10);
}

.preview img {
  display: block;
  width: 100%;
  height: auto;
}

footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

footer a {
  color: #315f9d;
  text-decoration: none;
}

@media (max-width: 650px) {
  .page {
    margin: 16px auto;
    padding: 24px 18px;
  }

  .preview {
    border-radius: 10px;
  }

  footer {
    flex-direction: column;
    align-items: center;
  }
}