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

body {
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(180deg, #0D1B2A 0%, #14213D 60%, #101B30 100%);
  color: #F5F1E8;
  font-family: 'Inter', system-ui, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

.vignette {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(13,27,42,0) 0%, rgba(13,27,42,0.55) 75%, rgba(13,27,42,0.85) 100%);
  pointer-events: none;
}

main {
  position: relative;
  z-index: 2;
  max-width: 680px;
  width: 100%;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E8A33D;
  display: inline-block;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8892A6;
  font-weight: 500;
}

h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 4.6rem;
  line-height: 1.02;
  margin: 0 0 22px 0;
  letter-spacing: -0.01em;
}

h1 .accent {
  color: #E8A33D;
  font-style: italic;
}

.tagline {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #C9CEDB;
  max-width: 520px;
  margin: 0 0 40px 0;
  font-weight: 400;
}

.coming-soon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
}

.coming-soon-line {
  height: 1px;
  width: 44px;
  display: inline-block;
}

.coming-soon-line.left {
  background: linear-gradient(90deg, transparent, #E8A33D);
}

.coming-soon-line.right {
  background: linear-gradient(90deg, #E8A33D, transparent);
}

.coming-soon {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #E8A33D;
  white-space: nowrap;
}

footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 28px;
  font-size: 0.78rem;
  color: #5C6478;
  letter-spacing: 0.02em;
}

.footer-divider {
  color: #3A4256;
}

@media (prefers-reduced-motion: reduce) {
  .fade { animation: none !important; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade { opacity: 0; animation: fadeUp 0.8s ease forwards; }
.fade-1 { animation-delay: 0.05s; }
.fade-2 { animation-delay: 0.18s; }
.fade-3 { animation-delay: 0.32s; }
.fade-4 { animation-delay: 0.46s; }

@media (max-width: 640px) {
  h1 { font-size: 3rem !important; }
  .tagline { font-size: 1rem !important; }
  .coming-soon { font-size: 1.15rem !important; letter-spacing: 0.22em !important; }
  .coming-soon-line { width: 24px !important; }
}