:root {
  --background: #f8fbfb;
  --ink: #132129;
  --muted: #52636d;
  --blue: #1357c9;
  --blue-deep: #073964;
  --teal: #008f9c;
  --coral: #ef6c42;
  --line: rgba(19, 33, 41, 0.12);
  --shadow: 0 30px 90px rgba(7, 57, 100, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--background);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family:
    "Be Vietnam Pro", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  letter-spacing: 0;
  background:
    linear-gradient(180deg, rgba(248, 251, 251, 0.92), rgba(255, 248, 244, 0.96)),
    radial-gradient(circle at 12% 12%, rgba(0, 143, 156, 0.18), transparent 28rem),
    radial-gradient(circle at 86% 16%, rgba(239, 108, 66, 0.17), transparent 27rem),
    var(--background);
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1 {
  margin: 0;
}

.coming-soon {
  position: relative;
  display: grid;
  min-height: calc(100vh - 84px);
  place-items: center;
  overflow: hidden;
  padding: clamp(28px, 6vw, 72px);
  isolation: isolate;
}

.background-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("./242-quest-preview.png");
  background-position: center;
  background-size: cover;
  filter: saturate(1.05);
  opacity: 0.26;
  transform: scale(1.02);
}

.coming-soon::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(248, 251, 251, 0.82), rgba(248, 251, 251, 0.96)),
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.7), transparent 38rem);
  content: "";
}

.hero {
  width: min(100%, 920px);
  padding: clamp(28px, 6vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(18px);
}

.eyebrow {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin-top: 18px;
  color: var(--blue-deep);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: clamp(46px, 8vw, 94px);
  font-weight: 800;
  line-height: 0.98;
}

.lede {
  width: min(100%, 650px);
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.65;
}

.site-footer {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px clamp(20px, 5vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-deep);
}

.powered-logo {
  width: 22px;
  height: 22px;
  border-radius: 5px;
}

@media (max-width: 640px) {
  .coming-soon {
    min-height: calc(100vh - 120px);
    padding: 20px;
  }

  .hero {
    padding: 30px 22px;
  }

  .site-footer {
    min-height: 120px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
