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

:root {
  --bg:        #050208;
  --bg-2:      #0a0414;
  --bg-3:      #120822;
  --line:      rgba(255,255,255,0.08);
  --text:      #f5f0ff;
  --muted:     #8c7aa8;
  --dim:       #5a4a72;
  --accent:    #b366ff;
  --accent-2:  #7c3aed;
  --accent-d:  #5b21b6;

  --display:   'Bebas Neue', sans-serif;
  --body:      'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
::selection { background: var(--accent-2); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-d); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* Shared */
.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.eyebrow.center { text-align: center; }

.big-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 36px;
}
.big-title.center { text-align: center; }

/* ═══════════════════ NAV ═══════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5,2,8,0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 0 40px;
  height: 80px;
  display: flex; align-items: center; gap: 48px;
}
.nav-brand {
  font-family: var(--display);
  font-size: 1.4rem; letter-spacing: 0.08em;
  color: var(--text);
}
.nav-links {
  display: flex; gap: 36px; margin-left: auto;
}
.nav-links a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 11px 22px;
  background: var(--text);
  color: var(--bg);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.nav-cta:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 32px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,2,8,0.55) 0%, rgba(10,4,20,0.55) 50%, rgba(5,2,12,0.7) 100%),
    url('images/hero.jpg') center/cover no-repeat,
    linear-gradient(180deg, #050208 0%, #110625 50%, #0a0414 100%);
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 80% at 50% 50%, transparent 30%, rgba(0,0,0,0.85) 100%);
}
.hero-grain {
  position: absolute; inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.5) 2px, rgba(255,255,255,0.5) 3px);
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 900px;
}

.hero-presents {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  opacity: 0.8;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(5rem, 18vw, 13rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.85;
  color: #fff;
  margin-bottom: 28px;
  text-shadow: 0 0 80px rgba(168,85,247,0.4);
  display: inline-flex; align-items: baseline; gap: 0.1em;
}
.hero-title span {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 30px rgba(168,85,247,0.6));
}

.hero-tagline {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--text);
  margin-bottom: 56px;
}

.hero-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 18px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.28em;
  color: var(--muted);
  margin-bottom: 80px;
}
.hero-meta .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent); display: inline-block;
}

.hero-scroll {
  display: inline-flex; flex-direction: column; align-items: center;
  gap: 12px;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.32em;
  color: var(--muted);
  transition: color 0.25s;
}
.hero-scroll:hover { color: var(--text); }
.hero-scroll svg {
  width: 18px; height: 18px;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ═══════════════════ STORY ═══════════════════ */
.story {
  padding: 160px 0;
  background: var(--bg);
  position: relative;
}
.story::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--accent));
}

.story-inner {
  max-width: 760px; margin: 0 auto; text-align: center;
}
.story-body p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
.story-body p:last-child { margin-bottom: 0; }

/* ═══════════════════ SHOWCASE ═══════════════════ */
.showcase {
  padding: 0;
  background: var(--bg-2);
}
.show-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.show-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  border-right: 1px solid rgba(0,0,0,0.4);
}
.show-card:last-child { border-right: none; }
.show-1 { background: url('images/show-1.jpg') center/cover no-repeat, #0a1628; }
.show-2 { background: url('images/show-2.jpg') center/cover no-repeat, #1a0408; }
.show-3 { background: url('images/show-3.jpg') center/cover no-repeat, #1a0535; }

.show-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  z-index: 1;
}
.show-card::after { display: none; }

.show-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 40px 32px;
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.show-card:hover .show-overlay { transform: translateY(0); }

.show-num {
  font-family: var(--display);
  font-size: 1.2rem; letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 10px;
}
.show-overlay h3 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400; letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 10px;
}
.show-overlay p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 320px;
  opacity: 0;
  transition: opacity 0.5s ease 0.1s;
}
.show-card:hover .show-overlay p { opacity: 1; }

/* ═══════════════════ FEATURES ═══════════════════ */
.features {
  padding: 160px 0;
  background: var(--bg);
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 48px;
}
.feat {
  background: var(--bg);
  padding: 56px 40px;
  transition: background 0.3s;
}
.feat:hover { background: var(--bg-2); }
.feat h3 {
  font-family: var(--display);
  font-size: 1.8rem; font-weight: 400; letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 16px;
}
.feat p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ═══════════════════ QUOTE ═══════════════════ */
.quote {
  padding: 180px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-3) 100%);
  position: relative;
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 8rem;
  color: var(--accent);
  line-height: 0.5;
  margin-bottom: 24px;
  opacity: 0.5;
}
.quote-text {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: var(--text);
  max-width: 900px;
  margin: 0 auto 32px;
}
.quote-by {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ═══════════════════ PLATFORMS ═══════════════════ */
.platforms {
  padding: 160px 0;
  background: var(--bg-3);
}
.plat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.plat-grid-single {
  grid-template-columns: minmax(0, 480px);
  justify-content: center;
}
.plat {
  text-align: center;
  padding: 60px 32px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.plat:hover {
  border-color: var(--accent-2);
  background: rgba(168,85,247,0.05);
  transform: translateY(-4px);
}
.plat-name {
  font-family: var(--display);
  font-size: 1.6rem; font-weight: 400; letter-spacing: 0.16em;
  color: var(--text);
  margin-bottom: 12px;
}
.plat-detail {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ═══════════════════ CTA ═══════════════════ */
.cta {
  position: relative;
  padding: 180px 0;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}
.cta-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,2,8,0.55) 0%, rgba(5,2,12,0.65) 100%),
    url('images/cta.jpg') center/cover no-repeat;
}
.cta .container { position: relative; z-index: 2; }

.cta-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

.cta-actions {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}

.btn-cta, .btn-cta-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 18px 44px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 200px;
}

.btn-cta {
  background: var(--text);
  color: var(--bg);
}
.btn-cta:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(168,85,247,0.4);
}

.btn-cta-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-cta-ghost:hover {
  border-color: var(--text);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
  background: #030106;
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.foot-logo {
  font-family: var(--display);
  font-size: 1.8rem; letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 8px;
}
.foot-by {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
}

.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.foot-col { display: flex; flex-direction: column; gap: 12px; }
.foot-h {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.foot-col a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.25s;
}
.foot-col a:hover { color: var(--text); }

.foot-bot {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.72rem;
  color: var(--dim);
  letter-spacing: 0.06em;
}
.foot-bot em { color: var(--accent); font-style: normal; }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-inner { padding: 0 24px; gap: 24px; }
  .show-row { grid-template-columns: 1fr; }
  .show-card { aspect-ratio: 16/10; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.4); }
  .show-overlay { transform: translateY(0); }
  .show-overlay p { opacity: 1; }
  .feat-grid { grid-template-columns: 1fr; }
  .plat-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .hero-meta { flex-wrap: wrap; gap: 10px; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .foot-bot { flex-direction: column; }
  .container { padding: 0 24px; }
  .feat { padding: 40px 28px; }
}
