:root {
  --navy: #060f1e;
  --navy-2: #0a1830;
  --ink: #e8eef7;
  --slate: #9fb2c9;
  --slate-dim: #6f8299;
  --teal: #35c7d6;
  --electric: #2f7fff;
  --maxw: 960px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--navy);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6vh 24px;
  overflow: hidden;
}

/* Soft radial glow behind the logo */
.glow {
  position: absolute;
  top: 42%;
  left: 50%;
  width: min(1100px, 120vw);
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(24, 62, 110, 0.55) 0%,
    rgba(14, 42, 74, 0.28) 34%,
    rgba(6, 15, 30, 0) 68%
  );
  pointer-events: none;
  z-index: 0;
}

.stage {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--maxw);
  text-align: center;
}

.logo {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.6vw, 20px);
  line-height: 1;
  font-weight: 400;
}

.logo .mark {
  display: block;
  width: clamp(84px, 12vw, 132px);
  height: auto;
}

.logo .wordmark {
  font-family: "Poppins", "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(2.6rem, 1.8rem + 5.4vw, 5.2rem);
  letter-spacing: -0.01em;
  color: #f2f6fc;
  line-height: 1;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- Four-part statement ---- */
.statement {
  margin: 20px auto 0;
  max-width: 760px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 14px;
  font-size: clamp(1.05rem, 1rem + 0.9vw, 1.55rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.statement span {
  position: relative;
  white-space: nowrap;
}

/* subtle separators between phrases on wide screens */
.statement span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 16px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.55;
  vertical-align: middle;
}

.coming-soon {
  margin: 26px auto 0;
  max-width: 460px;
  font-size: clamp(0.9rem, 0.86rem + 0.3vw, 1rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--slate);
}

/* ---- Footer ---- */
.footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 24px 30px;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--slate-dim);
}

.footer .dot { color: var(--slate-dim); opacity: 0.6; }

.footer a {
  color: var(--slate);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--teal);
  border-color: rgba(53, 199, 214, 0.5);
}

/* ---- Responsive: stack the statement on small screens ---- */
@media (max-width: 560px) {
  .statement {
    flex-direction: column;
    gap: 8px;
  }
  .statement span:not(:last-child)::after { display: none; }
}

@media (prefers-reduced-motion: no-preference) {
  .stage { animation: rise 0.8s ease both; }
  @keyframes rise {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}
