    :root {
      --scorecard-green: #214d3b;
      --scorecard-green-2: #2f6b52;
      --scorecard-gold: #c9a85c;
      --scorecard-cream: #f7f4ec;
      --scorecard-ink: #17211d;
      --scorecard-muted: #5e6b65;
      --scorecard-border: #d9e0dc;
      --scorecard-danger: #9b3b30;
      --scorecard-warning: #9a6b11;
      --scorecard-good: #2f6b52;
      --scorecard-white: #ffffff;
      --scorecard-shadow: 0 18px 50px rgba(22, 52, 40, 0.12);
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      color: var(--scorecard-ink);
      background: linear-gradient(180deg, #f8faf8 0%, var(--scorecard-cream) 100%);
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.55;
    }

    .plf-shell {
      width: min(1080px, calc(100% - 32px));
      margin: 0 auto;
    }

    .plf-hero {
      padding: 72px 0 42px;
      background:
        radial-gradient(circle at 85% 15%, rgba(201,168,92,.22), transparent 30%),
        linear-gradient(135deg, #173e30, #2a604a);
      color: white;
    }

    .plf-eyebrow {
      display: inline-block;
      margin-bottom: 14px;
      color: #f0dca4;
      font-size: .8rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .plf-hero h1 {
      max-width: 820px;
      margin: 0 0 18px;
      font-size: clamp(2.25rem, 5vw, 4.5rem);
      line-height: 1.02;
      letter-spacing: -.04em;
      color: white;
    }

    .plf-hero p {
      max-width: 720px;
      margin: 0;
      color: rgba(255,255,255,.87);
      font-size: clamp(1rem, 2vw, 1.25rem);
    }

    .plf-trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 24px;
      margin-top: 28px;
      color: rgba(255,255,255,.82);
      font-size: .95rem;
    }

    .plf-main {
      padding: 38px 0 84px;
    }

    .plf-card {
      background: var(--scorecard-white);
      border: 1px solid var(--scorecard-border);
      border-radius: 20px;
      box-shadow: var(--scorecard-shadow);
      overflow: hidden;
    }

    .plf-progress-wrap {
      padding: 22px 24px 18px;
      border-bottom: 1px solid var(--scorecard-border);
      background: #fbfcfb;
    }

    .plf-progress-meta {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 9px;
      color: var(--scorecard-muted);
      font-size: .9rem;
      font-weight: 700;
    }

    .plf-progress-track {
      height: 10px;
      overflow: hidden;
      background: #e8ece9;
      border-radius: 999px;
    }

    .plf-progress-bar {
      width: 0;
      height: 100%;
      background: linear-gradient(90deg, var(--scorecard-green-2), var(--scorecard-gold));
      border-radius: inherit;
      transition: width .25s ease;
    }

    .plf-content {
      padding: clamp(24px, 5vw, 52px);
    }

    .plf-step {
      display: none;
      animation: plfFade .25s ease;
    }

    .plf-step.is-active { display: block; }

    @keyframes plfFade {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .plf-step h2 {
      margin: 0 0 8px;
      color: var(--scorecard-green);
      font-size: clamp(1.65rem, 3vw, 2.35rem);
      line-height: 1.15;
    }

    .plf-step-intro {
      margin: 0 0 28px;
      color: var(--scorecard-muted);
    }

    .plf-question {
      margin: 0 0 26px;
      padding: 0 0 24px;
      border-bottom: 1px solid #edf0ee;
    }

    .plf-question:last-child {
      border-bottom: 0;
    }

    .plf-question legend {
      width: 100%;
      margin-bottom: 13px;
      font-weight: 800;
    }

    .plf-options {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }

    .plf-option {
      position: relative;
      display: block;
    }

    .plf-option input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .plf-option span {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 48px;
      padding: 10px;
      border: 1px solid var(--scorecard-border);
      border-radius: 10px;
      background: #fff;
      font-weight: 700;
      cursor: pointer;
      transition: .18s ease;
    }

    .plf-option input:focus-visible + span {
      outline: 3px solid rgba(47,107,82,.25);
      outline-offset: 2px;
    }

    .plf-option input:checked + span {
      color: white;
      border-color: var(--scorecard-green-2);
      background: var(--scorecard-green-2);
      box-shadow: 0 6px 18px rgba(47,107,82,.18);
    }

    .plf-field-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .plf-field {
      margin-bottom: 18px;
    }

    .plf-field label {
      display: block;
      margin-bottom: 7px;
      font-weight: 800;
    }

    .plf-field input,
    .plf-field select,
    .plf-field textarea {
      width: 100%;
      min-height: 48px;
      padding: 11px 13px;
      border: 1px solid #bcc8c1;
      border-radius: 9px;
      background: white;
      color: var(--scorecard-ink);
      font: inherit;
    }

    .plf-field input:focus,
    .plf-field select:focus,
    .plf-field textarea:focus {
      outline: 3px solid rgba(47,107,82,.18);
      border-color: var(--scorecard-green-2);
    }

    .plf-consent {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 10px;
      align-items: start;
      margin: 18px 0;
      font-size: .92rem;
    }

    .plf-consent input {
      width: 18px;
      height: 18px;
      margin-top: 3px;
    }

    .plf-actions {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      margin-top: 30px;
    }

    .plf-button {
      appearance: none;
      border: 0;
      border-radius: 10px;
      padding: 13px 20px;
      font: inherit;
      font-weight: 800;
      cursor: pointer;
      transition: transform .16s ease, box-shadow .16s ease;
    }

    .plf-button:hover {
      transform: translateY(-1px);
    }

    .plf-button-primary {
      color: white;
      background: var(--scorecard-green);
      box-shadow: 0 8px 20px rgba(33,77,59,.2);
    }

    .plf-button-secondary {
      color: var(--scorecard-green);
      background: #edf4f0;
    }

    .plf-button[disabled] {
      opacity: .55;
      cursor: not-allowed;
      transform: none;
    }

    .plf-error {
      display: none;
      margin: 16px 0 0;
      padding: 12px 14px;
      color: #74261e;
      background: #fff2ef;
      border: 1px solid #f1c7c1;
      border-radius: 9px;
      font-weight: 700;
    }

    .plf-error.is-visible { display: block; }

    .plf-honeypot {
      position: absolute !important;
      left: -9999px !important;
      opacity: 0 !important;
      height: 1px !important;
      width: 1px !important;
      overflow: hidden !important;
    }

    .plf-results {
      text-align: center;
    }

    .plf-score-ring {
      display: grid;
      place-items: center;
      width: 178px;
      height: 178px;
      margin: 22px auto;
      border-radius: 50%;
      background: conic-gradient(var(--scorecard-green-2) 0deg, var(--scorecard-green-2) 0deg, #e7ece9 0deg);
      position: relative;
    }

    .plf-score-ring::after {
      content: "";
      position: absolute;
      width: 136px;
      height: 136px;
      border-radius: 50%;
      background: white;
    }

    .plf-score-number {
      position: relative;
      z-index: 1;
      font-size: 2.5rem;
      font-weight: 900;
      color: var(--scorecard-green);
    }

    .plf-score-number small {
      display: block;
      margin-top: -4px;
      color: var(--scorecard-muted);
      font-size: .72rem;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .plf-result-summary {
      max-width: 700px;
      margin: 0 auto 30px;
      color: var(--scorecard-muted);
      font-size: 1.05rem;
    }

    .plf-category-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      text-align: left;
    }

    .plf-category {
      padding: 17px;
      border: 1px solid var(--scorecard-border);
      border-radius: 12px;
      background: #fbfcfb;
    }

    .plf-category-head {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      font-weight: 800;
    }

    .plf-mini-track {
      height: 8px;
      margin-top: 10px;
      overflow: hidden;
      border-radius: 999px;
      background: #e7ece9;
    }

    .plf-mini-bar {
      height: 100%;
      width: 0;
      border-radius: inherit;
      background: var(--scorecard-green-2);
    }

    .plf-priority-box {
      margin: 28px 0;
      padding: 22px;
      text-align: left;
      background: #f7f1df;
      border: 1px solid #e6d39c;
      border-radius: 14px;
    }

    .plf-priority-box h3 {
      margin-top: 0;
      color: #745114;
    }

    .plf-priority-box ul {
      margin-bottom: 0;
    }

    .plf-next-step {
      margin-top: 28px;
      padding: 26px;
      color: white;
      text-align: left;
      background: var(--scorecard-green);
      border-radius: 14px;
    }

    .plf-next-step h3 { margin-top: 0; color: white; }
    .plf-next-step a {
      color: white;
      font-weight: 800;
    }

    .plf-privacy-note {
      margin-top: 18px;
      color: var(--scorecard-muted);
      font-size: .82rem;
    }

    @media (max-width: 720px) {
      .plf-hero { padding-top: 48px; }
      .plf-options,
      .plf-field-grid,
      .plf-category-grid {
        grid-template-columns: 1fr;
      }
      .plf-actions {
        flex-direction: column-reverse;
      }
      .plf-button { width: 100%; }
    }
  