/* =========================
   Base / Reset
========================= */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", Arial, sans-serif;
  background: #0b0b10;
  color: #f5f6ff;
  line-height: 1.5;
}

/* =========================
   Variables
========================= */
:root {
  --bg: #0b0b10;
  --panel: #11111a;
  --text: #f5f6ff;
  --muted: #b6b8d6;
  --line: rgba(255,255,255,.12);
  --accent: #d7a8ff;
  --accent2: #7ee7ff;
}

/* =========================
   Layout helpers
========================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   Buttons
========================= */
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #0b0b10;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn:hover {
  opacity: 0.9;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn--sm {
  padding: 8px 14px;
  border-radius: 14px;
}

/* =========================
   INTRO / ENTER SCREEN
========================= */
.intro {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(800px 500px at 50% 40%, rgba(215,168,255,.25), transparent 60%),
    radial-gradient(700px 500px at 60% 60%, rgba(126,231,255,.20), transparent 60%),
    #0b0b10;
}

.intro__content {
  text-align: center;
  padding: 40px;
}

.intro h1 {
  font-size: 52px;
  margin: 0 0 10px;
  letter-spacing: -1px;
}

.intro p {
  margin: 0 0 30px;
  color: var(--muted);
}

.intro.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

/* =========================
   HEADER / NAV
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,11,16,.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #0b0b10;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}

.brand__name {
  font-weight: 800;
}

.brand__sub {
  font-size: 12px;
  color: var(--muted);
}

.nav a {
  margin-right: 18px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.nav a:hover {
  color: var(--text);
}

.menuBtn {
  display: none;
}

/* =========================
   HERO
========================= */
.hero {
  padding: 90px 0 70px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.chip {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.1;
  margin: 12px 0;
}

.lead {
  color: var(--muted);
  max-width: 520px;
}

.hero__cta {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   Footer
========================= */
.footer {
  margin-top: 80px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

/* =========================
   Responsive
========================= */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 40px;
  }

  .nav {
    display: none;
  }
}
/* ===== Cursor Fairy ===== */
.cursor-fairy{
  position: fixed;
  left: 0;
  top: 0;
  width: 92px;
  height: 92px;
  transform: translate(-9999px, -9999px);
  pointer-events: none;
  z-index: 999999;
  will-change: transform;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}

.fairy-face{
  position: absolute;
  inset: 18px;
  border-radius: 999px;
  background: url("fairy-face.jpg") center/cover no-repeat;
  }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .fairy-wings{ animation: none; }
}
/* 3D fairy overlay */
.fairy3d-wrap{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999999;
}

#fairy3d{
  width: 100%;
  height: 100%;
  display: block;
}
