/* ============================================================
   HIRE AND SCALE — design tokens
   Ported from the dinaleads.se system (itself derived from the
   Belkins brand guidelines). Same house style: Inter, orange
   accent, warm-grey ground, 24px card radius, generous stacks.

   To make Hire and Scale visually distinct from Dinaleads,
   change --brand / --brand-hover / --brand-press / --tint-1 /
   --tint-2 only. Nothing else in this file needs to move.
   ============================================================ */
:root{
  --brand:#FF5E00;          /* fills, large type, on dark only */
  --brand-hover:#F5803D;
  --brand-press:#F24A0D;    /* small orange TEXT — passes AA on grey */
  --tint-1:#FFF2EB;         /* background only, never text */
  --tint-2:#FCE0D0;

  --ground:#F5F5F5;
  --surface:#FFFFFF;
  --dark:#1F1F1F;
  --dark-2:#292929;
  --dark-3:#3D3D3D;

  --heading:#292929;
  --body:#3D3D3D;
  --muted:#666666;
  --on-dark:#B8B8B8;

  --hairline:#EBEBEB;
  --border:#E0E0E0;
  --link:#4A67D2;

  /* semantic — quiz + status only, never decorative */
  --pass:#1A7F5A;
  --pass-bg:#E8F5EF;
  --warn:#A8650B;
  --warn-bg:#FDF3E4;
  --fail:#C8372A;
  --fail-bg:#FDECEA;

  --r-8:8px; --r-12:12px; --r-16:16px; --r-24:24px; --r-32:32px;

  --sh-1:0 1px 2px 0 #0000000D;
  --sh-16:4px 8px 16px -2px #16171814;
  --sh-32:8px 16px 32px 2px #16171805;
  --sh-lift:0 28px 52px -40px #0000001A;

  --ease:cubic-bezier(0.4, 0, 0.2, 1);
  --dur:150ms;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;background:var(--ground);color:var(--body);
  font-family:Inter,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  font-size:16px;line-height:24px;-webkit-font-smoothing:antialiased;
}
img,svg{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4,p,ul,ol{margin:0}
ul{list-style:none;padding:0}

/* ---------- type scale ---------- */
.display{font-size:72px;line-height:80px;font-weight:700;letter-spacing:-1.44px;color:var(--heading)}
.h2{font-size:48px;line-height:56px;font-weight:700;letter-spacing:-.8px;color:var(--heading)}
.h3{font-size:32px;line-height:40px;font-weight:700;letter-spacing:-.5px;color:var(--heading)}
.card-title-lg{font-size:24px;line-height:32px;font-weight:600;letter-spacing:-.2px;color:var(--heading)}
.card-title{font-size:18px;line-height:26px;font-weight:600;color:var(--heading)}
.eyebrow{font-size:18px;line-height:26px;font-weight:600;text-transform:uppercase;color:var(--brand-press)}
.lede{font-size:18px;line-height:28px;font-weight:400;color:var(--body)}
.body{font-size:16px;line-height:24px;font-weight:400;color:var(--muted)}
.nav{font-size:14px;line-height:20px;font-weight:500}
.micro{font-size:12px;line-height:16px;font-weight:500;letter-spacing:.1px;text-transform:uppercase;color:var(--muted)}
.num{font-variant-numeric:tabular-nums}

/* ---------- layout ---------- */
.container{max-width:1376px;margin:0 auto;padding:0 32px;width:100%}
.container-narrow{max-width:880px;margin:0 auto;padding:0 32px;width:100%}
.section{padding:80px 0}
.stack-80{display:flex;flex-direction:column;gap:80px}
.stack-64{display:flex;flex-direction:column;gap:64px}
.stack-32{display:flex;flex-direction:column;gap:32px}
.stack-24{display:flex;flex-direction:column;gap:24px}
.stack-16{display:flex;flex-direction:column;gap:16px}
.stack-12{display:flex;flex-direction:column;gap:12px}
.stack-8{display:flex;flex-direction:column;gap:8px}
.heading-group{display:flex;flex-direction:column;gap:16px;align-items:center;text-align:center;max-width:820px;margin:0 auto}
.lede-center{text-align:center}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:12px;
  height:56px;padding:16px 28px;border-radius:var(--r-12);border:0;cursor:pointer;
  font-family:inherit;font-size:18px;line-height:26px;font-weight:600;
  background:var(--brand);color:#fff;
  transition:background-color var(--dur) var(--ease);
}
.btn:hover{background:var(--brand-hover)}
.btn:active{background:var(--brand-press)}
.btn:focus-visible{outline:2px solid var(--dark-2);outline-offset:2px}
.btn:disabled{background:var(--border);color:var(--muted);cursor:not-allowed}
.btn-sm{height:40px;padding:8px 16px;border-radius:var(--r-8);font-size:14px;line-height:20px}
.btn-ghost{background:transparent;color:var(--heading);border:1px solid var(--border)}
.btn-ghost:hover{background:var(--surface);border-color:var(--dark-3)}
.btn-ghost:disabled{background:transparent;border-color:var(--hairline)}

/* ---------- header ---------- */
.header{
  position:sticky;top:0;z-index:48;height:72px;background:var(--surface);
  box-shadow:var(--sh-32);
}
.header-inner{height:72px;display:flex;align-items:center;justify-content:space-between;gap:32px}
.logo{display:flex;align-items:center;gap:10px}
.logomark{
  width:28px;height:28px;border-radius:var(--r-8);background:var(--brand);
  flex:0 0 28px;position:relative;overflow:hidden;
}
/* ascending bars — "scale". Three rising strokes inside the tile. */
.logomark::before{
  content:"";position:absolute;left:7px;bottom:7px;width:3px;height:6px;
  background:#fff;border-radius:1px;
  box-shadow:5px 0 0 0 #fff, 10px 0 0 0 #fff;
}
.logomark::after{
  content:"";position:absolute;left:12px;bottom:13px;width:3px;height:4px;
  background:#fff;border-radius:1px;
  box-shadow:5px -4px 0 0 #fff;
}
.wordmark{font-size:20px;line-height:28px;font-weight:700;letter-spacing:-.4px;color:var(--heading)}
.wordmark span{color:var(--brand-press)}
.mainnav{display:flex;align-items:center;gap:28px}
.mainnav a{color:var(--body);transition:color var(--dur) var(--ease)}
.mainnav a:hover{color:var(--brand-press)}
.header-actions{display:flex;align-items:center;gap:12px}
.navtoggle{display:none}

/* ---------- hero ---------- */
.hero{
  background:var(--surface);padding:108px 0 80px;position:relative;overflow:hidden;
  border-bottom:1px solid var(--hairline);
}
.hero-inner{display:flex;flex-direction:column;align-items:center;gap:32px;position:relative;z-index:2}
.hero h1{max-width:900px;text-align:center}
.hero .lede{max-width:614px;text-align:center}
.hero-orb{
  position:absolute;width:120px;height:120px;border-radius:100%;top:56px;left:4%;
  background:radial-gradient(72.33% 86.91% at 26.44% 13.09%, #FCC8AE 12.69%, #FF6221 64.54%, #FE8C5A);
  box-shadow:0 28px 52px -40px #FF62214D;
  animation:levitation 30s ease-in-out infinite;
}
.hero-wash{
  position:absolute;right:-180px;top:-220px;width:640px;height:640px;border-radius:100%;
  background:var(--tint-1);filter:blur(40px);opacity:.8;
}
@keyframes levitation{
  0%,100%{transform:translate3d(0,0,0)}
  50%{transform:translate3d(24px,32px,0)}
}
.trustline{margin-top:8px;text-align:center;color:var(--muted)}

/* ---------- pills ---------- */
.pillgrid{display:flex;flex-wrap:wrap;gap:16px;justify-content:center}
.pill{
  display:inline-flex;align-items:center;gap:10px;background:var(--surface);
  border-radius:var(--r-12);padding:16px 24px;box-shadow:var(--sh-1);
  font-size:16px;line-height:24px;color:var(--heading);
}
.pill svg{width:20px;height:20px;color:var(--brand-press);flex:0 0 20px}

/* ---------- cards ---------- */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.card{
  background:var(--surface);border-radius:var(--r-24);padding:24px;
  display:flex;flex-direction:column;gap:12px;box-shadow:var(--sh-32);
  transition:transform var(--dur) var(--ease),box-shadow var(--dur) var(--ease);
}
.card:hover{transform:translateY(-16px);box-shadow:var(--sh-lift)}
.card-static{background:var(--surface);border-radius:var(--r-24);padding:24px;
  display:flex;flex-direction:column;gap:12px;box-shadow:var(--sh-32)}
.chip{
  width:40px;height:40px;border-radius:var(--r-8);background:var(--tint-1);
  display:flex;align-items:center;justify-content:center;flex:0 0 40px;
}
.chip svg{width:24px;height:24px;color:var(--brand-press)}

/* ---------- role cards ---------- */
.rolecard{
  background:var(--surface);border-radius:var(--r-24);padding:8px;
  box-shadow:var(--sh-32);display:flex;flex-direction:column;
  transition:transform var(--dur) var(--ease),box-shadow var(--dur) var(--ease);
}
.rolecard:hover{transform:translateY(-16px);box-shadow:var(--sh-lift)}
.rolecard-top{
  background:var(--tint-1);border-radius:var(--r-16);padding:24px;
  display:flex;flex-direction:column;gap:8px;
}
.rolecard-metric{font-size:40px;line-height:48px;font-weight:700;letter-spacing:-.8px;color:var(--brand-press)}
.rolecard-body{padding:24px 16px 16px;display:flex;flex-direction:column;gap:12px;flex:1}
.rolecard-facts{display:flex;flex-wrap:wrap;gap:8px}
.fact{
  background:var(--ground);border-radius:100px;padding:6px 14px;
  font-size:14px;line-height:20px;color:var(--body);
}

/* ---------- dark panel ---------- */
.darkpanel{
  background:var(--dark);border-radius:var(--r-24);padding:64px;
  display:flex;align-items:center;justify-content:space-between;gap:64px;
}
.darkpanel .stat{font-size:72px;line-height:80px;font-weight:700;letter-spacing:-1.44px;color:#fff;max-width:760px}
.darkpanel .stat em{font-style:normal;color:var(--brand)}
.darkpanel .body{color:var(--on-dark)}

/* ---------- funnel / stages ---------- */
.funnel{display:grid;grid-template-columns:repeat(5,1fr);gap:16px}
.funnel-step{
  background:var(--surface);border-radius:var(--r-16);padding:24px;
  border-top:3px solid var(--tint-2);display:flex;flex-direction:column;gap:8px;
}
.funnel-step:nth-child(1){border-top-color:#FCE0D0}
.funnel-step:nth-child(2){border-top-color:#FBC9A8}
.funnel-step:nth-child(3){border-top-color:#FB9A5E}
.funnel-step:nth-child(4){border-top-color:#FF7A2E}
.funnel-step:nth-child(5){border-top-color:var(--brand)}
.funnel-step .num{font-size:32px;line-height:40px;font-weight:700;letter-spacing:-.5px;color:var(--heading)}
.paidtag{
  align-self:flex-start;background:var(--tint-1);color:var(--brand-press);
  border-radius:100px;padding:4px 12px;font-size:12px;line-height:16px;
  font-weight:600;text-transform:uppercase;letter-spacing:.1px;
}
.footnote{color:var(--muted);font-size:14px;line-height:20px}

/* ---------- split ---------- */
.split{display:flex;gap:64px;align-items:flex-start}
.split-left{flex:1;position:sticky;top:120px;display:flex;flex-direction:column;gap:32px}
.split-right{flex:1;display:flex;flex-direction:column;gap:24px}

/* ---------- compare rows ---------- */
.compare{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.comparecol{background:var(--surface);border-radius:var(--r-24);padding:32px;box-shadow:var(--sh-32);
  display:flex;flex-direction:column;gap:16px}
.comparecol h3{font-size:14px;line-height:20px;font-weight:600;text-transform:uppercase;
  letter-spacing:.1px;color:var(--muted)}
.checklist{display:flex;flex-direction:column;gap:12px}
.checklist li{display:grid;grid-template-columns:20px 1fr;gap:12px;align-items:start;
  font-size:16px;line-height:24px;color:var(--body)}
.checklist svg{width:20px;height:20px;margin-top:2px}
.yes svg{color:var(--brand-press)}
.no svg{color:#C7C7C7}

/* ---------- callout ---------- */
.callout{background:var(--tint-1);border-radius:var(--r-16);padding:24px}
.callout p{font-size:16px;line-height:26px;color:var(--dark-3)}
.callout strong{color:var(--heading);font-weight:600}

/* ============================================================
   QUIZ FUNNEL
   ============================================================ */
.quizshell{padding:48px 0 80px}
.quizcard{
  background:var(--surface);border-radius:var(--r-24);box-shadow:var(--sh-32);
  padding:40px;display:flex;flex-direction:column;gap:32px;
}
.progress{display:flex;flex-direction:column;gap:12px}
.progress-meta{display:flex;justify-content:space-between;align-items:baseline;gap:16px}
.progress-track{height:6px;border-radius:100px;background:var(--hairline);overflow:hidden}
.progress-fill{height:100%;background:var(--brand);border-radius:100px;
  transition:width 300ms var(--ease);width:0}

.qstep[hidden]{display:none}
.qstep{display:flex;flex-direction:column;gap:24px;animation:qfade 260ms var(--ease) both}
@keyframes qfade{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}

.qhead{display:flex;flex-direction:column;gap:8px}
.qhead h2{font-size:28px;line-height:36px;font-weight:700;letter-spacing:-.5px;color:var(--heading)}
.qhead p{font-size:16px;line-height:26px;color:var(--muted)}

.options{display:flex;flex-direction:column;gap:12px}
.option{
  display:flex;align-items:flex-start;gap:14px;background:var(--surface);
  border:1px solid var(--border);border-radius:var(--r-12);padding:18px 20px;
  cursor:pointer;transition:border-color var(--dur) var(--ease),background-color var(--dur) var(--ease);
}
.option:hover{border-color:var(--brand-hover);background:var(--tint-1)}
.option input{
  appearance:none;-webkit-appearance:none;margin:2px 0 0;width:20px;height:20px;flex:0 0 20px;
  border:2px solid var(--border);border-radius:50%;background:var(--surface);cursor:pointer;
  transition:border-color var(--dur) var(--ease),box-shadow var(--dur) var(--ease);
}
.option input[type="checkbox"]{border-radius:6px}
.option input:checked{border-color:var(--brand);box-shadow:inset 0 0 0 4px var(--brand)}
.option input[type="checkbox"]:checked{box-shadow:inset 0 0 0 3px var(--surface),inset 0 0 0 20px var(--brand)}
.option input:focus-visible{outline:2px solid var(--dark-2);outline-offset:2px}
.option:has(input:checked){border-color:var(--brand);background:var(--tint-1)}
.option-text{display:flex;flex-direction:column;gap:2px}
.option-text b{font-weight:600;color:var(--heading);font-size:16px;line-height:24px}
.option-text span{font-size:14px;line-height:20px;color:var(--muted)}

.field{display:flex;flex-direction:column;gap:8px}
.field label{font-size:14px;line-height:20px;font-weight:600;color:var(--heading)}
.field .hint{font-size:14px;line-height:20px;color:var(--muted)}
.input,.textarea{
  font-family:inherit;font-size:16px;line-height:24px;color:var(--body);
  background:var(--surface);border:1px solid var(--border);border-radius:var(--r-12);
  padding:14px 16px;width:100%;transition:border-color var(--dur) var(--ease);
}
.textarea{min-height:140px;resize:vertical}
.input:focus,.textarea:focus{outline:0;border-color:var(--brand)}
.counter{font-size:12px;line-height:16px;color:var(--muted);text-align:right;font-variant-numeric:tabular-nums}
.counter.short{color:var(--fail)}

.qnav{display:flex;justify-content:space-between;gap:16px;align-items:center;
  border-top:1px solid var(--hairline);padding-top:24px}

/* result */
.scoreband{
  border-radius:var(--r-16);padding:24px;display:flex;align-items:center;gap:24px;
}
.scoreband.pass{background:var(--pass-bg)}
.scoreband.warn{background:var(--warn-bg)}
.scoreband.fail{background:var(--fail-bg)}
.scoreband .big{font-size:56px;line-height:60px;font-weight:700;letter-spacing:-1px;font-variant-numeric:tabular-nums}
.scoreband.pass .big{color:var(--pass)}
.scoreband.warn .big{color:var(--warn)}
.scoreband.fail .big{color:var(--fail)}
.scoreband .msg{display:flex;flex-direction:column;gap:4px}
.scoreband .msg b{font-size:18px;line-height:26px;color:var(--heading)}
.scoreband .msg span{font-size:15px;line-height:23px;color:var(--dark-3)}

.breakdown{display:flex;flex-direction:column;gap:0;border:1px solid var(--hairline);
  border-radius:var(--r-12);overflow:hidden}
.breakdown-row{display:grid;grid-template-columns:1fr auto 72px;gap:16px;align-items:center;
  padding:14px 18px;border-bottom:1px solid var(--hairline);background:var(--surface)}
.breakdown-row:last-child{border-bottom:0}
.breakdown-row .label{font-size:15px;line-height:22px;color:var(--body)}
.breakdown-row .bar{width:120px;height:6px;border-radius:100px;background:var(--hairline);overflow:hidden}
.breakdown-row .bar i{display:block;height:100%;background:var(--brand);border-radius:100px}
.breakdown-row .pts{font-size:14px;line-height:20px;font-weight:600;color:var(--heading);
  text-align:right;font-variant-numeric:tabular-nums}

/* ---------- footer ---------- */
.footer{background:var(--surface);padding:64px 0;border-top:1px solid var(--hairline)}
.footer-top{display:flex;gap:128px}
.footer-brand{flex:0 0 auto;display:flex;flex-direction:column;gap:16px;max-width:320px}
.footer-cols{flex:1;display:grid;grid-template-columns:repeat(3,1fr);gap:32px}
.footer h4{font-size:14px;line-height:20px;font-weight:600;color:var(--heading);margin-bottom:16px}
.footer li{margin-bottom:12px}
.footer li a{font-size:16px;line-height:24px;color:var(--muted);transition:color var(--dur) var(--ease)}
.footer li a:hover{color:var(--brand-press)}
.footer-legal{
  border-top:1px solid var(--hairline);padding-top:24px;margin-top:48px;
  display:flex;justify-content:space-between;gap:24px;flex-wrap:wrap;
}
.footer-legal a,.footer-legal p{font-size:14px;line-height:20px;color:var(--muted)}
.footer-legal ul{display:flex;gap:24px;flex-wrap:wrap}
.footer-legal a:hover{color:var(--brand-press)}

/* ---------- mobile nav ---------- */
.navtoggle{align-items:center;justify-content:center;width:40px;height:40px;padding:0;
  border:1px solid var(--border);border-radius:var(--r-8);background:var(--surface);color:var(--heading);cursor:pointer}
.navtoggle svg{width:20px;height:20px}
.navtoggle[aria-expanded="true"]{background:var(--ground);border-color:var(--dark-3)}
.mobilemenu{display:none;flex-direction:column;background:var(--surface);
  border-top:1px solid var(--hairline);box-shadow:var(--sh-32);padding:8px 16px 16px}
.mobilemenu a{padding:14px 0;border-bottom:1px solid var(--hairline);color:var(--body);font-size:16px;line-height:24px}
.mobilemenu a:last-child{border-bottom:0}
@media (max-width:1247px){ .mobilemenu:not([hidden]){display:flex} }
@media (min-width:1248px){ .mobilemenu{display:none !important} }

/* ============================================================
   BREAKPOINTS — desktop-first: laptop ≤1439 · tablet ≤1247 · mobile ≤991
   ============================================================ */
@media (max-width:1439px){
  .container{max-width:1200px}
  .display{font-size:60px;line-height:64px;letter-spacing:-1.2px}
}
@media (max-width:1247px){
  .section{padding:64px 0}
  .stack-80{gap:48px}
  .stack-64{gap:48px}
  .display{font-size:48px;line-height:56px;letter-spacing:-.96px}
  .h2{font-size:36px;line-height:44px;letter-spacing:-.6px}
  .grid-3{grid-template-columns:repeat(2,1fr)}
  .split{flex-direction:column;gap:48px}
  .split-left{position:static}
  .funnel{grid-template-columns:repeat(2,1fr)}
  .darkpanel{flex-direction:column;align-items:flex-start;gap:32px;padding:48px}
  .darkpanel .stat{font-size:48px;line-height:56px;letter-spacing:-.8px}
  .footer-top{flex-direction:column;gap:48px}
  .mainnav{display:none}
  .navtoggle{display:inline-flex}
  .hero-orb,.hero-wash{display:none}
}
@media (max-width:991px){
  .container,.container-narrow{padding:0 16px}
  .section{padding:48px 0}
  .hero{padding:64px 0 48px}
  .stack-80,.stack-64{gap:32px}
  .display{font-size:36px;line-height:44px;letter-spacing:-.72px}
  .h2{font-size:28px;line-height:36px;letter-spacing:-.5px}
  .h3{font-size:24px;line-height:32px}
  .heading-group{align-items:flex-start;text-align:left}
  .lede-center{text-align:left}
  .hero h1,.hero .lede,.trustline{text-align:left}
  .hero-inner{align-items:flex-start}
  .grid-3,.grid-2,.funnel,.compare,.footer-cols{grid-template-columns:1fr}
  .pillgrid{justify-content:flex-start}
  .btn{width:100%}
  .btn-sm{width:auto}
  .darkpanel{padding:32px;border-radius:var(--r-16)}
  .darkpanel .stat{font-size:32px;line-height:40px}
  .quizcard{padding:24px;border-radius:var(--r-16)}
  .qhead h2{font-size:22px;line-height:30px}
  .scoreband{flex-direction:column;align-items:flex-start;gap:12px}
  .breakdown-row{grid-template-columns:1fr 56px}
  .breakdown-row .bar{display:none}
  .qnav .btn{width:auto;flex:1}
}

@media (prefers-reduced-motion:reduce){
  *{animation:none !important;transition:none !important}
  html{scroll-behavior:auto}
}

/* ============================================================
   VIDEO RECORDER  (assets/recorder.js)
   ============================================================ */
.rec{display:flex;flex-direction:column;gap:20px}
.rec-head{display:flex;flex-direction:column;gap:6px}
.rec-kicker{font-size:12px;line-height:16px;font-weight:600;text-transform:uppercase;
  letter-spacing:.1px;color:var(--brand-press);margin:0}
.rec-prompt{font-size:20px;line-height:28px;font-weight:600;letter-spacing:-.2px;color:var(--heading);margin:0}

.rec-stage{position:relative;border-radius:var(--r-16);overflow:hidden;background:var(--dark);
  aspect-ratio:16/9;display:flex;align-items:center;justify-content:center}
.rec-stage video{width:100%;height:100%;object-fit:cover;display:block;background:var(--dark)}
.rec-stage-idle{flex-direction:column;gap:16px;padding:32px;background:var(--tint-1);aspect-ratio:auto;min-height:200px}
.rec-bigicon{width:48px;height:48px;color:var(--brand-press);flex:0 0 48px}
.rec-explain{font-size:15px;line-height:23px;color:var(--dark-3);text-align:center;max-width:44ch;margin:0}

.rec-dot{position:absolute;top:16px;left:16px;width:12px;height:12px;border-radius:50%;
  background:#FF3B30;box-shadow:0 0 0 4px #FF3B3033;animation:recpulse 1.4s ease-in-out infinite}
@keyframes recpulse{0%,100%{opacity:1}50%{opacity:.35}}
.rec-clock{position:absolute;top:12px;right:12px;background:#000000A6;color:#fff;
  border-radius:100px;padding:6px 14px;font-size:14px;line-height:20px;font-weight:600;
  font-variant-numeric:tabular-nums;letter-spacing:.02em}
.rec-clock.low{background:#FF3B30;animation:recpulse 1s ease-in-out infinite}

.rec-actions{display:flex;gap:12px;flex-wrap:wrap}
.rec-actions .btn{flex:0 0 auto}
.rec-note{font-size:13px;line-height:19px;color:var(--muted);margin:0}

.rec-fallback{background:var(--tint-1);border-radius:var(--r-12);padding:20px;
  display:flex;flex-direction:column;gap:12px}
.rec-fallback-warn{background:var(--warn-bg)}
.rec-fallback p{font-size:15px;line-height:23px;color:var(--dark-3);margin:0;max-width:56ch}

.rec-upload{display:flex;flex-direction:column;gap:10px;padding:8px 0}
.rec-done{display:flex;align-items:center;gap:16px;background:var(--pass-bg);
  border-radius:var(--r-12);padding:20px}
.rec-done svg{width:28px;height:28px;color:var(--pass);flex:0 0 28px}
.rec-done div{display:flex;flex-direction:column;gap:2px}
.rec-done b{font-size:16px;line-height:24px;color:var(--heading)}
.rec-done span{font-size:14px;line-height:21px;color:var(--dark-3)}

@media (max-width:991px){
  .rec-prompt{font-size:17px;line-height:25px}
  .rec-actions{flex-direction:column}
  .rec-actions .btn{width:100%}
}
