@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: white;

  background:
    radial-gradient(
      circle at 50% -10%,
      rgba(37, 99, 235, 0.16),
      transparent 38%
    ),
    #070b14;

  overflow-x: hidden;
}

/* PAGE */

.poster {
  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 40px 24px;

  overflow: hidden;
}

/* BACKGROUND GLOWS */

.glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(120px);

  pointer-events: none;
}

.glow-blue {
  width: 520px;
  height: 520px;

  top: -220px;
  left: -180px;

  background: rgba(37, 99, 235, 0.2);
}

.glow-purple {
  width: 560px;
  height: 560px;

  right: -220px;
  bottom: -250px;

  background: rgba(124, 58, 237, 0.19);
}

/* MAIN CARD */

.card {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 820px;

  padding: 72px 60px 38px;

  text-align: center;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 30px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.025)
    );

  backdrop-filter: blur(22px);

  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.45),
    inset 0 1px rgba(255, 255, 255, 0.07);
}

/* BADGE */

.badge {
  width: fit-content;

  margin: 0 auto 28px;

  display: flex;
  align-items: center;
  gap: 9px;

  padding: 9px 14px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.045);

  color: #aab4c5;

  font-size: 12px;
  font-weight: 600;
}

.badge-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #8b5cf6;

  box-shadow:
    0 0 7px #8b5cf6,
    0 0 15px rgba(139, 92, 246, 0.55);
}

/* COMING SOON */

.eyebrow {
  margin: 0 0 16px;

  color: #a78bfa;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.32em;
}

/* VORDAQ TITLE */

h1 {
  margin: 0;

  font-size: clamp(76px, 11vw, 138px);

  line-height: 0.9;

  letter-spacing: -0.065em;

  font-weight: 800;

  background: linear-gradient(
    120deg,
    #f8fafc 5%,
    #60a5fa 55%,
    #a78bfa 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
}

/* TAGLINE */

.tagline {
  margin: 26px 0 0;

  color: #f1f5f9;

  font-size: clamp(23px, 3vw, 34px);

  font-weight: 700;

  letter-spacing: -0.03em;
}

/* DIVIDER */

.divider {
  width: 58px;
  height: 2px;

  margin: 30px auto;

  border-radius: 999px;

  background: linear-gradient(
    90deg,
    #2563eb,
    #7c3aed
  );

  box-shadow:
    0 0 18px rgba(124, 58, 237, 0.5);
}

/* DESCRIPTION */

.description {
  max-width: 600px;

  margin: 0 auto;

  color: #94a3b8;

  font-size: 17px;

  line-height: 1.7;
}

/* LAUNCH */

.launch {
  margin: 30px 0 0;

  color: #64748b;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.2em;

  text-transform: uppercase;
}

/* SOCIAL ICONS */

.social-links {
  margin-top: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 15px;
}

.social-links a {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.04);

  color: #cbd5e1;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-3px);

  color: white;

  background: rgba(124, 58, 237, 0.14);

  border-color: rgba(139, 92, 246, 0.4);

  box-shadow:
    0 8px 26px rgba(124, 58, 237, 0.16);
}

.social-links svg {
  width: 23px;
  height: 23px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}

.social-links a:nth-child(3) svg path {
  fill: currentColor;
  stroke: none;
}

.social-links .filled-circle {
  fill: currentColor;
  stroke: none;
}

/* COPYRIGHT */

.copyright {
  margin: 30px 0 0;

  color: #475569;

  font-size: 11px;
  font-weight: 500;
}

/* MOBILE */

@media (max-width: 650px) {
  .poster {
    padding: 20px;
  }

  .card {
    padding: 55px 24px 30px;

    border-radius: 24px;
  }

  h1 {
    font-size: 68px;
  }

  .tagline {
    font-size: 24px;
  }

  .description {
    font-size: 15px;
  }

  .social-links a {
    width: 46px;
    height: 46px;
  }

  .social-links svg {
    width: 22px;
    height: 22px;
  }
}