:root {
  --bg: #07060d;
  --bg-2: #100d1c;
  --card: #151225;
  --ink: #f4f2ff;
  --muted: #b7b0cc;
  --magenta: #e23cff;
  --cyan: #2de4ff;
  --purple: #8b5cff;
  --line: rgba(255, 255, 255, 0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Sora", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--cyan);
  font-weight: 700;
}

.nav {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(7, 6, 13, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand img { width: 42px; height: 42px; object-fit: cover; border-radius: 10px; }
.nav-links { display: flex; gap: 22px; color: var(--muted); font-size: 0.95rem; }
.nav-links a:hover { color: var(--ink); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; cursor: pointer; border-radius: 999px;
  padding: 12px 20px; font-weight: 700;
}
.btn-primary {
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  color: #09070f;
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}
.menu-btn { display: none; background: none; border: 0; color: var(--ink); font-size: 1.4rem; }

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,6,13,.35), rgba(7,6,13,.92)),
    url("images/hero-bg.jpg") center/cover no-repeat;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  padding: 72px 0 56px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 12px 0 18px;
}
.hero h1 span {
  display: block;
  background: linear-gradient(90deg, #fff, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p { color: var(--muted); max-width: 520px; margin-bottom: 24px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.mascot-card {
  background: radial-gradient(circle at 50% 20%, rgba(226,60,255,.18), transparent 50%), var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 20px 80px rgba(45, 228, 255, 0.08);
}
.mascot-card img { width: 100%; border-radius: 20px; object-fit: cover; max-height: 560px; }
.tagline {
  margin-top: 10px;
  text-align: center;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--muted);
}

section { padding: 84px 0; }
.section-head { max-width: 680px; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: -0.03em; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
}
.card h3 { margin: 8px 0 8px; }
.card p { color: var(--muted); }

.gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 14px;
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 18px;
  border: 1px solid var(--line);
}
.gallery .wide { grid-row: 1 / span 2; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}
.num {
  color: var(--magenta);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

.mascot-split {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 32px;
  align-items: center;
}
.mascot-split img { border-radius: 24px; border: 1px solid var(--line); }

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
}
form .full { grid-column: 1 / -1; }
label { display: block; font-size: 0.86rem; margin-bottom: 6px; color: var(--muted); }
input, select, textarea {
  width: 100%;
  background: #0c0a16;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 12px;
  padding: 12px 14px;
}
textarea { min-height: 140px; resize: vertical; }
.form-note { color: var(--muted); font-size: 0.88rem; margin-top: 10px; }

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
}
.foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .nav-links, .nav .btn { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: #0d0b16; padding: 16px 20px 20px;
  }
  .menu-btn { display: block; }
  .hero-grid, .cards, .steps, .mascot-split, form { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 180px 180px; }
  .gallery .wide { grid-column: 1 / -1; grid-row: auto; min-height: 240px; }
}
