/* =========================================================
   Blue Dot Property — Home (front page) scenes
   ========================================================= */

/* ===== Scene 1 — The Call ===== */
#scene-1 {
  background: var(--navy-900);
  color: var(--white);
}
/* .hero-bg background-image is set dynamically from the Customizer (see functions.php) */

/* ===== Scene 2 — The Problem ===== */
#scene-2 {
  background: var(--navy-950);
  color: var(--white);
  overflow: hidden;
}
#scene-2::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(201, 169, 97, 0.08) 0%, transparent 50%);
  z-index: 0;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .problem-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.problem-text h2 { margin-bottom: 24px; }
.problem-text h2 em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 400;
}
.problem-list {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border-left: 2px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.problem-list li::before {
  content: '✕';
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}
.problem-cta {
  margin-top: 36px;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--gold-soft);
}
.problem-cta a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.problem-cta a:hover { color: var(--gold-bright); }

/* ===== Scene 3 — Your Guide ===== */
#scene-3 {
  background: var(--cream);
  color: var(--navy-900);
}
.guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 900px) {
  .guide-grid { grid-template-columns: 1.1fr 0.9fr; gap: 80px; }
}
.guide-text h2 { color: var(--navy-900); margin-bottom: 24px; }
.guide-text h2 .accent {
  color: var(--gold);
  font-style: italic;
}
.guide-text .lede { color: var(--muted); margin-bottom: 32px; }
.signature {
  font-family: var(--serif);
  font-style: italic;
  color: var(--navy-700);
  font-size: 1.05rem;
  margin-top: 24px;
}
.signature::before {
  content: '— ';
  color: var(--gold);
}

.pillar-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pillar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid var(--line);
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
  border-color: var(--gold);
}
.pillar-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  width: 36px;
}
.pillar-body h3 {
  color: var(--navy-900);
  margin-bottom: 4px;
  font-size: 1.125rem;
}
.pillar-body p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.pillar.featured {
  background: var(--navy-900);
  border-color: var(--navy-900);
}
.pillar.featured h3 { color: var(--white); }
.pillar.featured p { color: rgba(255,255,255,0.75); }
.pillar.featured .pillar-num { color: var(--gold); }
.featured-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 169, 97, 0.15);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  font-weight: 600;
}

.guide-cta { margin-top: 40px; }

/* ===== Scene 4 — The Plan ===== */
#scene-4 {
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
}
#scene-4::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  /* background-image is set dynamically from the Customizer (see functions.php) */
}
.plan-content { max-width: 1000px; }
.plan-content h2 { margin-bottom: 20px; max-width: 640px; }
.plan-content h2 em { font-style: italic; color: var(--gold-soft); }
.plan-content .lede { max-width: 600px; margin-bottom: 48px; }
.deliverables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line-on-dark);
  border: 1px solid var(--line-on-dark);
  border-radius: 16px;
  overflow: hidden;
}
.deliverable {
  background: rgba(10, 37, 64, 0.7);
  backdrop-filter: blur(8px);
  padding: 28px 24px;
  transition: background 0.25s ease;
}
.deliverable:hover {
  background: rgba(27, 58, 107, 0.85);
}
.deliverable-icon {
  width: 36px; height: 36px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  color: var(--gold);
}
.deliverable h3 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
.deliverable p {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  line-height: 1.5;
}
.plan-cta { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 14px; }

/* ===== Scene 5 — Transformation + Proof ===== */
#scene-5 {
  background: var(--cream-warm);
  color: var(--navy-900);
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .proof-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.proof-text h2 { color: var(--navy-900); margin-bottom: 24px; }
.proof-text h2 .accent { color: var(--gold); font-style: italic; }
.proof-text .lede { color: var(--muted); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat-num .gold-mark { color: var(--gold); }
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
}

.testimonial-card {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 24px;
  font-family: var(--serif);
  font-size: 6rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}
.testimonial-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.5;
  color: var(--navy-900);
  margin-bottom: 20px;
  margin-top: 16px;
}
.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  color: var(--navy-900);
  font-size: 0.95rem;
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--muted);
}
.testimonial-stars {
  color: var(--gold);
  margin-bottom: 12px;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* ===== Scene 6 — Final Call ===== */
#scene-6 {
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
}
#scene-6::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.15) 0%, transparent 60%), radial-gradient(circle at 70% 80%, rgba(27, 58, 107, 0.6) 0%, transparent 60%);
  z-index: 0;
}
.final-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.final-content h2 { margin-bottom: 24px; }
.final-content h2 em {
  font-style: italic;
  color: var(--gold-soft);
}
.final-content .lede {
  color: rgba(255,255,255,0.78);
  margin: 0 auto 44px;
}

/* ===== Home mobile tweaks ===== */
@media (max-width: 700px) {
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 28px; padding-top: 22px; }
  .problem-list li { padding: 12px 16px; font-size: 0.9rem; }
  .deliverable { padding: 22px 20px; }
  .testimonial-card { padding: 28px 24px; }
}
@media (max-width: 380px) {
  .stat-label { font-size: 0.65rem; }
}
