/* ==========================================
   DESIGN SYSTEM & CUSTOM STYLES
   Pooja A Shah - Reiki Grand Master Funnel
   ========================================== */

:root {
  --bg-dark: #07050c;                 /* Obsidian Deep */
  --bg-card: rgba(22, 16, 33, 0.55);  /* Luminous Obsidian Glass */
  --bg-card-hover: rgba(35, 25, 52, 0.7);
  --gold: #f3c26d;                    /* Champagne Gold */
  --gold-deep: #d4a045;               /* Vintage Gold */
  --gold-pale: rgba(243, 194, 109, 0.08);
  --gold-border: rgba(243, 194, 109, 0.16);
  --gold-glow: rgba(243, 194, 109, 0.3);
  --emerald: #7bc07b;                 /* Success Green */
  --amber: #e58d5c;                   /* Urgency/Orange Glow */
  --text-primary: #f6f5fa;            /* Off-White */
  --text-muted: #aca4b8;              /* Light Lavender Grey */
  --text-faint: rgba(172, 164, 184, 0.45);
  --border-warm: rgba(243, 194, 109, 0.08);
  --border-light: rgba(255, 255, 255, 0.05);
  
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Outfit', sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================
   GLOBAL RESET
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-dark);
}

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(95, 43, 155, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(243, 194, 109, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(7, 5, 12, 1) 0%, rgba(7, 5, 12, 1) 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   SCROLLBAR
   ========================================== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #09070f;
}
::-webkit-scrollbar-thumb {
  background: var(--gold-border);
  border-radius: 99px;
  transition: var(--transition);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ==========================================
   COMMON LAYOUT COMPONENTS
   ========================================== */
.funnel-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Sleek Header */
.funnel-header {
  padding: 30px 24px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

.brand-logo {
  max-height: 90px;
  object-fit: contain;
  transition: var(--transition);
  filter: drop-shadow(0 0 12px rgba(243, 194, 109, 0.15));
}

.brand-logo:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 0 18px rgba(243, 194, 109, 0.3));
}

/* Main Content Area */
.funnel-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 60px;
  position: relative;
  z-index: 5;
}

/* Sleek Footer */
.funnel-footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border-warm);
  background: rgba(4, 2, 7, 0.6);
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-faint);
  position: relative;
  z-index: 10;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--text-muted);
  transition: var(--transition);
}

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

/* Social Links inside Footer */
.footer-social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-social-links a svg {
  fill: currentColor;
  width: 18px;
  height: 18px;
  transition: var(--transition);
}

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

.footer-social-links a:hover svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px var(--gold-glow));
}

.footer-disclaimer {
  max-width: 800px;
  margin: 16px auto 0;
  line-height: 1.6;
}

/* ==========================================
   EXCLUSIONARY WARNING / ALERT BOX
   ========================================== */
.alert-banner {
  background: linear-gradient(90deg, rgba(243, 194, 109, 0.08) 0%, rgba(243, 194, 109, 0.02) 100%);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 14px 20px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.5px;
  max-width: 720px;
  margin: 0 auto 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* ==========================================
   GLASS CARDS & CONTAINERS
   ========================================== */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-warm);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
  width: 100%;
}

.glass-card:hover {
  border-color: var(--gold-border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

/* ==========================================
   PREMIUM BUTTONS
   ========================================== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, #f7d699 0%, var(--gold) 50%, var(--gold-deep) 100%);
  color: #0b0714;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(243, 194, 109, 0.25);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 50%, #f7d699 100%);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--gold-glow);
}

.btn-gold:hover::before {
  opacity: 1;
}

.btn-gold:active {
  transform: translateY(0);
}

/* ==========================================
   INPUTS & LABELS
   ========================================== */
.form-group {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  display: block;
}

.form-group input:not([type="radio"]):not([type="checkbox"]), 
.form-group select, 
.form-group textarea {
  width: 100%;
  background: rgba(12, 8, 20, 0.6);
  border: 1.5px solid var(--border-warm);
  border-radius: 10px;
  padding: 16px 20px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:not([type="radio"]):not([type="checkbox"])::placeholder, 
.form-group textarea::placeholder {
  color: rgba(172, 164, 184, 0.35);
}

.form-group input:not([type="radio"]):not([type="checkbox"]):focus, 
.form-group select:focus, 
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(24, 16, 40, 0.8);
  box-shadow: 0 0 12px rgba(243, 194, 109, 0.1);
}

/* ==========================================
   KEYFRAME ANIMATIONS
   ========================================== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.spinner {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
}

/* ==========================================
   MEDIA QUERIES
   ========================================== */
@media(max-width: 768px) {
  .glass-card {
    padding: 30px 20px;
  }
  .funnel-header {
    padding: 20px 16px;
  }
  .brand-logo {
    max-height: 70px;
  }
}
