/* free.css — VidPrompt /free landing page */

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

:root {
  --bg:       #08080f;
  --card:     #13131f;
  --alt:      #0b0b18;
  --gold:     #c49a10;
  --gold-hi:  #f5d84a;
  --text:     #d8d8e2;
  --muted:    #8a8a9c;
  --success:  #4ade80;
  --red:      #ef4444;
  --serif:    'Playfair Display', Georgia, serif;
  --sans:     'DM Sans', sans-serif;
  --radius:   6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0b0b18; }
::-webkit-scrollbar-thumb { background: #3a3820; border-radius: 3px; }

/* ── UTILS ── */
.centered { text-align: center; }
.hidden { display: none !important; }

/* ── NAV ── */
.free-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 15, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(196, 154, 16, 0.1);
}

.free-nav .logo { width: 140px; height: auto; display: block; }

/* ── EYEBROW ── */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

/* ── GOLD DIVIDER ── */
.divider {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-align: center;
  margin: 28px 0;
  user-select: none;
}

/* ── SECTION INNER ── */
.section-inner {
  max-width: 720px;
  margin: 0 auto;
}

/* ── SECTION HEADLINE ── */
.section-headline {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
}

/* ── HERO ── */
.hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px 40px;
  text-align: center;
}

.hero-headline {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 0;
}

/* ── HERO DOWNLOAD BUTTON (Change 2) ── */
.hero-download-wrap {
  margin: 40px auto 0;
  text-align: center;
}

.hero-download-btn {
  display: inline-block;
  background: var(--gold);
  color: #0c0c14;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}

.hero-download-btn:hover {
  background: var(--gold-hi);
  box-shadow: 0 0 24px rgba(245, 216, 74, 0.35);
}

.form-microcopy {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
}

/* ── SECTION DIVIDERS — thin gold line between every section ── */
.trust-strip,
.bridge-section,
.why-section,
.hooks-section,
.preview-section,
.cta-section,
.faq-section,
.final-cta-section,
.free-footer {
  border-top: 1px solid rgba(255, 245, 210, 0.35);
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: #15151f;
  text-align: center;
  padding: 40px 24px;
  font-size: 16px;
  color: var(--muted);
}

/* ── BRIDGE SECTION ── */
.bridge-section {
  padding: 80px 24px;
  background: #08080f;
}

.bridge-sub {
  font-size: 19px;
  font-style: italic;
  color: var(--gold);
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.bridge-body {
  font-size: 17px;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Change 3 — emphasized phrase inside bridge body */
.bridge-emphasis {
  font-size: 22px;
  color: var(--gold-hi);
  font-style: italic;
  font-weight: 600;
}

/* ── WHY SECTION ── */
.why-section {
  padding: 80px 24px;
  background: #15151f;
  border-bottom: 1px solid rgba(255, 245, 210, 0.35);
}

.why-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* ── WHY SECTION (Change 5: #13131f bg + gold border frame) ── */
/* background already set above; keeping border-top from section dividers, border-bottom explicit */

/* ── WHY CARDS — image overlay layout ── */
.why-card { position: relative; overflow: hidden; border-radius: 12px; min-height: 320px; border: 1px solid rgba(196, 154, 16, 0.3); }
.why-card-bg { position: absolute; inset: 0; z-index: 1; }
.why-card-img-el { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-card-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to bottom, rgba(8,8,15,0.1) 0%, rgba(8,8,15,0.4) 50%, rgba(8,8,15,0.92) 100%); }
.why-card-content { position: relative; z-index: 3; padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; min-height: 320px; }
.card-num { color: #c49a10; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.1em; }
.card-title { color: #f5d84a; font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; margin: 8px 0; text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
.card-body { color: #d8d8e2; font-family: 'DM Sans', sans-serif; font-size: 15px; line-height: 1.6; text-shadow: 0 1px 4px rgba(0,0,0,0.6); margin: 0; }

/* ── HOOKS SECTION ── */
.hooks-section {
  padding: 80px 24px;
  background: #08080f;
}

.hooks-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.hooks-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hooks-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: left;
  border-top: 1px solid rgba(196, 154, 16, 0.12);
  margin-bottom: 48px;
}

.hooks-grid li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 14px 12px;
  border-bottom: 1px solid rgba(196, 154, 16, 0.08);
  border-right: 1px solid rgba(196, 154, 16, 0.08);
}

.hooks-grid li:nth-child(3n) { border-right: none; }

.hook-num {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  min-width: 22px;
}

.hook-title {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.hooks-cta {
  margin-top: 0;
}

/* ── PREVIEW SECTION ── */
.preview-section {
  padding: 80px 24px;
  background: #15151f;
}

.preview-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.preview-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 40px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.preview-card {
  background: var(--card);
  border: 1px solid rgba(196, 154, 16, 0.35);
  border-radius: 8px;
  padding: 24px;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}

.preview-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(196, 154, 16, 0.12);
}

.preview-tag {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.preview-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-hi);
  margin-bottom: 10px;
}

.preview-body {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

.preview-link-wrap { text-align: center; }

.preview-link {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.preview-link:hover {
  color: var(--gold-hi);
  border-bottom-color: var(--gold-hi);
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 100px 24px;
  background: #08080f;
}

.cta-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--card);
  border: 1.5px solid var(--gold);
  border-radius: 12px;
  padding: 50px 48px;
  text-align: center;
}

.price-display {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 700;
  color: var(--gold-hi);
  margin: 30px 0;
  line-height: 1;
}

.cta-headline {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 28px;
}

.cta-bullets {
  list-style: none;
  max-width: 460px;
  margin: 0 auto 36px;
  text-align: left;
}

.cta-bullets li {
  font-size: 16px;
  color: var(--text);
  padding: 8px 0 8px 28px;
  position: relative;
  line-height: 1.5;
}

.cta-bullets li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
  top: 10px;
}

.btn-upsell {
  display: inline-block;
  background: var(--gold);
  color: #0c0c14;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}

.btn-upsell:hover {
  background: var(--gold-hi);
  box-shadow: 0 0 24px rgba(245, 216, 74, 0.35);
}

.btn-upsell--large {
  font-size: 19px;
  padding: 20px 40px;
}

.cta-microcopy {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
  text-align: center;
}

/* ── FAQ ── */
.faq-section {
  padding: 80px 24px;
  background: #15151f;
}

.faq-list {
  max-width: 640px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 245, 210, 0.35);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 245, 210, 0.35);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--gold);
  text-align: left;
  padding: 20px 36px 20px 0;
  position: relative;
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--gold-hi); }

.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.25s;
}

.faq-q[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-a.open {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-a p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
}

/* ── FINAL CTA ── */
.final-cta-section {
  padding: 80px 24px;
  background: #08080f;
  text-align: center;
}

.final-cta-section .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* ── FOOTER ── */
.free-footer {
  text-align: center;
  padding: 48px 24px;
  background: #15151f;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
  border-top: 1px solid rgba(255, 245, 210, 0.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .why-cards {
    grid-template-columns: 1fr;
  }

  .why-card { min-height: 280px; }

  .hooks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hooks-grid li:nth-child(3n) { border-right: 1px solid rgba(196, 154, 16, 0.08); }
  .hooks-grid li:nth-child(2n) { border-right: none; }
}

@media (max-width: 600px) {
  .free-nav { padding: 14px 20px; }
  .free-nav .logo { width: 110px; }

  .hero { padding: 60px 20px 24px; }
  .hero-headline { font-size: 36px; }
  .hero-sub { font-size: 16px; }

  .section-headline { font-size: 28px; }

  .bridge-section { padding: 50px 20px; }
  .bridge-sub { font-size: 17px; }

  .why-section { padding: 50px 20px; }

  .hooks-section { padding: 50px 20px; }

  .preview-section { padding: 50px 20px; }
  .preview-grid { grid-template-columns: 1fr; }

  .cta-section { padding: 60px 20px; }
  .cta-card { padding: 30px 24px; }
  .cta-headline { font-size: 24px; }
  .price-display { font-size: 52px; }
  .btn-upsell--large { font-size: 17px; padding: 18px 28px; }

  .faq-section { padding: 50px 20px; }

  .final-cta-section { padding: 50px 20px; }
}

@media (max-width: 480px) {
  .form-row { flex-direction: column; }
  .form-row button { width: 100%; padding: 14px; }

  .hooks-grid {
    grid-template-columns: 1fr;
  }

  .hooks-grid li:nth-child(2n) { border-right: none; }
  .hooks-grid li { border-right: none; }
}
