/* ============================================================
   FindMira — Landing Page Styles (v3 — light theme)
   ============================================================ */

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

:root {
  --bg: #f8f8fc;
  --text-primary: #1a1a2e;
  --text-secondary: rgba(26, 26, 46, 0.55);
  --text-muted: rgba(26, 26, 46, 0.35);
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(0, 0, 0, 0.06);
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

#swordsCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.content-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.hero-card {
  text-align: center;
  padding: 3rem 4rem;
  border-radius: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  pointer-events: auto;
  animation: cardIn 1s ease-out;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.brand-name {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #e8b84b 0%, #4bc8e8 50%, #9b6be8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.tagline {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
}

.subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.site-footer {
  padding: 1.5rem;
  pointer-events: auto;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--text-secondary);
}

.separator {
  color: var(--text-muted);
  font-size: 0.7rem;
  user-select: none;
}

@media (max-width: 600px) {
  .hero-card {
    padding: 2rem 2.5rem;
    margin: 0 1rem;
  }

  .brand-name {
    font-size: 2.8rem;
  }

  .tagline {
    font-size: 0.95rem;
  }
}
