/* style.css - Premium Landing Page Stylesheet */

/* Import Google Fonts for modern typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@700;800;900&display=swap');

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

:root {
  --bg-primary: #0b0f19;
  --bg-secondary: #111827;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --color-primary: #f0a500; /* Amber/Yellow */
  --color-accent: #e8500a;  /* Red-Orange */
  --color-text-main: #ffffff;
  --color-text-muted: #ccd8e8;
  --color-text-subtle: #a0b4cc;
  --color-text-dark: #607080;
  --border-color: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(240, 165, 0, 0.25);
  --transition-speed: 0.3s;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #1e293b 0%, #0b0f19 70%);
  font-family: 'Inter', sans-serif;
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  padding: 0;
}

/* Base Wrapper */
.page-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.section-container {
  max-width: 900px;
  width: 100%;
  padding: 48px 24px;
}

/* ==========================================
   HERO / EMAIL CAPTURE FOLD
   ========================================== */
.hero-fold {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  border-bottom: 1px solid var(--border-color);
}

.book-wrap {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.book-wrap img {
  width: 320px;
  max-width: 100%;
  border-radius: 8px;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.6));
  transition: transform 0.5s ease;
}

.book-wrap img:hover {
  transform: translateY(-8px) rotate(1deg);
}

.content {
  flex: 1;
  max-width: 440px;
}

.badge {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(232, 80, 10, 0.3);
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

h1 span {
  color: var(--color-primary);
  text-shadow: 0 0 15px var(--border-glow);
}

.subtitle {
  font-size: 1rem;
  color: var(--color-text-subtle);
  line-height: 1.65;
  margin-bottom: 24px;
}

.bullets {
  list-style: none;
  margin-bottom: 28px;
}

.bullets li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.bullets li::before {
  content: "✓";
  color: var(--color-primary);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 1px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  font-size: 0.97rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  outline: none;
  font-family: inherit;
  transition: border-color var(--transition-speed), background var(--transition-speed), box-shadow var(--transition-speed);
}

input[type="email"]::placeholder {
  color: #64748b;
}

input[type="email"]:focus {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 10px rgba(240, 165, 0, 0.2);
}

.btn-email-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 15px rgba(232, 80, 10, 0.3);
}

.btn-email-submit:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.btn-email-submit:active {
  transform: translateY(1px);
}

.privacy {
  font-size: 0.78rem;
  color: var(--color-text-dark);
  text-align: center;
  margin-top: 4px;
}

/* ==========================================
   VSL SECTION / BELOW THE FOLD
   ========================================== */
.vsl-fold {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 60px;
}

.vsl-headline-block {
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
}

.vsl-pretitle {
  color: var(--color-accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
  text-shadow: 0 0 10px rgba(232, 80, 10, 0.2);
}

.vsl-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 16px;
}

.vsl-title span {
  color: var(--color-primary);
}

.vsl-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  font-weight: 500;
  line-height: 1.6;
}

/* Premium Video Player Container */
.video-container {
  width: 100%;
  max-width: 380px; /* Constrained width for portrait vertical video */
  aspect-ratio: 0.8; /* Matches aspect ratio of Wistia player */
  background: #000;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(240, 165, 0, 0.05);
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  transition: transform var(--transition-speed), border-color var(--transition-speed);
}

.video-container:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 165, 0, 0.3);
}

wistia-player {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Custom CSS "NEXT STEP" Button */
.btn-next-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 18px 48px;
  background: linear-gradient(180deg, #ffe033 0%, #ff9800 50%, #e65100 100%);
  border: 3px solid #d50000; /* bright red border */
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5), -1px -1px 0px rgba(0, 0, 0, 0.5), 1px -1px 0px rgba(0, 0, 0, 0.5), -1px 1px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(230, 81, 0, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  text-decoration: none;
  width: 100%;
  max-width: 440px;
  margin: 32px auto;
  text-align: center;
}

.btn-next-step:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(230, 81, 0, 0.6), inset 0 2px 4px rgba(255, 255, 255, 0.7);
  filter: brightness(1.06);
}

.btn-next-step:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: 0 5px 15px rgba(230, 81, 0, 0.4);
}

/* Custom pointer clicking the button (matches attached image) */
.btn-next-step::after {
  content: '';
  position: absolute;
  right: 15%;
  bottom: -15px;
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><path d='M8 2l18 11.25-8.25 2.25 6 9.75-3.75 2.25-6-9.75-6 6.75z' fill='black' stroke='white' stroke-width='2' stroke-linejoin='round'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  animation: pointer-click 1.5s infinite alternate ease-in-out;
}

@keyframes pointer-click {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-4px, -4px) scale(0.95); }
}

/* VSL Body Content styling */
.vsl-body-content {
  max-width: 680px;
  width: 100%;
  margin-top: 24px;
}

.vsl-body-lead {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.vsl-body-text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Mistake Cards Layout */
.mistakes-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.05em;
}

.mistakes-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.mistake-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 18px 24px;
  border-radius: 8px;
  transition: background var(--transition-speed), border-color var(--transition-speed), transform var(--transition-speed);
}

.mistake-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(232, 80, 10, 0.3);
  transform: translateX(4px);
}

.mistake-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-accent);
  width: 48px;
  height: 48px;
  background: rgba(232, 80, 10, 0.1);
  border: 1px solid rgba(232, 80, 10, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(232, 80, 10, 0.1);
}

.mistake-content {
  flex: 1;
}

.mistake-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

/* Summary Box before second CTA */
.vsl-summary-box {
  background: rgba(240, 165, 0, 0.02);
  border-left: 4px solid var(--color-primary);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 32px 0;
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.vsl-summary-box strong {
  color: #fff;
}

/* P.S. Section Container */
.ps-section {
  max-width: 680px;
  width: 100%;
  background: rgba(232, 80, 10, 0.03);
  border: 1px dashed rgba(232, 80, 10, 0.4);
  border-radius: 8px;
  padding: 28px;
  margin-top: 40px;
  box-shadow: inset 0 0 20px rgba(232, 80, 10, 0.02);
}

.ps-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ps-text {
  font-size: 0.95rem;
  color: var(--color-text-subtle);
  line-height: 1.6;
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */
@media (max-width: 768px) {
  .hero-fold {
    flex-direction: column;
    gap: 36px;
    text-align: center;
    padding-bottom: 36px;
  }
  
  .content {
    max-width: 100%;
  }

  .bullets li {
    justify-content: center;
    text-align: left;
  }

  .book-wrap img {
    width: 240px;
  }

  h1 {
    font-size: 1.8rem;
  }

  .vsl-title {
    font-size: 1.7rem;
  }
  
  .vsl-subtitle {
    font-size: 1rem;
  }

  .btn-next-step {
    font-size: 1.3rem;
    padding: 14px 28px;
  }
  
  .btn-next-step::after {
    right: 8%;
    width: 24px;
    height: 24px;
  }

  .mistake-card {
    padding: 14px 18px;
    gap: 14px;
  }
  
  .mistake-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .mistake-name {
    font-size: 0.95rem;
  }
}
