/* ═══════════════════════════════════════════════════════════════════
   Custom Styles — VSL Funnel
   Supplements Tailwind CDN. All brand-specific overrides.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Font Faces ─────────────────────────────────────────────────── */
/* @font-face { font-family:"AtChrome"; src:url("../assets/fonts/AtChromeTRIAL-Regular.otf") format("opentype"); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:"AtChrome"; src:url("../assets/fonts/AtChromeTRIAL-Medium.otf") format("opentype"); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:"AtChrome"; src:url("../assets/fonts/AtChromeTRIAL-Semibold.otf") format("opentype"); font-weight:600; font-style:normal; font-display:swap; }
@font-face { font-family:"AtChrome"; src:url("../assets/fonts/AtChromeTRIAL-Bold.otf") format("opentype"); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:"AtChrome"; src:url("../assets/fonts/AtChromeTRIAL-Black.otf") format("opentype"); font-weight:900; font-style:normal; font-display:swap; } */

/* ── Base ───────────────────────────────────────────────────────── */
html, body {
  font-family: "Arial", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ── Animated Transitions (replaces Framer Motion) ──────────────── */
.anim-reveal {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}
.anim-reveal.visible {
  max-height: 5000px;
  opacity: 1;
  overflow: visible;
}

/* ── Floating Arrow Animation ───────────────────────────────────── */
@keyframes floatY {
  0%, 100% { transform: translateY(-5px); }
  50%      { transform: translateY(5px); }
}
.animate-floatY {
  animation: floatY 1.6s ease-in-out infinite;
}

/* ── Gradient CTA Button ────────────────────────────────────────── */
.btn-gradient {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
  white-space: nowrap;
  font-family: "AtChrome", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  background: radial-gradient(160.59% 161.46% at 50% 0%, #FF0000 0%, #FFB43B 100%);
  box-shadow: 0px 24px 24px -16px rgba(255, 72, 1, 0.56);
  border-radius: 100px;
  padding: 18px 24px;
  font-size: 18px;
  line-height: 100%;
}
.btn-gradient:hover { filter: brightness(1.1); }
.btn-gradient:active { transform: scale(0.99); }
.btn-gradient:disabled { opacity: 0.5; pointer-events: none; }

.btn-gradient-sm {
  height: 64px;
  padding: 12px 24px;
  font-size: 18px;
  flex-direction: column;
  gap: 4px;
}

/* ── Secondary Button ───────────────────────────────────────────── */
.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  background: #0F0F0F;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 18px 24px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.15s;
}
.btn-secondary:hover { background: #1a1a1a; }

/* ── Form Fields ────────────────────────────────────────────────── */
.form-field {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.04);
  background: rgba(241,242,245,0.04);
  padding: 16px;
  transition: all 0.3s;
  cursor: text;
}
.form-field:focus-within {
  outline: 3px solid rgba(255,255,255,0.5);
}
.form-field.field-error {
  border-color: #ef4444;
}
.form-field input {
  flex: 1;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 16px;
  line-height: 125%;
  outline: none;
  font-family: "AtChrome", sans-serif;
}
.form-field input::placeholder {
  color: rgba(255,255,255,0.56);
}
.form-field.field-error input::placeholder {
  color: rgba(239,68,68,0.56);
}
.form-error {
  display: none;
  color: #ef4444;
  font-size: 13px;
  margin-top: 4px;
}
.email-suggest {
  display: none;
  font-size: 13px;
  margin-top: 4px;
  color: #facc15;
  cursor: pointer;
}
.email-suggest:hover {
  text-decoration: underline;
}

/* ── Swiper Overrides ───────────────────────────────────────────── */
.swiper { padding-bottom: 28px !important; }
.swiper-pagination { bottom: 0 !important; }
.swiper-pagination-bullet { width: 8px; height: 8px; opacity: 1; background: rgba(255,255,255,0.24); margin: 0 6px !important; }
.swiper-pagination-bullet-active { background: #FF4801; transform: scale(1.5); }

/* ── FAQ Accordion ──────────────────────────────────────────────── */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
}

/* ── Dashed Divider ─────────────────────────────────────────────── */
.dashed-divider {
  width: 100%;
  height: 1px;
  background: none;
  border: none;
  border-top: 1px dashed rgba(255,255,255,0.12);
}

/* ── Lock Overlay ───────────────────────────────────────────────── */
#lock-overlay {
  position: absolute;
  inset: 0;
  z-index: 50;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* ── Sticky Bottom Bar ──────────────────────────────────────────── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 12px 16px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(100%);
  opacity: 0;
}

/* ── Gradient Text ──────────────────────────────────────────────── */
.text-gradient {
  background: radial-gradient(160.59% 161.46% at 50% 0%, #FF0000 0%, #FFB43B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Pulse Click Animation ──────────────────────────────────────── */
@keyframes pulseClick {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(0.9); }
}
.animate-pulse-click {
  animation: pulseClick 2s ease-in-out infinite;
  pointer-events: none;
}
