:root {
  --water: #050a14;
  --water-deep: #03060d;
  --cyan: #66d9f2;
  --cyan-dim: rgba(102, 217, 242, 0.55);
  --text: #d7ecf5;
  --text-dim: rgba(215, 236, 245, 0.62);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background:
    radial-gradient(ellipse 90% 50% at 50% -10%, rgba(102, 217, 242, 0.07), transparent 70%),
    linear-gradient(180deg, var(--water) 0%, var(--water-deep) 100%);
  background-color: var(--water);
  color: var(--text);
  font-family: "Helvetica Neue", -apple-system, system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1.5rem 3rem;
}

main { max-width: 640px; width: 100%; }

.wordmark {
  font-weight: 100;
  font-size: clamp(2.2rem, 8vw, 3.4rem);
  letter-spacing: 0.42em;
  margin-right: -0.42em; /* optically recenter the tracking */
  text-align: center;
  color: #d9f6ff;
  text-shadow: 0 0 28px rgba(102, 217, 242, 0.35);
}

.tagline {
  text-align: center;
  color: var(--cyan-dim);
  margin-top: 0.9rem;
  font-size: 1.02rem;
}

.formal-name {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2.6rem;
}

h2 {
  font-weight: 300;
  color: var(--cyan);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  margin: 2.6rem 0 0.8rem;
}

p { color: var(--text-dim); margin-bottom: 1rem; }
strong { color: var(--text); font-weight: 400; }

.shots {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin: 3rem 0 1rem;
  flex-wrap: wrap;
}

.shots img {
  width: min(46%, 250px);
  border-radius: 22px;
  border: 1px solid rgba(102, 217, 242, 0.18);
  box-shadow: 0 0 40px rgba(102, 217, 242, 0.10);
}

@media (prefers-reduced-motion: no-preference) {
  .shots img { animation: drift 7s ease-in-out infinite alternate; }
  .shots img:nth-child(2) { animation-delay: -3.5s; }
  @keyframes drift {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
  }
}

.coming {
  text-align: center;
  color: var(--cyan-dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-top: 2.2rem;
}

footer {
  margin-top: 4rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

footer a { color: var(--cyan-dim); text-decoration: none; }
footer a:hover { color: var(--cyan); }
footer .sep { margin: 0 0.6rem; opacity: 0.4; }

.legal { max-width: 640px; }
.legal h1 {
  font-weight: 200;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  color: #d9f6ff;
  margin-bottom: 0.4rem;
}
.legal .updated { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 2rem; }
.legal ul { color: var(--text-dim); margin: 0 0 1rem 1.2rem; }
.legal li { margin-bottom: 0.4rem; }
a.back { color: var(--cyan-dim); text-decoration: none; font-size: 0.9rem; }
a.back:hover { color: var(--cyan); }
