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

:root {
  color-scheme: light;
  color: #202124;
  background: #f8f9fa;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html, body {
  min-height: 100%;
}

body {
  display: grid;
  place-items: center;
  padding: 24px;
}

main {
  width: min(100%, 640px);
}

.hero {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid #dfe1e5;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  margin-bottom: 18px;
}

.hero p {
  color: #5f6368;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  background: #ffb6c1;
  color: #4a1f36;
  font-weight: 700;
  letter-spacing: 0.04em;
}
