/* ============================================================
   ALPHA GRIND MOTIVEX — style.css
   Premium Dark Theme | Gold Accents | Glassmorphism | 3D
   ============================================================ */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --gold: #ffd700;
  --gold-light: #ffe55c;
  --gold-dark: #b8970a;
  --silver: #c0c0c0;
  --silver-light: #e8e8e8;
  --bg-base: #0a0a0a;
  --bg-1: #0f0f0f;
  --bg-2: #141414;
  --bg-3: #1a1a1a;
  --bg-card: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 215, 0, 0.18);
  --text-primary: #f0f0f0;
  --text-secondary: #a0a0a0;
  --text-muted: #606060;
  --danger: #ff4444;
  --success: #00e676;

  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Rajdhani", sans-serif;
  --font-accent: "Barlow Condensed", sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-gold: 0 0 40px rgba(255, 215, 0, 0.2);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.6);
  --transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --trans-fast: 0.18s ease;
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Text gold utility */
.text-gold {
  color: var(--gold) !important;
}

/* ── LOADING SCREEN ── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
#loader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 28px;
}
.loader-alpha {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--gold);
  letter-spacing: 8px;
  animation: loaderPulse 1.4s ease-in-out infinite;
}
.loader-grind {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--silver-light);
  letter-spacing: 8px;
  animation: loaderPulse 1.4s ease-in-out infinite 0.2s;
}

.loader-bar-wrap {
  width: 280px;
  height: 3px;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto 16px;
}
.loader-bar {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--gold-dark),
    var(--gold),
    var(--gold-light)
  );
  border-radius: 4px;
  width: 0%;
  transition: width 0.1s ease;
  box-shadow: 0 0 12px var(--gold);
}
.loader-tagline {
  font-family: var(--font-accent);
  letter-spacing: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

@keyframes loaderPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ── SCROLL PROGRESS ── */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold-dark),
    var(--gold),
    var(--gold-light)
  );
  width: 0%;
  z-index: 10000;
  box-shadow: 0 0 8px var(--gold);
  transition: width 0.1s linear;
}

/* ── PARTICLE CANVAS ── */
#particleCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── MOUSE GLOW ── */
#mouseGlow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

/* ── NAVBAR ── */
.navbar {
  background: transparent;
  padding: 14px 0;
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease,
    padding 0.3s ease;
  z-index: 1000;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.8);
  border-bottom-color: rgba(255, 215, 0, 0.12);
  padding: 10px 0;
}

/* Logo */
.ag-logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
  line-height: 1;
}
.logo-alpha {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 4px;
}
.logo-grind {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--silver-light);
  letter-spacing: 4px;
}
.logo-motive {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 4px;
  text-transform: uppercase;
  align-self: flex-end;
  margin-bottom: 3px;
}

/* Nav links */
.ag-nav-link {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
}
.ag-nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--trans-fast);
}
.ag-nav-link:hover,
.ag-nav-link.active {
  color: var(--gold) !important;
  border-color: rgba(255, 215, 0, 0.2);
  background: rgba(255, 215, 0, 0.06);
}
.ag-nav-link:hover::after,
.ag-nav-link.active::after {
  width: 60%;
}

/* Mobile toggler */
.ag-toggler {
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--gold);
  font-size: 1.4rem;
  padding: 4px 10px;
  background: transparent;
  box-shadow: none !important;
}

/* ── MEGA DROPDOWN ── */
.mega-dropdown {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  z-index: 999;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  animation: dropdownSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mega-dropdown.d-none {
  display: none !important;
}

@keyframes dropdownSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mega-panel {
  display: none;
}
.mega-panel.active {
  display: block;
  animation: panelFadeIn 0.3s ease;
}
@keyframes panelFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.mega-panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--gold);
  letter-spacing: 3px;
}
.mega-panel-sub {
  font-family: var(--font-accent);
  color: var(--text-secondary);
  letter-spacing: 1px;
  margin: 0;
}

/* Mega Cards */
.mega-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 20px;
  height: 100%;
  transition: var(--transition);
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
}
.mega-card:hover {
  border-color: rgba(255, 215, 0, 0.45);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.12);
  transform: translateY(-4px) perspective(600px) rotateX(2deg);
}
.mega-card-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.mega-card h5 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.mega-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Expand region */
.mega-card-expand {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding-top: 0;
}
.mega-card-expand.open {
  max-height: 300px;
  padding-top: 12px;
}

/* Daily content styles */
.mission-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--gold);
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 8px;
}
.mission-text,
.lesson-text {
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.6;
}
.challenge-item {
  font-size: 0.95rem;
  color: var(--text-primary);
  padding: 12px;
  background: rgba(255, 215, 0, 0.05);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.ag-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-light);
  border-left: 3px solid var(--gold);
  padding-left: 12px;
  margin: 0;
}
.ag-cite {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}
.ag-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold);
  border: 1px solid rgba(255, 215, 0, 0.25);
  margin-right: 4px;
}
.action-item-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ai-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-primary);
}
.step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-base);
  font-weight: 700;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── WEALTH CARDS ── */
.wealth-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 20px;
  height: 100%;
  transition: var(--transition);
}
.wealth-card:hover {
  border-color: rgba(255, 215, 0, 0.45);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.wealth-card-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.wealth-card h5 {
  font-family: var(--font-display);
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.wealth-card p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.wealth-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-family: var(--font-accent);
  letter-spacing: 1px;
}

/* ── BLUEPRINT CARDS ── */
.blueprint-card {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.blueprint-card:hover {
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.15);
}
.blueprint-avatar {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.blueprint-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(10, 10, 10, 0.9)
  );
}
.blueprint-body {
  padding: 16px;
}
.blueprint-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 4px;
}
.blueprint-title {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.blueprint-stat {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.bp-stat-item {
  text-align: center;
}
.bp-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  line-height: 1;
}
.bp-stat-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.blueprint-lesson {
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-left: 2px solid var(--gold);
  padding-left: 10px;
  margin-bottom: 12px;
  font-style: italic;
}

/* ── VAULT ── */
.vault-search-wrap {
  max-width: 500px;
}
.ag-search-group {
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.ag-search-icon {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-right: none;
  color: var(--gold);
}
.ag-search-input {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 215, 0, 0.2) !important;
  border-left: none !important;
  color: var(--text-primary) !important;
  font-family: var(--font-body);
}
.ag-search-input::placeholder {
  color: var(--text-muted);
}
.ag-search-input:focus {
  box-shadow: none !important;
  border-color: rgba(255, 215, 0, 0.5) !important;
}

.vault-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.vault-filter {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--trans-fast);
}
.vault-filter:hover,
.vault-filter.active {
  background: var(--gold);
  color: var(--bg-base);
  border-color: var(--gold);
}

.vault-video-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.vault-video-card:hover {
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.vault-video-thumb {
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 200px;
  background: linear-gradient(135deg, #1a1a1a, #111);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.vault-video-thumb .play-icon {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.8;
  transition: var(--trans-fast);
  z-index: 1;
}
.vault-video-card:hover .play-icon {
  opacity: 1;
  transform: scale(1.2);
}
.vault-thumb-emoji {
  font-size: 2.5rem;
  opacity: 0.3;
  position: absolute;
}
.vault-video-info {
  padding: 12px;
}
.vault-video-title {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.vault-video-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.vault-video-cat {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold);
  margin-bottom: 6px;
}

/* ── TOOLS ── */
.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
}
.tool-card-header {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.08),
    rgba(255, 215, 0, 0.02)
  );
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tool-card-header i {
  font-size: 1.4rem;
  color: var(--gold);
}
.tool-card-header h5 {
  font-family: var(--font-display);
  letter-spacing: 2px;
  font-size: 1rem;
  color: var(--text-primary);
  margin: 0;
}
.tool-card-body {
  padding: 18px;
}

.ag-label {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}
.ag-input {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 215, 0, 0.2) !important;
  color: var(--text-primary) !important;
  font-family: var(--font-body) !important;
  border-radius: var(--radius-sm) !important;
  transition: border-color var(--trans-fast) !important;
}
.ag-input:focus {
  box-shadow: none !important;
  border-color: var(--gold) !important;
  background: rgba(255, 215, 0, 0.04) !important;
}
.ag-input option {
  background: var(--bg-2);
}
.ag-input::placeholder {
  color: var(--text-muted) !important;
}

.tool-result {
  min-height: 50px;
  padding: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}
.tool-result.has-result {
  padding: 14px;
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.2);
}
.result-value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1;
}
.result-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}
.result-breakdown {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.result-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.result-item-value {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--silver-light);
}
.result-item-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.result-error {
  font-family: var(--font-accent);
  color: var(--danger);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Habit tracker */
.habit-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.habit-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 215, 0, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: var(--radius-sm);
  transition: var(--trans-fast);
}
.habit-item:hover {
  border-color: rgba(255, 215, 0, 0.35);
}
.habit-name {
  font-family: var(--font-accent);
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-primary);
}
.habit-streak {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 2px;
}
.habit-streak-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
}
.habit-delete {
  background: transparent;
  border: 1px solid rgba(255, 68, 68, 0.3);
  color: var(--danger);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--trans-fast);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.habit-delete:hover {
  background: rgba(255, 68, 68, 0.1);
}

/* ── BUTTONS ── */
.ag-btn-primary {
  font-family: var(--font-accent);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border: none;
  border-radius: var(--radius-sm);
  color: var(--bg-base);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.ag-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--trans-fast);
}
.ag-btn-primary:hover::before {
  opacity: 1;
}
.ag-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}
.ag-btn-primary span,
.ag-btn-primary i {
  position: relative;
  z-index: 1;
}

.ag-btn-outline {
  font-family: var(--font-accent);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: var(--radius-sm);
  color: var(--gold);
  cursor: pointer;
  transition: var(--transition);
}
.ag-btn-outline:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.ag-btn-gold {
  font-family: var(--font-accent);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border: none;
  border-radius: var(--radius-sm);
  color: var(--bg-base);
  cursor: pointer;
  transition: var(--transition);
}
.ag-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255, 215, 0, 0.35);
  filter: brightness(1.08);
}
.ag-btn-gold.btn-sm {
  padding: 6px 14px;
  font-size: 0.72rem;
}

.ag-btn-ghost {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  background: transparent;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--trans-fast);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ag-btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.ag-btn-ghost.btn-sm {
  padding: 4px 10px;
  font-size: 0.68rem;
}

.ag-link-gold {
  font-family: var(--font-accent);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--trans-fast);
}
.ag-link-gold:hover {
  color: var(--gold-light);
  gap: 8px;
}

/* ── PROGRESS BARS ── */
.ag-progress {
  height: 4px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 2px;
}
.ag-progress-bar {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
  transition: width 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ── HERO SECTION ── */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background:
    radial-gradient(
      ellipse 80% 60% at 60% 40%,
      rgba(255, 215, 0, 0.05) 0%,
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0) 0%,
      rgba(10, 10, 10, 0.95) 100%
    ),
    var(--bg-base);
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 215, 0, 0.04) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(192, 192, 192, 0.03) 0%,
      transparent 40%
    );
  pointer-events: none;
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.15;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--gold-dark);
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}
.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(192, 192, 192, 0.5);
  top: 60%;
  right: 5%;
  animation-delay: -3s;
}
.orb-3 {
  width: 250px;
  height: 250px;
  background: var(--gold);
  bottom: 5%;
  left: 30%;
  animation-delay: -5s;
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-15px, 20px) scale(0.98);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-left: clamp(28px, 5vw, 84px);
  padding-right: clamp(28px, 5vw, 84px);
}
.hero-row {
  --bs-gutter-x: clamp(1rem, 2vw, 2rem);
}
.hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 20px;
  padding: 5px 14px;
}

/* Hero headline */
.hero-headline {
  font-family: var(--font-display);
  line-height: 0.92;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
}
.headline-line1,
.headline-line2 {
  font-size: clamp(4rem, 10vw, 9rem);
  color: var(--text-primary);
  letter-spacing: 6px;
  display: block;
}
.headline-line3 {
  font-size: clamp(4rem, 10vw, 9rem);
  letter-spacing: 6px;
  display: block;
  background: linear-gradient(
    135deg,
    var(--gold-dark),
    var(--gold),
    var(--gold-light)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheadline {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 10px;
}
.hero-description {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
}

/* Stats */
.hero-stats {
  padding-top: 10px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1;
}
.stat-suffix {
  font-size: inherit;
  color: var(--gold);
}
.stat-label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Brand logo visual */
.hero-visual-col {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.hero-lion-wrap {
  position: relative;
  width: min(420px, 84vw);
  height: min(420px, 84vw);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lion-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.15) 0%,
    transparent 70%
  );
  animation: lionPulse 3s ease-in-out infinite;
}
@keyframes lionPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}
.lion-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 215, 0, 0.2);
  animation: ringRotate 20s linear infinite;
}
.ring-1 {
  inset: 14px;
  animation-duration: 20s;
}
.ring-2 {
  inset: 46px;
  animation-duration: 30s;
  animation-direction: reverse;
  border-color: rgba(192, 192, 192, 0.15);
}
.ring-3 {
  inset: 78px;
  animation-duration: 15s;
}
@keyframes ringRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.lion-core {
  width: min(280px, 62vw);
  height: min(280px, 62vw);
  border-radius: 50%;
  background: var(--bg-base);
  border: 3px solid rgba(255, 215, 0, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow:
    0 0 70px rgba(255, 215, 0, 0.24),
    inset 0 0 34px rgba(255, 215, 0, 0.08);
  animation: lionFloat 4s ease-in-out infinite;
  z-index: 2;
}
.lion-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@keyframes lionFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Float badges */
.float-badge {
  position: absolute;
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1px;
  color: var(--gold);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: badgeFloat 4s ease-in-out infinite;
  white-space: nowrap;
  z-index: 3;
}
.badge-1 {
  top: 15%;
  right: 0;
  animation-delay: 0s;
}
.badge-2 {
  top: 55%;
  right: -5%;
  animation-delay: -1.5s;
}
.badge-3 {
  bottom: 12%;
  left: 5%;
  animation-delay: -3s;
}
@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 3;
}
.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.4;
  }
}

/* ── CONTENT SECTIONS ── */
.content-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
.section-dark {
  background: var(--bg-1);
}
.section-darker {
  background: var(--bg-base);
}
.section-newsletter {
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}
.newsletter-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 50%,
    rgba(255, 215, 0, 0.04) 0%,
    transparent 70%
  );
}

.section-badge {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 4px 14px;
  display: inline-block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 4px;
  color: var(--text-primary);
  margin-top: 10px;
  line-height: 1;
}
.section-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 8px;
  max-width: 600px;
}

/* ── GLASS CARDS ── */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 100%;
  transition: var(--transition);
  overflow: hidden;
}
.glass-card:hover {
  border-color: rgba(255, 215, 0, 0.35);
  box-shadow: var(--shadow-gold);
}
.glass-card-header {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.06), transparent);
}
.glass-card-header h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
}
.card-icon {
  font-size: 1.4rem;
  color: var(--gold);
}
.card-icon-fire {
  font-size: 1.4rem;
  color: #ff6600;
}
.card-live-badge {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 2px;
  background: rgba(0, 230, 118, 0.15);
  color: var(--success);
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: 10px;
  padding: 2px 8px;
}
.card-xp-badge {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 1px;
  background: rgba(255, 215, 0, 0.12);
  color: var(--gold);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 10px;
  padding: 2px 8px;
}
.glass-card-body {
  padding: 20px 22px;
}

.daily-quote-big {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0 0 8px;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}
.daily-quote-author {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 1px;
}

.challenge-display {
  text-align: center;
  padding: 10px 0;
}
.challenge-icon-big {
  font-size: 3rem;
  margin-bottom: 8px;
}
.challenge-text-big {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin: 0;
}
.challenge-difficulty {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 1px;
  color: #ff6600;
}

/* ── VIDEO SECTION ── */
.video-frame-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
}
.power-video-iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}
.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a, #0a0a0a);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.video-play-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.15) 0%,
    transparent 70%
  );
  animation: playGlow 2s ease-in-out infinite;
}
@keyframes playGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.4;
  }
}
.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.15);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  z-index: 2;
  transition: var(--transition);
}
.video-placeholder:hover .video-play-btn {
  background: var(--gold);
  color: var(--bg-base);
  transform: scale(1.1);
}
.video-overlay-text {
  position: absolute;
  bottom: 20px;
  left: 24px;
  z-index: 2;
}
.video-overlay-text h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin: 0;
}
.video-overlay-text p {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 4px 0 0;
  letter-spacing: 1px;
}

/* ── ARTICLES ── */
.article-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.article-card:hover {
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
.article-thumb {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.article-body {
  padding: 18px;
}
.article-cat {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}
.article-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.article-excerpt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}
.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-accent);
  letter-spacing: 1px;
}

/* ── NEWSLETTER ── */
.section-newsletter .section-sub {
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form-wrap {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.ag-newsletter-group {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.3);
  background: rgba(255, 255, 255, 0.03);
}
.ag-newsletter-input {
  background: transparent !important;
  border: none !important;
  color: var(--text-primary) !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem;
  padding: 14px 18px !important;
}
.ag-newsletter-input:focus {
  box-shadow: none !important;
  background: transparent !important;
}
.ag-newsletter-input::placeholder {
  color: var(--text-muted);
}
.newsletter-disclaimer {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin: 0;
}

/* ── FOOTER ── */
.ag-footer {
  background: var(--bg-base);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  padding: 60px 0 30px;
  position: relative;
  z-index: 2;
}
.footer-top {
  padding-bottom: 40px;
}
.footer-brand {
  display: flex;
  gap: 6px;
  align-items: baseline;
  font-family: var(--font-display);
}
.footer-tagline {
  font-family: var(--font-accent);
  letter-spacing: 2px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--trans-fast);
}
.social-icon:hover {
  background: rgba(255, 215, 0, 0.12);
  color: var(--gold);
  border-color: rgba(255, 215, 0, 0.4);
}
.footer-heading {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--trans-fast);
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-stat-card {
  background: rgba(255, 215, 0, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.12);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.footer-stat-label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin: 0;
}
.footer-divider {
  border-color: rgba(255, 215, 0, 0.08);
  margin: 0 0 20px;
}
.footer-bottom {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* ── SCROLL REVEAL ANIMATIONS ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  .float-badge {
    display: none;
  }
  .hero-visual-col {
    justify-content: center;
    padding-bottom: 40px;
  }
  .mega-dropdown {
    top: 60px;
  }
}

@media (max-width: 767.98px) {
  .navbar {
    padding: 10px 0;
  }
  .hero-headline {
    line-height: 0.9;
  }
  .hero-stats {
    gap: 20px;
  }
  .content-section {
    padding: 60px 0;
  }
  .section-header .d-flex {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 575.98px) {
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .ag-btn-primary,
  .hero-ctas .ag-btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .vault-filters {
    gap: 6px;
  }
  .vault-filter {
    font-size: 0.68rem;
    padding: 5px 12px;
  }
}
