:root {
  --bg: #050a30;
  --glass: rgba(255, 255, 255, 0.04);
  --accent: #37f0ff;
  --accent-2: #7b5cff;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  background: var(--bg);
  color: #e6eef9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
}
#particles-js {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: var(--bg);
}
.site-root {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
}
.brand {
  position: fixed;
  top: 28px;
  left: 36px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.logo {
  font-family: Orbitron, sans-serif;
  color: var(--accent);
  font-size: 22px;
  letter-spacing: 3px;
  display: block;
}
/* image logo sizing */
.brand .logo {
  width: 140px;
  height: auto;
  object-fit: contain;
}

.card {
  width: 100%;
  max-width: 920px;
  padding: 36px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  box-shadow: 0 8px 40px rgba(3, 6, 20, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(55, 240, 255, 0.06);
  backdrop-filter: blur(8px);
  text-align: center;
  transform: translateY(-20px);
}
.card h1 {
  font-family: Orbitron, sans-serif;
  font-weight: 700;
  font-size: 36px;
  margin: 0 0 6px 0;
  color: #dff6ff;
}
.tagline {
  color: rgba(230, 238, 249, 0.8);
  margin: 0 0 18px 0;
}
.info {
  margin-top: 12px;
  text-align: left;
}
.info h2 {
  margin: 0 0 8px 0;
  color: var(--accent-2);
}
address {
  font-style: normal;
  color: rgba(230, 238, 249, 0.9);
  line-height: 1.45;
}
.actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
}
.launching {
  padding: 12px 22px;
  border-radius: 10px;
  display: inline-block;
  color: var(--accent);
  background: transparent;
  font-weight: 700;
  font-family: Orbitron, sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  border: 1px solid rgba(123, 92, 255, 0.08);
  box-shadow: 0 6px 20px rgba(55, 240, 255, 0.06);
}
.footer {
  position: fixed;
  bottom: 18px;
  right: 28px;
  font-size: 13px;
  color: rgba(230, 238, 249, 0.6);
}

/* Neon accent lines */
.card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(
    90deg,
    rgba(55, 240, 255, 0.06),
    rgba(123, 92, 255, 0.04)
  );
  filter: blur(6px);
  z-index: -1;
}

@media (max-width: 640px) {
  .card {
    padding: 20px;
    margin: 0 8px;
  }
  .card h1 {
    font-size: 24px;
  }
  .brand {
    left: 18px;
  }
  .brand .logo {
    width: 110px;
  }
}
