:root {
  color-scheme: only light;
  --primary-color: #e8352f;
  --secondary-color: #fff7e0;
  --text-color: #2e2a27;
  --muted-text-color: rgba(46, 42, 39, 0.7);
  --max-width: 680px;
  --border-radius: 18px;
  --shadow: 0 18px 60px rgba(232, 53, 47, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, sans-serif;
  background: radial-gradient(circle at top right, rgba(232, 53, 47, 0.08), transparent 45%),
    var(--primary-color);
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}

.page {
  background: var(--secondary-color);
  width: min(100%, var(--max-width));
  padding: 56px clamp(24px, 4vw, 64px);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.hero {
  display: flex;
  gap: 25px;
}

.hero__logo {
  width: clamp(80px, 20vw, 120px);
  margin: 0;
}

.hero__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__title {
  font-family: "Nunito", system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: clamp(40px, 7vw, 60px);
  color: var(--primary-color);
  margin: 0;
  line-height: 1.2;
  letter-spacing: 1px;
}

.hero__tagline {
  margin: 0;
  font-weight: 600;
  font-size: clamp(15px, 3vw, 18px);
  color: var(--text-color);
  line-height: 1.25;
}

.content {
  margin-top: 20px;
}

.content__title {
  font-size: clamp(24px, 4vw, 30px);
  margin-bottom: 16px;
  line-height: 1.2;
}

.content__text {
  margin: 12px 0;
  color: var(--muted-text-color);
  font-size: 16px;
}

.content__link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 200ms ease;
}

.content__link:hover,
.content__link:focus-visible {
  color: #c2221d;
  text-decoration: underline;
  outline: none;
}

@media (min-width: 720px) {
  body {
    padding: 48px;
  }

  .page {
    padding: 64px 80px;
    text-align: left;
  }

  .hero,
  .content {
    text-align: left;
  }

  .hero__logo {
    margin: 0 0 16px;
  }

}

