/* ==========================================================================
   BS Oil & Ghee — Modern Luxury Coming Soon Stylesheet
   Color Palette:
   - Background: #F3F4F6 to #E9ECEF with warm amber highlights
   - Brand Forest Green: #03522B
   - Warm Amber / Golden Oil Glow: #F59E0B / #FBBF24 / #D97706
   - Deep Slate Typography: #111827 / #1F2937 / #4B5563 / #9CA3AF
   - Glassmorphism White: rgba(255, 255, 255, 0.85)
   ========================================================================== */

:root {
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-poppins: 'Poppins', sans-serif;

  --color-bg-base: #eef2f6;
  --color-card-bg: rgba(255, 255, 255, 0.82);
  --color-brand-green: #03522b;
  --color-brand-green-light: #e8f5ec;
  --color-brand-gold: #f59e0b;
  --color-brand-gold-glow: rgba(245, 158, 11, 0.45);
  --color-brand-amber-deep: #d97706;

  --color-text-title: #181c24;
  --color-text-body: #4b5563;
  --color-text-muted: #8e95a5;

  --radius-card: 28px;
  --radius-pill: 9999px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --shadow-card: 0 25px 60px -15px rgba(0, 0, 0, 0.08), 0 0 1px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 60px rgba(245, 158, 11, 0.35);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);

  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 16px 20px;
  font-family: var(--font-primary);
  background-color: var(--color-bg-base);
  background-image: 
    radial-gradient(at 10% 20%, rgba(245, 158, 11, 0.12) 0px, transparent 50%),
    radial-gradient(at 90% 80%, rgba(3, 82, 43, 0.08) 0px, transparent 50%),
    radial-gradient(at 50% 50%, #ffffff 0px, #e8edf3 100%);
  color: var(--color-text-title);
  overflow: hidden; /* No outer scrollbar */
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
}

/* Ambient Canvas & Orbs */
.ambient-canvas-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: floatOrb 12s ease-in-out infinite alternate;
}

.glow-orb-main {
  width: 500px;
  height: 350px;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(251, 191, 36, 0.4) 0%, rgba(245, 158, 11, 0.15) 60%, transparent 80%);
}

.glow-orb-secondary {
  width: 400px;
  height: 400px;
  bottom: 5%;
  right: 15%;
  background: radial-gradient(circle, rgba(3, 82, 43, 0.1) 0%, transparent 70%);
  animation-duration: 16s;
}

@keyframes floatOrb {
  0% { transform: translate(-50%, 0) scale(1); }
  50% { transform: translate(-48%, -25px) scale(1.08); }
  100% { transform: translate(-52%, 20px) scale(0.95); }
}

/* ==========================================================================
   Main Card Canvas (Perfect Center, Expanded Width, Non-Scrollable)
   ========================================================================== */
.coming-soon-card {
  position: relative;
  width: 100%;
  max-width: 1520px;
  height: calc(100vh - 32px);
  max-height: calc(100vh - 32px);
  background: var(--color-card-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 44px 18px 44px;
  z-index: 1;
  overflow: hidden;
  transition: var(--transition-smooth);
}

/* Subtle corner glossy shine */
.coming-soon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 1), transparent);
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 10;
  position: relative;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.brand-logo-wrap:hover {
  transform: scale(1.03);
}

.brand-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.04));
}

.nav-divider {
  width: 1px;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.12);
}

.purity-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(3, 82, 43, 0.08);
  border: 1px solid rgba(3, 82, 43, 0.15);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-brand-green);
  letter-spacing: 0.02em;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-brand-green);
  border-radius: 50%;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(3, 82, 43, 0.5); }
  70% { box-shadow: 0 0 0 6px rgba(3, 82, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(3, 82, 43, 0); }
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
  padding: 4px 2px;
  transition: color 0.25s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-text-title);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-brand-green);
  border-radius: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.talk-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-title);
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  transition: var(--transition-smooth);
}

.talk-btn:hover {
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-brand-amber-deep);
}

.arrow-circle-btn {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.28);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-amber-deep);
  cursor: pointer;
  transition: var(--transition-bounce);
}

.arrow-circle-btn svg {
  stroke: var(--color-brand-amber-deep);
  transition: transform 0.25s ease, stroke 0.25s ease;
}

.arrow-circle-btn:hover {
  background: var(--color-brand-gold);
  border-color: var(--color-brand-gold);
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.arrow-circle-btn:hover svg {
  stroke: #ffffff;
  transform: translate(2px, -2px);
}

/* ==========================================================================
   Center Hero Section with Glowing Dome Arch (Enlarged & Impactful)
   ========================================================================== */
.hero-dome-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px;
  margin: auto 0;
  width: 100%;
}

/* The iconic sun/amber dome outline from reference */
.dome-arch-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  width: 960px;
  height: 560px;
  pointer-events: none;
  z-index: 1;
}

.dome-contour-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 480px 480px 0 0;
  border: 1.5px solid rgba(245, 158, 11, 0.45);
  border-bottom: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 55%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 55%, rgba(0,0,0,0) 100%);
}

.dome-inner-radiance {
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 85%;
  border-radius: 480px 480px 0 0;
  background: radial-gradient(ellipse at 50% 18%, 
    rgba(245, 158, 11, 0.52) 0%, 
    rgba(251, 191, 36, 0.3) 42%, 
    rgba(255, 255, 255, 0.05) 75%, 
    transparent 100%);
  filter: blur(18px);
  animation: glowPulse 6s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0% { opacity: 0.85; transform: scale(0.98); }
  100% { opacity: 1; transform: scale(1.03); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
}

/* Floating Tag */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-brand-green);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.15);
  margin-bottom: 12px;
  animation: fadeInDown 0.8s ease backwards;
}

/* Headline */
.main-headline {
  font-size: clamp(3.2rem, 5.6vw, 4.8rem);
  font-weight: 800;
  color: var(--color-text-title);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 8px;
  animation: fadeInUp 0.8s ease 0.1s backwards;
}

/* Subtitle */
.main-subheadline {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 400;
  color: var(--color-text-body);
  margin-bottom: 10px;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.brand-description {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 660px;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.25s backwards;
}

.brand-description strong {
  color: var(--color-text-title);
  font-weight: 600;
}

/* Minimalist vertical dash divider (reference visual element) */
.vertical-dash-divider {
  width: 2px;
  height: 20px;
  background: linear-gradient(to bottom, rgba(245, 158, 11, 0.9), rgba(245, 158, 11, 0.1));
  margin: 0 auto 16px auto;
  border-radius: 2px;
}

/* Countdown Timer */
.countdown-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  animation: fadeInUp 0.8s ease 0.3s backwards;
}

.countdown-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  padding: 8px 16px;
  min-width: 70px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.countdown-num {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--color-brand-amber-deep);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.countdown-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-text-muted);
  margin-top: 3px;
}

.countdown-sep {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-brand-amber-deep);
  opacity: 0.6;
}

/* Email Form */
.notify-form {
  width: 100%;
  max-width: 500px;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.35s backwards;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-pill);
  padding: 5px 6px 5px 18px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.input-wrapper:focus-within {
  border-color: var(--color-brand-green);
  box-shadow: 0 8px 28px rgba(3, 82, 43, 0.18);
}

.mail-icon {
  color: var(--color-text-muted);
  flex-shrink: 0;
  margin-right: 10px;
}

.input-wrapper input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--color-text-title);
  outline: none;
  min-width: 0;
}

.input-wrapper input::placeholder {
  color: #94a3b8;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--color-brand-green);
  color: #ffffff;
  border: none;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.submit-btn:hover {
  background: #023f21;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(3, 82, 43, 0.35);
}

.form-feedback {
  font-size: 0.82rem;
  margin-top: 5px;
  min-height: 16px;
  transition: var(--transition-smooth);
}

.form-feedback.success {
  color: var(--color-brand-green);
  font-weight: 600;
}

.form-feedback.error {
  color: #dc2626;
}

/* Social Media Dock (matching reference circular icons) */
.social-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.social-prompt-text {
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--color-text-body);
}

.social-icons-dock {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-body);
  text-decoration: none;
  transition: var(--transition-bounce);
}

.social-icon-btn:hover {
  background: #ffffff;
  color: var(--color-brand-green);
  border-color: var(--color-brand-green);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   Footer Elements
   ========================================================================== */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 10;
  position: relative;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.footer-copyright {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}

.footer-center-tag .tag-pill {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.preview-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--color-brand-amber-deep);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.preview-btn:hover {
  background: var(--color-brand-gold);
  color: #ffffff;
  border-color: var(--color-brand-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

/* ==========================================================================
   Modals & Product Previews
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18, 24, 38, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
  padding: 36px;
  position: relative;
  transform: scale(0.94) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.open .modal-card {
  transform: scale(1) translateY(0);
}

.modal-card.modal-compact {
  max-width: 640px;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f2f5;
}

.modal-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-brand-green);
  background: var(--color-brand-green-light);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

.modal-title-group h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text-title);
  line-height: 1.2;
}

.modal-subtitle {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.modal-close-btn {
  background: #f3f4f6;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-body);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background: #e5e7eb;
  color: var(--color-text-title);
  transform: rotate(90deg);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.product-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #f8fafc;
  border: 1px solid #eef2f6;
  border-radius: 18px;
  transition: var(--transition-smooth);
}

.product-item:hover {
  background: #ffffff;
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.product-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.ghee-bg { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.oil-mustard-bg { background: linear-gradient(135deg, #fef08a, #facc15); }
.oil-groundnut-bg { background: linear-gradient(135deg, #fed7aa, #fdba74); }
.oil-sesame-bg { background: linear-gradient(135deg, #e2e8f0, #cbd5e1); }

.product-info {
  flex: 1;
}

.product-tag-row {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

.badge-gold {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #b45309;
  background: #fef3c7;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.badge-green {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-brand-green);
  background: var(--color-brand-green-light);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.product-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-title);
  margin-bottom: 4px;
}

.product-info p {
  font-size: 0.82rem;
  color: var(--color-text-body);
  line-height: 1.5;
  margin-bottom: 10px;
}

.product-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-perks li {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--color-brand-green);
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f0f2f5;
}

.modal-footer p {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-body);
}

.modal-cta-btn {
  background: var(--color-brand-green);
  color: #ffffff;
  border: none;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-cta-btn:hover {
  background: #023f21;
  transform: translateY(-1px);
}

/* Modal Form Styles */
.modal-notify-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

.modal-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.modal-form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-title);
}

.modal-form-group input {
  width: 100%;
  padding: 12px 16px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--color-text-title);
  outline: none;
  transition: var(--transition-smooth);
}

.modal-form-group input:focus {
  background: #ffffff;
  border-color: var(--color-brand-green);
  box-shadow: 0 4px 14px rgba(3, 82, 43, 0.12);
}

.modal-submit-btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}

/* About / Process Body */
.promise-highlight {
  display: flex;
  gap: 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 18px;
  border-radius: 14px;
  margin-bottom: 24px;
}

.promise-icon {
  font-size: 1.8rem;
}

.promise-highlight p {
  font-size: 0.88rem;
  color: #166534;
  line-height: 1.6;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.pillar-box {
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.pillar-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-brand-amber-deep);
  display: block;
  margin-bottom: 6px;
}

.pillar-box h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.pillar-box p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  border: 1px solid #e5e7eb;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 200;
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-bounce);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-brand-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.toast-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-title);
}

.toast-desc {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Responsive Breakpoints & Mobile Optimization
   ========================================================================== */

/* Tablets & Small Desktops (max-width: 1024px) */
@media (max-width: 1024px) {
  .coming-soon-card {
    padding: 20px 28px 16px 28px;
    height: auto;
    min-height: calc(100vh - 24px);
    max-height: none;
  }
  
  html, body {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
    padding: 12px;
  }

  .dome-arch-glow {
    width: 90%;
    height: 480px;
  }

  .hero-content {
    max-width: 700px;
  }

  .main-headline {
    font-size: clamp(2.6rem, 5vw, 3.8rem);
  }

  .products-grid-two {
    grid-template-columns: 1fr;
  }
}

/* Mobile Devices (max-width: 680px) */
@media (max-width: 680px) {
  html, body {
    padding: 8px;
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .coming-soon-card {
    padding: 20px 16px 16px 16px;
    border-radius: 20px;
    width: 100%;
    height: auto;
    min-height: calc(100vh - 16px);
    max-height: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
  }

  /* Header on Mobile: Clean single-line layout */
  .header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
  }

  .nav-left {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .brand-logo-img {
    height: 32px;
  }

  .nav-divider,
  .purity-badge {
    display: none !important; /* Hide badge to make space for Get Notified button */
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .talk-btn {
    font-size: 0.86rem;
    padding: 6px 10px;
  }

  .arrow-circle-btn {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }

  .arrow-circle-btn svg {
    width: 16px;
    height: 16px;
  }

  /* Hero Section on Mobile */
  .hero-dome-section {
    padding: 6px 0;
    margin: 4px 0;
    width: 100%;
  }

  .dome-arch-glow {
    width: 100%;
    height: 380px;
    top: 50%;
    transform: translate(-50%, -46%);
  }

  .dome-contour-line {
    border-radius: 220px 220px 0 0;
  }

  .dome-inner-radiance {
    border-radius: 220px 220px 0 0;
  }

  .hero-tag {
    font-size: 0.74rem;
    padding: 5px 12px;
    margin-bottom: 10px;
    line-height: 1.35;
    text-align: center;
    max-width: 96%;
  }

  .main-headline {
    font-size: clamp(2.4rem, 8.5vw, 3.2rem);
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 6px;
  }

  .main-subheadline {
    font-size: 1.08rem;
    margin-bottom: 8px;
  }

  .brand-description {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 14px;
    padding: 0 6px;
    max-width: 100%;
  }

  .vertical-dash-divider {
    height: 14px;
    margin: 0 auto 12px auto;
  }

  /* Countdown on Mobile */
  .countdown-container {
    gap: 8px;
    margin-bottom: 16px;
  }

  .countdown-card {
    min-width: 52px;
    padding: 7px 8px;
    border-radius: 12px;
  }

  .countdown-num {
    font-size: 1.25rem;
  }

  .countdown-label {
    font-size: 0.6rem;
    margin-top: 2px;
  }

  .countdown-sep {
    font-size: 1.1rem;
  }

  /* Notify Form on Mobile */
  .notify-form {
    max-width: 100%;
    margin-bottom: 16px;
  }

  .input-wrapper {
    flex-direction: column;
    padding: 8px;
    border-radius: 16px;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
  }

  .mail-icon {
    display: none;
  }

  .input-wrapper input {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    padding: 8px 0;
  }

  .submit-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  /* Social Icons on Mobile */
  .social-wrapper {
    gap: 8px;
  }

  .social-prompt-text {
    font-size: 0.88rem;
  }

  .social-icons-dock {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .social-icon-btn {
    width: 36px;
    height: 36px;
  }

  .social-icon-btn svg {
    width: 16px;
    height: 16px;
  }

  /* Footer on Mobile */
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding-top: 14px;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  .footer-copyright {
    font-size: 0.76rem;
    line-height: 1.4;
  }

  .footer-center-tag .tag-pill {
    font-size: 0.78rem;
  }

  .preview-btn {
    width: auto;
    align-self: center;
    padding: 8px 20px;
    font-size: 0.85rem;
  }

  /* Modals on Mobile */
  .modal-card {
    padding: 20px 16px;
    border-radius: 18px;
    width: 100%;
    max-height: 88vh;
  }

  .modal-title-group h2 {
    font-size: 1.25rem;
  }

  .modal-subtitle {
    font-size: 0.8rem;
  }

  .products-grid, .products-grid-two {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 18px;
  }

  .product-item {
    flex-direction: column;
    padding: 14px;
    gap: 10px;
  }

  .product-info h3 {
    font-size: 0.96rem;
  }

  .product-info p {
    font-size: 0.78rem;
  }

  .product-perks li {
    font-size: 0.74rem;
  }

  .modal-footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .modal-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Very Small Screens (e.g. iPhone SE / 320px - 375px) */
@media (max-width: 380px) {
  .purity-badge {
    display: none;
  }

  .main-headline {
    font-size: 1.95rem;
  }

  .countdown-card {
    min-width: 42px;
    padding: 4px 6px;
  }

  .countdown-num {
    font-size: 1rem;
  }
}
