:root {
  --primary-green: #06b6d4;
  --accent-emerald: #0891b2;
  --text-dark: #f8fafc;
  --text-slate: #94a3b8;
  --bg-light-white: #020617;
  --bg-light-gray: #0b1329;
  --border-color: rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }
body { background: var(--bg-light-white); color: var(--text-dark); line-height: 1.5; scroll-behavior: smooth; }

.content-container { max-width: 1100px; margin: 0 auto; padding: 60px 20px; }
.max-800 { max-width: 800px; }
.text-center { text-align: center; }
.block { display: block; }
.responsive-img { width: 100%; height: auto; display: block; }
.rounded-shadow { border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }

/* Top Urgency Ticker Banner Layout */
.urgency-ticker { background: #06b6d4; color: #020617; text-align: center; padding: 6px 10px; font-size: 11px; font-weight: 800; letter-spacing: 1px; }

/* Sticky Premium Navigation Header rules */
.main-header { background: rgba(2, 6, 23, 0.8); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(12px); }
.nav-container { max-width: 1100px; margin: 0 auto; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 22px; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 8px; }
.pulse-dot { width: 8px; height: 8px; background: #FF61F8; border-radius: 50%; box-shadow: 0 0 10px #FF61F8; }
.text-accent { color: var(--primary-green); }
.nav-menu a { text-decoration: none; color: var(--text-slate); margin: 0 15px; font-weight: 500; font-size: 14px; transition: color 0.2s; }
.nav-menu a:hover { color: #fff; }
.nav-btn { background: rgba(255,255,255,0.05); color: #fff; padding: 8px 18px; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 14px; border: 1px solid var(--border-color); transition: background 0.2s; }
.nav-btn:hover { background: rgba(255,255,255,0.1); }

/* Visual Structure Layout Tiers */
.dark-section-gradient { background: linear-gradient(180deg, #020617 0%, #0b1329 100%); }
.slate-section { background: #020617; }
.section-label { font-size: 11px; font-weight: 800; color: var(--primary-green); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; display: inline-block; }
h2 { font-size: 34px; font-weight: 800; margin-bottom: 16px; color: #fff; letter-spacing: -0.5px; }
.lead-paragraph { font-size: 18px; color: var(--text-slate); max-width: 850px; margin: 0 auto 20px auto; line-height: 1.6; }

/* Dynamic Immersive Hero Section */
.hero-section { background: radial-gradient(circle at top right, rgba(6,182,212,0.1) 0%, #020617 60%); border-bottom: 1px solid var(--border-color); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 50px; align-items: center; }
.tagline { font-size: 11px; font-weight: 800; color: #FF61F8; letter-spacing: 1.5px; margin-bottom: 16px; display: inline-block; }
h1 { font-size: 46px; font-weight: 800; line-height: 1.15; margin-bottom: 20px; color: #fff; letter-spacing: -1px; }
.hero-subtext { font-size: 18px; color: var(--text-slate); margin-bottom: 24px; line-height: 1.6; }
.hero-bullets { list-style: none; margin-bottom: 30px; }
.hero-bullets li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; font-weight: 500; margin-bottom: 14px; color: #cbd5e1; }
.hero-bullets li span { color: var(--primary-green); font-weight: bold; }

/* Immersive Decorative Glow Orbs */
.hero-image-block { position: relative; display: flex; justify-content: center; }
.glow-orb { position: absolute; width: 250px; height: 250px; background: var(--primary-green); opacity: 0.12; filter: blur(60px); border-radius: 50%; z-index: 1; }
.hero-img-floating { position: relative; z-index: 2; animation: floatAnim 4s ease-in-out infinite; max-height: 420px; width: auto; }

@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Elite Action Buttons using #FF61F8 Magenta */
.primary-btn { 
  background: #FF61F8; 
  color: #fff; 
  padding: 16px 32px; 
  border-radius: 8px; 
  font-size: 18px; 
  font-weight: 700; 
  text-decoration: none; 
  display: inline-block; 
  box-shadow: 0 4px 15px rgba(255, 97, 248, 0.4); 
  transition: background 0.2s ease, transform 0.1s ease;
}
.primary-btn:hover { background: #e146da; }
.primary-btn:active { transform: scale(0.98); }
.stock-alert { font-size: 13px; color: #f43f5e; margin-top: 12px; font-weight: 600; }

/* Frosted Glass Component Cards styling rules */
.split-grid-half { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; align-items: center; }
.benefits-triple-grid, .ingredients-grid, .reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 32px; }
.card-glass { background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border-color); padding: 28px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.15); backdrop-filter: blur(8px); transition: border 0.3s; }
.card-glass:hover { border-color: rgba(6,182,212,0.3); }

/* Botanical Profiles Grid Architecture */
.ing-card { padding: 30px 20px; background: rgba(255,255,255,0.01); border: 1px solid var(--border-color); border-radius: 12px; transition: transform 0.2s, background 0.2s; }
.ing-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.03); }
.ing-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.ing-desc { font-size: 14px; color: var(--text-slate); line-height: 1.6; }

/* Testimonials Layout Configurations */
.review-user-block { display: flex; align-items: center; gap: 14px; margin-top: 16px; border-top: 1px solid var(--border-color); padding-top: 14px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: #1e293b; border: 2px solid var(--primary-green); }

/* Pricing Sections Multi-Packs Container Layout rules */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; margin-top: 40px; align-items: stretch; }
.price-card { background: #0b1329; border: 2px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 35px 24px; text-align: center; position: relative; display: flex; flex-direction: column; justify-content: space-between; transition: transform 0.2s; }
.price-card.featured { border-color: var(--primary-green); box-shadow: 0 15px 35px rgba(6,182,212,0.15); transform: scale(1.03); background: #0e1b35; }
.popular-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--primary-green); color: #020617; padding: 4px 14px; font-size: 11px; font-weight: 800; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.pkg-title { font-size: 20px; font-weight: 800; color: #fff; }
.pkg-price { font-size: 50px; font-weight: 800; color: #fff; margin: 12px 0; letter-spacing: -1px; }
.pkg-price span { font-size: 16px; font-weight: 500; color: var(--text-slate); }
.pkg-shipping { font-size: 13px; font-weight: 700; color: var(--primary-green); margin-bottom: 20px; text-transform: uppercase; }
.pkg-bonus-box { background: rgba(6,182,212,0.08); border: 1px dashed var(--primary-green); padding: 10px; border-radius: 6px; font-size: 13px; font-weight: 600; margin-bottom: 20px; color: #22d3ee; }

/* Direct Buy Package Button - Updated to #FF61F8 Magenta */
.buy-btn { 
  background: #FF61F8; 
  color: #fff; 
  padding: 14px 24px; 
  border-radius: 6px; 
  text-decoration: none; 
  font-weight: 700; 
  display: block; 
  margin-top: auto; 
  box-shadow: 0 2px 10px rgba(255, 97, 248, 0.3);
  transition: background 0.2s ease, transform 0.1s ease;
}
.buy-btn:hover { background: #e146da; }
.buy-btn:active { transform: scale(0.98); }

/* Guarantee Contract Block Element styling overrides (Light Box inside dark environment) */
.guarantee-box { display: flex; gap: 32px; padding: 40px; border-radius: 16px; align-items: center; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.guarantee-badge { border: 4px solid var(--primary-green); width: 120px; height: 120px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; }
.badge-number { font-size: 30px; font-weight: 800; line-height: 1; }
.badge-days { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.alert-tag { font-size: 11px; font-weight: 800; display: block; margin-bottom: 8px; letter-spacing: 0.5px; }
.security-row { display: flex; gap: 20px; margin-top: 18px; font-size: 12px; font-weight: 600; color: #64748b; border-top: 1px solid #cbd5e1; padding-top: 14px; width: 100%; }

/* Accordion Component items definitions */
.faq-item { background: rgba(255,255,255,0.01); border: 1px solid var(--border-color); padding: 22px; border-radius: 8px; margin-bottom: 12px; }
.faq-q { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.faq-a { font-size: 14px; color: var(--text-slate); line-height: 1.6; }

@media (max-width: 768px) {
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  .guarantee-box { flex-direction: column; text-align: center; }
  .nav-menu { display: none; }
  .price-card.featured { transform: scale(1); }
}