/* =============================================
   TAURUS PARTNER PROGRAM — Pure CSS
   Brand: taurusmeds.com
   Colors: #0A0A0A bg | #E8421A orange | #F5EFE6 cream
   Fonts: Manuka Bold (headlines) via @font-face | Barlow (body)
   ============================================= */

@font-face {
  font-family: 'Manuka';
  src: url('../fonts/Manuka-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

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

:root {
  --bg: #0A0A0A;
  --orange: #E8421A;
  --cream: #F5EFE6;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.55);
  --border: rgba(255, 255, 255, 0.08);
  --card-bg: #141414;
  --font-headline: 'Manuka', 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ---- INVITE BANNER ---- */
.invite-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 0.6rem 1rem;
  font-family: var(--font-headline);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ---- UTILITIES ---- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 780px;
}

.eyebrow {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.eyebrow-orange {
  color: var(--orange);
}

.accent {
  color: var(--orange);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-dark {
  background: var(--bg);
  color: var(--white);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--white);
}

.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-login {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-login:hover {
  color: var(--white);
}

/* ---- HERO ---- */
.hero {
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(80px + 4rem) 1.5rem 4rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-text {
  flex: 0 0 auto;
  width: min(52%, 580px);
}

.hero-headline {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-val {
  display: block;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--white);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.3rem;
}

.hero-video-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen;
}

/* ---- MARQUEE ---- */
.marquee-bar {
  background: var(--orange);
  overflow: hidden;
  padding: 0.7rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  gap: 0;
}

.marquee-track span {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  padding-right: 2.5rem;
  white-space: nowrap;
}

.dot {
  opacity: 0.55;
  margin-right: 2.5rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---- SECTIONS ---- */
.section-dark {
  background: var(--bg);
  padding: 6rem 0;
}

.section-cream {
  background: var(--cream);
  padding: 6rem 0;
}

.section-orange {
  background: var(--orange);
  padding: 5rem 0;
}

.section-cta {
  background: #111111;
  padding: 6rem 0;
}

.section-headline {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 3.5rem;
}

.section-headline.dark {
  color: var(--bg);
}

/* ---- CARDS ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.75rem;
}

.card-icon {
  font-size: 1.25rem;
  color: var(--orange);
  margin-bottom: 1rem;
  font-weight: 700;
}

.card-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ---- STEPS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.step-num {
  display: block;
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--bg);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
}

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2.5rem;
}

.testimonial-quote {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-name {
  display: block;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--white);
}

.testimonial-handle {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.testimonial-earnings {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.2rem;
}

/* ---- FAQ ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--orange);
  flex-shrink: 0;
  margin-left: 1rem;
  line-height: 1;
  transition: transform 0.2s;
}

details[open] .faq-q::after {
  content: '−';
}

.faq-a {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ---- CTA SECTION ---- */
.cta-center {
  text-align: center;
}

.cta-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 420px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    padding-top: calc(80px + 2.5rem);
    padding-bottom: 2.5rem;
  }

  .hero-text {
    width: 100%;
  }

  .hero-video-wrap {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .nav-login {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-headline {
    font-size: clamp(3.5rem, 12vw, 4.5rem);
  }

  .section-headline {
    font-size: clamp(3rem, 8vw, 3rem);
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---- SPLIT SECTION (Why Taurus) ---- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.benefit-title {
  display: block;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.benefit-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.split-image {
  position: relative;
}

.img-rounded {
  width: 100%;
  border-radius: 1rem;
  display: block;
  border: 1px solid var(--border);
}

.img-caption {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.75rem;
  text-align: center;
  font-style: italic;
}

@media (max-width: 900px) {
  .split-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ---- PRODUCT SPOTLIGHT ---- */
.section-product {
  background: #0f0f0f;
  padding: 6rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.product-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.product-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  width: 100%;
  max-width: 480px;
  border-radius: 1rem;
  display: block;
}

.product-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid var(--orange);
  color: var(--orange);
}

@media (max-width: 900px) {
  .product-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .product-image-wrap {
    order: -1;
  }
}

/* ---- TESTIMONIAL IMAGES ---- */
.testimonial-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0.75rem;
  display: block;
  margin-bottom: 1.25rem;
  filter: brightness(0.85);
}

/* ---- SOCIAL PROOF SECTION ---- */
.social-proof-section {
  overflow: hidden;
  /* Prevent rotated images from causing horizontal scroll */
}

.proof-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  align-items: center;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.proof-img {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 4 / 1;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 1rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), z-index 0s;
  cursor: pointer;
  z-index: 1;
}

.proof-img:hover {
  transform: scale(1.15) !important;
  z-index: 30 !important;
}

.proof-img-1 {
  transform: translateX(-20px) rotate(-4deg);
  z-index: 2;
}

.proof-img-2 {
  transform: translateX(-20px) rotate(3deg);
  z-index: 3;
}

.proof-img-3 {
  transform: translateX(-20px) rotate(-2deg);
  z-index: 1;
}

.proof-img-4 {
  transform: translateX(-20px) rotate(5deg);
  z-index: 4;
}

.proof-img-5 {
  transform: translateX(20px) rotate(-3deg);
  z-index: 2;
}

.proof-img-6 {
  transform: translateX(20px) rotate(2deg);
  z-index: 5;
}

.proof-img-7 {
  transform: translateX(20px) rotate(-5deg);
  z-index: 3;
}

.proof-img-8 {
  transform: translateX(20px) rotate(4deg);
  z-index: 4;
}

.proof-img-9 {
  transform: translateX(-20px) rotate(-2deg);
  z-index: 2;
}

.proof-img-10 {
  transform: translateX(-20px) rotate(3deg);
  z-index: 6;
}

.proof-img-11 {
  transform: translateX(-20px) rotate(-4deg);
  z-index: 3;
}

.proof-img-12 {
  transform: translateX(-20px) rotate(2deg);
  z-index: 5;
}

@media (max-width: 768px) {
  .proof-collage {
    grid-template-columns: 1fr;
    padding: 2rem 1rem 4rem;
    gap: 1.5rem;
  }

  .proof-img {
    max-width: 320px;
    border-radius: 1rem;
  }

  .proof-img-1 {
    transform: rotate(-4deg);
  }

  .proof-img-2 {
    transform: rotate(3deg);
  }

  .proof-img-3 {
    transform: rotate(-2deg);
  }

  .proof-img-4 {
    transform: rotate(5deg);
  }

  .proof-img-5 {
    transform: rotate(-3deg);
  }

  .proof-img-6 {
    transform: rotate(2deg);
  }

  .proof-img-7 {
    transform: rotate(-5deg);
  }

  .proof-img-8 {
    transform: rotate(4deg);
  }

  .proof-img-9,
  .proof-img-10,
  .proof-img-11,
  .proof-img-12 {
    display: none;
  }
}