/* =============================================
   TRF – The Retention Formula
   Color Palette:
   - Background: #0d0d0d (near black)
   - Surface:    #161616 / #1e1e1e
   - Gold:       #c9a84c (primary CTA)
   - Gold Light: #e8c96a
   - Text:       #f0f0f0
   - Muted:      #888
   ============================================= */

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

:root {
  --gold:       #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark:  #a8862f;
  --bg:         #13110e;
  --surface:    #1d1a14;
  --surface-2:  #252118;
  --border:     #35301f;
  --text:       #f2ede4;
  --text-muted: #9a9080;
  --red:        #e05252;
  --font-body:  'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --radius:     10px;
  --max-w:      1100px;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- UTILITIES ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.gold { color: var(--gold); }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: var(--radius);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  letter-spacing: 0.3px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0d0d0d;
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.35);
}

.btn-sm  { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg  { padding: 18px 40px; font-size: 1.125rem; }
.btn-full { width: 100%; text-align: center; padding: 16px; font-size: 1.05rem; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: var(--text);
}

/* =============================================
   SCRIPTURE SECTION
   ============================================= */
.scripture-section {
  padding: 64px 0;
  background: linear-gradient(135deg, #1a1508 0%, #0f0d08 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.scripture-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.scripture-cross {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.8;
}

.scripture-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: #e0d8c8;
  line-height: 1.75;
  margin-bottom: 16px;
}

.scripture-ref {
  font-size: 0.9rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Section CTA wrapper */
.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  height: 56px;
  width: auto;
  display: block;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  padding: 60px 0 72px;
  background: radial-gradient(ellipse at top center, #2a1f08 0%, #1a1410 40%, var(--bg) 70%);
  border-bottom: 1px solid var(--border);
}

.hero-top {
  text-align: center;
  margin-bottom: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 40px;
  align-items: start;
}

.hero-split-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-split-right .form-card {
  position: sticky;
  top: 80px;
}

/* Overcome banner */
.overcome-banner {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  max-width: 820px;
  margin: 0 auto 24px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #ccc;
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* VIDEO */
.video-wrapper {
  width: 100%;
  margin: 0 0 24px;
}

.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
  border: 2px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.video-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
}

.play-btn {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #0d0d0d;
  padding-left: 5px;
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.3);
  transition: transform 0.2s;
}

.video-placeholder:hover .play-btn { transform: scale(1.08); }
.video-inner p { font-size: 0.9rem; }

/* COUNTDOWN */
.countdown-wrapper {
  text-align: center;
}

.countdown-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
  min-width: 72px;
}

.countdown-block span {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-block small {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

.countdown-sep {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.session-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.session-note strong { color: var(--text); }

/* =============================================
   PAIN SECTION
   ============================================= */
.pain-section {
  padding: 80px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.pain-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.2s;
}

.pain-card:hover { border-color: rgba(201, 168, 76, 0.3); }

.pain-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-card p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.55;
}

.pain-closer {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

/* =============================================
   REGISTER SECTION
   ============================================= */
.register-section {
  padding: 80px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.register-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.register-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.register-left > p {
  color: #aaa;
  margin-bottom: 28px;
  font-size: 1rem;
}

.register-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.register-bullets li {
  font-size: 0.95rem;
  color: #ccc;
  padding-left: 4px;
}

.session-times {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.session-times strong { color: var(--gold); }
.session-times span { color: #ccc; }

/* FORM CARD */
.form-card {
  background: #1a1a1a;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 8px 48px rgba(201, 168, 76, 0.12), 0 0 0 1px rgba(201, 168, 76, 0.1);
}

.form-headline {
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 28px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.97rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus { border-color: var(--gold); }
.form-group input::placeholder { color: #555; }

.form-group input.error { border-color: var(--red); }

.field-error {
  font-size: 0.78rem;
  color: var(--red);
  min-height: 14px;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.77rem;
  color: var(--text-muted);
  margin-top: 14px;
}

/* Form success */
.form-success {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #0d0d0d;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--gold);
}

.form-success p { color: #aaa; font-size: 0.95rem; }

/* =============================================
   WHAT YOU'LL LEARN
   ============================================= */
.learn-section {
  padding: 80px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.learn-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.learn-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
}

.learn-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.2);
  font-family: var(--font-display);
  margin-bottom: 12px;
  line-height: 1;
}

.learn-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.learn-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   SPEAKER
   ============================================= */
.speaker-section {
  padding: 80px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.speaker-wrap {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: center;
}

.speaker-img-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--surface-2);
  border: 2px dashed var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* When you have the real photo: */
.speaker-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.speaker-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.speaker-bio h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.speaker-bio p {
  color: #aaa;
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.instagram-link {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.instagram-link:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
  padding: 80px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s;
}

.testimonial-card:hover { border-color: rgba(201, 168, 76, 0.3); }

/* Testimonial image cards */
.testimonial-img-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, border-color 0.2s;
}

.testimonial-img-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.4);
}

.testimonial-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.testimonial-text {
  font-size: 0.93rem;
  color: #ccc;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #0d0d0d;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta-section {
  padding: 100px 0;
  text-align: center;
  background: radial-gradient(ellipse at center, #1a1308 0%, var(--bg) 70%);
  border-bottom: 1px solid var(--border);
}

.final-cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.25;
}

.final-cta-section p {
  color: #aaa;
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.cta-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0 !important;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  padding: 32px 0;
  background: #080808;
  text-align: center;
}

.site-footer p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}

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

/* =============================================
   MULTI-STEP FORM
   ============================================= */
.ms-header {
  margin-bottom: 24px;
}

.ms-progress-track {
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 10px;
}

.ms-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 100px;
  width: 33%;
  transition: width 0.4s ease;
}

.ms-step-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: right;
}

.ms-step {
  display: none;
}

.ms-step.active {
  display: block;
  animation: ms-slide-in 0.3s ease both;
}

@keyframes ms-slide-in {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.ms-question {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.4;
}

.ms-choices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.ms-choice {
  background: #252525;
  border: 1.5px solid #3a3a3a;
  border-radius: 10px;
  padding: 16px 20px;
  color: #f0f0f0;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.15s, box-shadow 0.15s;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.ms-choice::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #3a3a3a;
  flex-shrink: 0;
  transition: border-color 0.15s, background 0.15s;
}

.ms-choice:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  transform: translateX(5px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.15);
}

.ms-choice:hover::before {
  border-color: var(--gold);
}

.ms-choice.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.15);
  color: #fff;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.2);
}

.ms-choice.selected::before {
  background: var(--gold);
  border-color: var(--gold);
}

.ms-back {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  cursor: pointer;
  padding: 10px 0 0;
  display: inline-block;
  transition: color 0.2s;
  font-family: var(--font-body);
}

.ms-back:hover { color: var(--text); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-split-right .form-card {
    position: static;
  }

  .register-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .speaker-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .speaker-img-placeholder {
    max-width: 260px;
    margin: 0 auto;
  }

  .countdown-block {
    min-width: 60px;
    padding: 10px 14px;
  }

  .countdown-block span { font-size: 1.5rem; }

  .header-cta { display: none; }

  .form-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 0 48px; }
  .pain-section,
  .register-section,
  .learn-section,
  .speaker-section,
  .testimonials-section { padding: 60px 0; }
  .final-cta-section { padding: 72px 0; }
}
