/* ============================================= */
/*   APEX HUSTLE SYSTEMS - PREMIUM BLACK & GOLD 2026 */
/* ============================================= */

:root {
  --bg: #0a0a0a;
  --panel-glass: rgba(28, 28, 32, 0.92);
  --text: #f5e8c7;
  --text-strong: #ffffff;
  --muted: #d4b87f;
  --muted-soft: #a88d60;
  
  --line: rgba(232, 198, 112, 0.25);
  --gold: #e8c670;
  --gold-light: #f8e4a8;
  --gold-deep: #c89f4a;
  --gold-glow: 0 0 30px rgba(232, 198, 112, 0.65), 0 0 65px rgba(232, 198, 112, 0.35);
  
  --radius: 28px;
  --container: 1280px;
}

/* Base */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: 
    radial-gradient(circle at 25% 30%, rgba(232, 198, 112, 0.09) 0%, transparent 65%),
    radial-gradient(circle at 75% 70%, rgba(248, 228, 168, 0.07) 0%, transparent 65%);
  z-index: -1;
}

.container {
  width: min(100% - 3rem, var(--container));
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 110px 0; }
.section-alt { background: #111111; }

/* Cards */
.card, .dashboard-shell, .timeline-card, .metric-block, .stat-card {
  background: var(--panel-glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 55px rgba(0, 0, 0, 0.7);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.card:hover, .dashboard-shell:hover {
  transform: translateY(-12px);
  border-color: var(--gold);
  box-shadow: var(--gold-glow), 0 25px 75px rgba(0, 0, 0, 0.8);
}

/* Typography */
.eyebrow {
  font-family: monospace;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.98rem;
}

h1, h2, h3 {
  color: var(--text-strong);
  font-weight: 800;
}

.hero-copy h1 span {
  background: linear-gradient(90deg, #f5e8c7, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 18px 36px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.15rem;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: #111111;
  box-shadow: 0 12px 35px rgba(232, 198, 112, 0.45);
  transition: all 0.4s ease;
  text-decoration: none;
}

.button:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 55px rgba(232, 198, 112, 0.6);
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line);
}

.button-secondary:hover {
  border-color: var(--gold);
  background: rgba(232, 198, 112, 0.12);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.logo-glow img {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 0 15px var(--gold));
  transition: transform 0.4s ease;
}

.brand:hover .logo-glow img {
  transform: scale(1.1);
}

.brand strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.45rem;
  background: linear-gradient(90deg, #f5e8c7, var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand em {
  font-size: 0.85rem;
  color: var(--gold);
}

.site-nav a {
  color: var(--muted);
  position: relative;
}

.site-nav a:hover, .site-nav a.is-active {
  color: var(--gold-light);
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.site-nav a:hover::after, .site-nav a.is-active::after {
  width: 100%;
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #0a0a0a, #141414);
  padding-top: 80px;
}

#neural-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(232, 198, 112, 0.1) 0%, transparent 75%);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-copy {
  space-y: 2rem;
}

/* Dashboard */
.dashboard-shell {
  border: 1px solid rgba(232, 198, 112, 0.35);
  box-shadow: 0 0 65px rgba(232, 198, 112, 0.2);
}

.dashboard-top {
  border-bottom: 1px solid rgba(232, 198, 112, 0.2);
}

.metric-block {
  border: 1px solid rgba(232, 198, 112, 0.25);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.timeline-card {
  border-left: 6px solid var(--gold);
}

.timeline-card:nth-child(2) { border-left-color: var(--gold-light); }
.timeline-card:nth-child(3) { border-left-color: var(--gold-deep); }

/* Accent Elements */
.stat-card strong {
  color: var(--gold);
}

/* CTA */
.cta-band {
  background: linear-gradient(135deg, #1c1408, #0a0a0a);
  padding: 120px 0;
}

/* Footer */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid var(--line);
  padding-top: 80px;
}

.footer-heading {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.back-to-top {
  color: var(--gold);
}

.back-to-top:hover {
  color: var(--gold-light);
}

/* Responsive */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: 2.9rem;
  }
}