/* ═══════════════════════════════════════════════════════════
   CONVERSION SECTIONS (proposed) — layered on top of style.css
   Scarcity badge · card stats · how-it-works · proof · system shots · FAQ
   ═══════════════════════════════════════════════════════════ */

/* ── #6 Scarcity badge ── */
.scarcity-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  color: var(--accent-bright);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.scarcity-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 10px var(--accent-bright);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ── #4 Outcome stat line on built-for-you cards ── */
.builtfor-stat {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--white-10);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-bright);
}
.builtfor-stat .placeholder { color: var(--white-50); font-weight: 600; font-style: italic; }

/* ── #3 How it works ── */
.howitworks { background: linear-gradient(180deg, transparent, var(--bg-soft) 50%, transparent); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: var(--s-5);
}
.step-card {
  padding: 32px 28px;
  background: var(--white-03);
  border: 1px solid var(--white-12);
  border-radius: var(--radius);
  position: relative;
}
.step-num {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 18px;
  font-family: 'Fraunces', serif;
  font-variant-numeric: lining-nums;
}
.step-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 15px; line-height: 1.55; color: var(--white-70); }

/* ── #1 Proof / case study ── */
.proof-card {
  padding: 48px;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.proof-quote { font-size: 24px; line-height: 1.45; font-weight: 500; font-family: 'Fraunces', serif; }
.proof-quote .placeholder,
.proof-attr .placeholder,
.proof-result .placeholder { color: var(--white-50); font-style: italic; }
.proof-attr { margin-top: 20px; font-size: 15px; color: var(--white-70); }
.proof-attr strong { color: var(--white); font-weight: 700; }
.proof-result {
  padding: 28px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  text-align: center;
}
.proof-result .num { font-size: 40px; font-weight: 800; color: var(--accent-bright); line-height: 1; }
.proof-result .lbl { font-size: 14px; color: var(--white-70); margin-top: 10px; }

/* ── #2 Show the systems (screenshot gallery) ── */
.shots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: var(--s-5);
}
.shot {
  border: 1px solid var(--white-12);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}
.shot-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: var(--white-06);
  border-bottom: 1px solid var(--white-10);
}
.shot-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--white-20); display: inline-block; }
.shot-frame {
  aspect-ratio: 16 / 10;
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(45deg, var(--white-03) 0 12px, transparent 12px 24px);
  color: var(--white-50);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 20px;
}
.shot-frame img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; transition: transform 0.25s ease; }
.shot:hover .shot-frame img { transform: scale(1.03); }

/* ── Lightbox (click a screenshot to magnify) ── */
.lightbox {
  position: fixed; inset: 0; z-index: 100000;
  display: none; align-items: center; justify-content: center;
  padding: 4vh 4vw;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  cursor: zoom-out;
}
.lightbox.open { display: flex; animation: lbfade 0.18s ease; }
@keyframes lbfade { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-width: 100%; max-height: 92vh;
  border-radius: 12px;
  border: 1px solid var(--white-12);
  box-shadow: 0 30px 90px rgba(0,0,0,0.7);
}
.lightbox-close {
  position: fixed; top: 20px; right: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--white-10); color: #fff;
  font-size: 26px; line-height: 1; cursor: pointer;
  border: 1px solid var(--white-20);
}
.lightbox-close:hover { background: var(--accent); border-color: var(--accent); }
.shot-cap { padding: 16px 18px; font-size: 14px; color: var(--white-70); line-height: 1.5; }
.shot-cap strong { color: var(--white); display: block; margin-bottom: 4px; font-size: 15px; }

/* ── Connected system stack (the chain) ── */
.system-stack { max-width: 760px; margin: var(--s-5) auto 0; position: relative; }
.stack-layer { position: relative; padding: 0 0 30px 70px; }
.stack-layer:last-of-type { padding-bottom: 0; }
.stack-layer::before {
  content: ''; position: absolute; left: 23px; top: 8px; bottom: -8px;
  width: 2px; background: linear-gradient(var(--accent), var(--white-12));
}
.stack-layer:last-of-type::before { display: none; }
.stack-num {
  position: absolute; left: 0; top: 0;
  width: 48px; height: 48px; border-radius: 13px;
  background: var(--accent-soft); border: 1px solid var(--accent);
  color: var(--accent-bright); font-weight: 800; font-size: 20px; line-height: 1;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-variant-numeric: lining-nums tabular-nums;
  display: flex; align-items: center; justify-content: center;
}
.stack-layer h3 { font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 7px; }
.stack-layer p { font-size: 15.5px; line-height: 1.55; color: var(--white-70); }
.stack-result {
  max-width: 760px; margin: 28px auto 0;
  padding: 26px 30px 26px 70px; position: relative;
  background: var(--accent-soft); border: 1px solid var(--accent);
  border-radius: var(--radius);
}
.stack-result .stack-num { background: var(--accent); color: #fff; border-color: var(--accent); }
.stack-result h3 { font-size: 18px; color: var(--white); margin-bottom: 6px; }
.stack-result p { font-size: 16px; line-height: 1.5; color: var(--white-90); }

/* ── Hyperstacking example (the cross-dashboard "aha") ── */
.hs-example {
  max-width: 760px; margin: var(--s-5) auto 0;
  padding: 30px 32px;
  border: 1px solid var(--white-12); border-radius: var(--radius-lg);
  background: var(--bg-card);
}
.hs-example-label { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); font-weight: 800; margin-bottom: 20px; }
.hs-line { display: flex; gap: 12px; align-items: flex-start; font-size: 17px; line-height: 1.5; margin-bottom: 14px; }
.hs-q { color: var(--white-90); }
.hs-a { color: var(--white); }
.hs-tag { flex-shrink: 0; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; padding: 5px 10px; border-radius: 7px; background: var(--white-10); color: var(--white-70); margin-top: 3px; white-space: nowrap; }
.hs-tag--a { background: var(--accent-soft); color: var(--accent-bright); border: 1px solid var(--accent); }
.hs-why { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--white-10); font-size: 15px; line-height: 1.6; color: var(--white-70); }
.hs-why strong { color: var(--white); }

/* ── "Hyperstack" word shine (blue / purple / silver) ── */
.hs-shine {
  background: linear-gradient(110deg, #4d90ff 0%, #8a6bff 30%, #c2cef5 50%, #8a6bff 70%, #4d90ff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-weight: 700;
}
.hs-shine--shimmer {
  background-size: 200% auto;
  animation: hsShine 7s linear infinite;
}
@keyframes hsShine { to { background-position: 200% center; } }
@media (prefers-reduced-motion: reduce) { .hs-shine--shimmer { animation: none; } }

/* ── Hyperstack anatomy diagram (4 layers + multiple connected) ── */
.anatomy { max-width: 680px; margin: var(--s-5) auto 0; }
.anatomy-cap { text-align: center; font-size: 12px; text-transform: uppercase; letter-spacing: 2.5px; color: var(--white-50); font-weight: 800; margin-bottom: 16px; }
.hstack { display: flex; flex-direction: column; gap: 7px; }
.hslab { padding: 16px 22px; border-radius: 12px; border: 1px solid var(--accent); display: flex; flex-direction: column; gap: 3px; }
.hslab-name { font-weight: 800; font-size: 16px; color: var(--white); }
.hslab-desc { font-size: 13.5px; color: var(--white-70); line-height: 1.4; }
.hslab-4 { background: rgba(232,97,93,0.24); }
.hslab-3 { background: rgba(232,97,93,0.17); }
.hslab-2 { background: rgba(232,97,93,0.11); }
.hslab-1 { background: rgba(232,97,93,0.06); }
.anatomy-note { text-align: center; font-size: 15px; color: var(--white-70); margin: 20px auto 0; max-width: 600px; line-height: 1.55; }
.anatomy-note strong { color: var(--white); }
.multistack { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: var(--s-5); }
.mini { flex: 1 1 0; max-width: 170px; }
.mini-label { text-align: center; font-size: 13px; font-weight: 700; color: var(--accent-bright); margin-bottom: 10px; }
.mini-stack { display: flex; flex-direction: column; gap: 4px; }
.mini-seg { height: 20px; border-radius: 6px; border: 1px solid var(--accent); }
.mini-seg.s4 { background: rgba(232,97,93,0.24); }
.mini-seg.s3 { background: rgba(232,97,93,0.17); }
.mini-seg.s2 { background: rgba(232,97,93,0.11); }
.mini-seg.s1 { background: rgba(232,97,93,0.06); }
.multi-link { color: var(--accent); font-size: 22px; flex-shrink: 0; font-weight: 700; }
@media (max-width: 600px) {
  .multistack { flex-direction: column; }
  .multi-link { transform: rotate(90deg); }
  .mini { max-width: 240px; width: 100%; }
}

/* ── "Who this is for" qualifier ── */
.builtfor-qualifier {
  max-width: 760px;
  margin: var(--s-5) auto 0;
  padding: 20px 26px;
  border-left: 3px solid var(--accent);
  background: var(--white-03);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white-70);
}
.builtfor-qualifier strong { color: var(--white); font-weight: 700; }

/* ── Hero secondary actions (demoted Skool + free list) ── */
.hero-secondary-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
  margin-top: 18px;
}
.hero-secondary-label { font-size: 13px; color: var(--white-50); }
.hero-secondary-actions a,
.hero-secondary-actions button {
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: inherit; font-size: 14px; font-weight: 600;
  color: var(--white-70);
  display: inline-flex; align-items: center; gap: 7px;
  text-decoration: none;
  border-bottom: 1px solid var(--white-20);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.hero-secondary-actions a:hover,
.hero-secondary-actions button:hover { color: var(--accent); border-color: var(--accent); }

/* ── Bridge to AI ("why now") ── */
.bridge { background: linear-gradient(180deg, transparent, var(--accent-soft) 50%, transparent); }
.bridge-copy { max-width: 780px; }
.bridge-copy p { font-size: 19px; line-height: 1.6; color: var(--white-70); margin-bottom: 20px; }
.bridge-copy p:last-child { margin-bottom: 0; }
.bridge-copy strong { color: var(--white); font-weight: 700; }

/* ── "Built with" tech-credibility strip ── */
.builtwith { margin-top: var(--s-6); text-align: center; }
.builtwith-line { font-size: 17px; color: var(--white-70); margin-bottom: 22px; }
.builtwith-line strong { color: var(--white); }
.tech-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 760px; margin: 0 auto; }
.tech-tag {
  padding: 9px 18px; border-radius: 999px;
  background: var(--white-06); border: 1px solid var(--white-12);
  font-size: 13.5px; font-weight: 600; color: var(--white-90);
}

/* ── #5 FAQ ── */
.faq-list { margin-top: var(--s-5); max-width: 820px; }
.faq-item {
  border: 1px solid var(--white-12);
  border-radius: var(--radius);
  margin-bottom: 14px;
  background: var(--white-03);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-size: 17px;
  font-weight: 700;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { color: var(--accent); font-size: 22px; transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 26px 24px; font-size: 15px; line-height: 1.6; color: var(--white-70); }
.faq-item .faq-a .placeholder { color: var(--accent-bright); font-style: italic; }
.faq-book-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  padding: 11px 20px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: #fff; font-weight: 700; font-size: 14px; text-decoration: none;
  box-shadow: 0 6px 20px var(--accent-glow);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.faq-book-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 28px var(--accent-glow); }

@media (max-width: 760px) {
  .proof-card { grid-template-columns: 1fr; padding: 32px; }
  .proof-quote { font-size: 20px; }
}

/* ── Headline: darker italic "modern" accent ── */
.hero-headline .accent-dark { color: #FB8A7E; font-style: italic; margin-right: 0.22em; }

/* ── Credibility stat bar ── */
.statbar { background: var(--white-03); border-top: 1px solid var(--white-10); border-bottom: 1px solid var(--white-10); }
.statbar-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 34px 18px; }
.stat-item + .stat-item { border-left: 1px solid var(--white-10); }
.stat-num { font-family: 'Fraunces', serif; font-size: 32px; font-weight: 700; color: var(--white); line-height: 1; }
.stat-num .accent { color: var(--accent); }
.stat-lbl { font-size: 12.5px; color: var(--white-50); margin-top: 9px; line-height: 1.4; }
@media (max-width: 680px) {
  .statbar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-left: none !important; border-top: 1px solid var(--white-10); }
  .stat-item:nth-child(-n+2) { border-top: none; }
  .stat-item:nth-child(even) { border-left: 1px solid var(--white-10) !important; }
}

/* ── Live demo CTA (in Show the systems) ── */
.demo-cta { text-align: center; margin-top: var(--s-5); }
.demo-cta a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: 12px;
  background: var(--white-06); border: 1px solid var(--white-20);
  color: var(--white); font-weight: 700; font-size: 15px; text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.demo-cta a:hover { border-color: var(--accent); background: var(--white-10); transform: translateY(-1px); }
.demo-cta .note { display: block; margin-top: 11px; font-size: 13px; color: var(--white-50); }

/* ── Comparison table ── */
.compare-wrap { overflow-x: auto; margin-top: var(--s-5); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 640px; }
.compare-table th, .compare-table td { padding: 16px 18px; text-align: center; border-bottom: 1px solid var(--white-10); }
.compare-table thead th { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--white-50); font-weight: 800; }
.compare-table tbody td:first-child, .compare-table thead th:first-child { text-align: left; color: var(--white-90); font-weight: 600; }
.compare-col-me { background: var(--accent-soft); }
.compare-table thead .compare-col-me { color: var(--accent-bright); border-radius: 12px 12px 0 0; }
.compare-table tbody .compare-col-me { color: var(--white); font-weight: 700; }
.compare-yes { color: var(--accent-bright); font-weight: 800; }
.compare-no { color: var(--white-50); }

/* ── Before / after ── */
.beforeafter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: var(--s-5); }
.ba-card { padding: 32px; border-radius: var(--radius); border: 1px solid var(--white-12); }
.ba-before { background: var(--white-03); }
.ba-after { background: var(--accent-soft); border-color: var(--accent); }
.ba-card h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.ba-before h3 { color: var(--white-50); }
.ba-after h3 { color: var(--accent-bright); }
.ba-card ul { list-style: none; display: grid; gap: 15px; }
.ba-card li { font-size: 16px; line-height: 1.5; padding-left: 28px; position: relative; }
.ba-before li { color: var(--white-70); }
.ba-after li { color: var(--white-90); }
.ba-before li::before { content: "✕"; position: absolute; left: 0; color: var(--white-50); font-weight: 700; }
.ba-after li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-bright); font-weight: 700; }
@media (max-width: 680px) { .beforeafter-grid { grid-template-columns: 1fr; } }

/* ── Featured / "as heard on" podcast embed ── */
.feature-video {
  position: relative;
  max-width: 880px;
  margin: var(--s-5) auto 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--white-12);
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
}
.feature-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
