/* ==========================================================================
   AUREVA DEODORANT - COMING SOON LUXURY DESIGN SYSTEM
   ========================================================================== */

:root {
  --bg-primary: #080c0e;
  --bg-secondary: #0f1519;
  --bg-card: rgba(18, 26, 30, 0.65);
  --bg-card-hover: rgba(26, 38, 44, 0.85);
  --glass-border: rgba(212, 175, 55, 0.18);
  --glass-border-hover: rgba(212, 175, 55, 0.45);
  
  --gold-300: #fef08a;
  --gold-400: #eab308;
  --gold-primary: #d4af37;
  --gold-dark: #996515;
  --gold-gradient: linear-gradient(135deg, #fcebb6 0%, #d4af37 50%, #996515 100%);
  --gold-glow: rgba(212, 175, 55, 0.25);
  
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-glow: rgba(16, 185, 129, 0.2);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;
  
  --font-heading: 'Cinzel', 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-luxury: 0 20px 40px -15px rgba(0, 0, 0, 0.7), 0 0 30px 0 var(--gold-glow);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, #152220 0%, #0a1114 45%, #050809 100%);
}

/* Ambient Background Glows */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  z-index: 0;
  opacity: 0.45;
}

.glow-top {
  width: 500px;
  height: 500px;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3), rgba(16, 185, 129, 0.15), transparent 70%);
}

.glow-left {
  width: 450px;
  height: 450px;
  top: 35%;
  left: -150px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2), transparent 70%);
}

.glow-right {
  width: 450px;
  height: 450px;
  top: 60%;
  right: -150px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 70%);
}

/* Floating Particles Canvas */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.site-header {
  padding: 1.75rem 0;
  position: relative;
  z-index: 10;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(15, 21, 25, 0.6);
  border: 1px solid var(--glass-border);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.logo-svg {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 8px var(--gold-glow));
  transition: transform var(--transition-smooth);
}

.brand-logo:hover .logo-svg {
  transform: scale(1.05) rotate(3deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-domain {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: -3px;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #fef08a;
  letter-spacing: 0.05em;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-400);
  box-shadow: 0 0 10px var(--emerald-400);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 3.5rem 0 4.5rem;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--emerald-400);
  font-size: 0.825rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.gold-shimmer {
  background: linear-gradient(90deg, #fef08a 0%, #d4af37 25%, #fff 50%, #d4af37 75%, #fef08a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ==========================================================================
   COUNTDOWN TIMER
   ========================================================================== */
.countdown-container {
  margin-bottom: 3.5rem;
}

.countdown-label {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.countdown-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.countdown-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.25rem 1rem;
  min-width: 100px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.countdown-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0.6;
}

.countdown-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-hover);
}

.countdown-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 15px var(--gold-glow);
}

.countdown-text {
  font-size: 0.725rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
  font-weight: 500;
}

.countdown-divider {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--gold-primary);
  opacity: 0.5;
  margin-top: -0.5rem;
}

/* ==========================================================================
   WAITLIST & EMAIL CAPTURE
   ========================================================================== */
.waitlist-card {
  max-width: 580px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(22, 33, 39, 0.8) 0%, rgba(12, 18, 22, 0.9) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-luxury);
  position: relative;
}

.waitlist-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
  color: #fff;
}

.waitlist-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.perk-highlight {
  color: var(--gold-primary);
  font-weight: 600;
}

.waitlist-form {
  display: flex;
  gap: 0.6rem;
  position: relative;
}

.input-wrap {
  position: relative;
  flex: 1;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-subtle);
  width: 18px;
  height: 18px;
  pointer-events: none;
  transition: color var(--transition-fast);
}

.waitlist-input {
  width: 100%;
  background: rgba(7, 11, 13, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.9rem 1rem 0.9rem 2.8rem;
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.waitlist-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.waitlist-input:focus + .input-icon {
  color: var(--gold-primary);
}

.waitlist-input::placeholder {
  color: #64748b;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gold-gradient);
  color: #070a0c;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 1.75rem;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  filter: brightness(1.08);
}

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

.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.775rem;
  color: var(--text-subtle);
  margin-top: 1rem;
}

/* Success Modal / State */
.waitlist-success {
  display: none;
  padding: 1rem 0;
  text-align: center;
  animation: fadeIn 0.4s ease;
}

.success-icon {
  width: 48px;
  height: 48px;
  color: var(--emerald-400);
  margin: 0 auto 0.75rem;
  display: block;
}

.success-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  border: 1px dashed var(--gold-primary);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #fef08a;
  letter-spacing: 0.1em;
  margin: 0.75rem 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   FEATURE HIGHLIGHTS SECTION
   ========================================================================== */
.section-features {
  padding: 4.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.section-tag {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.1);
}

.feature-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold-primary);
  transition: transform var(--transition-fast);
}

.feature-card:hover .feature-icon-box {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(16, 185, 129, 0.2));
}

.feature-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SIGNATURE VARIANTS SNEAK PEEK
   ========================================================================== */
.section-variants {
  padding: 4.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.variants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.variant-card {
  background: linear-gradient(180deg, rgba(22, 30, 35, 0.7) 0%, rgba(13, 19, 22, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.variant-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.variant-santal:hover {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 25px rgba(212, 175, 55, 0.2);
}

.variant-citrus:hover {
  border-color: rgba(249, 115, 22, 0.6);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 25px rgba(249, 115, 22, 0.2);
}

.variant-blanc:hover {
  border-color: rgba(14, 165, 233, 0.6);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 25px rgba(14, 165, 233, 0.2);
}

.variant-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.tag-santal {
  background: rgba(212, 175, 55, 0.15);
  color: #fef08a;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.tag-citrus {
  background: rgba(249, 115, 22, 0.15);
  color: #fed7aa;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.tag-blanc {
  background: rgba(14, 165, 233, 0.15);
  color: #bae6fd;
  border: 1px solid rgba(14, 165, 233, 0.3);
}

.variant-visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.deodorant-mockup {
  position: relative;
  width: 70px;
  height: 130px;
  background: linear-gradient(135deg, #2a3b42 0%, #152026 100%);
  border-radius: 35px 35px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 16px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
  transition: transform var(--transition-smooth);
}

.variant-card:hover .deodorant-mockup {
  transform: scale(1.08) rotate(-3deg);
}

.cap-line {
  width: 80%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.mockup-emblem {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  color: var(--gold-primary);
}

.mockup-accent-band {
  width: 100%;
  height: 8px;
}

.band-santal { background: linear-gradient(90deg, #996515, #d4af37); }
.band-citrus { background: linear-gradient(90deg, #c2410c, #f97316); }
.band-blanc { background: linear-gradient(90deg, #0369a1, #38bdf8); }

.variant-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.variant-notes {
  font-size: 0.825rem;
  color: var(--gold-primary);
  margin-bottom: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.variant-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER & VIP CONCIERGE
   ========================================================================== */
.site-footer {
  padding: 4rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 8, 10, 0.8);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 340px;
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold-primary);
  transform: translateX(4px);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px var(--gold-glow);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-subtle);
}

/* ==========================================================================
   RESPONSIVENESS
   ========================================================================== */
@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0 3rem;
  }
  
  .waitlist-card {
    padding: 1.75rem 1.25rem;
  }
  
  .waitlist-form {
    flex-direction: column;
  }
  
  .btn-primary {
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .countdown-card {
    min-width: 72px;
    padding: 0.9rem 0.6rem;
  }
  
  .countdown-divider {
    display: none;
  }
}
