:root {
  --sky: #e3f2f3;
  --teal: #52a8a0;
  --teal-deep: #2b6777;
  --ink: #1f3a3d;
  --cream: #f7fdfc;
  --accent: #86c5be;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 20% 20%, var(--sky), var(--cream) 55%);
  overflow: hidden;
}

.scene {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.waves {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wave {
  position: absolute;
  width: 4.5rem;
  height: 4.5rem;
  color: var(--teal);
  opacity: 0.3;
}

.wave--one {
  top: 8%;
  left: 10%;
  transform: rotate(-10deg);
}

.wave--two {
  bottom: 12%;
  right: 12%;
  width: 6rem;
  height: 6rem;
  transform: rotate(15deg) scaleX(-1);
  color: var(--teal-deep);
  opacity: 0.2;
}

.wave--three {
  top: 62%;
  left: 6%;
  width: 3rem;
  height: 3rem;
  transform: rotate(6deg);
}

.card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(30rem, calc(100vw - 3rem));
  min-width: 0;
  padding: 3.5rem 2.75rem;
  text-align: center;
  background: rgba(247, 253, 252, 0.75);
  border: 1px solid rgba(43, 103, 119, 0.2);
  border-radius: 1.25rem;
  box-shadow: 0 30px 60px -25px rgba(31, 58, 61, 0.3);
  backdrop-filter: blur(6px);
}

.mark {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--teal-deep);
  margin-bottom: 1.25rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

h1 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 3.25rem);
  line-height: 1.1;
  color: var(--ink);
}

.tagline {
  margin: 1rem 0 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.85;
}

.rule {
  width: 3rem;
  height: 1px;
  margin: 1.75rem auto;
  background: var(--accent);
  opacity: 0.8;
}

.note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink);
  opacity: 0.65;
}

@media (max-width: 420px) {
  .card {
    padding: 2.75rem 1.75rem;
  }
}
