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

:root {
  --black: #0A0A0A;
  --black-soft: #111111;
  --card: #161616;
  --gold: #C9A84C;
  --gold-light: #F0D080;
  --white: #FFFFFF;
  --gray: #888888;
  --border: #222222;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Montserrat', sans-serif; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 900; letter-spacing: -1px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }

.gold { color: var(--gold); }
.gold-light { color: var(--gold-light); }

.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.body-text {
  color: #BBBBBB;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-gold {
  background: #FFFFFF;
  color: #C9A84C;
  white-space: nowrap;
}
.btn-gold:hover { filter: brightness(0.95); transform: translateY(-1px); }

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.78rem;
  background: #FFFFFF;
  color: #C9A84C;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { height: 36px; width: auto; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 8rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content { flex: 1; max-width: 580px; }

.hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero-headline { margin-bottom: 1.25rem; }

.hero-sub {
  font-size: 1.1rem;
  color: #BBBBBB;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ===== COUNTDOWN ===== */
.countdown-wrapper { margin-bottom: 2rem; }

.countdown-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.75rem;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  min-width: 72px;
}

.countdown-block span {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.countdown-block label {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.25rem;
}

.countdown-sep {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ===== FORMS ===== */
.hero-form, .cta-form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.hero-form input, .cta-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.9rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.hero-form input:focus, .cta-form input:focus {
  border-color: var(--gold);
}

.hero-form input::placeholder, .cta-form input::placeholder {
  color: var(--gray);
}

.form-note {
  font-size: 0.78rem;
  color: var(--gray);
}

/* ===== HERO IMAGE ===== */
.hero-image {
  flex: 1;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* ===== BENEFITS STRIP ===== */
.benefits-strip {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 2.5rem;
}

.benefit-icon { font-size: 1.4rem; }

.benefit-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
}

.benefit-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ===== LIFESTYLE SECTION ===== */
.lifestyle-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 2rem;
  display: flex;
  align-items: center;
  gap: 5rem;
}

.lifestyle-image {
  flex: 1;
  max-width: 520px;
}

.lifestyle-image img {
  width: 100%;
  border-radius: 12px;
}

.lifestyle-content { flex: 1; }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #CCCCCC;
}

.gold-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ===== SCIENCE SECTION ===== */
.science-section {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 2rem;
  display: flex;
  align-items: center;
  gap: 5rem;
  max-width: 100%;
}

.science-section > * { max-width: 1200px; }

.science-section {
  max-width: 1200px;
  margin: 0 auto;
}

.science-content { flex: 1; }

.science-image {
  flex: 1;
  max-width: 480px;
}

.science-image img {
  width: 100%;
  border-radius: 12px;
}

.ingredient-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ingredient-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: border-color 0.2s;
}

.ingredient-card:hover { border-color: rgba(201, 168, 76, 0.4); }

.ingredient-icon { font-size: 1.75rem; flex-shrink: 0; }

.ingredient-card p {
  font-size: 0.9rem;
  color: #AAAAAA;
  line-height: 1.6;
  margin: 0;
}

/* ===== GUMMY SECTION ===== */
.gummy-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 2rem;
  display: flex;
  align-items: center;
  gap: 5rem;
}

.gummy-image {
  flex: 1;
  max-width: 520px;
}

.gummy-image img {
  width: 100%;
  border-radius: 12px;
}

.gummy-content { flex: 1; }

.gummy-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #0f0c02 0%, #1a1500 50%, #0f0c02 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 7rem 2rem;
  text-align: center;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta-inner .body-text {
  margin: 0 auto 2rem;
  text-align: left;
}

.cta-form {
  justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-logo {
  height: 40px;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

.footer-copy {
  font-size: 0.75rem;
  color: #555;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 6rem;
  }

  .hero-content { max-width: 100%; }
  .hero-image { max-width: 100%; order: -1; }

  .hero-sub { margin: 0 auto 2rem; }

  .countdown { justify-content: center; }

  .hero-form { justify-content: center; }

  .body-text { margin: 0 auto 2rem; }

  .lifestyle-section,
  .science-section,
  .gummy-section {
    flex-direction: column;
    gap: 3rem;
    padding: 4rem 1.5rem;
  }

  .lifestyle-image,
  .science-image,
  .gummy-image {
    max-width: 100%;
  }

  .benefits-strip { gap: 1rem; }
  .benefit { padding: 0.5rem 1rem; }
  .benefit-divider { display: none; }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.8rem; }
}
