/* ==========================================================================
   style.v3.css — LaunchMe Framework homepage sections (FrameworkThesis,
   FrameworkStages, SymptomsVsReality, StageDiagnostic).
   All rules are scoped under the .lf- prefix to avoid colliding with v2.
   ========================================================================== */

/* The bottom banner now lives inside the hero instead of the (removed)
   cream about-section it used to overlap, so its old negative margin
   (meant to peek up across that section boundary) needs a normal gap. */
.banner .v2-bottom-banner {
  margin-top: 40px;
  margin-bottom: 0;
}

.lf-eyebrow {
  display: inline-block;
  background: #fff8ee;
  color: #8a5200;
  border: 1px solid #f7d698;
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lf-eyebrow--dark {
  background: rgba(247, 149, 0, 0.12);
  color: #f79500;
  border-color: rgba(247, 149, 0, 0.35);
}

/* ── Thesis ────────────────────────────────────────────────────────────── */

.lf-thesis {
  background: #fbfaf8;
  padding: 70px 0 50px;
}

.lf-thesis-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.lf-thesis-headline {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 18px 0 16px;
  line-height: 1.3;
}

.lf-thesis-body {
  font-size: 1rem;
  line-height: 1.7;
  color: #5a5a6a;
  margin: 0;
}

/* ── Stages ────────────────────────────────────────────────────────────── */

.lf-stages {
  background: #fbfaf8;
  padding: 30px 0 70px;
}

.lf-stage-card {
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(20, 20, 40, 0.04);
  scroll-margin-top: 100px;
}

.lf-stage-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-bottom: 1px solid #eef0f4;
  padding-bottom: 22px;
  margin-bottom: 26px;
}

.lf-stage-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 10px 0 4px;
}

.lf-stage-subtitle {
  color: #777;
  font-size: 0.95rem;
  margin: 0;
}

.lf-dependency-pill {
  background: #f4f5f9;
  color: #4b4b5c;
  border: 1px solid #e3e5ec;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.lf-dependency-pill--dark {
  background: rgba(247, 149, 0, 0.12);
  color: #f79500;
  border-color: rgba(247, 149, 0, 0.3);
}

.lf-stage-card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.lf-stage-card-body--reverse .lf-stage-col-left { order: 2; }
.lf-stage-card-body--reverse .lf-stage-col-right { order: 1; }

.lf-stage-col-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.lf-block {
  background: #f8f9fb;
  border: 1px solid #eef0f4;
  border-radius: 12px;
  padding: 16px 18px;
}

.lf-block-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b6b7c;
  margin-bottom: 6px;
}

.lf-block p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #2b2b38;
}

.lf-block--success {
  background: #f0faf3;
  border-color: #d3efdc;
}
.lf-block--success .lf-block-label { color: #1c7a41; }

.lf-block--danger {
  background: #fdf2f2;
  border-color: #f6d5d5;
}
.lf-block--danger .lf-block-label { color: #b02a2a; }
.lf-block--danger i { color: #c53030; }

.lf-block--amber {
  background: #fff8ee;
  border-color: #f7d698;
}
.lf-block--amber .lf-block-label { color: #b9700a; }
.lf-block--amber i { color: #f79500; }

.lf-io-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fbfaf8;
  border: 1px dashed #e3e5ec;
  border-radius: 12px;
  padding: 12px 16px;
  color: #f79500;
}

.lf-io-asset {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.lf-io-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #9a9aa8;
}

.lf-io-asset span:last-child {
  font-size: 0.85rem;
  color: #2b2b38;
  font-weight: 600;
}

/* ── Right column: product surfaces ───────────────────────────────────── */

.lf-stage-col-right {
  display: flex;
  align-items: center;
}

.lf-panel-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.lf-panel {
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 16px;
  padding: 22px;
  width: 100%;
  box-shadow: 0 2px 14px rgba(20, 20, 40, 0.05);
}

.lf-panel--dark {
  background: #14142a;
  border-color: #14142a;
  color: #e8e8f0;
}

.lf-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 10px;
  flex-wrap: wrap;
}

.lf-panel-title {
  font-weight: 700;
  font-size: 0.92rem;
}

.lf-panel--dark .lf-panel-title i { color: #f79500; }

.lf-panel-title--dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.lf-panel-title--dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f79500;
  flex-shrink: 0;
}

.lf-panel-meta-label {
  font-size: 0.75rem;
  color: #8a8aa8;
}

.lf-panel-badge {
  background: rgba(247, 149, 0, 0.16);
  color: #f79500;
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.68rem;
  font-weight: 700;
}

.lf-panel-badge--light {
  background: #fff8ee;
  color: #b9700a;
}

.lf-panel-badge--scheduled {
  background: #f7b500;
  color: #1a1a2e;
}

.lf-panel-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
}

.lf-panel-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #9a9ab8;
  margin-bottom: 8px;
}

.lf-panel-quote {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #e8e8f0;
  margin: 0 0 10px;
  font-style: italic;
}

.lf-panel-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.lf-panel-tags span {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 0.68rem;
  color: #c7c7d8;
}

.lf-panel-gap-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: #c7c7d8;
  flex-wrap: wrap;
}

.lf-panel-gap-bar {
  flex: 1;
  min-width: 60px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.lf-panel-gap-bar span {
  display: block;
  height: 100%;
  background: #f79500;
  border-radius: 4px;
}

.lf-panel-gap-note {
  color: #f79500;
  font-weight: 600;
}

.lf-panel-cta {
  display: inline-flex;
  align-items: center;
  color: #f79500;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  margin-top: 4px;
}

.lf-panel-cta:hover { color: #ffaf36; }

.lf-panel-browser-bar--labeled {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4px;
  margin-bottom: 14px;
}

.lf-browser-dots {
  display: flex;
  gap: 6px;
}

.lf-browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8dae2;
}

.lf-panel-browser-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b6b8a;
}

.lf-site-preview {
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 18px;
}

.lf-site-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.lf-site-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: #1a1a2e;
}

.lf-site-badge {
  background: #e3f8ea;
  color: #1c9a52;
  border-radius: 50px;
  padding: 3px 12px;
  font-size: 0.7rem;
  font-weight: 700;
}

.lf-site-hero {
  background: #14142a;
  border-radius: 12px;
  padding: 22px 20px;
  text-align: center;
  margin-bottom: 14px;
}

.lf-site-hero h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.lf-site-hero p {
  color: #a8a8c0;
  font-size: 0.8rem;
  margin: 0 0 16px;
}

.lf-site-form {
  display: flex;
  gap: 8px;
  max-width: 320px;
  margin: 0 auto;
}

.lf-site-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.78rem;
  color: #8a8aa8;
  text-align: left;
}

.lf-site-join-btn {
  background: #f79500;
  color: #1a1a2e;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.8rem;
  font-weight: 700;
}

.lf-site-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lf-site-chips span {
  background: #f8f9fb;
  border: 1px solid #eef0f4;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.78rem;
  color: #2b2b38;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lf-site-chips i { color: #f79500; font-size: 0.72rem; }

.lf-panel-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lf-panel-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #2b2b38;
}

.lf-panel-list i { color: #f79500; }

.lf-panel-copy {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.lf-panel-subcopy {
  font-size: 0.85rem;
  color: #9a9ab8;
  margin: 0 0 16px;
  line-height: 1.5;
}

.lf-panel--dark .lf-panel-subcopy { color: #a8a8c0; }
.lf-panel:not(.lf-panel--dark) .lf-panel-subcopy { color: #777; }

.lf-panel-post {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
}

.lf-panel-post-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.lf-panel-post-label {
  display: block;
  font-size: 0.68rem;
  color: #9a9ab8;
  font-weight: 700;
  text-transform: uppercase;
}

.lf-panel-post p {
  margin: 0;
  font-size: 0.85rem;
  color: #e8e8f0;
  line-height: 1.5;
  font-style: italic;
}

.lf-panel-meta-highlight {
  color: #4ade80;
  font-weight: 700;
}

.lf-panel-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #9a9ab8;
  flex-wrap: wrap;
  gap: 6px;
}

.lf-pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.lf-pipeline-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lf-pipeline-col-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #9a9aa8;
}

.lf-pipeline-col-count {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.lf-pipeline-card {
  background: #f8f9fb;
  border: 1px solid #eef0f4;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2b2b38;
}

.lf-pipeline-card small {
  display: block;
  font-weight: 400;
  color: #9a9aa8;
  margin-top: 2px;
}

.lf-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 4px;
}

.lf-stat-tile {
  background: #f8f9fb;
  border: 1px solid #eef0f4;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lf-stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1a2e;
}

.lf-stat-label {
  font-size: 0.72rem;
  color: #9a9aa8;
  font-weight: 600;
}

.lf-stat-delta {
  font-size: 0.7rem;
  font-weight: 700;
}

.lf-stat-delta--up { color: #1c7a41; }

.lf-feedback-callout {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff8ee;
  border: 1px solid #f7d698;
  border-radius: 14px;
  padding: 16px 18px;
}

.lf-feedback-callout i {
  color: #f79500;
  font-size: 1.1rem;
  margin-top: 2px;
}

.lf-feedback-callout p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: #6b5424;
}

/* ── Symptoms vs. Reality ─────────────────────────────────────────────── */

.lf-symptoms {
  background: #fff;
  padding: 70px 0;
}

.lf-symptoms-head {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
}

.lf-symptoms-head h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 16px 0 12px;
  line-height: 1.3;
}

.lf-symptoms-head p {
  color: #6b6b6b;
  font-size: 0.95rem;
  margin: 0;
}

.lf-symptoms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lf-symptom-card {
  background: #fbfaf8;
  border: 1px solid #eef0f4;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lf-symptom-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.lf-symptom-quote {
  font-weight: 700;
  color: #1a1a2e;
  font-size: 1.02rem;
  margin: 0;
  line-height: 1.4;
}

.lf-symptom-tag {
  flex-shrink: 0;
  background: #fdf2f2;
  color: #b02a2a;
  border: 1px solid #f6d5d5;
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 0.68rem;
  font-weight: 700;
}

.lf-symptom-assumption {
  margin: 0;
  font-size: 0.85rem;
  font-style: italic;
  color: #6b6b78;
}

.lf-symptom-cause {
  background: #fdf2f2;
  border: 1px solid #f6d5d5;
  border-radius: 12px;
  padding: 12px 14px;
}

.lf-symptom-cause .lf-block-label { color: #b02a2a; }

.lf-symptom-cause p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #6b2323;
}

.lf-symptom-prescription {
  align-self: flex-start;
  color: #a85700;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.lf-symptom-prescription:hover { color: #b9700a; }

/* ── Diagnostic ────────────────────────────────────────────────────────── */

.lf-diagnostic {
  position: relative;
  background: linear-gradient(180deg, #14142a 0%, #1a1a2e 100%);
  padding: 70px 0;
  overflow: hidden;
}

.lf-diagnostic::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 70% 55% at 50% 15%, rgba(255, 255, 255, 0.06), transparent 65%),
    radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1.6px);
  background-size: 100% 100%, 22px 22px;
  background-position: 0 0, 0 0;
}

.lf-diagnostic-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.lf-diagnostic-inner h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin: 16px 0 22px;
}

.lf-diagnostic-rule {
  background: rgba(247, 149, 0, 0.08);
  border: 1px solid rgba(247, 149, 0, 0.4);
  border-radius: 12px;
  padding: 16px 20px;
  color: #f2d9b0;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 32px;
  text-align: center;
}

.lf-diagnostic-rule strong { color: #f79500; }

.lf-diagnostic-card {
  background: #1f1f3a;
  border: 1px solid #32324f;
  border-radius: 18px;
  padding: 28px;
  text-align: left;
}

.lf-diagnostic-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid #32324f;
}

.lf-diagnostic-card-head > span:first-child {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #9a9ab8;
  text-transform: uppercase;
}

.lf-diagnostic-question {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 12px;
}

.lf-diagnostic-helper {
  color: #a8a8c0;
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0 0 22px;
}

.lf-diagnostic-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.lf-diagnostic-btn {
  flex: 1;
  min-width: 160px;
  border-radius: 10px;
  padding: 13px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: none;
  box-shadow: none;
}

.lf-diagnostic-btn:focus,
.lf-diagnostic-btn:active {
  outline: none;
  box-shadow: none;
}

.lf-diagnostic-btn--yes {
  background: #f79500;
  color: #1a1a2e;
}

.lf-diagnostic-btn--yes:hover { background: #ffaf36; color: #fff; text-decoration: none; }

.lf-diagnostic-btn--no {
  background: transparent;
  color: #c7c7d8;
  border: 1px solid #32324f;
}

.lf-diagnostic-btn--no:hover { border-color: #4a4a6a; color: #fff; }

.lf-diagnostic-result-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9a9ab8;
  margin-bottom: 8px;
}

.lf-diagnostic-result-stage {
  color: #f79500;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 12px;
}

.lf-diagnostic-result-why {
  color: #c7c7d8;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 24px;
}

/* ── Responsive ────────────────────────────────────────────────────────── */

@media (max-width: 991px) {
  .lf-stage-card-body { grid-template-columns: 1fr; }
  .lf-symptoms-grid { grid-template-columns: 1fr; }
  .lf-pipeline { grid-template-columns: 1fr; }
  .lf-stat-row { grid-template-columns: 1fr; }

  /* Desktop-only reversal: on a single-column stack the core-question
     column should always lead, same as the non-reversed stages. */
  .lf-stage-card-body--reverse .lf-stage-col-left { order: 1; }
  .lf-stage-card-body--reverse .lf-stage-col-right { order: 2; }
}

@media (max-width: 575px) {
  .lf-thesis-headline { font-size: 1.5rem; }
  .lf-stage-card { padding: 22px; }
  .lf-stage-title { font-size: 1.4rem; }
  .lf-diagnostic-inner h2 { font-size: 1.5rem; }
  .lf-diagnostic-actions { flex-direction: column; }
  .lf-diagnostic-btn { min-width: 0; }
}
