:root {
  --ink: #17212f;
  --muted: #657385;
  --line: #dce5ec;
  --blue: #246bfe;
  --teal: #00a69c;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(36, 107, 254, 0.08), transparent 36%),
    linear-gradient(300deg, rgba(0, 166, 156, 0.1), transparent 34%),
    #fbfcfd;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, sans-serif;
  letter-spacing: 0;
}

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

.coming-soon {
  display: grid;
  place-items: center;
  padding: 48px 20px;
}

.panel {
  width: min(100%, 760px);
  padding: clamp(32px, 6vw, 64px);
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(28, 43, 63, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 42px;
  font-size: 21px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(36, 107, 254, 0.24);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 650px;
  margin: 0 auto 20px;
  font-size: clamp(38px, 7vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro {
  max-width: 610px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.preview {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 34px auto;
}

.preview span {
  padding: 9px 13px;
  color: #334155;
  background: #f6f9fb;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(36, 107, 254, 0.26);
  font-size: 15px;
  font-weight: 800;
  transition:
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.button:hover {
  color: #e8fff9;
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 20px 42px rgba(0, 166, 156, 0.28);
}

footer {
  padding: 22px 20px 28px;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}
