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

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  min-height: 100svh;
  color: #ffffff;
  background: #62a9db url("clouds.svg") center / cover no-repeat fixed;
}

.hero {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: 1rem;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(25, 91, 145, 0.08),
    rgba(20, 65, 104, 0.3)
  );
}

.message {
  width: 100%;
  max-width: 960px;
  min-width: 0;
  padding: clamp(1.25rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 2rem;
  background: rgba(25, 72, 111, 0.2);
  box-shadow: 0 24px 70px rgba(18, 60, 93, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  text-shadow: 0 4px 24px rgba(23, 64, 99, 0.3);
}

.subtitle {
  margin: 1.25rem 0 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  text-shadow: 0 2px 14px rgba(23, 64, 99, 0.35);
}

@media (max-width: 540px) {
  .message {
    border-radius: 1.5rem;
  }
}