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

:root {
  --bg: #0a0a0f;
  --surface: #13131a;
  --border: rgba(255,255,255,0.07);
  --text: #f0f0f0;
  --muted: #666;
  --accent: #e8ff47;
  --nav-h: 64px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  gap: 32px;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--accent);
  text-decoration: none;
  margin-right: auto;
}

.nav-back {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--text); }
.nav-back svg { width: 16px; height: 16px; }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  padding: calc(var(--nav-h) + 80px) 80px 80px;
  position: relative;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 10vw, 120px);
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--text);
}

.hero p {
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 28px;
}

/* decorative line */
.hero::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin-top: 40px;
}

/* ── SECTION ──────────────────────────────────────── */
section {
  padding: 60px 80px;
  border-top: 1px solid var(--border);
}

section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 36px;
}

/* ── GRID ─────────────────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* ── CARD ─────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
}

.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
}

.card-img.tall {
  aspect-ratio: 4/3;
}

.card-body {
  padding: 20px 22px 24px;
}

.card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 6px;
}

.card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── FOOTER ───────────────────────────────────────── */
footer {
  padding: 40px 80px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover { color: var(--accent); }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 768px) {
  .hero, section { padding-left: 24px; padding-right: 24px; }
  footer { padding: 32px 24px; flex-direction: column; gap: 12px; text-align: center; }
  nav { padding: 0 20px; }
}
