@import url("./input.css");
@import url("./button.css");
@import url("./noty.css");
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #111827;
  background: #f5f7fb;
}

a {
  color: #0b5fff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page-shell {
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px 24px;
}

.hero {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.04);
}

.hero h1 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: clamp(2rem, 2.5vw, 3rem);
}

.hero p {
  line-height: 1.75;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  margin-top: 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #0b5fff;
  color: white;
  font-weight: 600;
}

.button:hover {
  background: #084ad3;
}
