:root {
  --gold: #f0c040;
  --gold2: #ffd700;
  --dark: #0a0a0f;
  --dark2: #12121a;
  --dark3: #1a1a28;
  --text: #e8e8f0;
  --muted: #8888aa;
  --accent: #7b5fff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .4;
}
a { color: inherit; text-decoration: none; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,15,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(240,192,64,.15);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6vw; height: 64px;
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 4px;
  background: linear-gradient(135deg, var(--gold), var(--gold2), #fff8dc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; gap: 2rem; font-size: .9rem; font-weight: 500; }
.nav-links a { color: var(--muted); transition: color .25s; padding-bottom: 2px; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), #e6ac00);
  color: #000; font-weight: 700; font-size: .85rem;
  letter-spacing: 1px; padding: .5rem 1.4rem; border-radius: 6px;
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(240,192,64,.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: .3s; }

/* BUTTONS */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #e6ac00);
  color: #000; font-weight: 700; font-size: 1rem;
  letter-spacing: 1px; padding: .85rem 2.4rem;
  border-radius: 8px; display: inline-block;
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(240,192,64,.45); }
.btn-outline {
  border: 1px solid rgba(240,192,64,.4); color: var(--gold);
  font-size: 1rem; padding: .85rem 2.4rem; border-radius: 8px;
  display: inline-block; transition: background .2s, border-color .2s;
}
.btn-outline:hover { background: rgba(240,192,64,.08); border-color: var(--gold); }

/* SECTION */
section { padding: 6rem 6vw; }
.section-label {
  font-size: .75rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: .75rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 3px; line-height: 1.1;
}
.section-sub { color: var(--muted); max-width: 520px; margin-top: .75rem; }

/* PAGE HERO */
.page-hero {
  padding: 5rem 6vw 4rem;
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(240,192,64,.08);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 10% 50%, rgba(123,95,255,.12), transparent 60%);
  pointer-events: none;
}
.page-hero-label {
  font-size: .75rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: .75rem;
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: 5px; line-height: 1;
  background: linear-gradient(135deg, #fff 40%, var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.page-hero p { color: var(--muted); max-width: 560px; margin-top: 1rem; font-size: 1.05rem; }

/* BREADCRUMB */
.breadcrumb {
  padding: .75rem 6vw;
  background: var(--dark2);
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: .82rem; color: var(--muted);
  display: flex; gap: .5rem; align-items: center;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* FOOTER */
footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 4rem 6vw 2rem;
}
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-bottom: 3rem; }
.footer-brand .logo { font-size: 1.8rem; }
.footer-brand p { color: var(--muted); font-size: .88rem; max-width: 240px; margin-top: .5rem; }
.footer-col h4 { font-size: .85rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a { color: var(--muted); font-size: .9rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 1rem; color: var(--muted); font-size: .82rem;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--dark2); flex-direction: column; padding: 1.5rem 6vw; gap: 1rem; border-bottom: 1px solid rgba(240,192,64,.1); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-top { flex-direction: column; }
}
