  /* All classes scoped with .pd- prefix so this can be embedded next to any theme without collisions.
     Palette + typography match Puro Digital's own site tokens exactly. */
  .pd-root {
    /* Backgrounds */
    --pd-bg: #F7F2E8;        /* cream (site body) */
    --pd-bg-2: #FAF6EE;      /* cream-soft */
    --pd-bg-3: #ECE3D0;      /* bone */
    --pd-paper: #FFFFFF;
    /* Ink */
    --pd-ink: #001E18;       /* ink */
    --pd-ink-2: #2A4B43;     /* ink-soft */
    --pd-muted: #5C766F;     /* ink-mute */
    --pd-muted-2: #5C766F;
    /* Green (primary CTA + dark surfaces) */
    --pd-green: #003E33;
    --pd-green-deep: #002A22;
    --pd-green-mid: #0F5A4B;
    /* Gold (accent) */
    --pd-accent: #B89B6E;
    --pd-accent-2: #8A7048;
    --pd-accent-3: #D4BD93;
    /* On dark */
    --pd-on-dark: #F1E9D6;
    --pd-on-dark-mute: #B9C6BF;
    /* Lines / effects */
    --pd-line: rgba(0, 62, 51, 0.12);
    --pd-line-2: rgba(0, 62, 51, 0.22);
    --pd-line-dark: rgba(255, 255, 255, 0.10);
    --pd-shadow: 0 24px 60px -24px rgba(0, 30, 24, 0.25);
    --pd-shadow-lg: 0 40px 80px -30px rgba(0, 30, 24, 0.45);
    --pd-ease: cubic-bezier(.22, 1, .36, 1);
    --pd-radius: 6px;
    --pd-radius-lg: 12px;

    all: initial;
    display: block;
    box-sizing: border-box;
    background: var(--pd-bg);
    color: var(--pd-ink);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.005em;
    text-align: left;
  }
  .pd-root *, .pd-root *::before, .pd-root *::after {
    box-sizing: border-box;
    font-family: inherit;
    margin: 0;
    padding: 0;
  }
  .pd-root button { font-family: inherit; }
  /* Shield widget text from the host site's global element styles
     (site sets h1–h5 green, h4 gold+uppercase, p ink-soft — on the report's
     dark surfaces those would render text the same colour as the background) */
  .pd-root h1, .pd-root h2, .pd-root h3, .pd-root h4, .pd-root h5, .pd-root p {
    color: inherit;
    text-transform: none;
    letter-spacing: inherit;
    font-weight: inherit;
    font-family: inherit;
  }
  .pd-root .pd-serif { font-family: 'Fraunces', 'Times New Roman', serif; font-weight: 400; letter-spacing: -0.02em; }
  .pd-root .pd-italic { font-style: italic; }
  .pd-root em { font-style: italic; font-variation-settings: "opsz" 120, "SOFT" 100; }

  /* CONTAINER */
  .pd-stage {
    max-width: 1080px;
    margin: 0 auto;
    padding: 64px 24px 96px;
  }

  /* HEADER */
  .pd-header { text-align: center; margin-bottom: 48px; }
  .pd-kicker {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px;
    background: var(--pd-paper);
    border: 1px solid var(--pd-line-2);
    border-radius: 100px;
    font-size: 12px; letter-spacing: 0.06em;
    color: var(--pd-ink-2);
    margin-bottom: 24px;
    font-weight: 500;
  }
  .pd-kicker .pd-pip { width: 6px; height: 6px; background: var(--pd-accent); border-radius: 50%; }
  .pd-title {
    font-family: 'Fraunces', 'Times New Roman', serif;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    font-weight: 400;
  }
  .pd-title em { font-style: italic; color: var(--pd-accent-2); font-weight: 400; }
  .pd-lede {
    font-size: 16px; color: var(--pd-muted);
    max-width: 520px; margin: 0 auto;
    line-height: 1.6;
  }

  /* PROGRESS */
  .pd-rail {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    margin: 40px auto 0;
    max-width: 640px;
    padding-bottom: 24px;
  }
  .pd-rail-step {
    display: flex; align-items: center; gap: 10px;
    font-size: 11px; color: var(--pd-muted-2);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .pd-rail-num {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1px solid var(--pd-line);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 600;
    background: transparent;
    transition: all 0.3s var(--pd-ease);
  }
  .pd-rail-step.pd-done .pd-rail-num { background: var(--pd-green); color: var(--pd-on-dark); border-color: var(--pd-green); }
  .pd-rail-step.pd-current .pd-rail-num { background: var(--pd-accent); color: var(--pd-green-deep); border-color: var(--pd-accent); }
  .pd-rail-step.pd-current { color: var(--pd-ink); }
  .pd-rail-line { flex: 1; max-width: 36px; height: 1px; background: var(--pd-line); }
  .pd-rail-label { display: none; }
  @media (min-width: 640px) { .pd-root .pd-rail-label { display: inline; } }

  /* STEP CARD */
  .pd-card {
    background: var(--pd-paper);
    border: 1px solid var(--pd-line);
    border-radius: var(--pd-radius-lg);
    padding: 48px 40px;
    box-shadow: var(--pd-shadow);
    display: none;
  }
  .pd-card.pd-active { display: block; animation: pdFadeUp 0.4s var(--pd-ease); }
  @keyframes pdFadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .pd-step-head { margin-bottom: 40px; }
  .pd-step-num {
    display: inline-block;
    font-family: 'Fraunces', serif;
    font-size: 40px;
    color: var(--pd-accent);
    font-style: italic;
    line-height: 1;
    margin-bottom: 16px;
  }
  .pd-step-q {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1.1;
    margin-bottom: 12px;
    font-weight: 400;
  }
  .pd-step-q em { color: var(--pd-accent-2); font-style: italic; }
  .pd-step-desc { color: var(--pd-muted); font-size: 15px; max-width: 520px; }
  .pd-multi-hint { margin-top: 10px; font-size: 12px; color: var(--pd-muted-2); font-style: italic; }

  /* OPTION GRIDS */
  /* minmax(0, 1fr) eikä pelkkä 1fr: jälkimmäinen ei anna sarakkeen kutistua
     pisintä sanaa kapeammaksi, jolloin laatikoista tulee mobiilissa eri
     levyisiä heti kun jokin vaihtoehto sisältää pitkän yhdyssanan. */
  /* grid-auto-rows: 1fr antaa jokaiselle riville saman korkeuden. Ilman tätä
     pisin kuvausteksti kasvattaa oman rivinsä muita korkeammaksi, jolloin
     laatikot näyttävät eri kokoisilta varsinkin mobiilin kahdessa sarakkeessa. */
  .pd-grid { display: grid; gap: 10px; margin-bottom: 40px; grid-auto-rows: 1fr; }
  .pd-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .pd-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pd-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pd-grid-1 { grid-template-columns: minmax(0, 1fr); }
  @media (max-width: 720px) {
    .pd-root .pd-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pd-root .pd-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pd-root .pd-grid-2 { grid-template-columns: minmax(0, 1fr); }
    .pd-root .pd-card { padding: 32px 24px; border-radius: 16px; }
    .pd-root .pd-stage { padding: 40px 16px 64px; }
  }

  .pd-opt {
    background: var(--pd-bg);
    border: 1.5px solid var(--pd-line);
    border-radius: 12px;
    padding: 20px 18px;
    text-align: left;
    cursor: pointer;
    transition: all 0.18s var(--pd-ease);
    color: var(--pd-ink);
    display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
    position: relative; min-height: 100px;
    font-size: 14px;
    /* Pitkät yhdyssanat katkeavat rivin sisällä eivätkä levitä laatikkoa. */
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .pd-opt:hover { border-color: var(--pd-ink); transform: translateY(-1px); }
  .pd-opt.pd-selected { background: var(--pd-green); color: var(--pd-on-dark); border-color: var(--pd-green); }
  .pd-opt.pd-selected .pd-opt-icon { color: var(--pd-accent-3); }
  .pd-opt.pd-selected .pd-opt-desc { color: var(--pd-on-dark-mute); }
  .pd-opt-icon { font-size: 22px; line-height: 1; color: var(--pd-ink-2); transition: color 0.18s; font-family: 'Fraunces', serif; }
  .pd-opt-label { font-size: 14px; font-weight: 500; line-height: 1.25; }
  .pd-opt-desc { font-size: 12px; color: var(--pd-muted); line-height: 1.4; }
  .pd-opt-check {
    position: absolute; top: 14px; right: 14px;
    width: 18px; height: 18px;
    border: 1.5px solid var(--pd-line);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: white;
    transition: all 0.18s;
  }
  .pd-opt.pd-selected .pd-opt-check { background: var(--pd-accent); border-color: var(--pd-accent); }
  .pd-opt-check::after {
    content: '';
    width: 7px; height: 3px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg) translateY(-1px);
    opacity: 0; transition: opacity 0.18s;
  }
  .pd-opt.pd-selected .pd-opt-check::after { opacity: 1; }

  .pd-pain { min-height: 120px; padding: 24px 22px; }
  .pd-pain .pd-opt-label { font-size: 16px; }
  .pd-pain .pd-opt-icon { font-size: 28px; }

  .pd-budget {
    min-height: 0; padding: 18px 22px;
    flex-direction: row; align-items: center; justify-content: space-between; gap: 20px;
  }
  .pd-budget .pd-opt-label { font-size: 15px; }
  .pd-tier { display: flex; gap: 3px; }
  .pd-tier span { width: 6px; height: 20px; background: var(--pd-line); border-radius: 2px; }
  .pd-tier .pd-filled { background: var(--pd-accent); }
  .pd-opt.pd-selected .pd-tier span { background: rgba(255,255,255,0.2); }
  .pd-opt.pd-selected .pd-tier .pd-filled { background: var(--pd-accent); }

  /* CONTACT FORM */
  .pd-form { display: grid; gap: 12px; max-width: 480px; margin: 0 auto 32px; }
  .pd-form input {
    padding: 14px 18px;
    border: 1.5px solid var(--pd-line);
    border-radius: 10px;
    font-size: 15px; background: var(--pd-bg); color: var(--pd-ink);
    outline: none; transition: border 0.18s;
  }
  .pd-form input:focus { border-color: var(--pd-ink); }
  .pd-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  @media (max-width: 500px) { .pd-root .pd-form-row { grid-template-columns: 1fr; } }
  .pd-legal { font-size: 12px; color: var(--pd-muted-2); text-align: center; margin-top: 8px; }

  /* NAV BUTTONS */
  .pd-nav {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 20px; border-top: 1px solid var(--pd-line);
    gap: 14px;
  }
  .pd-btn {
    padding: 12px 24px;
    border-radius: 100px; border: none;
    font-size: 14px; font-weight: 500;
    cursor: pointer;
    transition: all 0.18s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .pd-btn-primary { background: var(--pd-green); color: var(--pd-on-dark); }
  .pd-btn-primary:hover { background: var(--pd-green-deep); transform: translateY(-1px); }
  .pd-btn-primary:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }
  .pd-btn-ghost { background: transparent; color: var(--pd-muted); }
  .pd-btn-ghost:hover { color: var(--pd-ink); }
  /* dark label on gold — white on --pd-accent only reaches 2.6:1 */
  .pd-btn-accent { background: var(--pd-accent); color: var(--pd-green-deep); }
  .pd-btn-accent:hover { background: var(--pd-accent-3); color: var(--pd-green-deep); }
  .pd-btn-lg { padding: 16px 32px; font-size: 15px; }

  /* LOADING */
  .pd-loading { display: none; text-align: center; padding: 80px 24px; }
  .pd-loading.pd-active { display: block; }
  .pd-orb {
    width: 84px; height: 84px; margin: 0 auto 32px;
    position: relative;
  }
  .pd-orb::before, .pd-orb::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--pd-accent);
    animation: pdSpin 1.4s linear infinite;
  }
  .pd-orb::after {
    inset: 10px;
    border-top-color: var(--pd-ink);
    animation-duration: 1s;
    animation-direction: reverse;
  }
  @keyframes pdSpin { to { transform: rotate(360deg); } }
  .pd-loading h2, .pd-loading h3 { font-family: 'Fraunces', serif; font-size: 32px; margin-bottom: 8px; font-weight: 400; }
  .pd-loading p { color: var(--pd-muted); font-size: 15px; }
  .pd-loading-log {
    max-width: 360px; margin: 32px auto 0;
    text-align: left; font-size: 12px; color: var(--pd-muted);
    font-family: 'SFMono-Regular', ui-monospace, 'Menlo', monospace;
    line-height: 2;
  }
  .pd-loading-log .pd-line { opacity: 0; }
  .pd-loading-log .pd-line.pd-vis { opacity: 1; transition: opacity 0.3s; }
  .pd-loading-log .pd-line::before { content: '→ '; color: var(--pd-accent); }

  /* REPORT */
  .pd-report { display: none; background: var(--pd-paper); border: 1px solid var(--pd-line); border-radius: var(--pd-radius-lg); box-shadow: var(--pd-shadow-lg); overflow: hidden; }
  .pd-report.pd-active { display: block; }

  .pd-cover { background: var(--pd-green); color: var(--pd-on-dark); padding: 56px 48px 40px; position: relative; overflow: hidden; }
  .pd-cover::before {
    content: '';
    position: absolute;
    top: -80px; right: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(184, 155, 110, 0.35), transparent 70%);
  }
  .pd-cover-eyebrow {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 32px;
    position: relative;
  }
  .pd-cover-eyebrow span:first-child { color: var(--pd-accent); }
  .pd-cover h1, .pd-cover h2.pd-cover-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
    margin-bottom: 20px;
    position: relative;
    font-weight: 400;
  }
  .pd-cover h1 em, .pd-cover h2.pd-cover-title em { color: var(--pd-accent-3); font-style: italic; }
  .pd-cover-facts {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    margin-top: 32px; padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
  }
  .pd-cover-fact .pd-label {
    font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); margin-bottom: 6px;
  }
  .pd-cover-fact .pd-val {
    font-family: 'Fraunces', serif; font-size: 18px; color: var(--pd-on-dark);
  }
  @media (max-width: 720px) {
    .pd-root .pd-cover { padding: 40px 28px; }
    .pd-root .pd-cover-facts { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  }

  .pd-section { padding: 48px; border-bottom: 1px solid var(--pd-line); }
  .pd-section:last-of-type { border-bottom: none; }
  @media (max-width: 720px) { .pd-root .pd-section { padding: 36px 28px; } }

  .pd-section-eyebrow {
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--pd-accent-2); font-weight: 500; margin-bottom: 10px;
  }
  .pd-section-title {
    font-family: 'Fraunces', serif; font-size: 28px;
    margin-bottom: 8px; font-weight: 400; line-height: 1.15;
  }
  .pd-section-title em { color: var(--pd-accent-2); font-style: italic; }
  .pd-section-lede { color: var(--pd-muted); font-size: 15px; max-width: 620px; margin-bottom: 28px; }

  .pd-grade-block { display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: center; margin-top: 24px; }
  .pd-orb-grade {
    width: 120px; height: 120px;
    background: var(--pd-bg-2);
    border: 2px solid var(--pd-ink);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 64px; line-height: 1; position: relative; font-weight: 400;
  }
  .pd-orb-grade .pd-grade-plus { font-size: 28px; position: absolute; top: 22px; right: 20px; }
  .pd-grade-copy h3 { font-family: 'Fraunces', serif; font-size: 22px; margin-bottom: 6px; font-weight: 400; }
  .pd-grade-copy p { color: var(--pd-muted); font-size: 14px; }
  @media (max-width: 720px) {
    .pd-root .pd-grade-block { grid-template-columns: 1fr; text-align: center; gap: 20px; }
    .pd-root .pd-orb-grade { margin: 0 auto; }
  }

  .pd-opps { display: grid; gap: 14px; margin-top: 28px; }
  .pd-opp {
    display: grid; grid-template-columns: 52px 1fr auto;
    gap: 24px; padding: 24px;
    background: var(--pd-bg-2);
    border: 1px solid var(--pd-line);
    border-radius: 14px;
    align-items: flex-start;
  }
  .pd-opp-num { font-family: 'Fraunces', serif; font-size: 36px; line-height: 1; color: var(--pd-accent-2); }
  .pd-opp-body h4 { font-family: 'Fraunces', serif; font-size: 20px; margin-bottom: 6px; line-height: 1.2; font-weight: 400; }
  .pd-opp-body p { color: var(--pd-muted); font-size: 14px; margin-bottom: 10px; line-height: 1.55; }
  .pd-opp-action {
    display: inline-flex; padding: 5px 11px;
    background: var(--pd-bg); border: 1px solid var(--pd-line);
    border-radius: 100px; font-size: 12px;
    color: var(--pd-ink);
  }
  .pd-opp-impact {
    background: var(--pd-bg-3);
    padding: 10px 14px; border-radius: 10px;
    text-align: center; min-width: 130px;
  }
  .pd-opp-impact .pd-label {
    font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--pd-ink-2); font-weight: 500;
  }
  .pd-opp-impact .pd-val {
    font-family: 'Fraunces', serif; font-size: 20px;
    color: var(--pd-ink); line-height: 1.1; margin-top: 4px;
  }
  @media (max-width: 720px) {
    .pd-root .pd-opp { grid-template-columns: 36px 1fr; padding: 18px; }
    .pd-root .pd-opp-num { font-size: 26px; }
    .pd-root .pd-opp-impact { grid-column: 1 / -1; margin-top: 8px; }
  }

  .pd-bench { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
  .pd-b {
    padding: 22px; background: var(--pd-bg-2); border-radius: 14px;
    border: 1px solid var(--pd-line);
  }
  .pd-b .pd-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pd-muted); margin-bottom: 10px; }
  .pd-b .pd-val { font-family: 'Fraunces', serif; font-size: 28px; color: var(--pd-ink); }
  .pd-b .pd-sub { font-size: 12px; color: var(--pd-muted); margin-top: 4px; }
  @media (max-width: 720px) { .pd-root .pd-bench { grid-template-columns: 1fr; } }

  .pd-road { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
  .pd-phase { padding: 22px; border: 1px solid var(--pd-line); border-radius: 14px; background: var(--pd-bg-2); }
  .pd-phase-label {
    display: inline-block; font-size: 10px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--pd-accent-2); font-weight: 500;
    margin-bottom: 10px;
  }
  .pd-phase h4 { font-family: 'Fraunces', serif; font-size: 18px; margin-bottom: 10px; line-height: 1.2; font-weight: 400; }
  .pd-phase ul { list-style: none; padding: 0; }
  .pd-phase li { font-size: 13px; color: var(--pd-muted); padding: 5px 0 5px 18px; position: relative; }
  .pd-phase li::before { content: '→'; position: absolute; left: 0; color: var(--pd-accent); }
  @media (max-width: 720px) { .pd-root .pd-road { grid-template-columns: 1fr; } }

  .pd-cta {
    background: var(--pd-green);
    color: var(--pd-on-dark);
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .pd-cta::before {
    content: '';
    position: absolute;
    top: -60px; right: -30px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(184, 155, 110, 0.35), transparent 70%);
  }
  .pd-cta::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -50px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(184, 155, 110, 0.14), transparent 70%);
  }
  .pd-cta h3 {
    font-family: 'Fraunces', serif; font-size: 36px;
    line-height: 1.1; margin-bottom: 14px;
    position: relative; font-weight: 400;
  }
  .pd-cta h3 em { color: var(--pd-accent-3); font-style: italic; }
  .pd-cta p { max-width: 480px; margin: 0 auto 28px; font-size: 15px; opacity: 0.85; position: relative; line-height: 1.65; }
  .pd-cta .pd-btn-row {
    display: inline-flex; gap: 12px; position: relative;
    flex-wrap: wrap; justify-content: center;
  }
  .pd-btn-white { background: var(--pd-bg); color: var(--pd-ink); }
  .pd-btn-white:hover { background: var(--pd-bg-2); }
  .pd-btn-outline-w {
    background: transparent; color: white;
    border: 1.5px solid rgba(255,255,255,0.4);
  }
  .pd-btn-outline-w:hover { border-color: white; }
  @media (max-width: 720px) { .pd-root .pd-cta { padding: 36px 28px; } .pd-root .pd-cta h3 { font-size: 28px; } }
  .pd-cta-fine { display: block; margin-top: 24px; font-size: 12px; opacity: 0.6; position: relative; }

  /* GRADE REASONS LIST */
  .pd-reasons {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 6px;
    font-size: 13px; line-height: 1.5;
  }
  .pd-reasons li {
    color: var(--pd-ink-2);
    padding-left: 4px;
    font-family: 'Fraunces', serif;
    font-style: italic;
  }

  /* PROGRESS % */
  .pd-progress {
    display: flex; justify-content: center; align-items: center;
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--pd-muted);
    margin-top: 12px;
  }
  .pd-progress .pd-progress-val { color: var(--pd-accent-2); font-weight: 600; margin-left: 8px; }

  /* RADAR CHART */
  .pd-radar-block { margin-top: 32px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center; }
  @media (max-width: 720px) { .pd-root .pd-radar-block { grid-template-columns: 1fr; } }
  .pd-radar-wrap {
    background: var(--pd-bg-2); border-radius: var(--pd-radius-lg);
    padding: 20px; border: 1px solid var(--pd-line);
  }
  .pd-radar-wrap svg { display: block; width: 100%; height: auto; }
  .pd-radar-legend { display: flex; flex-direction: column; gap: 16px; }
  .pd-legend-item { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--pd-ink-2); }
  .pd-legend-sw {
    width: 24px; height: 12px; border-radius: 2px; flex-shrink: 0;
  }
  .pd-legend-sw.you { background: rgba(184, 155, 110, 0.5); border: 2px solid var(--pd-accent); }
  .pd-legend-sw.median { background: transparent; border: 1.5px dashed rgba(0, 62, 51, 0.4); }
  .pd-legend-item strong { color: var(--pd-ink); font-weight: 500; }
  .pd-radar-note { font-size: 12px; color: var(--pd-muted); font-style: italic; margin-top: 4px; font-family: 'Fraunces', serif; }

  /* PERCENTILE / RANKING */
  .pd-rank {
    background: var(--pd-bg-3);
    border-radius: var(--pd-radius);
    padding: 20px 24px;
    margin: 24px 0 8px;
    display: flex; align-items: center; gap: 20px;
    border-left: 3px solid var(--pd-accent);
  }
  .pd-rank .pd-rank-badge {
    font-family: 'Fraunces', serif;
    font-size: 42px; line-height: 1;
    color: var(--pd-accent-2);
    font-style: italic;
  }
  .pd-rank .pd-rank-copy .pd-rank-title {
    font-family: 'Fraunces', serif; font-size: 20px; color: var(--pd-ink);
    margin-bottom: 4px;
  }
  .pd-rank .pd-rank-copy .pd-rank-copy-body { font-size: 13px; color: var(--pd-muted); }

  /* CALENDLY */
  .pd-calendly-section {
    background: var(--pd-bg-2);
    padding: 48px;
    border-top: 1px solid var(--pd-line);
  }
  @media (max-width: 720px) { .pd-root .pd-calendly-section { padding: 36px 24px; } }
  .pd-calendly-header { text-align: center; margin-bottom: 32px; }
  .pd-calendly-header .pd-eyebrow { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pd-accent-2); font-weight: 500; margin-bottom: 10px; display: block; }
  .pd-calendly-header h3 {
    font-family: 'Fraunces', serif; font-size: 32px; line-height: 1.1;
    margin-bottom: 8px; font-weight: 400;
  }
  .pd-calendly-header h3 em { color: var(--pd-accent-2); font-style: italic; }
  .pd-calendly-header p { color: var(--pd-muted); font-size: 14px; max-width: 480px; margin: 0 auto; }
  .pd-calendly-embed {
    min-width: 320px; height: 700px;
    background: var(--pd-paper);
    border-radius: var(--pd-radius); border: 1px solid var(--pd-line);
    overflow: hidden;
  }
  .pd-calendly-fallback {
    padding: 40px; text-align: center;
    background: var(--pd-paper); border-radius: var(--pd-radius);
    border: 1px solid var(--pd-line);
  }
  .pd-calendly-fallback p { color: var(--pd-muted); font-size: 14px; margin-bottom: 20px; }

  /* REFERRAL */
  .pd-referral {
    background: var(--pd-paper);
    padding: 40px 48px;
    border-top: 1px solid var(--pd-line);
    display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
  }
  @media (max-width: 720px) { .pd-root .pd-referral { grid-template-columns: 1fr; padding: 32px 24px; text-align: center; } }
  .pd-ref-copy h4 { font-family: 'Fraunces', serif; font-size: 22px; margin-bottom: 6px; font-weight: 400; line-height: 1.2; }
  .pd-ref-copy h4 em { color: var(--pd-accent-2); font-style: italic; }
  .pd-ref-copy p { color: var(--pd-muted); font-size: 13px; line-height: 1.5; }
  .pd-ref-actions { display: flex; gap: 10px; flex-wrap: wrap; }
  .pd-ref-btn {
    padding: 12px 20px; border-radius: 100px;
    background: transparent; color: var(--pd-ink); border: 1px solid var(--pd-line-2);
    font-family: inherit; font-size: 13px; font-weight: 500; cursor: pointer;
    transition: all 0.2s var(--pd-ease);
    display: inline-flex; align-items: center; gap: 8px;
  }
  .pd-ref-btn:hover { background: var(--pd-bg-2); border-color: var(--pd-accent); color: var(--pd-accent-2); }
  .pd-ref-btn.pd-copied { background: var(--pd-green); color: var(--pd-on-dark); border-color: var(--pd-green); }

  /* A11Y — focus outlines */
  .pd-root button:focus-visible,
  .pd-root input:focus-visible,
  .pd-root select:focus-visible,
  .pd-root textarea:focus-visible,
  .pd-root a:focus-visible,
  .pd-root .pd-opt:focus-visible {
    outline: 2px solid var(--pd-accent);
    outline-offset: 2px;
  }
  .pd-sr {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }

  /* PRINT */
  @media print {
    .pd-root .pd-header, .pd-root .pd-rail, .pd-root .pd-card, .pd-root .pd-loading, .pd-root .pd-cta { display: none !important; }
    .pd-root { background: white; }
    .pd-root .pd-stage { padding: 0; max-width: none; }
    .pd-root .pd-report { display: block; box-shadow: none; border: none; border-radius: 0; }
    .pd-root .pd-cover { background: white; color: var(--pd-ink); }
    .pd-root .pd-cover::before { display: none; }
    .pd-root .pd-cover-eyebrow, .pd-root .pd-cover-fact .pd-label, .pd-root .pd-cover-fact .pd-val { color: var(--pd-ink); }
    .pd-root .pd-cover h1 em, .pd-cover h2.pd-cover-title em { color: var(--pd-accent-2); }
  }
