:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  background: #f3f7fb;
  color: #182033;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

.page {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(48, 125, 176, 0.12), transparent 45%),
    linear-gradient(160deg, #ffffff 0%, #dfeaf4 100%);
  display: flex;
  min-height: 100vh;
  padding: 32px;
}

.hero {
  max-width: 760px;
}

.eyebrow {
  color: #1b998b;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.8rem, 9vw, 6rem);
  line-height: 1;
  margin: 0 0 20px;
}

p {
  font-size: 1.2rem;
  line-height: 1.65;
  margin: 0;
  max-width: 650px;
}

a {
  background: #172033;
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-weight: 700;
  margin-top: 30px;
  padding: 13px 18px;
  text-decoration: none;
}

a:hover {
  background: #1b998b;
}
