:root {
      --green-1000: #041611;
      --green-950: #071f18;
      --green-900: #0b2c22;
      --green-850: #0e382a;
      --green-800: #124432;
      --green-700: #195c44;
      --green-600: #23785a;
      --green-500: #31966f;
      --green-400: #55b98f;
      --green-300: #89d1b1;
      --green-200: #c7ead9;
      --green-100: #eaf7f1;
      --green-50: #f4fbf7;

      --cream: #f5f1e7;
      --paper: #fffdf8;
      --white: #ffffff;

      --gold-700: #96743d;
      --gold-600: #b08b4c;
      --gold-500: #c8a45e;
      --gold-300: #e7d19b;
      --gold-200: #f1e3c0;

      --ink: #17352b;
      --muted: #65766f;
      --line: rgba(19, 69, 51, 0.12);
      --danger: #aa4646;

      --shadow-xl:
        0 35px 90px rgba(3, 32, 23, 0.18);

      --shadow-lg:
        0 22px 55px rgba(3, 32, 23, 0.13);

      --shadow-md:
        0 12px 32px rgba(3, 32, 23, 0.09);

      --radius-xl: 34px;
      --radius-lg: 24px;
      --radius-md: 16px;
      --radius-sm: 11px;

      --transition: 220ms ease;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      color: var(--ink);
      background:
        radial-gradient(
          circle at 8% 10%,
          rgba(85, 185, 143, 0.13),
          transparent 30rem
        ),
        linear-gradient(
          180deg,
          var(--cream),
          var(--green-100)
        );

      font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    a {
      color: inherit;
    }

    .hidden {
      display: none !important;
    }

    .container {
      width: min(1160px, calc(100% - 38px));
      margin-inline: auto;
    }

    .serif {
      font-family:
        Georgia,
        "Times New Roman",
        serif;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      color: var(--green-700);
      font-size: 0.76rem;
      font-weight: 900;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 29px;
      height: 2px;
      background: var(--gold-500);
    }

    .btn {
      display: inline-flex;
      min-height: 56px;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 14px 27px;
      border: 0;
      border-radius: 999px;
      font-weight: 850;
      text-align: center;
      text-decoration: none;
      transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        border-color var(--transition);
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      color: var(--white);
      background:
        linear-gradient(
          135deg,
          var(--green-700),
          var(--green-500)
        );
      box-shadow:
        0 15px 32px rgba(25, 92, 68, 0.28);
    }

    .btn-primary:hover {
      box-shadow:
        0 20px 42px rgba(25, 92, 68, 0.36);
    }

    .btn-secondary {
      color: var(--green-850);
      border: 1px solid var(--green-300);
      background: rgba(255, 255, 255, 0.84);
    }

    .site-header {
      position: absolute;
      z-index: 30;
      top: 0;
      left: 0;
      width: 100%;
      padding: 25px 0;
      color: var(--white);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 25px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 13px;
      color: inherit;
      text-decoration: none;
    }

    .brand-mark {
      display: grid;
      width: 47px;
      height: 47px;
      flex: 0 0 47px;
      place-items: center;
      border: 1px solid rgba(255,255,255,0.35);
      border-radius: 50%;
      color: var(--gold-300);
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(14px);
      font-family: Georgia, serif;
      font-size: 0.93rem;
      letter-spacing: 0.06em;
    }

    .brand-copy strong,
    .brand-copy span {
      display: block;
    }

    .brand-copy strong {
      font-family: Georgia, serif;
      font-size: 1.06rem;
      font-weight: 500;
    }

    .brand-copy span {
      color: rgba(255,255,255,0.64);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .nav-link {
      color: rgba(255,255,255,0.86);
      font-size: 0.86rem;
      font-weight: 800;
      text-decoration: none;
    }

    .hero {
      position: relative;
      min-height: 810px;
      overflow: hidden;
      padding: 165px 0 100px;
      color: var(--white);
      background:
        radial-gradient(
          circle at 80% 23%,
          rgba(85,185,143,0.29),
          transparent 27rem
        ),
        radial-gradient(
          circle at 25% 110%,
          rgba(200,164,94,0.15),
          transparent 28rem
        ),
        linear-gradient(
          132deg,
          var(--green-1000),
          var(--green-900) 57%,
          var(--green-700)
        );
    }

    .hero::before {
      content: "";
      position: absolute;
      top: -210px;
      right: -160px;
      width: 610px;
      height: 610px;
      border: 1px solid rgba(231,209,155,0.16);
      border-radius: 50%;
      box-shadow:
        0 0 0 80px rgba(255,255,255,0.022),
        0 0 0 160px rgba(255,255,255,0.016);
    }

    .hero::after {
      content: "IPC";
      position: absolute;
      right: 4%;
      bottom: -2%;
      color: rgba(255,255,255,0.025);
      font-family: Georgia, serif;
      font-size: clamp(9rem, 24vw, 23rem);
      line-height: 1;
    }

    .hero-grid {
      position: relative;
      z-index: 3;
      display: grid;
      grid-template-columns: 1.18fr 0.82fr;
      align-items: center;
      gap: 74px;
    }

    .hero h1 {
      max-width: 830px;
      margin-bottom: 26px;
      font-family:
        Georgia,
        "Times New Roman",
        serif;
      font-size: clamp(3.1rem, 6.7vw, 5.85rem);
      font-weight: 500;
      letter-spacing: -0.052em;
      line-height: 0.98;
    }

    .hero h1 em {
      color: var(--green-300);
      font-style: normal;
    }

    .hero-copy {
      max-width: 725px;
      margin-bottom: 32px;
      color: rgba(255,255,255,0.78);
      font-size: 1.14rem;
    }

    .hero-copy strong {
      color: var(--white);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 13px;
    }

    .hero-note {
      margin-top: 18px;
      color: rgba(255,255,255,0.55);
      font-size: 0.82rem;
    }

    .ipc-card {
      position: relative;
      padding: 37px;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius-xl);
      background:
        linear-gradient(
          160deg,
          rgba(255,255,255,0.13),
          rgba(255,255,255,0.045)
        );
      box-shadow: var(--shadow-xl);
      backdrop-filter: blur(17px);
    }

    .ipc-seal {
      display: grid;
      width: 79px;
      height: 79px;
      margin-bottom: 28px;
      place-items: center;
      border: 1px solid rgba(231,209,155,0.55);
      border-radius: 50%;
      color: var(--gold-300);
      font-family: Georgia, serif;
      font-size: 1.32rem;
      letter-spacing: 0.08em;
    }

    .ipc-card h2 {
      margin-bottom: 13px;
      font-family: Georgia, serif;
      font-size: 1.75rem;
      font-weight: 500;
      line-height: 1.18;
    }

    .ipc-card > p {
      color: rgba(255,255,255,0.68);
      font-size: 0.94rem;
    }

    .dimension-mini-list {
      display: grid;
      gap: 12px;
      margin-top: 27px;
      list-style: none;
    }

    .dimension-mini-list li {
      display: flex;
      align-items: center;
      gap: 11px;
      font-size: 0.89rem;
    }

    .dimension-mini-list li::before {
      content: "";
      width: 9px;
      height: 9px;
      flex: 0 0 9px;
      border-radius: 50%;
      background: var(--green-300);
      box-shadow:
        0 0 0 5px rgba(137,209,177,0.09);
    }

    section {
      padding: 98px 0;
    }

    .section-heading {
      max-width: 780px;
      margin-bottom: 50px;
    }

    .section-heading.center {
      margin-inline: auto;
      text-align: center;
    }

    .section-heading.center .eyebrow {
      justify-content: center;
    }

    .section-heading h2 {
      margin-bottom: 17px;
      font-family: Georgia, serif;
      font-size: clamp(2.35rem, 5vw, 4.15rem);
      font-weight: 500;
      letter-spacing: -0.038em;
      line-height: 1.04;
    }

    .section-heading p {
      color: var(--muted);
      font-size: 1.06rem;
    }

    .value-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .value-card {
      position: relative;
      min-height: 265px;
      overflow: hidden;
      padding: 31px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,0.75);
      box-shadow: var(--shadow-md);
    }

    .value-card::after {
      content: attr(data-number);
      position: absolute;
      right: 18px;
      bottom: -22px;
      color: rgba(25,92,68,0.055);
      font-family: Georgia, serif;
      font-size: 7.5rem;
      line-height: 1;
    }

    .value-icon {
      display: grid;
      width: 47px;
      height: 47px;
      margin-bottom: 35px;
      place-items: center;
      border-radius: 50%;
      color: var(--white);
      background:
        linear-gradient(
          135deg,
          var(--green-800),
          var(--green-500)
        );
      font-weight: 900;
    }

    .value-card h3 {
      margin-bottom: 11px;
      font-family: Georgia, serif;
      font-size: 1.42rem;
      font-weight: 500;
    }

    .value-card p {
      color: var(--muted);
      font-size: 0.93rem;
    }

    .method-section {
      color: var(--white);
      background:
        radial-gradient(
          circle at 15% 10%,
          rgba(85,185,143,0.18),
          transparent 24rem
        ),
        linear-gradient(
          135deg,
          var(--green-1000),
          var(--green-800)
        );
    }

    .method-section .section-heading p {
      color: rgba(255,255,255,0.66);
    }

    .method-section .eyebrow {
      color: var(--green-300);
    }

    .method-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .method-item {
      min-height: 170px;
      padding: 24px;
      border: 1px solid rgba(255,255,255,0.11);
      border-radius: var(--radius-md);
      background: rgba(255,255,255,0.055);
    }

    .method-item strong {
      display: block;
      margin-bottom: 8px;
      color: var(--green-300);
      font-family: Georgia, serif;
      font-size: 1.22rem;
      font-weight: 500;
    }

    .method-item p {
      color: rgba(255,255,255,0.62);
      font-size: 0.88rem;
    }

    .story {
      background:
        linear-gradient(
          120deg,
          rgba(255,255,255,0.94),
          rgba(234,247,241,0.96)
        );
    }

    .story-grid {
      display: grid;
      grid-template-columns: 0.79fr 1.21fr;
      align-items: center;
      gap: 68px;
    }

    .portrait {
      position: relative;
      display: grid;
      min-height: 545px;
      overflow: hidden;
      padding: 36px;
      place-items: end start;
      border-radius: var(--radius-xl);
      color: var(--white);
      background:
        linear-gradient(
          180deg,
          rgba(4,22,17,0.03),
          rgba(4,22,17,0.93)
        ),
        radial-gradient(
          circle at 52% 20%,
          #76b398,
          var(--green-800) 53%,
          var(--green-1000)
        );
      box-shadow: var(--shadow-xl);
    }

    .portrait::before {
      content: "WG";
      position: absolute;
      top: 48%;
      left: 50%;
      color: rgba(255,255,255,0.075);
      font-family: Georgia, serif;
      font-size: 12rem;
      transform: translate(-50%, -50%);
    }

    .portrait-copy {
      position: relative;
      z-index: 2;
    }

    .portrait-copy strong,
    .portrait-copy span {
      display: block;
    }

    .portrait-copy strong {
      font-family: Georgia, serif;
      font-size: 1.55rem;
      font-weight: 500;
    }

    .portrait-copy span {
      color: rgba(255,255,255,0.67);
      font-size: 0.84rem;
    }

    .story-copy h2 {
      margin-bottom: 24px;
      font-family: Georgia, serif;
      font-size: clamp(2.4rem, 4.8vw, 4.1rem);
      font-weight: 500;
      letter-spacing: -0.038em;
      line-height: 1.06;
    }

    .story-copy p {
      margin-bottom: 18px;
      color: var(--muted);
      font-size: 1.02rem;
    }

    .story-quote {
      margin: 29px 0;
      padding: 25px 28px;
      border-left: 4px solid var(--gold-500);
      color: var(--green-850);
      background: var(--paper);
      font-family: Georgia, serif;
      font-size: 1.17rem;
      font-style: italic;
      box-shadow: var(--shadow-md);
    }

    .workshop-section {
      color: var(--white);
      background:
        linear-gradient(
          133deg,
          var(--green-1000),
          var(--green-700)
        );
    }

    .workshop-grid {
      display: grid;
      grid-template-columns: 1fr 0.82fr;
      align-items: center;
      gap: 58px;
    }

    .workshop-section h2 {
      margin-bottom: 19px;
      font-family: Georgia, serif;
      font-size: clamp(2.4rem, 5vw, 4.25rem);
      font-weight: 500;
      letter-spacing: -0.04em;
      line-height: 1.04;
    }

    .workshop-section p {
      max-width: 690px;
      color: rgba(255,255,255,0.68);
    }

    .facts-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .fact {
      padding: 21px;
      border: 1px solid rgba(255,255,255,0.13);
      border-radius: var(--radius-md);
      background: rgba(255,255,255,0.06);
    }

    .fact strong,
    .fact span {
      display: block;
    }

    .fact strong {
      margin-bottom: 5px;
      color: var(--green-300);
      font-size: 1.08rem;
    }

    .fact span {
      color: rgba(255,255,255,0.61);
      font-size: 0.82rem;
    }

    .assessment-shell {
      min-height: 100vh;
      padding: 34px 0 70px;
      background:
        radial-gradient(
          circle at 50% 0%,
          rgba(85,185,143,0.16),
          transparent 30rem
        ),
        var(--green-100);
    }

    .assessment-card {
      width: min(930px, calc(100% - 30px));
      margin: 0 auto;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: var(--paper);
      box-shadow: var(--shadow-xl);
    }

    .assessment-top {
      padding: 25px 34px;
      color: var(--white);
      background:
        linear-gradient(
          120deg,
          var(--green-1000),
          var(--green-800)
        );
    }

    .assessment-brand {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 17px;
    }

    .assessment-brand strong {
      font-family: Georgia, serif;
      font-size: 1.18rem;
      font-weight: 500;
    }

    .assessment-brand span {
      color: rgba(255,255,255,0.61);
      font-size: 0.78rem;
    }

    .progress-track {
      height: 7px;
      overflow: hidden;
      margin-top: 19px;
      border-radius: 999px;
      background: rgba(255,255,255,0.13);
    }

    .progress-fill {
      width: 0;
      height: 100%;
      border-radius: inherit;
      background:
        linear-gradient(
          90deg,
          var(--gold-500),
          var(--green-300)
        );
      transition: width 350ms ease;
    }

    .assessment-content {
      padding: 48px;
    }

    .form-intro h2,
    .quiz-question h2,
    .result-title {
      margin-bottom: 17px;
      font-family: Georgia, serif;
      font-size: clamp(2rem, 5vw, 3.35rem);
      font-weight: 500;
      letter-spacing: -0.035em;
      line-height: 1.08;
    }

    .form-intro > p,
    .question-help {
      color: var(--muted);
    }

    .assessment-explanation {
      display: grid;
      gap: 12px;
      margin-top: 27px;
      padding: 23px;
      border: 1px solid var(--green-200);
      border-radius: var(--radius-md);
      background: var(--green-50);
    }

    .assessment-explanation strong {
      color: var(--green-850);
    }

    .assessment-explanation p {
      color: var(--muted);
      font-size: 0.89rem;
    }

    .lead-form {
      display: grid;
      gap: 18px;
      margin-top: 31px;
    }

    .field-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 17px;
    }

    .field {
      display: grid;
      gap: 8px;
    }

    .field label {
      color: var(--green-900);
      font-size: 0.81rem;
      font-weight: 850;
    }

    .field input,
    .field select {
      width: 100%;
      min-height: 53px;
      padding: 12px 15px;
      border: 1px solid #c8dcd2;
      border-radius: 12px;
      outline: none;
      color: var(--ink);
      background: var(--white);
      transition:
        border var(--transition),
        box-shadow var(--transition);
    }

    .field input:focus,
    .field select:focus {
      border-color: var(--green-500);
      box-shadow:
        0 0 0 4px rgba(49,150,111,0.12);
    }

    .consent-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--muted);
      font-size: 0.78rem;
    }

    .consent-row input {
      margin-top: 5px;
    }

    .form-error {
      display: none;
      padding: 12px 15px;
      border-radius: 10px;
      color: var(--danger);
      background: #fceded;
      font-size: 0.83rem;
    }

    .question-meta {
      margin-bottom: 18px;
      color: var(--green-600);
      font-size: 0.77rem;
      font-weight: 900;
      letter-spacing: 0.09em;
      text-transform: uppercase;
    }

    .scale-labels {
      display: flex;
      justify-content: space-between;
      gap: 25px;
      margin: 35px 0 14px;
      color: var(--muted);
      font-size: 0.73rem;
    }

    .rating-grid {
      display: grid;
      grid-template-columns: repeat(10, 1fr);
      gap: 8px;
    }

    .rating-option input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .rating-option label {
      display: grid;
      min-height: 51px;
      place-items: center;
      border: 1px solid #c9dbd2;
      border-radius: 12px;
      color: var(--green-850);
      background: var(--white);
      font-weight: 850;
      transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
    }

    .rating-option label:hover {
      transform: translateY(-2px);
      border-color: var(--green-500);
      background: var(--green-50);
    }

    .rating-option input:checked + label {
      color: var(--white);
      border-color: var(--green-700);
      background:
        linear-gradient(
          135deg,
          var(--green-800),
          var(--green-500)
        );
      box-shadow:
        0 9px 20px rgba(25,92,68,0.23);
    }

    .quiz-actions {
      display: flex;
      justify-content: space-between;
      gap: 15px;
      margin-top: 36px;
    }

    .quiz-actions button:disabled {
      cursor: not-allowed;
      opacity: 0.42;
      transform: none;
    }

    .result-header {
      text-align: center;
    }

    .score-ring {
      position: relative;
      display: grid;
      width: 184px;
      height: 184px;
      margin: 31px auto;
      place-items: center;
      border-radius: 50%;
      background:
        conic-gradient(
          var(--green-500) calc(var(--score) * 1%),
          #dceae3 0
        );
      box-shadow:
        0 17px 38px rgba(25,92,68,0.13);
    }

    .score-ring::before {
      content: "";
      position: absolute;
      width: 145px;
      height: 145px;
      border-radius: 50%;
      background: var(--paper);
    }

    .score-value {
      position: relative;
      z-index: 2;
      font-family: Georgia, serif;
      font-size: 3.4rem;
      line-height: 1;
    }

    .score-value small {
      font-size: 1.05rem;
    }

    .profile-badge {
      display: inline-flex;
      margin-bottom: 20px;
      padding: 8px 17px;
      border-radius: 999px;
      color: var(--green-850);
      background: var(--green-200);
      font-size: 0.87rem;
      font-weight: 900;
    }

    .profile-description {
      max-width: 720px;
      margin: 0 auto;
      color: var(--muted);
      font-size: 1rem;
    }

    .report-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      align-items: start;
      gap: 30px;
      margin-top: 48px;
    }

    .radar-card,
    .dimensions-card {
      padding: 27px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--white);
      box-shadow: var(--shadow-md);
    }

    .card-title {
      margin-bottom: 20px;
      font-family: Georgia, serif;
      font-size: 1.45rem;
      font-weight: 500;
    }

    .radar-wrapper {
      width: 100%;
      overflow: visible;
    }

    #radarSvg {
      display: block;
      width: 100%;
      height: auto;
      overflow: visible;
    }

    .radar-label {
      fill: var(--green-850);
      font-size: 12px;
      font-weight: 750;
    }

    .dimensions-list {
      display: grid;
      gap: 18px;
    }

    .dimension-row {
      padding-bottom: 17px;
      border-bottom: 1px solid var(--line);
    }

    .dimension-row:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }

    .dimension-head {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 9px;
    }

    .dimension-head strong {
      color: var(--green-900);
      font-size: 0.92rem;
    }

    .dimension-head span {
      color: var(--green-600);
      font-weight: 900;
    }

    .dimension-track {
      height: 9px;
      overflow: hidden;
      border-radius: 999px;
      background: #e4eee9;
    }

    .dimension-fill {
      height: 100%;
      border-radius: inherit;
      background:
        linear-gradient(
          90deg,
          var(--green-800),
          var(--green-400)
        );
    }

    .dimension-note {
      margin-top: 10px;
      color: var(--muted);
      font-size: 0.81rem;
    }

    .recommendation-box {
      margin-top: 31px;
      padding: 31px;
      border-radius: var(--radius-lg);
      color: var(--white);
      background:
        radial-gradient(
          circle at 90% 0%,
          rgba(85,185,143,0.22),
          transparent 17rem
        ),
        linear-gradient(
          135deg,
          var(--green-1000),
          var(--green-700)
        );
      box-shadow: var(--shadow-lg);
    }

    .recommendation-box h3 {
      margin-bottom: 13px;
      font-family: Georgia, serif;
      font-size: 1.8rem;
      font-weight: 500;
    }

    .recommendation-box p {
      color: rgba(255,255,255,0.73);
    }

    .result-cta {
      margin-top: 31px;
      padding: 38px;
      border: 1px solid var(--gold-300);
      border-radius: var(--radius-lg);
      text-align: center;
      background:
        radial-gradient(
          circle at 50% -60%,
          rgba(200,164,94,0.24),
          transparent 22rem
        ),
        #fffaf0;
    }

    .result-cta h3 {
      margin-bottom: 13px;
      font-family: Georgia, serif;
      font-size: 2.08rem;
      font-weight: 500;
    }

    .result-cta > p {
      max-width: 680px;
      margin: 0 auto 23px;
      color: var(--muted);
    }

    .result-facts {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 9px;
      margin: 18px 0 24px;
    }

    .result-facts span {
      padding: 7px 11px;
      border: 1px solid var(--gold-300);
      border-radius: 999px;
      color: var(--gold-700);
      background: rgba(255,255,255,0.65);
      font-size: 0.75rem;
      font-weight: 800;
    }

    .disclaimer {
      margin-top: 26px;
      padding: 20px;
      border-radius: 13px;
      color: var(--muted);
      background: var(--green-100);
      font-size: 0.75rem;
    }

    .final-cta {
      text-align: center;
    }

    footer {
      padding: 48px 0;
      color: rgba(255,255,255,0.59);
      background: var(--green-1000);
      font-size: 0.82rem;
    }

    .footer-grid {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 34px;
    }

    footer strong {
      display: block;
      margin-bottom: 6px;
      color: var(--white);
      font-family: Georgia, serif;
      font-size: 1.2rem;
      font-weight: 500;
    }

    @media (max-width: 940px) {
      .hero-grid,
      .story-grid,
      .workshop-grid,
      .report-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        min-height: auto;
      }

      .ipc-card {
        max-width: 630px;
      }

      .value-grid,
      .method-grid {
        grid-template-columns: 1fr;
      }

      .story-grid {
        gap: 40px;
      }

      .portrait {
        min-height: 430px;
      }

      .radar-card {
        max-width: 560px;
        margin-inline: auto;
      }
    }

    @media (max-width: 660px) {
      .nav-link {
        display: none;
      }

      .hero {
        padding-top: 137px;
      }

      .hero h1 {
        font-size: 3.25rem;
      }

      section {
        padding: 72px 0;
      }

      .field-grid,
      .facts-grid {
        grid-template-columns: 1fr;
      }

      .assessment-top {
        padding: 21px;
      }

      .assessment-content {
        padding: 31px 21px;
      }

      .rating-grid {
        grid-template-columns: repeat(5, 1fr);
      }

      .scale-labels {
        font-size: 0.66rem;
      }

      .quiz-actions {
        flex-direction: column-reverse;
      }

      .quiz-actions .btn {
        width: 100%;
      }

      .result-cta {
        padding: 30px 20px;
      }

      .footer-grid {
        align-items: flex-start;
        flex-direction: column;
      }
    }

.eyebrow-on-dark { color: var(--green-300); }
.result-date-note { margin-top: 16px; font-size: 0.81rem; }
.hidden-field { position:absolute; left:-9999px; width:1px; height:1px; opacity:0; }
.admin-shell { min-height: 100vh; padding: 60px 0; background: var(--green-100); }
.admin-card { width: min(1080px, calc(100% - 30px)); margin: 0 auto; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow-lg); }
.admin-head { display:flex; justify-content:space-between; gap:20px; align-items:flex-start; margin-bottom:24px; }
.admin-head h1 { font-family: Georgia, serif; font-size: 2.1rem; font-weight:500; line-height:1.1; }
.admin-table { width:100%; border-collapse:collapse; font-size:.9rem; }
.admin-table th, .admin-table td { padding:12px 10px; border-bottom:1px solid var(--line); text-align:left; vertical-align:top; }
.admin-table th { color:var(--green-850); font-size:.76rem; text-transform:uppercase; letter-spacing:.07em; }
.admin-filters { display:grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap:12px; margin-bottom:20px; }
.admin-actions { display:flex; gap:10px; flex-wrap:wrap; }
.admin-kpis { display:grid; grid-template-columns: repeat(4, 1fr); gap:12px; margin-bottom:24px; }
.admin-kpi { padding:18px; border:1px solid var(--line); border-radius:16px; background:#fff; }
.admin-kpi strong { display:block; font-family:Georgia, serif; font-size:1.8rem; font-weight:500; }
.admin-kpi span { color:var(--muted); font-size:.78rem; }
.admin-detail-grid { display:grid; grid-template-columns: .75fr 1.25fr; gap:22px; }
.admin-answer { padding:14px 0; border-bottom:1px solid var(--line); }
.admin-answer strong { color:var(--green-850); }
.admin-answer span { display:inline-flex; margin-top:7px; padding:5px 10px; border-radius:999px; background:var(--green-100); color:var(--green-700); font-weight:800; }
.pagination { display:flex; gap:8px; margin-top:20px; align-items:center; }
.pagination a, .pagination span { padding:8px 11px; border:1px solid var(--line); border-radius:9px; background:#fff; text-decoration:none; }
.pagination .current { background:var(--green-800); color:#fff; }
@media (max-width: 760px) { .admin-filters, .admin-kpis, .admin-detail-grid { grid-template-columns:1fr; } .admin-head { flex-direction:column; } .admin-table { display:block; overflow-x:auto; } }
.result-restart { margin-top: 26px; text-align: center; }
