/* TeenCare Figma/Savvy v4
   Faithful adaptation of the local Quiz clone Savvy board.
   Logic, tracking, booking and checkout hooks remain unchanged. */
:root{
  --fg4-ink:#17171b;
  --fg4-muted:#6c6b67;
  --fg4-cream:#fff9ec;
  --fg4-paper:#fff;
  --fg4-gold:#ffb000;
  --fg4-gold-deep:#ee9d00;
  --fg4-gold-soft:#fff0c4;
  --fg4-line:#dfddd5;
  --fg4-green:#1f6b50;
  --fg4-shadow:0 10px 28px rgba(28,25,18,.08);
  --tc-quiz-max:512px;
  --tc-content-max:680px;
}
body.figma-v4{
  margin:0;
  color:var(--fg4-ink);
  background:var(--fg4-cream);
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;
}
.figma-v4 *{box-sizing:border-box}
.figma-v4 .app-shell{padding:0;max-width:none;background:transparent}
.figma-v4 .screen{border-radius:0;box-shadow:none}
.figma-v4 .btn-primary,
.figma-v4 .bf-button{
  border:1px solid var(--fg4-ink)!important;
  background:var(--fg4-gold)!important;
  color:var(--fg4-ink)!important;
  box-shadow:0 3px 0 var(--fg4-ink)!important;
  border-radius:10px!important;
  font-weight:800!important;
  letter-spacing:-.01em;
}
.figma-v4 .btn-primary:hover,
.figma-v4 .bf-button:hover{background:#ffc53d!important;transform:translateY(-1px)}
.figma-v4 .eyebrow{color:#8c6412!important;letter-spacing:.1em;font-weight:800}

/* Landing: centered, compact, and illustration-led like the Figma funnel. */
.figma-v4 .landing{
  max-width:1040px;
  min-height:760px;
  margin:0 auto;
  padding:38px clamp(22px,5vw,70px) 60px;
  background:var(--fg4-cream);
  overflow:hidden;
}
.figma-v4 .landing .brand-row{
  justify-content:center;
  text-align:left;
  margin:0 auto 42px;
}
.figma-v4 .landing .brand-mark{width:44px;height:44px;border:0;background:transparent}
.figma-v4 .landing .brand-name{font-size:18px;color:var(--fg4-ink)}
.figma-v4 .landing .brand-sub{font-size:11px;color:var(--fg4-muted)}
.figma-v4 .landing-grid{display:grid;grid-template-columns:minmax(0,1fr) 380px;gap:54px;align-items:center}
.figma-v4 .landing-message{max-width:520px}
.figma-v4 .landing h1{
  max-width:500px;
  margin:15px 0 16px;
  font-size:clamp(39px,5vw,64px);
  line-height:.98;
  letter-spacing:-.055em;
  color:var(--fg4-ink);
}
.figma-v4 .landing h1 em{font-style:normal;color:var(--fg4-gold-deep)}
.figma-v4 .hero-copy{font-size:17px;line-height:1.6;color:#4e4d49;max-width:480px}
.figma-v4 .hero-art{
  height:185px;
  width:330px;
  margin:0 auto 8px;
  background:transparent;
  border:0;
}
.figma-v4 .portrait-frame{background:var(--fg4-paper);border:1px solid var(--fg4-line);box-shadow:none}
.figma-v4 .role-chip{background:var(--fg4-paper);color:var(--fg4-ink);border:1px solid var(--fg4-line)}
.figma-v4 .bridge b{background:var(--fg4-gold);color:var(--fg4-ink)}
.figma-v4 .landing-product-preview{
  border:1.5px solid var(--fg4-ink);
  background:var(--fg4-paper);
  border-radius:18px;
  box-shadow:9px 9px 0 var(--fg4-gold);
  transform:rotate(1deg);
}
.figma-v4 .platform-proof-strip{background:var(--fg4-paper);border:1px solid var(--fg4-line);box-shadow:none}
.figma-v4 .trust-row,.figma-v4 .value-preview{color:#4f4e4a}

/* Keep the mobile rhythm, but allow a more comfortable reading width on tablet/desktop. */
.figma-v4 .quiz-screen{
  width:min(100%,var(--tc-quiz-max));
  min-height:100dvh;
  margin:0 auto;
  padding:0 24px 30px;
  background:var(--fg4-cream);
  overflow:hidden;
}
.figma-v4 .quiz-header{
  position:relative;
  min-height:92px;
  padding:19px 0 16px;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  border:0;
  background:transparent;
}
.figma-v4 .quiz-header .icon-btn{
  position:absolute;
  left:0;
  top:19px;
  width:34px;
  height:34px;
  border:1.5px solid var(--fg4-gold);
  border-radius:8px;
  background:var(--fg4-paper);
  color:var(--fg4-ink);
  font-size:17px;
  box-shadow:none;
}
.figma-v4 .brand-mini{
  position:absolute;
  left:50%;
  top:18px;
  transform:translateX(-50%);
  width:38px;
  height:38px;
  border:0;
  background:transparent;
}
.figma-v4 .brand-mini img{width:100%;height:100%;object-fit:contain}
.figma-v4 .progress-wrap{
  position:absolute;
  left:0;
  right:0;
  top:69px;
  width:auto;
  max-width:none;
}
.figma-v4 .progress-meta{
  position:absolute;
  right:0;
  bottom:8px;
  display:flex;
  gap:5px;
  color:#8b8476;
  font-size:9px;
  font-weight:700;
}
.figma-v4 #progressPercent{display:none}
.figma-v4 .progress-track{height:3px;background:#ece5d7;border-radius:999px;overflow:hidden}
.figma-v4 .progress-bar{background:var(--fg4-gold);border-radius:999px}
.figma-v4 .question-wrap{padding:20px 0 0;max-width:none}
.figma-v4 .figma-question-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin:0 0 8px;
  color:#a06d00;
  font-size:10px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.figma-v4 .figma-question-meta b{
  display:grid;
  place-items:center;
  width:26px;
  height:26px;
  border:1px solid #e9d9b0;
  border-radius:50%;
  background:var(--fg4-paper);
  color:#8c6412;
  letter-spacing:0;
}
.figma-v4 .lab-question-lead{
  display:block!important;
  width:100%;
  min-height:0!important;
  padding-right:0!important;
  margin:0 0 22px;
  text-align:left;
}
.figma-v4 .lab-question-lead h2{
  width:100%;
  max-width:none;
  margin:0;
  font-size:25px!important;
  line-height:1.16!important;
  letter-spacing:-.035em!important;
  color:var(--fg4-ink)!important;
}
.figma-v4 .question-help{width:100%;max-width:none;margin:9px 0 0;font-size:13px;line-height:1.45;color:var(--fg4-muted)}
.figma-v4 .lab-art,.figma-v4 .lab-chapters,.figma-v4 .question-context,.figma-v4 .quiz-teen-scene{display:none!important}
.figma-v4 .answers{display:grid;gap:10px}
.figma-v4 .answer{
  position:relative;
  min-height:66px;
  width:100%;
  padding:10px 12px 10px 11px;
  border:1.35px solid #cfcac0!important;
  border-radius:11px!important;
  background:var(--fg4-paper)!important;
  color:var(--fg4-ink)!important;
  box-shadow:none!important;
  display:flex!important;
  align-items:center;
  gap:11px;
  text-align:left;
  transition:border-color .15s,background .15s,transform .15s;
}
.figma-v4 .answer:hover{border-color:var(--fg4-gold)!important;transform:translateY(-1px)}
.figma-v4 .answer.selected{
  border:2px solid var(--fg4-gold)!important;
  background:#fff6dc!important;
}
.figma-v4 .answer-copy{font-size:14px;line-height:1.28;font-weight:700}
.figma-v4 .answer-icon{
  flex:0 0 40px;
  width:40px;
  height:40px;
  border:0!important;
  border-radius:9px;
  background:var(--fg4-gold-soft)!important;
  color:#7d5700!important;
  display:grid;
  place-items:center;
  overflow:hidden;
}
.figma-v4 .answer-icon .ui-icon{width:21px;height:21px}
.figma-v4 .answer-sticker img{width:56px!important;height:56px!important;object-fit:cover}
.figma-v4 .answer-state{position:absolute;right:13px;color:#9b9384}
.figma-v4 .answer-state .ui-icon{width:19px;height:19px;color:#8b6300}
.figma-v4 .question-footnote{
  margin:20px auto 0;
  justify-content:center;
  color:#928b80;
  font-size:10px;
  text-align:center;
}
.figma-v4 .question-footnote .ui-icon{width:12px;height:12px}
.figma-v4 .figma-age-grid{grid-template-columns:1fr 1fr;gap:12px}
.figma-v4 .figma-age-grid .answer{
  min-height:213px;
  padding:0 9px 13px;
  display:flex!important;
  flex-direction:column;
  justify-content:flex-end;
  align-items:center;
  text-align:center;
  overflow:hidden;
}
.figma-v4 .figma-age-grid .figma-age-art{
  width:100%;
  height:160px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  margin:0 0 5px;
}
.figma-v4 .figma-age-grid img{width:145px;height:155px;object-fit:contain;object-position:center bottom}
.figma-v4 .figma-age-grid .answer-copy{font-size:14px}
.figma-v4 .figma-age-grid .answer-state{top:10px;right:10px}
.figma-v4 .figma-problem-grid{grid-template-columns:1fr 1fr;gap:11px}
.figma-v4 .figma-problem-grid .answer{
  min-height:131px;
  padding:14px 12px 13px;
  align-items:flex-start;
  flex-direction:column;
  justify-content:flex-start;
}
.figma-v4 .figma-answer-symbol{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:var(--fg4-gold-soft);
  color:#775300;
}
.figma-v4 .figma-answer-symbol .ui-icon{width:22px;height:22px}
.figma-v4 .figma-problem-grid .answer-copy{font-size:12.5px;line-height:1.3}
.figma-v4 .figma-problem-grid .answer-state{top:12px;right:12px}
.figma-v4 .figma-compact-grid{grid-template-columns:1fr 1fr}
.figma-v4 .figma-compact-grid .answer{min-height:98px;align-items:flex-start;flex-direction:column;padding:13px}
.figma-v4 .direct-entry-proof{border:1px solid #ead8aa;background:var(--fg4-paper);border-radius:10px}
.figma-v4 .direct-entry-copy{color:#655f54}

/* Shared content width: quiz stays focused; transition, email, result and paywall breathe. */
.figma-v4 .processing-screen,
.figma-v4 .teaser-screen{
  width:min(100%,var(--tc-content-max));
  max-width:var(--tc-content-max);
  min-height:100dvh;
  margin:0 auto;
  padding:40px clamp(18px,4vw,28px);
  background:var(--fg4-cream);
}
.figma-v4 .processing-card,
.figma-v4 .email-card{
  width:100%;
  max-width:none;
  border:1px solid var(--fg4-line);
  border-radius:16px;
  background:var(--fg4-paper);
  box-shadow:var(--fg4-shadow);
}
.figma-v4 .processing-card{
  padding:44px clamp(22px,6vw,48px);
}
.figma-v4 .processing-card h2{max-width:540px;margin-left:auto;margin-right:auto}
.figma-v4 .processing-card p{max-width:520px;margin-left:auto;margin-right:auto}
.figma-v4 .scan-ring{
  width:84px;
  height:84px;
  border:2px solid #efd795;
  border-top-color:var(--fg4-gold);
  margin-bottom:22px;
}
.figma-v4 .scan-ring span{
  width:46px;
  height:46px;
  border-radius:0;
  background:transparent;
  overflow:visible;
}
.figma-v4 .scan-ring span img{
  width:100%;
  height:100%;
  object-fit:contain;
  transform:none;
}
.figma-v4 .email-card input{border:1px solid #cfcac0;border-radius:10px}

/* Result/paywall share the wider content canvas instead of legacy narrow widths. */
.figma-v4 .result-screen.review-vocal-v1{
  width:min(100%,var(--tc-content-max))!important;
  max-width:var(--tc-content-max)!important;
  margin:0 auto!important;
  padding:0 18px 40px!important;
  background:var(--fg4-cream)!important;
  color:var(--fg4-ink);
}
.figma-v4 .checkout-screen{
  width:min(100%,var(--tc-content-max));
  max-width:var(--tc-content-max);
  margin-left:auto;
  margin-right:auto;
}
.figma-v4 .result-screen h2,
.figma-v4 .result-screen h3{
  font-family:Inter,ui-sans-serif,sans-serif!important;
  color:var(--fg4-ink)!important;
}
.figma-v4 .result-hero{
  margin:0 -18px!important;
  padding:42px 22px 0!important;
  border-radius:0!important;
  background:var(--fg4-paper)!important;
  border:0!important;
  overflow:hidden;
}
.figma-v4 .result-hero-decor{display:none}
.figma-v4 .result-kicker{color:#9a6a00!important;font-size:10px!important;letter-spacing:.11em}
.figma-v4 .result-hero h2{font-size:34px!important;line-height:1.04!important;letter-spacing:-.045em!important}
.figma-v4 .result-summary{font-size:15px!important;line-height:1.55!important;color:#55514b!important}
.figma-v4 .result-payoff{min-height:245px;position:relative;margin-top:12px}
.figma-v4 .result-parent-art{
  position:absolute!important;
  left:-24px!important;
  right:auto!important;
  bottom:-9px!important;
  width:278px!important;
  height:250px!important;
  object-fit:contain!important;
  object-position:left bottom!important;
}
.figma-v4 .result-reassurance{
  position:absolute!important;
  z-index:2;
  right:0!important;
  bottom:18px!important;
  width:176px!important;
  padding:12px!important;
  border:1px solid var(--fg4-ink)!important;
  border-radius:10px!important;
  background:var(--fg4-gold)!important;
  color:var(--fg4-ink)!important;
  box-shadow:4px 4px 0 var(--fg4-ink);
}
.figma-v4 .result-reassurance p{font-size:11px!important;line-height:1.4!important}
.figma-v4 .figma-plan-ready{
  position:relative;
  margin:0 -18px 18px;
  padding:29px 22px 20px;
  min-height:430px;
  overflow:hidden;
  background:var(--fg4-ink);
  color:#fff;
}
.figma-v4 .figma-plan-copy{position:relative;z-index:2;max-width:310px}
.figma-v4 .figma-plan-copy>span{font-size:9px;color:#ffc84a;letter-spacing:.12em;font-weight:900}
.figma-v4 .figma-plan-copy h3{margin:8px 0;color:#fff!important;font-size:27px!important;line-height:1.08!important}
.figma-v4 .figma-plan-copy p{margin:0;color:#d8d3c9;font-size:13px;line-height:1.5}
.figma-v4 .figma-progress-story{position:relative;z-index:3;width:228px;margin-top:23px;display:grid;gap:12px}
.figma-v4 .figma-progress-story>div{display:grid;gap:3px}
.figma-v4 .figma-progress-story small{font-size:9px;color:#a9a398}
.figma-v4 .figma-progress-story strong{font-size:11px;color:#fff}
.figma-v4 .figma-progress-story span{display:block;width:100%;height:5px;border-radius:999px;background:#3a3835;overflow:hidden}
.figma-v4 .figma-progress-story i{display:block;height:100%;background:var(--fg4-gold);border-radius:999px}
.figma-v4 .figma-plan-ready>img{position:absolute;right:-42px;bottom:-20px;width:235px;height:245px;object-fit:contain}
.figma-v4 .section-card,
.figma-v4 .pattern-snapshot,
.figma-v4 .now-direction-card,
.figma-v4 .booking-first,
.figma-v4 .offer-card{
  border-radius:13px!important;
  border:1px solid var(--fg4-line)!important;
  box-shadow:none!important;
  background:var(--fg4-paper)!important;
}
.figma-v4 .section-card,
.figma-v4 .pattern-snapshot,
.figma-v4 .now-direction-card{margin:13px 0!important;padding:20px!important}
.figma-v4 .first-step-card{border:2px solid var(--fg4-gold)!important}
.figma-v4 .step-number{background:var(--fg4-gold)!important;color:var(--fg4-ink)!important}
.figma-v4 .script-box{background:var(--fg4-cream)!important;border:1px solid #e7d7aa!important}
.figma-v4 .copy-script-btn{color:#7b5700!important;border-color:#d7b962!important;background:#fff!important}
.figma-v4 .booking-first{padding:0!important;border:0!important;background:transparent!important}
.figma-v4 .bf-card{
  border:1px solid var(--fg4-line)!important;
  border-radius:13px!important;
  background:var(--fg4-paper)!important;
  box-shadow:none!important;
}
.figma-v4 .bf-hero{overflow:hidden}
.figma-v4 .bf-kicker{color:#986900!important}
.figma-v4 .bf-art{background:var(--fg4-gold-soft)!important}
.figma-v4 .bf-art img{content:url("./assets/figma-savvy/proof-03.webp");object-fit:contain!important}
.figma-v4 .bf-trust-row span{background:var(--fg4-cream)!important;border-color:#ead8aa!important}
.figma-v4 .sv-session-benefits li{border-color:#ead8aa!important;background:#fffdf7!important}
.figma-v4 .sv-session-benefits li>span{background:var(--fg4-gold)!important;color:var(--fg4-ink)!important}
.figma-v4 .sv-mentors{margin:14px 0!important;padding:20px!important;background:var(--fg4-paper)!important;border:1px solid var(--fg4-line)!important;border-radius:13px!important}
.figma-v4 .sv-mentor-grid{gap:10px}
.figma-v4 .sv-mentor-card{min-width:220px!important;border:1px solid var(--fg4-line)!important;border-radius:12px!important;background:#fff!important}
.figma-v4 .sv-mentor-photo{height:185px!important;background:var(--fg4-gold-soft)!important}
.figma-v4 .sv-mentor-photo img{filter:saturate(.88) contrast(1.02)}
.figma-v4 .bf-scheduler{border:2px solid var(--fg4-gold)!important}
.figma-v4 .bf-steps strong{background:var(--fg4-gold)!important;color:var(--fg4-ink)!important}
.figma-v4 .bf-times button{
  border:1px solid #cfcac0!important;
  background:#fff!important;
  color:var(--fg4-ink)!important;
  border-radius:8px!important;
}
.figma-v4 .bf-times button[aria-pressed="true"]{border-color:var(--fg4-ink)!important;background:var(--fg4-gold)!important}
.figma-v4 .bf-scheduler input,.figma-v4 .bf-scheduler select{border:1px solid #cfcac0!important;border-radius:8px!important}
.figma-v4 #aboutTeenCare{background:#fff!important}
.figma-v4 .offer-card{
  margin:16px 0!important;
  padding:0!important;
  overflow:hidden;
}
.figma-v4 .purchase-brand{background:var(--fg4-ink)!important;color:#fff!important;border-radius:0!important}
.figma-v4 .purchase-brand strong{color:#d8d3c9!important}
.figma-v4 .purchase-secure{color:#ffc744!important}
.figma-v4 .purchase-intro{padding:24px 20px 4px!important;background:#fff!important}
.figma-v4 .purchase-intro h2{font-size:29px!important;line-height:1.08!important}
.figma-v4 .purchase-panel{margin:0!important;border:0!important;border-radius:0!important;box-shadow:none!important}
.figma-v4 .purchase-included{padding:20px!important;background:#fff!important}
.figma-v4 .figma-benefit-grid{
  display:grid!important;
  grid-template-columns:1fr 1fr!important;
  gap:10px!important;
  margin:18px 0 0!important;
}
.figma-v4 .figma-benefit-grid li{
  min-height:242px!important;
  padding:0 0 14px!important;
  display:flex!important;
  flex-direction:column!important;
  align-items:stretch!important;
  gap:10px!important;
  border:1px solid var(--fg4-line)!important;
  border-radius:12px!important;
  overflow:hidden!important;
  background:var(--fg4-cream)!important;
}
.figma-v4 .figma-benefit-grid img{width:100%;height:144px;object-fit:contain;background:#fff}
.figma-v4 .figma-benefit-grid li>div{padding:0 12px;display:grid;gap:5px}
.figma-v4 .figma-benefit-grid b{font-size:13px;line-height:1.25}
.figma-v4 .figma-benefit-grid span{font-size:11px;line-height:1.4;color:#65615a}
.figma-v4 .purchase-plans{padding:22px 20px!important;background:var(--fg4-cream)!important;border-top:1px solid var(--fg4-line)!important}
.figma-v4 .plan-picker{gap:9px!important}
.figma-v4 .plan-option{
  border:1.5px solid #bbb5aa!important;
  border-radius:11px!important;
  background:#fff!important;
  color:var(--fg4-ink)!important;
  box-shadow:none!important;
}
.figma-v4 .plan-option.selected{
  border:2px solid var(--fg4-gold)!important;
  background:#fff4d6!important;
  box-shadow:3px 3px 0 var(--fg4-gold)!important;
}
.figma-v4 .plan-check{background:var(--fg4-gold)!important;color:var(--fg4-ink)!important}
.figma-v4 .purchase-promise-row span,.figma-v4 .purchase-trust-strip>span{background:#fff!important;border-color:var(--fg4-line)!important}
.figma-v4 .secure-line,.figma-v4 .payment-trust-card{background:#fff!important;border-color:var(--fg4-line)!important}
.figma-v4 .product-proof-card{background:var(--fg4-ink)!important;color:#e4dfd5!important}
.figma-v4 .product-proof-card h3,.figma-v4 .product-proof-card strong{color:#fff!important}
.figma-v4 .product-proof-flow>div,.figma-v4 .mentor-trust-block{background:#292825!important;border-color:#46433d!important}
.figma-v4 .real-app-gallery figure{background:#fff!important;border-color:#4d4942!important}
.figma-v4 .parent-testimonials .testimonial-card{border-left:3px solid var(--fg4-gold)!important;background:var(--fg4-cream)!important}
.figma-v4 .testimonial-stars{color:var(--fg4-gold-deep)!important}
.figma-v4 .purchase-faq details{border-color:var(--fg4-line)!important}
.figma-v4 .review-final-cta{background:var(--fg4-gold)!important;color:var(--fg4-ink)!important;border:1px solid var(--fg4-ink)!important;border-radius:13px!important;box-shadow:5px 5px 0 var(--fg4-ink)!important}
.figma-v4 .purchase-final{border:2px solid var(--fg4-gold)!important}
.figma-v4 .footer{color:#68645c!important}

/* Hide duplicate legacy mentor initials; the real photo cards are the proof surface now. */
.figma-v4 .mentor-trust-block{display:none!important}

@media(max-width:760px){
  .figma-v4 .landing{padding:24px 20px 44px}
  .figma-v4 .landing .brand-row{margin-bottom:20px}
  .figma-v4 .landing-grid{display:block}
  .figma-v4 .landing-message{max-width:none}
  .figma-v4 .landing h1{font-size:42px}
  .figma-v4 .landing-product-preview{display:none}
  .figma-v4 .hero-art{width:300px;max-width:100%;height:170px}
}
@media(max-width:380px){
  .figma-v4 .processing-screen,.figma-v4 .teaser-screen{padding-left:14px;padding-right:14px}
  .figma-v4 .processing-card{padding:30px 18px}
  .figma-v4 .quiz-screen{padding-left:15px;padding-right:15px}
  .figma-v4 .figma-age-grid{gap:9px}
  .figma-v4 .figma-age-grid .answer{min-height:190px}
  .figma-v4 .figma-age-grid .figma-age-art{height:140px}
  .figma-v4 .figma-age-grid img{width:125px;height:138px}
  .figma-v4 .figma-problem-grid .answer{min-height:120px}
  .figma-v4 .figma-benefit-grid{grid-template-columns:1fr!important}
  .figma-v4 .figma-benefit-grid li{min-height:210px!important}
}


/* v4 QA specificity fixes against legacy review/savvy layers */
body.figma-v4 .answer-state{display:none!important}
body.figma-v4 .question-wrap::before,
body.figma-v4 .question-wrap::after,
body.figma-v4 .lab-question-lead::before,
body.figma-v4 .lab-question-lead::after{display:none!important;content:none!important}
body.figma-v4 .teaser-screen .email-card{
  margin-top:24px!important;
  padding:20px!important;
  display:block!important;
}
body.figma-v4 .teaser-screen .email-card h3{
  margin:0 0 5px!important;
  font-size:23px!important;
  line-height:1.15!important;
}
body.figma-v4 .teaser-screen .email-card p{margin:0 0 16px!important}
body.figma-v4 .teaser-screen .email-card label{display:block!important;margin:0 0 6px!important;font-size:12px!important}
body.figma-v4 .teaser-screen .email-card input{height:52px!important;margin:0 0 10px!important;padding:0 14px!important}
body.figma-v4 .teaser-screen .email-card .btn{width:100%!important;min-height:50px!important}
body.figma-v4 .teaser-screen .email-card small{display:block!important;margin-top:10px!important;text-align:center!important}

body.figma-v4 .result-screen .result-payoff{
  display:block!important;
  height:280px!important;
  min-height:280px!important;
  margin-top:8px!important;
}
body.figma-v4 .result-screen .result-parent-art{
  display:block!important;
  left:-20px!important;
  right:auto!important;
  bottom:-8px!important;
  width:265px!important;
  height:270px!important;
  max-width:none!important;
}
body.figma-v4 .result-screen .result-reassurance{
  right:1px!important;
  bottom:22px!important;
  top:auto!important;
  transform:none!important;
}

body.figma-v4 .result-screen .sv-mentor-grid{
  display:flex!important;
  grid-template-columns:none!important;
  gap:11px!important;
  width:100%!important;
  max-width:100%!important;
  overflow-x:auto!important;
  overflow-y:hidden!important;
  scroll-snap-type:x mandatory;
  padding:2px 2px 12px!important;
  scrollbar-width:thin;
}
body.figma-v4 .result-screen .sv-mentor-card{
  flex:0 0 242px!important;
  width:242px!important;
  min-width:242px!important;
  max-width:242px!important;
  scroll-snap-align:start;
  overflow:hidden!important;
}
body.figma-v4 .result-screen .sv-mentor-photo{width:100%!important;height:205px!important}
body.figma-v4 .result-screen .sv-mentor-copy{padding:14px!important}
body.figma-v4 .result-screen .sv-mentor-copy h4,
body.figma-v4 .result-screen .sv-mentor-copy p{white-space:normal!important;overflow:visible!important}

body.figma-v4 .result-screen .purchase-plans{
  display:block!important;
  grid-template-columns:none!important;
}
body.figma-v4 .result-screen .purchase-section-head{display:block!important;margin:0 0 15px!important;text-align:center!important}
body.figma-v4 .result-screen .purchase-section-head h3{margin:0 0 7px!important}
body.figma-v4 .result-screen .purchase-section-head>span{display:inline-block!important;padding:5px 10px!important;border-radius:999px!important;background:#fff!important;color:#5d574d!important}
body.figma-v4 .result-screen .plan-picker{display:grid!important;margin:0 0 15px!important}
body.figma-v4 .result-screen .plan-option.selected{
  border-color:var(--fg4-gold)!important;
  background:#fff4d6!important;
  box-shadow:3px 3px 0 var(--fg4-gold)!important;
}
body.figma-v4 .result-screen .plan-option.selected .plan-check{
  background:var(--fg4-gold)!important;
  color:var(--fg4-ink)!important;
}
body.figma-v4 .result-screen #buyBtn,
body.figma-v4 .result-screen #buyBtnBottom,
body.figma-v4 .result-screen #reviewFinalCta{
  background:var(--fg4-gold)!important;
  border-color:var(--fg4-ink)!important;
  color:var(--fg4-ink)!important;
  box-shadow:0 3px 0 var(--fg4-ink)!important;
}
body.figma-v4 .result-screen .price-row{margin:0 0 13px!important}
body.figma-v4 .result-screen .purchase-promise-row{
  display:grid!important;
  grid-template-columns:repeat(3,1fr)!important;
  margin:15px 0!important;
  order:initial!important;
}
body.figma-v4 .result-screen .secure-line{margin:12px 0!important}
body.figma-v4 .result-screen .payment-trust-card{margin:12px 0!important}
body.figma-v4 .result-screen .purchase-trust-strip{margin:12px 0!important}


/* Keep the offer palette above legacy selectors that include #offer. */
body.figma-v4 .result-screen #offer .plan-option{
  border-color:#bbb5aa!important;
  background:#fff!important;
  color:var(--fg4-ink)!important;
}
body.figma-v4 .result-screen #offer .plan-option.selected{
  border-color:var(--fg4-gold)!important;
  background:#fff4d6!important;
  box-shadow:3px 3px 0 var(--fg4-gold)!important;
  color:var(--fg4-ink)!important;
}
body.figma-v4 .result-screen #offer .plan-option.selected .plan-check{
  background:var(--fg4-gold)!important;
  color:var(--fg4-ink)!important;
}
body.figma-v4 .result-screen #offer #buyBtn{
  background:var(--fg4-gold)!important;
  border-color:var(--fg4-ink)!important;
  color:var(--fg4-ink)!important;
  box-shadow:0 3px 0 var(--fg4-ink)!important;
}

/* Booking-focus pass: result -> First Shift -> one dominant scheduler. */
body.figma-v4 .result-screen .result-hero{
  margin:0 -18px!important;
  padding:28px 22px 10px!important;
  min-height:0!important;
}
body.figma-v4 .result-screen .result-hero h2{
  margin:7px 0 9px!important;
  font-size:32px!important;
}
body.figma-v4 .result-screen .result-summary{
  margin:0!important;
  max-width:600px!important;
  font-size:14px!important;
  line-height:1.5!important;
}
body.figma-v4 .result-screen .result-payoff{
  display:block!important;
  height:205px!important;
  min-height:205px!important;
  margin-top:5px!important;
}
body.figma-v4 .result-screen .result-parent-art{
  display:block!important;
  left:-12px!important;
  bottom:-8px!important;
  width:220px!important;
  height:215px!important;
}
body.figma-v4 .result-screen .result-reassurance{
  right:2px!important;
  bottom:16px!important;
  width:174px!important;
}
body.figma-v4 .figma-plan-ready{
  margin:0 -18px 10px!important;
  min-height:305px!important;
  padding:24px 22px 18px!important;
}
body.figma-v4 .figma-plan-copy{max-width:300px!important}
body.figma-v4 .figma-plan-copy h3{font-size:25px!important;margin:6px 0!important}
body.figma-v4 .figma-plan-copy p{max-width:270px;font-size:12px!important;line-height:1.42!important}
body.figma-v4 .figma-progress-story{width:205px!important;margin-top:16px!important;gap:9px!important}
body.figma-v4 .figma-plan-ready>img{
  right:-28px!important;
  bottom:-15px!important;
  width:205px!important;
  height:215px!important;
}
body.figma-v4 .first-step-card{
  grid-template-columns:1fr!important;
  gap:0!important;
  margin:10px 0 9px!important;
  padding:16px!important;
  border:1px solid #e2ddd4!important;
  box-shadow:none!important;
}
body.figma-v4 .first-step-card::before{display:none!important;content:none!important}
body.figma-v4 .first-step-content h3{
  margin:5px 0 6px!important;
  font-size:22px!important;
}
body.figma-v4 .first-step-content>p{
  margin-bottom:9px!important;
  font-size:12px!important;
  line-height:1.42!important;
}
body.figma-v4 .first-step-card .script-box{padding:10px!important}
body.figma-v4 .booking-first{
  margin-top:7px!important;
  margin-bottom:16px!important;
}
body.figma-v4 .bf-scheduler{
  margin-top:0!important;
  padding:18px 20px!important;
  border:2px solid var(--fg4-gold)!important;
  border-radius:14px!important;
  box-shadow:0 12px 26px rgba(91,67,19,.08)!important;
}
body.figma-v4 .bf-scheduler-head h2{
  margin:5px 0 0!important;
  font-size:27px!important;
  line-height:1.08!important;
}
body.figma-v4 .bf-scheduler .bf-confirmation{
  margin:10px 0 14px!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
}
body.figma-v4 .bf-mentor-proof{
  border-top:0;
  margin-top:5px;
}
body.figma-v4 .bf-mentor-proof>summary{
  padding:12px 6px;
  border:1px solid var(--fg4-line);
  border-radius:11px;
  background:#fff;
}
body.figma-v4 .bf-mentor-proof[open]>summary{border-radius:11px 11px 0 0}
body.figma-v4 .bf-mentor-proof .sv-mentors{
  margin:0!important;
  padding:16px!important;
  border-radius:0 0 11px 11px!important;
  border-top:0!important;
}
body.figma-v4 .result-deep-dive{
  margin:13px 0 16px;
  border-color:var(--fg4-line);
  background:#fff;
  box-shadow:none;
}
body.figma-v4 .result-deep-dive>summary{padding:15px 17px}
body.figma-v4 .result-deep-dive>summary strong{font-size:15px}
body.figma-v4 .result-deep-dive>summary small{font-size:11px}
body.figma-v4 .result-deep-dive-body{padding:3px 10px 12px}
body.figma-v4 .result-deep-dive .pattern-snapshot,
body.figma-v4 .result-deep-dive .narrative-card,
body.figma-v4 .result-deep-dive .plan-bridge-card{
  display:block!important;
}
body.figma-v4 .result-deep-dive .pattern-snapshot,
body.figma-v4 .result-deep-dive .now-direction-card,
body.figma-v4 .result-deep-dive .section-card{
  margin:10px 0!important;
}
body.figma-v4 .result-screen .bf-dates button,
body.figma-v4 .result-screen .bf-times button,
body.figma-v4 .result-screen .bf-extra-times button{
  border:1.5px solid #c8c3b8!important;
  background:#fff!important;
  box-shadow:0 2px 5px rgba(30,25,18,.05)!important;
  color:var(--fg4-ink)!important;
}
body.figma-v4 .result-screen .bf-dates button[aria-pressed="true"],
body.figma-v4 .result-screen .bf-times button[aria-pressed="true"],
body.figma-v4 .result-screen .bf-extra-times button[aria-pressed="true"]{
  border-color:var(--fg4-ink)!important;
  background:var(--fg4-gold)!important;
  box-shadow:0 3px 0 var(--fg4-ink)!important;
  color:var(--fg4-ink)!important;
  transform:translateY(-1px);
}
body.figma-v4 .result-screen .bf-more-button,
body.figma-v4 .result-screen .bf-other-time-toggle{
  background:#faf8f3!important;
  box-shadow:none!important;
  color:#686055!important;
}
@media(max-width:420px){
  body.figma-v4 .result-screen .result-hero{padding:18px 18px 2px!important}
  body.figma-v4 .result-screen .result-hero h2{font-size:28px!important;margin-bottom:7px!important}
  body.figma-v4 .result-screen .result-summary{font-size:13px!important;line-height:1.45!important}
  body.figma-v4 .result-screen .result-payoff{height:180px!important;min-height:180px!important;margin-top:2px!important}
  body.figma-v4 .result-screen .result-parent-art{left:-14px!important;width:190px!important;height:190px!important}
  body.figma-v4 .result-screen .result-reassurance{right:0!important;bottom:12px!important;width:154px!important;padding:9px!important}
  body.figma-v4 .result-screen .result-reassurance p{font-size:10px!important;line-height:1.32!important}
  body.figma-v4 .figma-plan-ready{min-height:265px!important;padding:20px 18px 15px!important;margin-bottom:8px!important}
  body.figma-v4 .figma-plan-copy{max-width:235px!important}
  body.figma-v4 .figma-plan-copy h3{font-size:22px!important}
  body.figma-v4 .figma-plan-copy p{font-size:11px!important;max-width:215px!important}
  body.figma-v4 .figma-progress-story{width:175px!important;margin-top:12px!important;gap:7px!important}
  body.figma-v4 .figma-plan-ready>img{right:-35px!important;bottom:-12px!important;width:175px!important;height:185px!important}
  body.figma-v4 .first-step-card{margin:6px 0 8px!important;padding:12px!important}
  body.figma-v4 .first-step-content h3{font-size:20px!important;line-height:1.1!important;margin:4px 0 5px!important}
  body.figma-v4 .first-step-content>p{font-size:11.5px!important;margin-bottom:7px!important}
  body.figma-v4 .first-step-card .script-box{padding:9px!important}
  body.figma-v4 .bf-scheduler{padding:14px!important}
  body.figma-v4 .bf-scheduler-head h2{font-size:24px!important}
  body.figma-v4 .bf-scheduler .bf-confirmation{margin:6px 0 10px!important}
  body.figma-v4 .result-deep-dive>summary{padding:14px}
}
