/* ── AI Finder — standalone landing + guided wizard ── */
.af-main { min-height: 100vh; padding: 120px 0 80px; position: relative; }
.af-container { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.af-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--flame-core); margin-bottom: 18px;
  display: flex; align-items: center; gap: 9px;
}
.af-eyebrow .tech-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--flame-core);
  box-shadow: 0 0 12px var(--flame-core); display: inline-block;
}
.af-main h1 { font-family: 'Instrument Serif', serif; font-weight: 400; font-size: clamp(38px, 6vw, 64px); line-height: 1.04; margin: 0 0 18px; }
.af-main h1 em { font-style: italic; color: var(--flame-core); }
.af-lede { font-size: 18px; line-height: 1.6; color: var(--text-secondary); max-width: 560px; margin: 0 0 36px; }

/* Steps */
.af-step { display: none; animation: afIn .45s cubic-bezier(.22,.61,.36,1); }
.af-step.active { display: block; }
@keyframes afIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.af-progress { display: flex; gap: 6px; margin-bottom: 34px; }
.af-progress span { flex: 1; height: 3px; border-radius: 3px; background: rgba(255,107,43,0.15); transition: background .3s; }
.af-progress span.done { background: var(--flame-core); }

.af-q { font-family: 'Instrument Serif', serif; font-size: clamp(26px, 4vw, 36px); line-height: 1.12; margin: 0 0 8px; }
.af-hint { color: var(--text-secondary); font-size: 15px; margin: 0 0 26px; }

.af-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.af-chip {
  font-family: 'DM Sans', sans-serif; font-size: 14.5px; cursor: pointer; user-select: none;
  padding: 11px 18px; border-radius: 999px; border: 1px solid rgba(255,107,43,0.22);
  background: rgba(255,107,43,0.04); color: var(--text-primary); transition: all .18s;
}
.af-chip:hover { border-color: var(--flame-core); background: rgba(255,107,43,0.1); }
.af-chip.sel { border-color: var(--flame-core); background: var(--flame-core); color: #120a05; font-weight: 600; }

.af-input, .af-textarea {
  width: 100%; font-family: 'DM Sans', sans-serif; font-size: 16px; color: var(--text-primary);
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,107,43,0.18);
  border-radius: 12px; padding: 15px 16px; outline: none; transition: border-color .18s;
}
.af-input:focus, .af-textarea:focus { border-color: var(--flame-core); }
.af-textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.af-field + .af-field { margin-top: 14px; }
.af-field label { display: block; font-size: 13px; color: var(--text-secondary); margin-bottom: 7px; font-family: 'JetBrains Mono', monospace; letter-spacing: .5px; }

.af-nav { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.af-btn {
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer;
  padding: 14px 28px; border-radius: 999px; border: none; background: var(--flame-core); color: #120a05;
  transition: transform .15s, box-shadow .15s, opacity .15s;
}
.af-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,107,43,0.3); }
.af-btn:disabled { opacity: .4; cursor: not-allowed; transform: none; box-shadow: none; }
.af-back {
  font-family: 'DM Sans', sans-serif; font-size: 14px; cursor: pointer; background: none;
  border: none; color: var(--text-secondary); padding: 8px 4px; transition: color .15s;
}
.af-back:hover { color: var(--text-primary); }
.af-fineprint { font-size: 12.5px; color: var(--text-secondary); margin-top: 16px; }
.af-fineprint a { color: var(--flame-core); }

/* Loading */
.af-loading { text-align: center; padding: 40px 0; }
.af-spinner {
  width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 24px;
  border: 3px solid rgba(255,107,43,0.18); border-top-color: var(--flame-core);
  animation: afSpin .9s linear infinite;
}
@keyframes afSpin { to { transform: rotate(360deg); } }
.af-loading-text { font-family: 'Instrument Serif', serif; font-size: 22px; }
.af-loading-sub { color: var(--text-secondary); font-size: 14px; margin-top: 8px; }

/* Results */
.af-result-headline { font-family: 'Instrument Serif', serif; font-size: clamp(28px, 4.5vw, 40px); line-height: 1.1; margin: 0 0 28px; }
.af-result-headline em { font-style: italic; color: var(--flame-core); }
.af-rec {
  border: 1px solid rgba(255,107,43,0.16); border-radius: 16px; padding: 22px 22px 20px;
  margin-bottom: 16px; background: rgba(255,255,255,0.015); position: relative;
}
.af-rec-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.af-rec-name { font-family: 'Instrument Serif', serif; font-size: 23px; }
.af-pri {
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; white-space: nowrap;
}
.af-pri.start { background: var(--flame-core); color: #120a05; }
.af-pri.next { background: rgba(255,107,43,0.16); color: var(--flame-glow); }
.af-pri.later { background: rgba(255,255,255,0.06); color: var(--text-secondary); }
.af-rec-cat { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 12px; }
.af-rec-why { font-size: 15.5px; line-height: 1.6; margin: 0 0 12px; }
.af-rec-gotcha { font-size: 14px; line-height: 1.55; color: var(--text-secondary); padding-left: 14px; border-left: 2px solid rgba(255,107,43,0.3); }
.af-rec-gotcha b { color: var(--flame-glow); font-weight: 600; }
.af-rec-price { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--text-secondary); margin-top: 12px; }

.af-block { border-radius: 16px; padding: 24px; margin-top: 8px; margin-bottom: 16px; }
.af-block.sequence { background: rgba(255,107,43,0.05); border: 1px solid rgba(255,107,43,0.16); }
.af-block.reframe { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07); }
.af-block-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--flame-core); margin-bottom: 10px; }
.af-block p { font-size: 15.5px; line-height: 1.65; margin: 0; }

.af-cta {
  margin-top: 34px; padding: 32px; border-radius: 20px; text-align: center;
  background: linear-gradient(135deg, rgba(255,107,43,0.12), rgba(255,159,28,0.06));
  border: 1px solid rgba(255,107,43,0.25);
}
.af-cta h3 { font-family: 'Instrument Serif', serif; font-weight: 400; font-size: 28px; margin: 0 0 10px; }
.af-cta h3 em { font-style: italic; color: var(--flame-core); }
.af-cta p { color: var(--text-secondary); font-size: 15px; line-height: 1.6; max-width: 460px; margin: 0 auto 22px; }
.af-cta .af-btn { font-size: 16px; padding: 15px 34px; }
.af-cta-soft { font-size: 13px; color: var(--text-secondary); margin-top: 16px; }
.af-cta-soft a { color: var(--flame-core); cursor: pointer; }

.af-error { color: #ff6b6b; font-size: 14px; margin-top: 14px; }
.af-restart { margin-top: 24px; text-align: center; }

/* First-question hero (hidden once you advance past Q0) */
.af-wizard-hero { margin-bottom: 30px; }
.af-wizard-hero.hide { display: none; }

/* Hero trust strip — real client outcomes (social proof + authority) */
.af-trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px;
  margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,107,43,0.14);
}
.af-trust-lead {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--flame-core);
}
.af-trust-stat { font-size: 13.5px; color: var(--text-secondary); }
.af-trust-stat em { font-style: normal; color: var(--text-primary); font-weight: 600; }
.af-trust-stat a { color: var(--flame-core); }

/* Unlock — consistency echo of the prospect's own words */
.af-unlock-echo {
  font-size: 14.5px; line-height: 1.55; color: var(--text-secondary);
  margin: 0 0 18px; padding-left: 14px; border-left: 2px solid rgba(255,107,43,0.3);
}
.af-unlock-echo em { font-style: italic; color: var(--flame-glow); }

/* Unlock — social proof / authority block */
.af-proof { margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(255,107,43,0.16); }
.af-proof-lead {
  display: block; font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--flame-core); margin-bottom: 8px;
}
.af-proof-line { font-size: 14px; line-height: 1.6; color: var(--text-secondary); margin: 0; }
.af-proof-line a { color: var(--flame-core); }

/* CTA — honest scarcity line */
.af-cta-scarcity {
  font-size: 13.5px; line-height: 1.55; color: var(--flame-glow);
  max-width: 460px; margin: -8px auto 22px;
}

/* Free shortlist teaser cards (pre-unlock) */
.af-rec-teaser { font-size: 15px; line-height: 1.55; color: var(--text-secondary); margin: 0; }
.af-more-note { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: .5px; color: var(--text-secondary); text-align: center; margin: 2px 0 0; }

/* Email unlock block */
.af-unlock {
  margin-top: 28px; padding: 30px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,107,43,0.12), rgba(255,159,28,0.06));
  border: 1px solid rgba(255,107,43,0.25);
}
.af-unlock h3 { font-family: 'Instrument Serif', serif; font-weight: 400; font-size: 27px; margin: 0 0 10px; }
.af-unlock h3 em { font-style: italic; color: var(--flame-core); }
.af-unlock-lede { color: var(--text-secondary); font-size: 15px; line-height: 1.6; margin: 0 0 18px; }
.af-unlock-list { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 8px; }
.af-unlock-list li { font-size: 14.5px; line-height: 1.5; padding-left: 22px; position: relative; }
.af-unlock-list li::before { content: '\2192'; position: absolute; left: 0; color: var(--flame-core); }
.af-unlock-form { display: flex; flex-wrap: wrap; gap: 12px; align-items: stretch; }
.af-unlock-form .af-input { flex: 1 1 200px; }
.af-unlock-form .af-btn { flex: 0 0 auto; }
.af-unlock .af-fineprint { margin-top: 14px; }

/* Post-unlock confirmation banner */
.af-unlocked-note {
  margin-bottom: 26px; padding: 15px 20px; border-radius: 14px; text-align: center;
  background: rgba(255,107,43,0.08); border: 1px solid rgba(255,107,43,0.22);
  font-size: 14.5px; color: var(--flame-glow);
}

/* Shareable report link (post-unlock) */
.af-share:empty { display: none; }
.af-share {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-bottom: 22px; padding: 14px 16px; border-radius: 12px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,107,43,0.18);
}
.af-share-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .5px; text-transform: uppercase; color: var(--text-secondary); }
.af-share-link { font-size: 13.5px; color: var(--flame-core); word-break: break-all; flex: 1 1 240px; }
.af-share-copy {
  font-family: 'DM Sans', sans-serif; font-size: 13px; cursor: pointer;
  padding: 7px 14px; border-radius: 999px; border: 1px solid rgba(255,107,43,0.3);
  background: transparent; color: var(--text-primary); transition: all .15s;
}
.af-share-copy:hover { border-color: var(--flame-core); background: rgba(255,107,43,0.1); }

/* Standalone report page */
.af-report-foot { margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; }
.af-report-foot a { color: var(--flame-core); }
.af-loading-text a { color: var(--flame-core); }
