:root {
  color-scheme: light;
  --bg: #78c2ef;
  --ink: #f7fbff;
  --muted: rgba(247, 251, 255, 0.72);
  --accent: #1b5a82;
  --accent-soft: rgba(27, 90, 130, 0.2);
  --card: rgba(255, 255, 255, 0.12);
  --shadow: rgba(14, 44, 64, 0.25);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", "Trebuchet MS", sans-serif;
  background: linear-gradient(180deg, #86c9f2 0%, #78c2ef 35%, #5aa8d6 100%);
  color: var(--ink);
}

.page {
  min-height: 100vh;
  display: grid;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.hero-inner {
  max-width: 840px;
  margin: 0;
  text-align: center;
  display: grid;
  gap: 18px;
  justify-items: center;
}

.logo {
  width: 220px;
  height: auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
}

.tagline {
  font-size: clamp(1.1rem, 2.6vw, 1.4rem);
  line-height: 1.5;
  margin: 0;
}

.coming {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(15, 52, 78, 0.45);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 30px rgba(15, 52, 78, 0.35);
  margin-top: 6px;
}

.list-title {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: var(--muted);
  margin: 4px 0 0;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.98rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: inline-block;
}

.footer-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 24px 0 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 600px) {
  .hero {
    padding-top: 36px;
  }
}
