/* ═══════════════════════════════════════════════════════════════════
   PUZZLEBOOK CREATOR AI — JV PARTNER HUB STYLESHEET
   Aesthetics: Modern, High-Converting Light Theme with Violet & Gold Accents
   Mobile-First & Fully Responsive (Zero Overflow, Zero Overlap)
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-alt: #f1f5f9;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-dark: #0f172a;
  
  --indigo: #4f46e5;
  --indigo-dark: #4338ca;
  --indigo-light: #6366f1;
  --purple: #7c3aed;
  --purple-dark: #6d28d9;
  --gold: #f59e0b;
  --gold-dark: #d97706;
  --gold-light: #fbbf24;
  --emerald: #10b981;
  --emerald-dark: #059669;

  --border-light: #e2e8f0;
  --border-focus: #c7d2fe;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 30px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 20px 40px rgba(79, 70, 229, 0.15);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--indigo);
  text-decoration: none;
  transition: all 0.2s ease;
}
a:hover {
  color: var(--purple);
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ══════════ TOP ANNOUNCEMENT BAR ══════════ */
.announcement-bar {
  background: linear-gradient(90deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
  color: #ffffff;
  padding: 10px 16px;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.4;
}
.announcement-bar strong {
  color: var(--gold-light);
  font-weight: 800;
}

/* ══════════ STICKY NAVBAR ══════════ */
.jv-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}
.jv-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  gap: 16px;
}
.jv-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 1.12rem;
  color: var(--text-dark);
  text-decoration: none;
  flex-shrink: 0;
}
.jv-brand-badge {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--purple) 100%);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.jv-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}
.jv-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 6px 0;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.jv-link:hover {
  color: var(--indigo);
}
.jv-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.jv-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--purple) 100%);
  color: #ffffff !important;
  font-size: 0.86rem;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 3px 10px rgba(79, 70, 229, 0.25);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.jv-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(79, 70, 229, 0.35);
}
.jv-menu-btn {
  display: none;
  background: #f1f5f9;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  width: 38px;
  height: 38px;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-dark);
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.jv-menu-btn:hover {
  background: #e2e8f0;
}

/* Mobile Dropdown Drawer */
.jv-mobile-drawer {
  display: none;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 16px 20px 20px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}
.jv-mobile-drawer.show {
  display: block;
}
.jv-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.jv-mobile-link {
  display: block;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  transition: all 0.2s ease;
}
.jv-mobile-link:hover {
  background: #eef2ff;
  color: var(--indigo);
  border-color: #c7d2fe;
}
.jv-mobile-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  font-size: 0.94rem;
  font-weight: 800;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--purple) 100%);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.25);
}

/* ══════════ HERO SECTION ══════════ */
.jv-hero {
  padding: 56px 0 48px;
  background: radial-gradient(circle at 50% 0%, #eef2ff 0%, #f8fafc 70%);
  text-align: center;
  position: relative;
}
.launch-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  color: #92400e;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-headline {
  font-size: clamp(1.75rem, 3.8vw, 2.75rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.22;
  margin-bottom: 18px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.gradient-text {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subheadline {
  font-size: clamp(0.96rem, 1.8vw, 1.18rem);
  color: var(--text-muted);
  max-width: 820px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.hero-subheadline strong {
  color: var(--text-dark);
}

/* Hero Key Metric Cards */
.hero-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1040px;
  margin: 0 auto 36px;
}
.metric-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 18px 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.metric-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-focus);
}
.metric-val {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--indigo);
  margin-bottom: 4px;
  line-height: 1.2;
}
.metric-val.gold {
  color: var(--gold-dark);
}
.metric-val.emerald {
  color: var(--emerald-dark);
}
.metric-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Action CTAs */
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.btn-primary-jv {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--purple) 100%);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary-jv:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(79, 70, 229, 0.45);
}
.btn-secondary-jv {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 26px;
  font-size: 1rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  color: var(--text-dark) !important;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-secondary-jv:hover {
  background: var(--bg-alt);
  border-color: var(--gold);
  color: var(--gold-dark) !important;
}

/* Hero Showcase Mockup */
.hero-mockup-wrap {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  background: #ffffff;
}
.hero-mockup-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* ══════════ SECTION HEADERS ══════════ */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.section-pill {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  background: #eef2ff;
  color: var(--indigo);
  border: 1px solid #c7d2fe;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 10px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════ LAUNCH DETAILS SECTION ══════════ */
.launch-details-section {
  padding: 56px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.launch-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.launch-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.2s ease;
}
.launch-card:hover {
  border-color: var(--indigo-light);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}
.launch-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.launch-card-content h3 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.launch-card-content p {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
}
.launch-card-content small {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* ══════════ WHY PROMOTE SECTION ══════════ */
.why-promote-section {
  padding: 72px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.why-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-focus);
}
.why-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #eef2ff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.why-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Market Proof Banner */
.market-proof-box {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 28px;
  box-shadow: var(--shadow-xl);
}
.proof-content h3 {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 10px;
}
.proof-content h3 span {
  color: var(--gold-light);
}
.proof-content p {
  font-size: 0.94rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 18px;
}
.proof-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
}
.proof-item span {
  color: var(--emerald);
  font-weight: 900;
}
.proof-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ══════════ FUNNEL BREAKDOWN SECTION ══════════ */
.funnel-section {
  padding: 72px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.funnel-flow-summary {
  background: var(--bg-alt);
  border: 1.5px dashed #cbd5e1;
  border-radius: var(--radius-xl);
  padding: 22px;
  margin-bottom: 40px;
  text-align: center;
}
.funnel-flow-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.funnel-steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.flow-step-pill {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.flow-step-pill strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-dark);
}
.flow-step-pill span {
  font-size: 0.8rem;
  color: var(--indigo);
  font-weight: 700;
}
.flow-arrow {
  font-size: 1.2rem;
  color: var(--indigo);
  font-weight: 900;
}
.flow-total-pill {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 10px 20px;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
  text-align: left;
}
.flow-total-pill strong {
  display: block;
  font-size: 0.92rem;
}
.flow-total-pill span {
  font-size: 0.8rem;
  font-weight: 800;
  color: #fef3c7;
}

/* 3 Product Funnel Cards */
.funnel-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.funnel-card {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.funnel-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.funnel-card.featured {
  border-color: var(--indigo);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.15);
}
.funnel-card-header {
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.funnel-tier-badge {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  background: #eef2ff;
  color: var(--indigo);
  border: 1px solid #c7d2fe;
}
.funnel-tier-badge.oto1 {
  background: #fdf4ff;
  color: #9333ea;
  border-color: #f0abfc;
}
.funnel-tier-badge.oto2 {
  background: #fffbeb;
  color: #b45309;
  border-color: #fde68a;
}
.funnel-commission-badge {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--emerald-dark);
  background: #ecfdf5;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid #a7f3d0;
}
.funnel-card-media {
  background: var(--bg-page);
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.funnel-card-media img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-height: 200px;
  object-fit: cover;
  margin: 0 auto;
}
.funnel-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.funnel-card-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.funnel-pricing-box {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}
.funnel-price {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--text-dark);
}
.funnel-earn {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--indigo);
}
.funnel-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex: 1;
}
.funnel-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.funnel-feature-list li span {
  color: var(--emerald-dark);
  font-weight: 900;
}

/* ══════════ CONTEST & CASH PRIZES SECTION ══════════ */
.contest-section {
  padding: 72px 0;
  background: radial-gradient(circle at 50% 10%, #fef3c7 0%, #f8fafc 60%);
}
.contest-badge-lead {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  color: #92400e;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 32px;
  align-items: flex-end;
}
.podium-card {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 28px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.podium-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.podium-card.first-place {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fffdf5 0%, #ffffff 100%);
  padding-top: 36px;
  padding-bottom: 36px;
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.18);
  order: 2;
}
.podium-card.second-place {
  order: 1;
}
.podium-card.third-place {
  order: 3;
}
.trophy-badge {
  font-size: 2.6rem;
  margin-bottom: 10px;
}
.podium-place {
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.podium-prize {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 6px;
}
.podium-card.first-place .podium-prize {
  color: var(--gold-dark);
  font-size: 2.8rem;
}
.podium-rule {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--emerald-dark);
}

/* Speed Contest & Rules Cards */
.contest-schedule-banner {
  max-width: 760px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  border: 1px solid rgba(165, 180, 252, 0.3);
  border-radius: var(--radius-lg);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(49, 46, 129, 0.25);
}
.schedule-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.schedule-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: #a5b4fc;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.schedule-time {
  font-size: 1.05rem;
  font-weight: 900;
  color: #ffffff;
}
.schedule-divider {
  font-size: 1.3rem;
  color: #fbbf24;
  font-weight: 900;
}

.contest-rules-card {
  max-width: 820px;
  margin: 0 auto;
  background: #ffffff;
  border: 1.5px solid #fed7aa;
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
}
.contest-rules-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.contest-rules-header .rules-icon {
  font-size: 1.5rem;
}
.contest-rules-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
}
.contest-rules-content p {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 16px;
}
.contest-rules-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contest-rules-list li {
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}
.contest-rules-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--emerald);
  font-weight: 900;
}
.contest-cta-bar {
  display: flex;
  justify-content: center;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
}

/* ══════════ EMAIL SWIPES SECTION ══════════ */
.swipes-section {
  padding: 72px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.swipes-tab-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.swipe-tab-btn {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-main);
}
.swipe-tab-btn:hover {
  border-color: var(--indigo-light);
  color: var(--indigo);
}
.swipe-tab-btn.active {
  background: var(--indigo);
  color: #ffffff;
  border-color: var(--indigo);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.swipe-container {
  max-width: 860px;
  margin: 0 auto;
}
.swipe-panel {
  display: none;
  background: var(--bg-page);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.swipe-panel.active {
  display: block;
}
.swipe-panel-header {
  background: #ffffff;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.swipe-angle-tag {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--indigo);
  letter-spacing: 0.5px;
}
.btn-copy-swipe {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1.5px solid var(--indigo);
  color: var(--indigo);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  font-family: var(--font-main);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-copy-swipe:hover {
  background: var(--indigo);
  color: #ffffff;
}
.btn-copy-swipe.copied {
  background: var(--emerald-dark);
  border-color: var(--emerald-dark);
  color: #ffffff;
}
.swipe-panel-body {
  padding: 24px;
}
.swipe-field {
  margin-bottom: 18px;
}
.swipe-field-label {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
}
.swipe-subjects-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.subject-pill {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}
.swipe-email-body {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-dark);
  white-space: pre-line;
  font-family: inherit;
}

/* ══════════ PRODUCT SHOWCASE & GALLERY SECTION ══════════ */
.gallery-section {
  padding: 72px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.gallery-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.gallery-item-caption {
  padding: 10px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  border-top: 1px solid var(--border-light);
}

/* ══════════ AFFILIATE LINK & VENDOR CONTACT BOX ══════════ */
.contact-section {
  padding: 72px 0;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 60%, #4338ca 100%);
  color: #ffffff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}
.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 900;
  line-height: 1.22;
  margin-bottom: 14px;
}
.contact-info p {
  font-size: 0.98rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 22px;
}
.vendor-profile {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin-bottom: 24px;
}
.vendor-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 2px;
}
.vendor-role {
  font-size: 0.84rem;
  color: #94a3b8;
  margin-bottom: 12px;
}
.vendor-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.vendor-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--text-dark) !important;
  font-size: 0.86rem;
  font-weight: 800;
  padding: 9px 16px;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}
.vendor-email-btn:hover {
  background: var(--gold-light);
  color: #000000 !important;
}

.affiliate-request-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  color: var(--text-main);
  box-shadow: var(--shadow-xl);
  text-align: center;
}
.affiliate-request-card h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.affiliate-request-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.wplus-btn-large {
  display: block;
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 900;
  color: #ffffff !important;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35);
  margin-bottom: 14px;
  transition: all 0.2s ease;
  text-decoration: none;
}
.wplus-btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.45);
}
.reciprocal-notice {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ══════════ FOOTER ══════════ */
.jv-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 36px 0;
  text-align: center;
  font-size: 0.82rem;
}
.jv-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.jv-footer-links a {
  font-weight: 700;
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.2s ease;
}
.jv-footer-links a:hover {
  color: var(--gold-light);
}
.jv-footer-links span {
  color: #475569;
  user-select: none;
}
.jv-footer p {
  line-height: 1.6;
}
.jv-footer a {
  color: #cbd5e1;
}
.jv-footer a:hover {
  color: #ffffff;
}

/* ══════════ RESPONSIVE MEDIA QUERIES ══════════ */
/* Tablet & Medium Screens (<= 1024px) */
@media (max-width: 1024px) {
  .jv-links {
    display: none; /* Collapses into mobile drawer */
  }
  .jv-menu-btn {
    display: inline-flex; /* Hamburger appears */
  }
  .launch-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .funnel-cards-grid {
    grid-template-columns: 1fr;
  }
  .contest-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .podium-card.first-place {
    order: 1;
    padding-top: 32px;
  }
  .podium-card.second-place {
    order: 2;
  }
  .podium-card.third-place {
    order: 3;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Small Screens (<= 768px) */
@media (max-width: 768px) {
  .hero-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .market-proof-box {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
  }
  .btn-primary-jv, .btn-secondary-jv {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.98rem;
  }
  .contest-schedule-banner {
    flex-direction: column;
    padding: 16px;
    text-align: center;
    gap: 10px;
  }
  .schedule-divider {
    transform: rotate(90deg);
  }
  .contest-rules-card {
    padding: 22px 18px;
  }
  .speed-contest-box {
    flex-direction: column;
    text-align: center;
    padding: 18px;
  }
  .swipe-panel-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-copy-swipe {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile Screens (<= 520px) */
@media (max-width: 520px) {
  .container {
    padding: 0 14px;
  }
  .jv-nav-inner {
    min-height: 60px;
  }
  .jv-brand {
    font-size: 1.02rem;
  }
  .jv-nav-cta {
    padding: 7px 12px;
    font-size: 0.8rem;
  }
  .jv-menu-btn {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
  }
  .hero-metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .metric-card {
    padding: 14px 10px;
  }
  .metric-val {
    font-size: 1.4rem;
  }
  .launch-card-grid {
    grid-template-columns: 1fr;
  }
  .funnel-steps-row {
    flex-direction: column;
    width: 100%;
  }
  .flow-step-pill, .flow-total-pill {
    width: 100%;
  }
  .flow-arrow {
    transform: rotate(90deg);
  }
}

/* Ultra Small Screens (<= 360px) */
@media (max-width: 360px) {
  .jv-brand-badge {
    display: none;
  }
  .hero-metrics-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
