:root {
  --bg: #0b0b0b;
  --panel: #141414;
  --border: rgba(255,255,255,.08);
  --gold: #f5c16c;
  --accent: #ff9f1c;
  --text: #eaeaea;
  --muted: #9a9a9a;
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition:
    color .25s ease,
    background-color .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: radial-gradient(circle at top, #151515, var(--bg));
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* INTRO */
#intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

#intro video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.intro-overlay img {
  width: 240px;
  margin-bottom: 20px;
}

.intro-overlay p {
  color: var(--muted);
}

.intro-overlay button {
  margin-top: 30px;
  padding: 14px 50px;
  border-radius: 50px;
  border: none;
  font-weight: 800;
  background: linear-gradient(135deg,var(--accent),var(--gold));
  cursor: pointer;
}

#intro.hide {
  opacity: 0;
  transition: opacity .9s ease;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-weight: 900;
  letter-spacing: .08em;
  color: var(--gold);
}

.nav a {
  margin-left: 26px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg,var(--accent),var(--gold));
  transition: width .35s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav a:hover,
.nav a.active {
  color: var(--accent);
}

/* HERO */
.hero {
  max-width: 1200px;
  margin: auto;
  padding: 120px 24px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 68px);
  color: var(--gold);
  font-weight: 900;
}

.hero p {
  color: var(--muted);
  margin: 24px 0 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* BUTTONS */
.btn {
  padding: 14px 36px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 800;
  transition:
    transform .25s cubic-bezier(.22,.61,.36,1),
    box-shadow .25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,.45);
}

.primary {
  background: linear-gradient(135deg,var(--accent),var(--gold));
  color: #000;
}

.secondary {
  border: 1px solid var(--border);
  color: var(--text);
}

/* STATS */
.hero-stats .stat {
  background: var(--panel);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--border);
  margin-bottom: 22px;
}

.hero-stats .stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,.6);
}

/* SECTIONS */
.section {
  max-width: 1200px;
  margin: auto;
  padding: 100px 24px;
}

.section h2 {
  font-size: 38px;
  margin-bottom: 50px;
}

.section h3 {
  margin: 60px 0 25px;
  font-size: 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 30px;
}

.features div {
  background: var(--panel);
  padding: 34px;
  border-radius: 22px;
  border: 1px solid var(--border);
}

.features div:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 70px rgba(0,0,0,.55);
  border-color: rgba(245,193,108,.4);
}

/* STAFF */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 30px;
}

.staff-card {
  background: linear-gradient(180deg,rgba(255,255,255,.04),rgba(0,0,0,.6));
  padding: 30px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid var(--border);
}

.staff-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 75px rgba(0,0,0,.65);
  border-color: rgba(245,193,108,.45);
}

.staff-card img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(245,193,108,.45);
}

.staff-card strong {
  display: block;
  margin-top: 14px;
}

.staff-card span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--gold);
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 26px;
}

.gallery img {
  width: 100%;
  border-radius: 22px;
  transform: scale(1);
}

.gallery img:hover {
  transform: scale(1.07);
  box-shadow: 0 25px 65px rgba(0,0,0,.65);
}

/* CTA */
.cta {
  text-align: center;
  padding: 120px 24px;
}

.big {
  font-size: 18px;
  padding: 18px 64px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 40px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 80px;
  }

  .nav a {
    margin-left: 18px;
  }
}
