/* ============================================================================
   Version B — "bouncing ball" wizard. Loads AFTER main.css and reuses its
   design tokens (var(--navy) etc.). One screen, one question, one obvious tap.
   ========================================================================== */

.bb-body{min-height:100vh;display:flex;flex-direction:column;background:var(--bg)}

/* slim header — logo only, no nav (no side-doors) */
.bb-header{border-bottom:1px solid var(--line)}
.bb-header .wrap{display:flex;align-items:center;min-height:70px}

/* main canvas */
.bb-main{flex:1;display:flex;flex-direction:column;padding:clamp(28px,5vw,56px) var(--pad)}
.bb-main.is-center{justify-content:center;align-items:center}
.bb-card{width:100%;max-width:600px;margin:0 auto}

/* progress bar (segments) */
.bb-progress{display:flex;gap:8px;justify-content:center;margin-bottom:30px}
.bb-progress i{width:38px;height:5px;border-radius:3px;background:var(--line);transition:background .3s}
.bb-progress i.on{background:var(--navy)}

/* question */
.bb-q{font-size:clamp(1.7rem,4.6vw,2.5rem);font-weight:800;text-align:center;letter-spacing:-.022em;line-height:1.12;margin-bottom:12px}
.bb-sub{text-align:center;color:var(--ink-muted);font-size:1.12rem;margin-bottom:32px}

/* big tappable options — each is its own submit button (works with no JS) */
.bb-options{display:flex;flex-direction:column;gap:12px}
.bb-option{display:flex;align-items:center;justify-content:space-between;gap:14px;width:100%;text-align:left;
  font-family:var(--ff);font-size:1.16rem;font-weight:700;color:var(--navy);
  background:#fff;border:2px solid var(--line);border-radius:12px;padding:20px 22px;cursor:pointer;
  transition:border-color .15s,background .15s,color .15s,transform .12s,box-shadow .15s}
.bb-option small{display:block;font-weight:500;font-size:.9rem;color:var(--ink-muted);margin-top:3px;transition:color .15s}
.bb-option .ar{font-size:1.4rem;color:inherit;flex:none;transition:transform .2s}
.bb-option:hover,.bb-option:focus-visible{border-color:var(--navy);background:var(--navy);color:#fff;outline:none;box-shadow:var(--shadow-lift)}
.bb-option:hover small,.bb-option:focus-visible small{color:rgba(255,255,255,.82)}
.bb-option:hover .ar{transform:translateX(6px)}
.bb-option:active{transform:scale(.99)}

/* single inputs */
.bb-field{margin-bottom:8px}
.bb-field label{display:block;font-weight:700;margin-bottom:10px;font-size:1.05rem;text-align:center}
.bb-input{width:100%;font-family:var(--ff);font-size:1.35rem;font-weight:600;text-align:center;color:var(--ink);
  padding:17px 16px;border:2px solid #6a737b;border-radius:12px;background:#fff}
.bb-input::placeholder{color:#9aa1a7;font-weight:400}
.bb-input:focus{outline:none;border-color:var(--navy);box-shadow:0 0 0 4px var(--navy-tint)}
.bb-input.is-error{border-color:var(--red);box-shadow:0 0 0 4px rgba(215,21,58,.12)}
.bb-err{display:block;text-align:center;color:#b00f2e;font-weight:600;font-size:.95rem;margin-top:10px}

.bb-actions{display:flex;flex-direction:column;align-items:center;gap:16px;margin-top:26px}
.bb-actions .btn{min-width:260px;justify-content:center}
.bb-back{display:inline-flex;align-items:center;gap:6px;color:var(--ink-muted);font-weight:600;text-decoration:none;font-size:.96rem}
.bb-back:hover{color:var(--navy);text-decoration:underline;text-underline-offset:3px}

/* landing */
.bb-hero{text-align:center;max-width:680px;margin:clamp(20px,5vw,60px) auto 0}
.bb-hero .kicker{justify-content:center}
.bb-hero h1{font-size:clamp(2.3rem,6vw,3.6rem);letter-spacing:-.025em;line-height:1.08;margin-bottom:18px}
.bb-hero h1 .accent{color:var(--navy)}
.bb-hero .lead{font-size:clamp(1.15rem,2.4vw,1.4rem);color:var(--ink-muted);max-width:560px;margin:0 auto 32px}
.bb-hero .reassure{justify-content:center}
.bb-steps3{display:flex;gap:18px;justify-content:center;flex-wrap:wrap;max-width:760px;margin:54px auto 0}
.bb-steps3 .s{flex:1;min-width:200px;text-align:center}
.bb-steps3 .n{width:44px;height:44px;border-radius:50%;background:var(--navy-tint);color:var(--navy);display:grid;place-items:center;font-weight:800;margin:0 auto 12px;font-size:1.1rem}
.bb-steps3 h3{font-size:1.1rem;color:var(--navy);margin-bottom:5px}
.bb-steps3 p{color:var(--ink-muted);font-size:.96rem}

/* result */
.bb-result{max-width:620px;margin:0 auto}
.bb-result .big-tick{width:64px;height:64px;border-radius:50%;background:#eaf6ee;display:grid;place-items:center;margin:0 auto 18px}
.bb-result .big-tick svg{width:34px;height:34px;color:var(--green)}
.bb-result h1{text-align:center;font-size:clamp(1.8rem,4.5vw,2.4rem);margin-bottom:10px}
.bb-result .who{text-align:center;color:var(--ink-muted);font-size:1.1rem;margin-bottom:28px}
.bb-rcard{background:#fff;border:1px solid var(--line);border-radius:14px;box-shadow:var(--shadow);padding:26px;margin-bottom:16px}
.bb-rcard h2{font-size:1.05rem;color:var(--blue);text-transform:uppercase;letter-spacing:.06em;margin-bottom:10px}
.bb-rcard p{color:var(--ink);font-size:1.12rem;font-weight:600}
.bb-rcard .tag-row{margin-top:10px}

/* slim footer */
.bb-footer{background:var(--navy);color:rgba(255,255,255,.7);font-size:.84rem;line-height:1.6;padding:22px 0}
.bb-footer a{color:rgba(255,255,255,.82)}
.bb-footer .wrap{display:flex;flex-direction:column;gap:8px}
.bb-footer .links{display:flex;gap:18px;flex-wrap:wrap}

@media (max-width:600px){
  .bb-actions .btn{width:100%;min-width:0}
  .bb-steps3{gap:26px}
}
