/* ============================================================
   Which Button Assessment — quiz styles
   All classes are prefixed `wb-` for site-wide isolation.
   Tokens (--paper, --clay, etc.) are scoped to :root and not prefixed.
   ============================================================ */

/* =========================================================
     DESIGN TOKENS
     Warm editorial palette — natural paper, deep teal, burnt clay
     Evokes dog training in a rural/natural context, not corporate tech
     ========================================================= */
  :root {
    --paper: #F9F4EA;
    --paper-deep: #EFE8D7;
    --ink: #1F2421;
    --ink-soft: #3D4540;
    --muted: #7A7268;
    --rule: #D8CDB8;
    --teal: #2C5F5D;
    --teal-deep: #1F4543;
    --clay: #C4623A;
    --clay-deep: #A14F2C;
    --cream: #FAF7F0;
    --sage: #8FA48A;

    --font-display: 'Fraunces', 'Times New Roman', serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;

    --max-width: 640px;
    --radius: 4px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html, body { height: 100%; }

  body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  /* Paper grain removed in v9 — clean flat cream background */

  .wb-stage {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding: 32px 24px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* =========================================================
     TOP HEADER
     Shown on quiz/email/result screens only (hidden on landing).
     A small, styled version of the product title — reinforces
     brand through the whole quiz flow.
     ========================================================= */
  .wb-top-header {
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 40px;
  }

  .wb-top-header.wb-hidden { display: none; }

  .wb-top-header-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--ink);
  }

  .wb-top-header-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--clay);
  }

  .wb-brand-progress {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 17px;
    letter-spacing: 0;
    color: var(--ink-soft);
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* =========================================================
     LANDING PAGE ELEMENTS
     ========================================================= */

  /* Hero image at top of landing — full content width, photo of Rhonda + pack */
  .wb-landing-hero {
    width: 100%;
    margin-bottom: 28px;
    border-radius: var(--radius);
    overflow: hidden;
  }

  .wb-landing-hero img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* Larger eyebrow for landing — the replacement for the top brand mark */
  .wb-eyebrow-large {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 22px;
    color: var(--clay);
    margin-bottom: 18px;
    letter-spacing: 0.005em;
  }

  /* Eyebrow placed at very top of landing — reduced bottom margin to pull art up */
  .wb-eyebrow-top {
    margin-bottom: 16px;
  }

  /* Tightened landing art spacing — 50% closer to H1 for v4 */
  #screen-landing .wb-landing-art {
    margin-bottom: 10px;
    height: 80px;
  }

  /* "Who this is for" block — surfaces the audience-split insight */
  .wb-who-box {
    margin: 36px 0 36px;
    padding: 24px 26px 22px 24px;
    background: var(--cream);
    border-left: 3px solid var(--teal);
    border-radius: 0 var(--radius) var(--radius) 0;
  }

  .wb-who-label {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 25.5px;
    color: var(--teal);
    margin-bottom: 14px;
    letter-spacing: 0.005em;
  }

  .wb-who-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .wb-who-list li {
    font-family: var(--font-body);
    font-size: 15.5px;
    line-height: 1.5;
    color: var(--ink-soft);
    padding-left: 22px;
    position: relative;
  }

  .wb-who-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 2px;
    background: var(--clay);
    opacity: 0.7;
  }

  .wb-who-list li strong {
    color: var(--ink);
    font-weight: 600;
  }

  .wb-who-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 15.5px;
    line-height: 1.5;
    color: var(--ink);
    margin: 14px 0 10px 0;
    padding-top: 14px;
    border-top: 1px solid var(--rule);
  }

  /* Value promise below the bullet list. v16: italic summary line removed,
     so this paragraph now needs its own breathing room and a top divider. */
  .wb-who-payoff {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 14px 0 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--rule);
  }

  .wb-who-payoff strong {
    color: var(--ink);
    font-weight: 600;
  }

  /* Trust row — Rhonda photo + credentials + expandable bio */
  .wb-trust-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin: 0 0 32px;
    padding: 22px 24px;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    background: rgba(255, 252, 245, 0.5);
  }

  .wb-trust-photo {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--rule);
    background: var(--paper-deep);
  }

  .wb-trust-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .wb-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--paper-deep);
  }

  .wb-photo-placeholder svg {
    width: 70%;
    height: 70%;
  }

  .wb-trust-text {
    flex: 1;
    min-width: 0;
  }

  .wb-trust-name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 18px;
    color: var(--ink);
    margin-bottom: 2px;
    letter-spacing: -0.01em;
  }

  .wb-trust-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 15px;
    color: var(--clay);
    margin-bottom: 12px;
  }

  .wb-trust-credentials {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .wb-trust-credentials li {
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.45;
    color: var(--ink-soft);
    padding-left: 20px;
    position: relative;
  }

  .wb-trust-credentials li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--teal);
    font-weight: 700;
    font-size: 13px;
  }

  .wb-trust-expand {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--rule);
  }

  .wb-trust-expand p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 10px;
  }

  .wb-trust-expand p:last-child {
    margin-bottom: 0;
  }

  .wb-trust-expand p em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--clay);
  }

  .wb-trust-toggle {
    background: none;
    border: none;
    padding: 10px 0 2px 0;
    margin-top: 8px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
  }

  .wb-trust-toggle:hover {
    color: var(--teal-deep);
  }

  .wb-trust-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--teal);
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
    color: var(--teal);
    transition: all 0.25s ease;
  }

  .wb-trust-toggle:hover .wb-trust-toggle-icon {
    background: var(--teal);
    color: var(--cream);
  }

  /* =========================================================
     TRUST BLOCK — BOTTOM OF LANDING (v5)
     Circular photo + bio side-by-side. Reinforces trust after
     the primary ask has been made.
     ========================================================= */
  .wb-trust-block {
    margin-top: 56px;
    padding-top: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 28px;
  }

  /* Circular photo — 175px (75% larger than v5's 100px).
     Lighter scale so we see more of Rhonda + both dogs. */
  .wb-trust-photo-circle {
    flex-shrink: 0;
    width: 175px;
    height: 175px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--paper-deep);
    border: 3px solid var(--cream);
    box-shadow: 0 6px 18px -8px rgba(31, 36, 33, 0.2);
  }

  .wb-trust-photo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Source photo is roughly square. Gentler zoom than v5 (1.2x vs 1.5x)
       so we see more of the full composition: Rhonda + both dogs. */
    transform: scale(1.2);
    transform-origin: center 35%;
    display: block;
  }

  .wb-trust-block-body {
    flex: 1;
    min-width: 0;
  }

  .wb-trust-block-body .wb-trust-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 27px;
    color: var(--clay);
    margin-bottom: 10px;
    letter-spacing: 0.005em;
  }

  .wb-trust-heading {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(26px, 4.5vw, 32px);
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 16px;
  }

  .wb-trust-heading em {
    font-style: italic;
    font-weight: 400;
    color: var(--teal);
  }

  /* .wb-trust-block scoped credential list */
  .wb-trust-block .wb-trust-credentials {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .wb-trust-block .wb-trust-credentials li {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.5;
    color: var(--ink-soft);
    padding-left: 24px;
    position: relative;
  }

  .wb-trust-block .wb-trust-credentials li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--teal);
    font-weight: 700;
    font-size: 15px;
  }

  .wb-trust-block .wb-trust-expand {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--rule);
  }

  .wb-trust-block .wb-trust-expand p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 12px;
  }

  .wb-trust-block .wb-trust-expand p:last-child { margin-bottom: 0; }

  .wb-trust-block .wb-trust-expand p em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--clay);
  }

  /* Larger CTA for landing */
  .wb-btn-large {
    padding: 20px 40px;
    font-size: 17px;
  }

  /* Microcopy below CTA — objection reversal */
  .wb-cta-microcopy {
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--muted);
    margin-top: 20px;
    margin-bottom: 0;
    max-width: 440px;
  }

  .wb-cta-microcopy em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--clay);
  }

  /* =========================================================
     DOG NAME SCREEN
     ========================================================= */
  .wb-name-form {
    display: flex;
    flex-direction: column;
    max-width: 440px;
  }

  /* v16: sex selection — paired with name on the same screen */
  .wb-sex-question {
    margin-top: 24px;
  }

  .wb-sex-options {
    display: flex;
    gap: 12px;
  }

  .wb-sex-option {
    flex: 1;
    background: var(--cream);
    border: 1.5px solid var(--rule);
    border-radius: var(--radius);
    padding: 16px 20px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--ink);
    text-align: center;
    transition: all 0.18s ease;
  }

  .wb-sex-option:hover {
    border-color: var(--clay);
    color: var(--clay-deep);
  }

  .wb-sex-option.wb-selected {
    background: rgba(196, 98, 58, 0.08);
    border-color: var(--clay);
    color: var(--clay-deep);
    font-weight: 600;
  }

  .wb-sex-option-label {
    display: block;
  }

  /* =========================================================
     SCREEN CONTAINER — one per step
     ========================================================= */
  .wb-screen {
    width: 100%;
    max-width: var(--max-width);
    display: none;
    animation: slideIn 0.5s cubic-bezier(0.2, 0.9, 0.3, 1) both;
  }

  .wb-screen.wb-active { display: block; }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* =========================================================
     TYPOGRAPHY
     ========================================================= */
  .wb-eyebrow {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    color: var(--clay);
    margin-bottom: 16px;
    letter-spacing: 0.01em;
  }

  /* Name screen eyebrow — 50% larger than default .wb-eyebrow */
  #screen-name .wb-eyebrow {
    font-size: 24px;
    margin-bottom: 20px;
  }

  h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(36px, 7vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 24px;
  }

  h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--teal);
  }

  /* On the landing, "your dog" is clay orange — it's the personal/warm
     element and ties visually to the dog-name treatment on quiz pages */
  #screen-landing h1 em {
    color: var(--clay);
  }

  h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(26px, 5vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 20px;
  }

  h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--teal);
  }

  /* On the name screen, "dog's name" is clay — same personal/warm
     treatment as "your dog" in the landing H1 and the dog's name
     in question text. Consistent visual language. */
  .wb-name-heading em {
    color: var(--clay);
  }

  .wb-lede {
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 32px;
  }

  .wb-lede em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--clay);
  }

  p { margin-bottom: 16px; color: var(--ink-soft); }

  .wb-meta {
    font-size: 14px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
  }

  .wb-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--muted);
  }

  /* =========================================================
     LANDING SCREEN
     ========================================================= */
  .wb-landing-art {
    margin-bottom: 40px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
  }

  .wb-landing-art svg {
    height: 100%;
  }

  /* =========================================================
     BUTTONS
     ========================================================= */
  .wb-btn {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 16px 32px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .wb-btn-primary {
    background: var(--clay);
    color: var(--cream);
    box-shadow: 0 2px 0 var(--clay-deep);
  }

  .wb-btn-primary:hover {
    background: var(--clay-deep);
    box-shadow: 0 4px 0 #8A4025;
    transform: translateY(-1px);
  }

  .wb-btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 #8A4025;
  }

  .wb-btn-primary .wb-arrow {
    transition: transform 0.25s ease;
  }

  .wb-btn-primary:hover .wb-arrow {
    transform: translateX(4px);
  }

  .wb-btn-ghost {
    background: transparent;
    color: var(--muted);
    padding: 8px 0;
    font-size: 14px;
    letter-spacing: 0.02em;
  }

  .wb-btn-ghost:hover {
    color: var(--ink);
  }

  /* =========================================================
     QUESTION SCREEN
     ========================================================= */
  .wb-question-number {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 48px;
    color: var(--clay);
    line-height: 1;
    margin-bottom: 12px;
    opacity: 0.85;
  }

  .wb-question-text {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(24px, 4.5vw, 30px);
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 32px;
  }

  /* Dog's name inside question text — clay orange italic to mirror the
     landing H1 treatment. Same visual language: "personal" = clay. */
  .wb-q-name {
    font-style: italic;
    font-weight: 500;
    color: var(--clay);
  }

  .wb-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
  }

  .wb-option {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--ink);
    background: var(--cream);
    border: 1.5px solid var(--rule);
    border-radius: var(--radius);
    padding: 18px 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .wb-option:hover {
    border-color: var(--teal);
    background: #FFFCF5;
    transform: translateX(2px);
  }

  .wb-option.wb-selected {
    border-color: var(--teal);
    background: var(--teal);
    color: var(--cream);
    transform: translateX(2px);
  }

  .wb-option-marker {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--clay);
    min-width: 18px;
    font-size: 15px;
    padding-top: 1px;
  }

  .wb-option.wb-selected .wb-option-marker {
    color: var(--cream);
    opacity: 0.7;
  }

  .wb-back-btn {
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 8px 0;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
  }

  .wb-back-btn:hover { color: var(--ink); }

  .wb-back-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  /* Progress bar — thicker with warm orange-family gradient.
     Static gradient, smooth width transition on advance. No shimmer
     animation — that was visually noisy while answering questions. */
  .wb-progress-wrap {
    width: 100%;
    max-width: var(--max-width);
    height: 8px;
    background: var(--paper-deep);
    margin-bottom: 48px;
    overflow: hidden;
    border-radius: 999px;
    position: relative;
  }

  .wb-progress-fill {
    height: 100%;
    background: linear-gradient(
      90deg,
      #E8A66B 0%,
      #D97A4B 40%,
      #C4623A 70%,
      #A14F2C 100%
    );
    transition: width 0.6s cubic-bezier(0.2, 0.9, 0.3, 1);
    width: 0%;
    border-radius: 999px;
  }

  /* =========================================================
     EMAIL CAPTURE SCREEN
     ========================================================= */
  .wb-email-card {
    background: var(--cream);
    border: 1.5px solid var(--rule);
    border-radius: var(--radius);
    padding: 40px 32px;
    margin-bottom: 24px;
    position: relative;
  }

  .wb-email-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--clay);
  }

  .wb-email-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
  }

  .wb-email-input {
    font-family: var(--font-body);
    font-size: 17px;
    padding: 16px 18px;
    border: 1.5px solid var(--rule);
    background: var(--paper);
    color: var(--ink);
    border-radius: var(--radius);
    width: 100%;
    transition: border-color 0.2s ease;
  }

  .wb-email-input:focus {
    outline: none;
    border-color: var(--teal);
  }

  .wb-email-input.wb-error {
    border-color: var(--clay);
  }

  .wb-email-error {
    color: var(--clay);
    font-size: 13px;
    margin-top: -8px;
    display: none;
  }

  .wb-email-error.wb-show { display: block; }

  .wb-consent {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin-top: 4px;
  }

  /* =========================================================
     RESULT SCREEN
     ========================================================= */
  .wb-result-eyebrow {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 19px;
    color: var(--clay);
    margin-bottom: 8px;
  }

  /* Celebration pill at the top of the result screen — replaces the
     functional "Your result" header text with a small accomplishment
     marker. Sets the tone that the user just finished something. */
  .wb-result-celebration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 10px;
    margin-bottom: 28px;
    background: rgba(44, 95, 93, 0.08);
    border: 1px solid rgba(44, 95, 93, 0.2);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--teal-deep);
  }

  .wb-result-celebration-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--cream);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
  }

  .wb-result-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(38px, 8vw, 64px);
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 8px;
  }

  .wb-result-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--teal);
  }

  .wb-result-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: 20px;
    color: var(--ink-soft);
    margin-bottom: 32px;
    line-height: 1.4;
  }

  .wb-result-divider {
    width: 48px;
    height: 2px;
    background: var(--clay);
    margin: 32px 0;
    border: none;
  }

  .wb-result-teaser {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 32px;
  }

  .wb-result-teaser strong {
    color: var(--ink);
    font-weight: 600;
  }

  /* =========================================================
     REPORT BLOCK — INLINE EMAIL CAPTURE ON RESULT PAGE (v9)
     Sits below the teaser. Frames the full report as the next
     step. After submission, swaps to confirmation state.
     ========================================================= */
  .wb-report-block {
    margin-top: 40px;
    padding: 36px 36px 32px;
    background: var(--cream);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
  }

  /* Warm clay accent stripe on the left edge — visual cue this is "next step" */
  .wb-report-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--clay);
  }

  .wb-report-eyebrow {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 24px;
    color: var(--clay);
    margin-bottom: 8px;
    letter-spacing: 0.005em;
  }

  .wb-report-heading {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(26px, 4.5vw, 34px);
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 18px;
  }

  .wb-report-heading em {
    font-style: italic;
    font-weight: 400;
    color: var(--teal);
  }

  .wb-report-intro {
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 20px;
  }

  .wb-report-intro strong {
    color: var(--ink);
    font-weight: 600;
  }

  /* What's-in-it list — concrete value enumeration */
  .wb-report-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .wb-report-list li {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-soft);
    padding-left: 26px;
    position: relative;
  }

  .wb-report-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 12px;
    height: 2px;
    background: var(--clay);
    opacity: 0.7;
  }

  .wb-report-list li strong {
    color: var(--ink);
    font-weight: 600;
  }

  /* Email form inside the report block */
  .wb-report-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  /* CONFIRMATION STATE (shown after email submitted) */
  .wb-report-confirm {
    text-align: left;
  }

  .wb-report-confirm-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--cream);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1;
  }

  /* =========================================================
     RESULT-PAGE BIO WRAPPER (v13, line removed v14)
     The trust-block (Rhonda photo + credentials + expandable
     bio) is duplicated from the landing onto the result page.
     This wrapper provides spacing between the email-capture
     block above and the bio below.
     ========================================================= */
  .wb-result-trust-wrap {
    margin-top: 48px;
    padding-top: 0;
  }

  /* The trust-block has its own margin-top of 56px set for the landing
     context; reset it here so the wrapper's padding-top controls spacing. */
  .wb-result-trust-wrap .wb-trust-block {
    margin-top: 0;
  }

  /* =========================================================
     UTILITIES
     ========================================================= */
  .wb-visually-hidden {
    position: absolute;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  /* Inline emphasis: 20% larger + bold. Inherits italic + color from
     parent <em> styling (e.g. clay inside .wb-cta-microcopy em, teal
     inside .wb-lede em). Use on phrases that need to land hard:
     "5 ways", "your dog", etc. */
  .wb-pop {
    font-size: 1.2em;
    font-weight: 700;
  }

  /* =========================================================
     LANDING-ONLY FOOTER
     Lives inside #screen-landing so screen-switching hides it
     once the user starts the quiz. Compliance + trust links.
     ========================================================= */
  .wb-quiz-footer {
    margin-top: 64px;
    padding-top: 28px;
    border-top: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted);
  }

  .wb-quiz-footer-legal {
    margin: 0;
    color: var(--muted);
  }

  .wb-quiz-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
  }

  .wb-quiz-footer-links a {
    color: var(--ink-soft);
    text-decoration: none;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 1px;
    transition: color 0.2s ease, border-color 0.2s ease;
  }

  .wb-quiz-footer-links a:hover {
    color: var(--clay);
    border-color: var(--clay);
  }

  @media (max-width: 520px) {
    .wb-stage { padding: 20px 20px 60px; }
    .wb-top-header { margin-bottom: 24px; }
    .wb-top-header-title { font-size: 16px; }
    .wb-landing-hero { margin-bottom: 22px; }
    #screen-landing .wb-landing-art { height: 64px; margin-bottom: 8px; }
    .wb-email-card { padding: 28px 22px; }
    .wb-eyebrow-large { font-size: 19px; margin-bottom: 12px; }
    .wb-eyebrow-top { margin-bottom: 12px; }
    .wb-who-box { padding: 20px 20px 18px 18px; margin: 28px 0; }
    .wb-who-label { font-size: 15px; margin-bottom: 12px; }
    .wb-who-list li { font-size: 14.5px; }
    .wb-who-text { font-size: 14.5px; }
    .wb-who-payoff { font-size: 14px; }
    .wb-trust-block {
      margin-top: 44px;
      padding-top: 0;
      gap: 18px;
      flex-direction: column;
      align-items: center;
      text-align: left;
    }
    .wb-trust-photo-circle { width: 154px; height: 154px; }
    .wb-trust-block-body { width: 100%; }
    .wb-trust-block .wb-trust-credentials li { font-size: 14px; }
    .wb-trust-block .wb-trust-expand p { font-size: 14px; }
    .wb-btn-large { padding: 18px 32px; font-size: 16px; width: 100%; justify-content: center; }
    .wb-cta-microcopy { font-size: 13px; margin-top: 16px; }
    .wb-progress-wrap { height: 6px; margin-bottom: 32px; }
    .wb-report-eyebrow { font-size: 21px; }
    .wb-result-trust-wrap { margin-top: 36px; padding-top: 0; }
    .wb-quiz-footer { margin-top: 48px; padding-top: 22px; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
  }
