/* ===== 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;
  --top-bar-height: 44px;
  --nav-height: 72px;
}

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 { font-family: 'Bebas Neue', sans-serif; line-height: 1.05; }
h3 { font-family: 'Barlow', sans-serif; line-height: 1.15; }
h1 { font-size: clamp(3.6rem, 8vw, 6.5rem); font-weight: 400; letter-spacing: 2px; }
h2 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 400; letter-spacing: 1.5px; }
h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.2rem; }
h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.2rem; }

.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;
}

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

/* ===== TOP COUNTDOWN BAR ===== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  height: var(--top-bar-height);
  background: #0f0c02;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.top-bar-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

.top-bar-countdown {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.tbc-unit {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--gold);
}

.tbc-unit em {
  font-style: normal;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tbc-sep {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: var(--gold);
  font-size: 0.9rem;
  opacity: 0.6;
}

.top-bar-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

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

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

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

.nav-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding-top: calc(var(--top-bar-height) + var(--nav-height) + 4rem);
  padding-bottom: 5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  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;
}

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

/* ===== KLAVIYO OVERRIDES ===== */
.klaviyo-form button[type="submit"],
.klaviyo-form [type="submit"],
.klaviyo-form .go-button {
  background: #FFFFFF !important;
  color: #C9A84C !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  border: none !important;
  cursor: pointer !important;
}

.klaviyo-form button[type="submit"]:hover,
.klaviyo-form [type="submit"]:hover {
  filter: brightness(0.96) !important;
}

/* You're locked in — success state */
.shyft-success {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  text-align: center;
  margin-top: 0.5rem;
}

.shyft-success-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #C9A84C;
  letter-spacing: 1px;
  display: block;
}

.shyft-success-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.35rem;
  display: block;
}

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

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

/* ===== 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 2rem;
}

.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;
}

/* ===== INGREDIENTS / SCIENCE SECTION ===== */
.science-section {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 2rem;
}

.science-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
  text-align: center;
}

.science-header h2 { margin-bottom: 1.5rem; }

.ingredient-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.ingredient-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s;
}

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

.ingredient-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

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

.ingredient-dose {
  font-size: 0.72rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-top: 0.2rem;
}

.ingredient-card p {
  font-size: 0.9rem;
  color: #AAAAAA;
  line-height: 1.65;
  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.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.35rem;
}

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

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

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

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

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

.saffron-content { flex: 1; }

.saffron-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.saffron-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #CCCCCC;
  line-height: 1.5;
}

.saffron-point .gold {
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ===== 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;
}

/* ===== 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) {
  .top-bar-label,
  .top-bar-date { display: none; }

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: calc(var(--top-bar-height) + var(--nav-height) + 3rem);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero-content { max-width: 100%; }
  .hero-image {
    width: 100%;
    max-width: 100%;
    order: -1;
    border-radius: 12px;
  }
  .hero-image img,
  .hero-image video {
    width: 100%;
    height: auto;
    max-height: 70vh;
    border-radius: 12px;
    display: block;
  }
  .hero-sub { margin: 0 auto 2rem; }
  .hero { min-height: unset; padding-bottom: 3rem; }

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

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

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

  .ingredient-grid {
    grid-template-columns: 1fr;
  }

  .science-section { padding: 4rem 1.5rem; }
  .science-header { margin-bottom: 2.5rem; }

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

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

  .hero-sub {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .body-text {
    font-size: 0.85rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }
}

/* ===== SMALL MOBILE (under 480px) ===== */
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 0.95rem; }

  .hero-sub {
    font-size: 0.8rem;
    line-height: 1.55;
  }

  .nav-title {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
  }

  .top-bar {
    font-size: 0.75rem;
  }

  .benefit {
    font-size: 0.75rem;
  }
}
