/* ── Layout Reset (full-screen canvas behind hero) ───────────────────────── */

.site-header,
.site-footer {
  display: none !important;
}

main.container {
  position: fixed !important;
  inset: 0 !important;
  max-width: 100vw !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

html,
body {
  overflow: hidden;
  background: #0a0a0f;
}

/* ── Canvas (screensaver layer) ───────────────────────────────────────────── */

#canvas {
  position: fixed;
  inset: 0;
  display: block;
  z-index: 0;
}

/* ── Landing Nav ─────────────────────────────────────────────────────────── */

#land-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 52px;
}

.land-brand {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(127, 119, 221, 0.7);
}

.land-link {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
  transition: color 0.15s, background 0.15s;
}

.land-link:hover {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(127, 119, 221, 0.1);
  text-decoration: none;
}

/* ── Hero Card ───────────────────────────────────────────────────────────── */

#hero-card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  z-index: 10;
  background: rgba(8, 8, 22, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(127, 119, 221, 0.22);
  border-radius: 14px;
  padding: 2.5rem 3rem;
  max-width: 560px;
  width: calc(100% - 3rem);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(127, 119, 221, 0.06);
}

/* ── Hero Content ────────────────────────────────────────────────────────── */

.hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(127, 119, 221, 0.7);
  border: 1px solid rgba(127, 119, 221, 0.25);
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 0.75rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.hero-tagline {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.6;
  margin: 0 0 1.4rem;
}

/* ── Mode Chips ──────────────────────────────────────────────────────────── */

.mode-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 1.8rem;
}

.chip {
  padding: 4px 11px;
  border: 1px solid rgba(127, 119, 221, 0.28);
  border-radius: 20px;
  font-size: 0.74rem;
  color: rgba(127, 119, 221, 0.8);
  background: rgba(127, 119, 221, 0.07);
}

/* ── CTA Button ──────────────────────────────────────────────────────────── */

.cta-btn {
  display: inline-block;
  padding: 0.72rem 2.2rem;
  background: #7F77DD;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 0 28px rgba(127, 119, 221, 0.45);
  transition: box-shadow 0.2s, transform 0.15s, background 0.15s;
}

.cta-btn:hover {
  background: #9490e8;
  box-shadow: 0 0 42px rgba(127, 119, 221, 0.65);
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}

.cta-btn:active {
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────────────────────── */

@media (max-width: 600px) {
  #hero-card {
    padding: 1.8rem 1.5rem;
    transform: translate(-50%, -50%);
  }

  .hero-title {
    font-size: 1.65rem;
  }

  .hero-tagline {
    font-size: 0.85rem;
  }
}
