/* Basic reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #fff;

  /* Background similar to your screenshot */
  background:
    radial-gradient(900px 700px at 50% 15%, rgba(120, 170, 255, 0.35), transparent 60%),
    radial-gradient(900px 700px at 80% 45%, rgba(255, 160, 170, 0.22), transparent 55%),
    radial-gradient(900px 700px at 20% 65%, rgba(150, 210, 255, 0.25), transparent 60%),
    linear-gradient(180deg, #f4f7ff 0%, #ffffff 65%, #f7f9ff 100%);
}

/* Center everything */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 48px 18px;
  gap: 28px;
}

/* Logo */
.logo-wrap {
  width: min(720px, 92vw);
  display: grid;
  place-items: center;
}

.logo {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;

  /* subtle glow like your picture */
  filter:
    drop-shadow(0 10px 24px rgba(60, 120, 255, 0.22))
    drop-shadow(0 0 20px rgba(60, 120, 255, 0.25));
}

/* Big glowing title */
.headline {
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.12;

  /* responsive size */
  font-size: clamp(16px, 3vw, 56px);
    

  /* glow */
  color: #004ad3;
  text-shadow:
    0 0 10px rgba(110, 170, 255, 0.45),
    0 0 22px rgba(110, 170, 255, 0.35),
    0 0 42px rgba(110, 170, 255, 0.25);
}

/* Divider line under the text */
.divider {
  width: min(620px, 76vw);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(180, 210, 255, 0.9),
    transparent
  );
  opacity: 0.85;
}