:root {
  color-scheme: dark;
  --accent: #FFB703;
  --accent-gradient: linear-gradient(135deg, #FFB703, #FF8C00);
  --bg: #060608;
  --surface: #131317;
  --surface-elevated: #1f1f26;
  --glass-surface: rgba(19, 19, 23, 0.75);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text-primary: #FFFFFF;
  --text-secondary: #AEAEB2;
  --text-muted: #6C6C70;
  --border: rgba(255, 255, 255, 0.05);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  width: 100%;
}

.page-wrapper {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.page-wrapper::-webkit-scrollbar {
  width: 6px;
}
.page-wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.page-wrapper::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}
.page-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Dual Hero Stage Spotlights (Top Left & Top Right Outer Edges) */
.stage-spotlight-left {
  position: absolute;
  top: -80px;
  left: -320px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.18) 0%, rgba(255, 140, 0, 0.03) 55%, transparent 70%);
  pointer-events: none;
  filter: blur(65px);
  z-index: 0;
}

.stage-spotlight-right {
  position: absolute;
  top: -80px;
  right: -320px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.18) 0%, rgba(255, 140, 0, 0.03) 55%, transparent 70%);
  pointer-events: none;
  filter: blur(65px);
  z-index: 0;
}

.section-blob-left-gold {
  position: absolute;
  top: 8%;
  left: -160px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.15) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(50px);
  z-index: 0;
}

.section-blob-right-indigo {
  position: absolute;
  bottom: 8%;
  right: -160px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.16) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(50px);
  z-index: 0;
}

.section-blob-left-indigo {
  position: absolute;
  bottom: 10%;
  left: -160px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.16) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(50px);
  z-index: 0;
}

.section-blob-right-gold {
  position: absolute;
  top: 8%;
  right: -160px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.15) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(50px);
  z-index: 0;
}

a { color: var(--accent); text-decoration: none; transition: all 0.2s ease; }
a:hover { color: #FF8C00; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary {
  background: var(--accent-gradient);
  color: #000 !important;
  box-shadow: 0 8px 24px -6px rgba(255, 183, 3, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(255, 183, 3, 0.6);
  color: #000 !important;
}
.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  color: var(--text-primary);
}

/* ── Unified Top Navigation Bar ────────────────────────────────────────── */
.nav {
  display: flex;
  flex-direction: column;
  padding: 16px 24px;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: fixed;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  background: rgba(6, 6, 8, 0.88);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  text-decoration: none;
}
.nav-logo img {
  height: 44px;
  filter: drop-shadow(0 2px 8px rgba(255, 183, 3, 0.3));
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
}

/* Accordion Toggle Button (Desktop + Mobile) */
.mobile-menu-btn {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
}

/* Accordion Expandable Menu Container */
.mobile-dropdown {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, margin-top 0.3s ease, padding 0.3s ease;
  gap: 4px;
  margin-top: 0;
  padding-top: 0;
}
.mobile-dropdown.show {
  max-height: 320px;
  opacity: 1;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.mobile-dropdown a {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.mobile-dropdown a:hover, .mobile-dropdown a.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

/* ── FAQ Section Styling ────────────────────────────────────────────── */
.faq-container {
  max-width: 840px;
  margin: 0 auto 60px;
  display: grid;
  gap: 16px;
  padding: 0 24px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(10px);
}
.faq-item:hover {
  border-color: rgba(255, 183, 3, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.faq-item h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-item h3 svg {
  color: var(--accent);
  flex-shrink: 0;
}
.faq-item p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.faq-item code {
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent);
  font-family: monospace;
  font-size: 13px;
}

/* ── Unified Footer Bar ────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  margin-top: 24px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-secondary);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover, .footer-links a.active {
  color: var(--text-primary);
}
.footer p {
  color: var(--text-muted);
  font-size: 13px;
}

/* Floating Scroll To Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(19, 19, 23, 0.85);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 90;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.scroll-top-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  background: rgba(30, 30, 38, 0.95);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(255, 183, 3, 0.25);
}

/* Floating Top-Left Back Button for Auth / Standalone pages */
.login-back-btn {
  position: fixed;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(19, 19, 23, 0.75);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.login-back-btn:hover {
  color: var(--text-primary);
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-3px);
  box-shadow: 0 6px 20px rgba(255, 183, 3, 0.15);
}

/* Responsive Overrides */
@media (max-width: 600px) {
  .nav { padding: 16px; }
  .nav-logo { font-size: 22px; gap: 8px; }
  .nav-logo img { height: 36px; }
  .nav-links { gap: 10px; }
  .scroll-top-btn {
    bottom: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
  }
  .login-back-btn {
    top: 16px;
    left: 16px;
    padding: 8px 14px;
    font-size: 13px;
  }
}
