/* ============================================
   Page 1 — Opt-in / Lead Capture (Dark Gold)
   ============================================ */

/* ---- Hero Section ---- */
.hero-section {
  padding: 36px 0 32px;
  text-align: center;
}

.hero-logo {
  margin: 0 auto 28px;
}

.hero-headline {
  display: flex;
  justify-content: center;
}

.hero-headline h1 {
  margin: 0;
  white-space: nowrap;
}

/* ============================================
   HEADLINE BLOCK 1
   "WHY MOST FUTURES TRADERS KEEP LOSING"
   Medium-large, cream — the hook, not the star
   ============================================ */
.hero-headline {
  font-family: var(--font-headline);
  font-size: 40px;
  font-weight: 700;
  color: var(--text-primary);
  opacity: 0.85;
  margin: 0 auto 0;
  max-width: 700px;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ============================================
   SUB-HEADLINE
   "The 5 entry mistakes causing you to..."
   Bigger, clear hierarchy — people must read this
   ============================================ */
.hero-subhead {
  font-family: var(--font-content);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  /* cream base */
  margin: 22px auto 0;
  max-width: 620px;
  line-height: 1.7;
}

/* Gold buzzwords — visually pop from cream body text */
.hero-subhead .highlight {
  color: var(--gold);
  /* #C9A84C — clearly different from cream */
  font-weight: 700;
}

/* Gold rule divider between headline and payoff line */
.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gradient-gold-h);
  border: none;
  margin: 28px auto;
  opacity: 0.8;
  border-radius: 2px;
}

/* ============================================
   PAYOFF HEADLINE
   "Top Profit Club: PAYOUTS IN LESS THAN 41 DAYS"
   Gold gradient
   ============================================ */
.hero-alt-headline {
  font-family: var(--font-headline);
  font-size: 50px;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 auto;
  max-width: 860px;
  /* Gold shimmer gradient text */
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   BODY TEXT
   Supporting line below payoff
   ============================================ */
.hero-body {
  font-family: var(--font-content);
  font-size: 17px;
  font-weight: 400;
  color: var(--text-primary);
  margin: 20px auto 0;
  max-width: 480px;
  line-height: 1.7;
  opacity: 0.65;
  /* intentionally softer — supporting role */
}

/* ============================================
   FORM AREA
   ============================================ */

/* "You will be sent access via text/email" */
.hero-disclaimer {
  display: none;
}

/* Label above form box — cream, readable, clean caps */
.hero-cta-heading {
  font-family: var(--font-content);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-gold);
  position: static;
  z-index: auto;
}

/* Sub-text below form */
.hero-form-description {
  font-family: var(--font-content);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin: 44px auto 0;
  max-width: 460px;
  line-height: 1.6;
}

.hero-form-description strong {
  color: var(--gold);
  font-weight: 600;
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */
.proof-section {
  padding: 48px 0 24px;
}

.proof-heading {
  font-family: var(--font-headline);
  font-size: 52px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
  line-height: 1.0;
  text-transform: uppercase;
}

.proof-heading strong {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proof-subhead {
  font-family: var(--font-content);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-primary);
  opacity: 0.7;
  margin: 0 0 28px;
  line-height: 1.5;
}

.proof-subtext {
  font-family: var(--font-content);
  font-size: 12px;
  color: var(--text-muted);
  margin: 16px 0 0;
  line-height: 1.6;
}

/* ============================================
   MASONRY GRID — JS-powered, no gaps
   ============================================ */
.proof-grid {
  position: relative;
  /* JS sets height on this */
  width: 100%;
}

/* Each image is absolute-positioned by JS */
.proof-grid img {
  position: absolute;
  width: calc(33.333% - 7px);
  /* 3 cols, 10px gap */
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.proof-grid img:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.25);
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.footer-section {
  padding: 40px 0 48px;
}

.footer-cta {
  margin-top: 0;
}

/* ============================================
   PROOF STATS & CARDS
   ============================================ */

.proof-header {
  text-align: center;
  margin-bottom: 32px;
}

.proof-header-title {
  font-family: var(--font-content);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.proof-header h2 {
  font-family: var(--font-headline);
  font-size: 42px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.proof-header h2 strong {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.proof-header p {
  font-family: var(--font-content);
  font-size: 15px;
  color: var(--text-muted);
}

.proof-header p strong {
  color: var(--gold);
  font-weight: inherit;
}

/* Stats Row */
.proof-stats-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}

.proof-stat-box {
  background: transparent;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  flex: 1;
  max-width: 200px;
}

.proof-stat-value {
  font-family: var(--font-content);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.proof-stat-label {
  font-family: var(--font-content);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Cards Grid */
.proof-cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.proof-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.proof-card-half { grid-column: span 3; }
.proof-card-third { grid-column: span 2; }
.proof-card-full { grid-column: span 6; }

.proof-card-label {
  font-family: var(--font-content);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.proof-card-value {
  font-family: var(--font-content);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.proof-card-subtext {
  font-family: var(--font-content);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 16px;
}

.proof-card-subtext-muted {
  font-family: var(--font-content);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

.proof-card-date {
  font-family: var(--font-content);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 16px;
}

.proof-card-bar {
  margin-top: auto;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  background: rgba(201, 168, 76, 0.05);
  padding: 4px 12px;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.proof-card-bar span {
  font-family: var(--font-content);
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

/* Review Cards */
.proof-review-title {
  font-family: var(--font-content);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.proof-review-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 12px;
}

.proof-review-text {
  font-family: var(--font-content);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-primary);
  opacity: 0.9;
}

.proof-review-text strong {
  color: var(--gold);
  font-weight: 700;
}

/* Green variations for the LUCID TRADING card */
.proof-card-green {
  border-color: rgba(46, 204, 113, 0.3);
}

.proof-card-green .proof-card-label {
  color: #2ecc71;
  background: rgba(46, 204, 113, 0.1);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 16px;
  text-align: center;
  align-self: center;
}

.proof-card-green .proof-card-value {
  color: var(--text-white);
  text-align: center;
}

.proof-card-green .proof-card-subtext {
  color: #2ecc71;
  text-align: center;
  font-size: 12px;
}

.proof-card-green .proof-card-date {
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
}

.proof-card-green .proof-quote {
  text-align: center;
  font-style: italic;
  font-size: 13px;
  color: var(--text-primary);
  margin-top: 16px;
}

/* Footer Link below grid */
.proof-footer-link {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 32px;
}

.proof-footer-link .link-main {
  font-family: var(--font-content);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
  display: block;
}

.proof-footer-link .link-sub {
  font-family: var(--font-content);
  font-size: 13px;
  color: var(--text-muted);
  display: block;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hero-headline {
    font-size: 26px;
  }

  .hero-alt-headline {
    font-size: 52px;
  }

  .hero-subhead {
    font-size: 18px;
  }

  .proof-heading {
    font-size: 38px;
  }

  .proof-stats-row {
    flex-wrap: wrap;
  }

  .proof-stat-box {
    min-width: calc(50% - 8px);
  }

  /* 2-col masonry on tablet */
  .proof-grid img {
    width: calc(50% - 5px);
  }

  .proof-card-half { grid-column: span 3; }
  .proof-card-third { grid-column: span 3; } /* Break to 2 per row */
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 26px;
  }

  .hero-alt-headline {
    font-size: 38px;
  }

  .hero-subhead {
    font-size: 16px;
  }

  .hero-body {
    font-size: 15px;
  }

  .hero-disclaimer {
    display: none;
  }

  .hero-cta-heading {
    font-size: 11px;
    margin: 0 0 16px;
  }

  .hero-form-description {
    font-size: 11px;
    margin: 38px auto 0;
  }

  .proof-heading {
    font-size: 30px;
  }

  .proof-subhead {
    font-size: 14px;
  }

  .proof-stats-row {
    flex-direction: column;
    gap: 12px;
  }

  .proof-stat-box {
    width: 100%;
    max-width: none;
  }

  .proof-cards-grid {
    grid-template-columns: 1fr;
  }

  .proof-card-half, 
  .proof-card-third, 
  .proof-card-full {
    grid-column: 1 / -1;
  }

  /* 1-col masonry on mobile */
  .proof-grid img {
    width: 100%;
  }
}