* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #ffffff;
}

/* Background */
.bg {
  position: fixed;
  inset: 0;
  background-image: url("background.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(10px);
  transform: scale(1.05);
  z-index: -2;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 18, 24, 0.7);
  z-index: -1;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
}

.hero-inner {
  max-width: 900px;
}

/* Title */
.title {
  margin: 0;
  font-size: clamp(48px, 6vw, 84px);
  letter-spacing: 8px;
  font-weight: 700;
  color: #8cc4ff; /* Blue */
}

/* Subtitle */
.subtitle {
  margin: 18px 0 28px;
  font-size: 13px;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.75);
}

/* Coming soon */
.coming {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
  color: #8cc4ff; /* Blue */
}

/* Contact */
.contact {
  font-size: 14px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
}

/* Footer */
.footer {
  position: fixed;
  bottom: 16px;
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
