:root {
  --brand-light: #00aeef;
  --brand: #009edb;
  --brand-dark: #0066b3;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.78);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  color: var(--text);
  background: linear-gradient(160deg, var(--brand-light) 0%, var(--brand) 45%, var(--brand-dark) 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 40rem;
}

.cloud-mark {
  width: 6rem;
  height: auto;
  margin-bottom: 1.5rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

h1 {
  margin: 0 0 1.25rem;
  font-weight: 700;
  line-height: 1.1;
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3.75rem);
  word-break: break-word;
}

.lead {
  margin: 0;
  font-size: clamp(1rem, 1vw + 0.85rem, 1.15rem);
  color: var(--text-muted);
  line-height: 1.6;
}
