:root {
  --bg: #000000;
  --bg-alt: #0b0b0b;
  --primary: #f6c75c;
  --primary-dark: #d98b28;
  --text: #ffffff;
  --muted: #aaaaaa;
  --radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: radial-gradient(circle at top, #161616 0, #000 60%);
  color: var(--text);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===========================
        NAVIGATION
=========================== */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(246, 199, 92, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* LOGO */
.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-title {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
}

/* DESKTOP LINKS */
.nav-links {
  display: flex;
  gap: 1.4rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.25rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ===========================
     MOBILE HAMBURGER
=========================== */

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 5000;
}

.mobile-menu-btn span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 3px;
}

/* ===========================
     MOBILE SLIDE-IN MENU
=========================== */

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 260px;
  height: 100%;
  background: #000;
  padding: 2rem 1.5rem;
  box-shadow: -5px 0 20px rgba(0,0,0,0.8);
  transition: right 0.35s ease;
  z-index: 4000;
}

.mobile-menu.open {
  right: 0;
}

.mobile-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 2rem;
}

.mobile-nav-links a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-links a:last-child {
  border-bottom: none;
}

/* ===========================
           HERO
=========================== */

.hero {
  padding: 3.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-subtitle {
  margin-top: 0.8rem;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  gap: 1rem;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #000;
  font-weight: 600;
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-ghost {
  border: 1px solid rgba(246, 199, 92, 0.45);
  background: none;
  color: var(--text);
}

.hero-orb {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 10%, #ffffff 0, #f6c75c 10%, #a45c10 40%, #000 80%);
  box-shadow: 0 0 50px rgba(246, 199, 92, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orb img {
  width: 70%;
}

/* ===========================
           SECTIONS
=========================== */

.section {
  padding: 3rem 0;
}

.section-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.card {
  background: linear-gradient(135deg, #121212, #050505);
  border: 1px solid rgba(246, 199, 92, 0.18);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8);
}

.card-title {
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
}

.card-text {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ===========================
        FOUNDERS + CREATORS
=========================== */

.founder-grid,
.creator-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.founder-card,
.creator-card {
  background: #111;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 4px solid var(--primary);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.65);
}

.founder-img,
.creator-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
  border: 3px solid var(--primary);
}

.founder-img img,
.creator-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-name,
.creator-name {
  font-size: 1.3rem;
  margin-top: 15px;
  font-weight: 600;
}

.founder-text,
.creator-role {
  color: var(--muted);
  margin-top: 8px;
}

.founder-socials,
.creator-socials {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.founder-socials a,
.creator-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: #000;
  font-size: 0.9rem;
  transition: 0.2s;
}

.founder-socials a:hover,
.creator-socials a:hover {
  background: var(--primary);
  color: #000;
}

/* ===========================
            FOOTER
=========================== */

footer {
  margin-top: 3rem;
  padding: 2rem 0 1rem;
  background: #020202;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-logo-text {
  font-family: "Orbitron";
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

.footer-links a {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--muted);
}

/* ===========================
        RESPONSIVE FIXES
=========================== */

@media (max-width: 768px) {

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-orb {
    margin: 2rem auto 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
