:root {
  --bg: #08080c;
  --bg-soft: #101018;
  --text: #f3f1f7;
  --muted: #aaa5b7;
  --violet: #9b6cff;
  --violet-bright: #bb91ff;
  --violet-deep: #6e40d8;
  --line: rgba(255,255,255,.10);
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 42%, rgba(130, 80, 220, .13), transparent 30%),
    linear-gradient(180deg, #0b0b10 0%, var(--bg) 65%, #060609 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.015) 50%, transparent 100%);
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  opacity: .35;
  pointer-events: none;
  animation: drift 14s ease-in-out infinite alternate;
}

.ambient-one {
  width: 34rem;
  height: 34rem;
  left: -13rem;
  top: -10rem;
  background: rgba(113, 63, 205, .28);
}

.ambient-two {
  width: 30rem;
  height: 30rem;
  right: -12rem;
  bottom: -12rem;
  background: rgba(155, 108, 255, .20);
  animation-delay: -5s;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero {
  min-height: calc(100vh - 64px);
  display: grid;
  place-items: center;
  padding: 72px 24px 40px;
}

.brand-card {
  width: min(760px, 100%);
  text-align: center;
  padding: 36px 28px 42px;
  animation: reveal .9s cubic-bezier(.2,.7,.2,1) both;
}

.brand-mark {
  width: clamp(150px, 22vw, 220px);
  height: auto;
  display: block;
  margin: 0 auto 28px;
  filter: drop-shadow(0 0 22px rgba(155, 108, 255, .18));
  animation: breathe 5.5s ease-in-out infinite;
}

.wordmark {
  font-size: clamp(3rem, 8vw, 6.7rem);
  font-weight: 650;
  line-height: .96;
  letter-spacing: -.055em;
}

.word-short {
  color: #efedf3;
  text-shadow: 0 1px 0 rgba(255,255,255,.06);
}

.word-vera {
  color: var(--violet-bright);
  text-shadow: 0 0 28px rgba(155,108,255,.22);
}

.tagline {
  margin: 24px 0 18px;
  color: #d9d4e4;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  letter-spacing: .035em;
}

.divider {
  width: min(380px, 65%);
  height: 1px;
  margin: 28px auto 26px;
  background: linear-gradient(90deg, transparent, rgba(187,145,255,.56), transparent);
  box-shadow: 0 0 16px rgba(155,108,255,.18);
}

.coming-soon {
  margin: 0;
  color: #f6f3fb;
  text-transform: uppercase;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .36em;
}

.description {
  max-width: 610px;
  margin: 20px auto 24px;
  color: var(--muted);
  font-size: clamp(.98rem, 1.8vw, 1.08rem);
  line-height: 1.72;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(187,145,255,.18);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(155,108,255,.06);
  color: #c8c2d3;
  font-size: .82rem;
  letter-spacing: .02em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet-bright);
  box-shadow: 0 0 12px rgba(187,145,255,.8);
}

footer {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: rgba(207,201,218,.48);
  font-size: .75rem;
  letter-spacing: .08em;
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(12px) scale(.99); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes breathe {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 18px rgba(155,108,255,.15)); }
  50% { transform: translateY(-3px); filter: drop-shadow(0 0 29px rgba(155,108,255,.27)); }
}

@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(35px,20px,0) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 520px) {
  .hero { padding-top: 52px; }
  .brand-card { padding-inline: 8px; }
  .wordmark { letter-spacing: -.045em; }
  .description { line-height: 1.62; }
}
