:root {
  --brand-navy: #022f66;
  --brand-peach: #f79994;
  --brand-sky: #6cafe0;
  --text-muted: #2b4872;
  --surface: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--brand-navy);
  background: linear-gradient(180deg, #d9edfb 0%, #eef7ff 45%, #ffffff 100%);
}

.page {
  min-height: 100vh;
  padding: 2rem 1rem;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.sky-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cloud {
  position: absolute;
  border-radius: 999px;
  background: rgba(108, 175, 224, 0.18);
  filter: blur(1px);
  animation: drift 16s ease-in-out infinite;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: inherit;
}

.cloud-one {
  width: 220px;
  height: 72px;
  top: 14%;
  left: -40px;
}

.cloud-one::before {
  width: 80px;
  height: 80px;
  left: 32px;
  top: -32px;
}

.cloud-one::after {
  width: 98px;
  height: 98px;
  right: 30px;
  top: -42px;
}

.cloud-two {
  width: 190px;
  height: 58px;
  top: 24%;
  right: 6%;
  animation-delay: 2.5s;
}

.cloud-two::before {
  width: 70px;
  height: 70px;
  left: 24px;
  top: -28px;
}

.cloud-two::after {
  width: 86px;
  height: 86px;
  right: 22px;
  top: -34px;
}

.cloud-three {
  width: 230px;
  height: 70px;
  bottom: 12%;
  right: -60px;
  animation-delay: 1.2s;
}

.cloud-three::before {
  width: 88px;
  height: 88px;
  left: 40px;
  top: -38px;
}

.cloud-three::after {
  width: 104px;
  height: 104px;
  right: 34px;
  top: -46px;
}

.coming-soon-card {
  width: min(640px, 100%);
  background: var(--surface);
  border-radius: 1.25rem;
  padding: 1.75rem 1.25rem;
  box-shadow: 0 24px 50px rgba(2, 47, 102, 0.14);
  text-align: center;
  position: relative;
  z-index: 1;
  animation: card-enter 0.8s ease-out both;
}

.card-header {
  display: grid;
  place-items: center;
  gap: 0.35rem;
}

.logo {
  width: min(200px, 65vw);
  height: auto;
}

.eyebrow {
  margin: 0.6rem 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

h1 {
  margin: 0.15rem 0 0;
  font-size: clamp(1.6rem, 4.8vw, 2.4rem);
  line-height: 1.1;
  color: var(--brand-navy);
  max-width: 18ch;
  margin-inline: auto;
}

h1::after {
  content: "";
  display: block;
  width: 90px;
  height: 5px;
  margin: 0.55rem auto 0;
  border-radius: 999px;
  background: var(--brand-peach);
}

.about {
  margin: 1.2rem auto 0;
  max-width: 48ch;
  line-height: 1.65;
  color: var(--text-muted);
}

.subjects {
  margin: 1.4rem auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.subjects li {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.92rem;
}

.subjects li:nth-child(1) {
  color: var(--brand-navy);
  background: rgba(2, 47, 102, 0.12);
  border-color: rgba(2, 47, 102, 0.2);
}

.subjects li:nth-child(2) {
  color: #88444e;
  background: rgba(247, 153, 148, 0.25);
  border-color: rgba(247, 153, 148, 0.45);
}

.subjects li:nth-child(3) {
  color: #0f4a76;
  background: rgba(108, 175, 224, 0.22);
  border-color: rgba(108, 175, 224, 0.45);
}

.cta {
  margin-top: 1.5rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: var(--brand-navy);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 18px rgba(2, 47, 102, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-1px);
  background: #053d82;
  box-shadow: 0 10px 22px rgba(2, 47, 102, 0.32);
  outline: none;
}

.cta-button:focus-visible {
  box-shadow: 0 0 0 3px rgba(247, 153, 148, 0.6),
    0 10px 22px rgba(2, 47, 102, 0.32);
}

.cta-icon {
  width: 1.1rem;
  height: 1.1rem;
}

.card-footer {
  margin-top: 1.35rem;
  font-size: 0.85rem;
  color: #4a678d;
}

@keyframes card-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(14px);
  }
}

@media (min-width: 640px) {
  .coming-soon-card {
    padding: 2.1rem 2.2rem;
  }
}
