:root {
  --blue: #1779bd;
  --soft-blue: #6da3c9;
  --bg: #ffffff;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
}
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: #0b1220;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.teaser {
  width: 100%;
  max-width: 640px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(13, 38, 76, 0.08);
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
}

.teaser h1 {
  font-size: 27px;
}

.logo-image {
  width: 250px;
  height: auto;
  margin: 0 auto 24px auto;
  display: block;
}

h1 {
  font-size: clamp(26px, 5vw, 40px);
  color: var(--blue);
  margin-bottom: 16px;
}

p {
  color: #243244;
  font-size: clamp(14px, 4vw, 16px);
  opacity: 0.95;
  margin-bottom: 20px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--soft-blue);
  animation: pop 1.2s infinite ease-in-out;
}
.dot:nth-child(2) {
  animation-delay: 0.2s;
}
.dot:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes pop {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

.meta {
  color: #48607a;
  font-size: 14px;
  display: block;
  margin-top: 10px;
}

.bg-blob {
  position: absolute;
  right: -20%;
  bottom: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(30, 102, 255, 0.06),
    transparent 25%
  );
  filter: blur(30px);
  z-index: 0;
}

.footer_link {
  color: var(--blue);
  text-decoration: none;
}
.footer_link:hover {
  color: var(--soft-blue);
  text-decoration: none;

}
