html,
body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

body {
  background-image: url("./bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(102, 204, 255, 0.18), transparent 45%),
    linear-gradient(to bottom, rgba(4, 10, 24, 0.5), rgba(4, 10, 24, 0.72));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(510px, calc(100vw - 32px));
  align-items: flex-start;
  gap: 24px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(5, 10, 22, 0.28);
  backdrop-filter: blur(4px);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.hero-logo {
  width: clamp(168px, 28vw, 184px);
  height: auto;
  aspect-ratio: 160 / 39;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
}

.hero-title {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(34px, 7vw, 62px);
  font-weight: 700;
  line-height: 1.12;
  text-align: left;
  text-wrap: balance;
  color: #ffffff;
  text-shadow:
    0 3px 18px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(102, 204, 255, 0.22);
}

.hero-subtitle {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.8px;
  text-wrap: pretty;
  max-width: 100%;
  color: rgba(102, 204, 255, 0.7);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}
