/* VSL Variant B — Dark / Gold / Red (Direct Response) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@400;500;600;700;800;900&family=Dancing+Script:wght@500;600;700&display=swap');

:root {
  --bg-dark: #0a0a0a;
  --bg-card: #141414;
  --bg-elevated: #1a1a1a;
  --bg-subtle: #111111;
  --text: #f5f5f5;
  --text-secondary: #b3b3b3;
  --text-muted: #777777;
  --gold: #d4a853;
  --gold-bright: #e8c468;
  --gold-dim: #b8923e;
  --gold-glow: rgba(212, 168, 83, 0.35);
  --red: #dc2626;
  --red-bright: #ef4444;
  --red-glow: rgba(220, 38, 38, 0.3);
  --border: #2a2a2a;
  --border-gold: rgba(212, 168, 83, 0.25);
  --white: #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Dancing Script', cursive;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Header ─── */
.header {
  padding: 1rem 0;
  text-align: center;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
}

.logo-img {
  height: 50px;
  width: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

/* ─── Hero / VSL Section ─── */
.vsl-hero {
  padding: 4rem 0 3rem;
  text-align: center;
  background: radial-gradient(ellipse at top center, #1a1510 0%, var(--bg-dark) 70%);
  position: relative;
  overflow: hidden;
}

.vsl-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(212, 168, 83, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.vsl-hero .container {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.vsl-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid var(--border-gold);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.vsl-headline {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--white);
}

.vsl-headline .highlight {
  color: var(--gold);
}

.vsl-headline .highlight-red {
  color: var(--red-bright);
}

.vsl-subheadline {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-style: italic;
  font-weight: 400;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Video Player ─── */
.video-section {
  margin-bottom: 2.5rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px var(--border),
    0 0 80px rgba(212, 168, 83, 0.08);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ─── CTA Button (Red — urgency) ─── */
.vsl-cta-area {
  margin-top: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1.25rem 3.5rem;
  background: linear-gradient(135deg, var(--red) 0%, #b91c1c 100%);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow:
    0 6px 24px var(--red-glow),
    0 0 0 0 var(--red-glow);
  letter-spacing: 0.02em;
  text-decoration: none;
  animation: pulse-red 2.5s infinite;
}

@keyframes pulse-red {
  0%, 100% {
    box-shadow:
      0 4px 18px var(--red-glow),
      0 0 0 0 var(--red-glow);
  }
  50% {
    box-shadow:
      0 6px 28px rgba(220, 38, 38, 0.5),
      0 0 0 10px rgba(220, 38, 38, 0);
  }
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(220, 38, 38, 0.5);
  animation: none;
  background: linear-gradient(135deg, var(--red-bright) 0%, var(--red) 100%);
}

.cta-button:active {
  transform: translateY(-1px) scale(1);
}

.cta-subtext {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 0.375rem;
  letter-spacing: 0;
  text-transform: none;
}

.cta-note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.cta-note strong {
  color: var(--gold);
}

/* ─── Social Proof Bar ─── */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
}

.proof-text strong {
  color: var(--text);
  font-weight: 700;
}

/* ─── Discover Section ─── */
.discover {
  background: var(--bg-card);
  padding: 4.5rem 0;
  border-top: 1px solid var(--border);
}

.discover .container {
  max-width: 800px;
}

.discover-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--white);
}

.discover-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.discover-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--bg-dark);
  font-weight: 900;
  margin-top: 2px;
  box-shadow: 0 2px 10px var(--gold-glow);
}

.discover-list li strong {
  color: var(--white);
  font-weight: 700;
}

.discover-cta {
  text-align: center;
}

/* ─── Results / Testimonials ─── */
.results {
  padding: 4.5rem 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.results-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  text-align: center;
  color: var(--white);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.result-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(212, 168, 83, 0.06);
}

.result-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 14px var(--gold-glow);
  margin-bottom: 1.25rem;
}

.result-headline {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.result-quote {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.result-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
}

.results-cta {
  text-align: center;
}

/* ─── Who Is This For ─── */
.who-section {
  padding: 4.5rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.who-section .container {
  max-width: 800px;
}

.who-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--white);
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.who-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--bg-elevated);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.who-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  margin-top: 2px;
  color: var(--gold);
}

.who-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.who-text strong {
  color: var(--white);
  font-weight: 700;
}

.who-cta {
  text-align: center;
}

/* ─── Urgency Banner ─── */
.urgency-banner {
  background: linear-gradient(90deg, var(--red) 0%, #991b1b 100%);
  padding: 0.875rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}

.urgency-banner strong {
  color: var(--gold-bright);
}

/* ─── Final CTA Section ─── */
.final-cta {
  padding: 5rem 0;
  text-align: center;
  background: radial-gradient(ellipse at bottom center, #1a1510 0%, var(--bg-dark) 70%);
  position: relative;
  border-top: 1px solid var(--border);
}

.final-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(212, 168, 83, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta .container {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.final-headline {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--white);
}

.final-subtext {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.final-subtext strong {
  color: var(--gold);
}

/* ─── Footer ─── */
.footer {
  padding: 2.5rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg-subtle);
}

.disclaimer {
  font-size: 0.6875rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.7;
}

.legal {
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.legal a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.legal a:hover {
  color: var(--gold);
}

.copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .vsl-hero { padding: 3rem 0 2.5rem; }
  .vsl-headline { font-size: 1.625rem; }
  .vsl-subheadline { font-size: 1rem; margin-bottom: 2rem; }

  .cta-button {
    padding: 1.125rem 2rem;
    font-size: 1.0625rem;
  }

  .results-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 2.5rem;
  }

  .who-grid { grid-template-columns: 1fr; }
  .discover { padding: 3rem 0; }
  .results { padding: 3rem 0; }
  .who-section { padding: 3rem 0; }
  .final-cta { padding: 3.5rem 0; }
}
