:root {
  --vitality: #FFD000;
  --emotion: #E53846;
  --execution: #2D52B5;
  --mind: #770136;
  --alignment: #1B74CD;

  --vitality-bg: linear-gradient(135deg, #f6bf14 0%, #ffcf1f 60%, #eab308 100%);
  --emotion-bg: linear-gradient(135deg, #ff4d67 0%, #ff1f49 55%, #d9133a 100%);
  --mind-bg: linear-gradient(135deg, #5d0026 0%, #7a0138 55%, #99004a 100%);
  --execution-bg: linear-gradient(135deg, #4b43d1 0%, #3757d7 45%, #2a63de 100%);
  --alignment-bg: linear-gradient(135deg, #47a4ff 0%, #1f7fe5 50%, #0f5fbc 100%);

  --vitality-text: #f5f5f5;
  --emotion-text: #f5f5f5;
  --execution-text: #f5f5f5;
  --mind-text: #f5f5f5;
  --alignment-text: #f5f5f5;
}

@font-face {
  font-family: "q5-heading";
  src: url("./fonts/AndQFive_Headlinefont_Thick.ttf") format("truetype");
}
@font-face {
  font-family: "q5-heading-slim";
  src: url("./fonts/AndQFive_Headlinefont_Thin.ttf") format("truetype");
}


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

  .intro-meta {
    margin-top: 10px;
    font-size: 14px;
    color: #6f6e68;
  }

 body {
    font-family: 'Montserrat', sans-serif; 
    background: linear-gradient(#faf8fb, #f3eef6); 
    color: #1a1a18;
    min-height: 100vh;
}
.privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;

  margin-top: 1.25rem;
  padding: 1rem;

  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f9fafb;

  font-size: 14px;
  line-height: 1.45;
  color: #374151;
}

.privacy-consent input {
  margin-top: 0.2rem;
  flex: 0 0 auto;
}

.privacy-consent a {
  color: #111827;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-warn {
  margin-top: 0.5rem;
  font-size: 14px;
  color: #b91c1c;
}

.privacy-notice-card {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #f9fafb;
  margin-bottom: 1.5rem;
}

.privacy-notice-card h3 {
  margin: 0 0 0.4rem;
  font-size: 14px;
  font-weight: 650;
  color: #111827;
}

.privacy-notice-card p {
  margin: 0.45rem 0;
  font-size: 14px;
  line-height: 1.45;
  color: #4b5563;
}

.privacy-details-toggle {
  margin-top: 0.4rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111827;
  font-size: 14px;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.privacy-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;

  margin-top: 0;
  padding-top: 0;
  border-top: 1px solid transparent;

  transition:
    max-height 180ms ease,
    opacity 140ms ease,
    margin-top 180ms ease,
    padding-top 180ms ease,
    border-color 180ms ease,
    visibility 0s linear 180ms;
}

.privacy-details.is-open {
  max-height: 420px;
  opacity: 1;
  visibility: visible;

  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top-color: #e5e7eb;

  transition:
    max-height 220ms ease,
    opacity 160ms ease,
    margin-top 180ms ease,
    padding-top 180ms ease,
    border-color 180ms ease,
    visibility 0s;
}

@media (prefers-reduced-motion: reduce) {
  .privacy-details {
    transition: none;
  }
}
.field-help.privacy-help {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;

  margin-top: 0.5rem;
  color: #6b7280;
}

.field-help.privacy-help::before {
  content: "ⓘ";
  flex: 0 0 auto;
  color: #9ca3af;
}
.privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 1rem;
  font-size: 14px;
  line-height: 1.45;
  color: #374151;
}

.privacy-consent input {
  margin-top: 0.2rem;
  flex: 0 0 auto;
}

.privacy-warn {
  margin-top: 0.5rem;
  font-size: 14px;
  color: #b91c1c;
}

.meta-line {
  text-align: center;
  max-width: 420px;
  margin: 10px auto 16px;
  font-size: 14px;
  color: #6f6e68;
}

.section-head {
  margin-top: 30px;
  margin-bottom: 14px;
}
.sec-title { 
  font-size: 14px; 
  font-weight: 600; 
  color: #4a4944; 
  padding-bottom: 8px;
  transition: color 0.2s ease;
}

.sec-title::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 6px;
  background: rgba(0,0,0,0.12);
}
.section-meta {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.5;
  color: #6f6e68;
  max-width: 520px;
}

.page-sub {
  margin-top: 8px;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.5;
  color: #6f6e68;
}

.brand {
  position: fixed;
  top: 20px;
  left: 24px;
  width: clamp(96px, 10vw, 180px);
  height: auto;
  display: block;
}

@media (max-width: 1100px) {
  .brand {
    width: 110px;
    opacity: 0.7;
  }
}

@media (max-width: 800px) {
  .brand {
    width: 84px;
    opacity: 0.5;
  }
  .nav {
    position: fixed;
    bottom: calc(15px + env(safe-area-inset-bottom));
    left: 0;
    right: 0;

    padding: 12px 24px;
  }
  .nav.retake {
    position: relative !important;
    display: flex !important; 
    gap: 10px; 
    align-items: center; 
    margin-top: 24px;
    padding: 0 !important;
  }
  #scr-assess {
    padding-bottom: 50px;
  }
}

@media (max-width: 640px) {
  .brand {
    display: none;
  }
  .wrap {
    padding: 2rem 1rem 3rem;
  }
}

.bg {
  width: 100%; 
  height: 100%;
  min-height: 100vh;
  /* background: radial-gradient(circle at center, #fff, #f5f5f5); */
  z-index: -1;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.75), transparent 34%), linear-gradient(180deg, #f1f1f1 0%, #e9e9e9 100%);
}
/* .logo{
  width: 200px;
} */

.wrap { 
  margin: 0 auto; 
  padding: 3rem 1.5rem 4rem; 
  position: relative; 
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* screens */
.screen { display: none; }
.screen.active { display: block; }

#scr-intro {
  max-width: 700px;
  padding: 2%;
}

#scr-assess {
  max-width: 700px; 
}

#scr-results {
  max-width: 900px; 
}
/* intro stats */
.stat-row { display: flex; gap: 12px; margin: 20px 0;}
.stat { background: #fff; border: 1px solid #e0dfd8; border-radius: 10px; padding: 14px 18px; flex: 1; }
.stat-num { font-size: 22px; font-weight: 600; color: #1a1a18; }
.stat-lbl { font-size: 11px; color: #888; margin-top: 2px; }

/* progress */
.pbar { height: 3px; background: #e0dfd8; border-radius: 2px; margin-bottom: 28px; }
.pfill {
  height: 100%;
  background: #ffda33;
  border-radius: 2px;
  transition: width 0.3s;
  box-shadow: 0 0 6px rgba(255, 218, 51, 0.25);
}


/* scenario card */
.card { background: #fff; border: 1px solid #e0dfd8; border-radius: 12px; padding: 20px 24px; margin-bottom: 16px; }
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #888; margin-bottom: 8px; }
.scenario-text { font-size: 15px; color: #2a2a28; line-height: 1.7; font-style: italic; }
.question {
  display: flex; flex-direction: column;
  gap: 0.75rem;
  font-size: 1.1rem; 
  font-weight: 600; 
  color: #1a1a18; 
  margin-top: 1.5rem;
  min-height: 69px;
}
.hint { 
  font-size: 12px; 
  color: rgba(0,0,0,0.45); 
}

/* SVG triangle wrapper */
.tri-wrap { width: 100%; margin: 0 auto 12px; }
.tri-wrap svg { display: block; width: 100%; cursor: crosshair; touch-action: none; user-select: none; }

/* pct pills */
.pills { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-bottom: 8px; }
.pill { background: #f1f0e8; border-radius: 20px; padding: 3px 10px; font-size: 11px; color: #888; }
.pill b { color: #1a1a18; font-weight: 600; }
.placed { text-align: center; font-size: 12px; color: #770136; min-height: 18px; margin-bottom: 4px; }

/* nav */
.nav { display: flex; gap: 10px; align-items: center; margin-top: 24px; }

.btn:hover { background: #f1f0e8; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 26px;
  background: #fff; 
  color: #1a1a18;
  border: 1px solid #b3b2ac;
  font-size: 0.72rem; 
  font-weight: 500;
  letter-spacing: 0.14em; 
  text-transform: uppercase;
  border-radius: 2px; 
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border-radius: 10px;
  width: fit-content;
}
.arrow,
.arrow-back {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 1.5px solid #000;
  border-right: 1.5px solid #000;
  flex: 0 0 12px;
}

.arrow {
  transform: rotate(45deg);
}

.arrow-back {
  transform: rotate(225deg);
}

.btn.primary { 
    background: #ffda33; 
    color: black; 
    border-color: #ffda33; 
}

.btn.primary:hover { 
    background: #fce373;
    gap: 14px;
}
.btn:disabled { opacity: 0.35; cursor: not-allowed; pointer-events: none; }


.pdf-button {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
  padding: 1.5rem;
  border-radius: 100%;
  transition: background-color 0.2s ease, 
              box-shadow 0.2s ease, 
              transform 0.1s ease;
  border: 1px solid #bebdbd;
  box-shadow: 0 2px 2px rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.pdf-button:hover {
  color: var(--text);
  box-shadow: 
    0 0 0 2px rgba(255,255,255,0.05),
    0 6px 16px rgba(0,0,0,0.4);
  transform: translateY(-1px) scale(1.03);
}
.button-div {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}
.cta-div { 
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  gap: 12px; 
}

.form-select {
  padding: 12px 16px;
  font-size: 14px;
  border: 1px solid #c8c7c0;
  border-radius: 10px;
  background: #fff;
  color: #1a1a18;
  cursor: pointer;
  margin-bottom: 1.5rem;
  width: fit-content;
  transition: all 0.2s ease;
}

.form-select.text-input{
  cursor: text;
  margin-bottom: 0;
}

.form-select:focus{
  border-color: #ffda33;
}

.select-div:focus-within .sec-title {
  color: #ffda33;
}
/* .logo-div { 
  display: flex; 
  justify-content: center; 
  margin-bottom: 1.5rem; 
  position: absolute; top: 0px; left: 18%;
  opacity: 0.6;
} */

#industry-other {
  padding: 12px 16px;
  font-size: 14px;
  border: 1px solid #c8c7c0;
  border-radius: 10px;
  background: #fff;
  color: #1a1a18;
  max-width: 300px;
}
.note-div {
  font-size: 12px; 
  color: #000; 
  padding: 1.5rem 1.5rem;
  background-color: #dadada75;
  border: 1px solid #bebdbd;
  border-radius: 10px;
}
.step-ind { font-size: 14px; color: transparent; margin-left: auto; }
.warn { font-size: 12px; color: #993c1d; margin-top: 10px; display: none; }

/* results */
.score-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; max-height: 350px; }
.scard { background: #fff; border: 1px solid #e0dfd8; border-radius: 10px; padding: 14px; }
.scard-hero { background: #f4e8ee; padding: 14px; border-radius: 10px; border: 1px solid #770136;}
.scard-lbl { font-size: 12px; color: #888; margin-bottom: 4px; }
.scard-val { font-size: 22px; font-weight: 600; color: #1a1a18; }
.scard-hero .scard-val { color: #770136; }
.scard-sub { font-size: 11px; color: #aaa; margin-top: 2px; }

.verdict {
  /* border-radius: 18px; */
 /*  padding: 20px 24px; */
  margin-bottom: 24px;
  /* background: rgba(255,255,255,0.55); */
  /* border: 1px solid rgba(60,40,30,0.08); */
  /* box-shadow: 0 8px 24px rgba(0,0,0,0.03); */
  position: relative;
}

.verdict-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: rgba(40,32,28,0.55);
}

.verdict-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2b211d;
}

.verdict-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(43,33,29,0.72);
  max-width: 52ch;
}

.verdict::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--verdict-accent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--verdict-accent) 30%, transparent);
}

.verdict::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200,120,90,0.08) 0%,
    rgba(200,120,90,0.04) 40%,
    transparent 70%
  );
}
/* .v-s1 { background: #eaf3de; border-color: #97c459; }
.v-s1 .verdict-lbl, .v-s1 .verdict-desc { color: #3b6d11; }
.v-s1 .verdict-title { color: #27500a; }
.v-s2 { background: #faeeda; border-color: #ef9f27; }
.v-s2 .verdict-lbl, .v-s2 .verdict-desc { color: #854f0b; }
.v-s2 .verdict-title { color: #633806; }
.v-s3 { background: #faece7; border-color: #f0997b; }
.v-s3 .verdict-lbl, .v-s3 .verdict-desc { color: #993c1d; }
.v-s3 .verdict-title { color: #4a1b0c; }
.v-s4 { background: #fcebeb; border-color: #f09595; }
.v-s4 .verdict-lbl, .v-s4 .verdict-desc { color: #a32d2d; }
.v-s4 .verdict-title { color: #501313; } */

/* .v-s1 {
  --verdict-accent: #78b84c;
  background: #f6f8f2;
}

.v-s2 {
  --verdict-accent: #d59a33;
  background: #f8f5ef;
}

.v-s3 {
  --verdict-accent: #cf7b5d;
  background: #f8f3f1;
}

.v-s4 {
  --verdict-accent: #cf6a6a;
  background: #f8f1f1;
} */


.q-grid-wrapper {
  width: 100%;
  display: block;
}

.q-grid { 
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.q-card {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 18px;
  padding: 40px 20px 24px 20px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  text-align: left;
  gap: 12px;
}

.q-last {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.q-card::after {
  width: 220px;
  height: 220px;
  right: -70px;
  bottom: -70px;
  background: radial-gradient(circle, rgba(255,255,255,.18) 0%, rgba(255,255,255,.05) 40%, rgba(255,255,255,0) 72%);
}

.q-card::before,
.q-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}


.q-card.vitality .orb,
.q-card.emotion .orb,
.q-card.mind .orb,
.q-card.execution .orb,
.q-card.alignment .orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.95), rgba(255,255,255,.28) 30%, rgba(255,255,255,0) 68%);
  filter: blur(1px);
  opacity: .9;
}
.orb-1 {
  width: 26px;
  height: 26px;
  top: 18px;
  right: 24px;
}

.orb-2 {
  width: 14px;
  height: 14px;
  bottom: 24px;
  left: 28px;
}

.orb-3 {
  width: 42px;
  height: 42px;
  bottom: 18px;
  right: 38px;
  opacity: 0.45;
}

.q-card.vitality .orb-1 { top: 14px; right: 18px; }
.q-card.emotion  .orb-1 { top: 22px; right: 30px; }
.q-card.mind     .orb-1 { top: 10px; right: 26px; }
.q-card.execution .orb-1 { top: 18px; right: 22px; }
.q-card.alignment .orb-1 { top: 12px; right: 40px; }
.q-card.vitality .orb { opacity: 0.7; }
.q-card.emotion  .orb { opacity: 0.85; }
.q-card.mind     .orb { opacity: 0.6; }
.q-card.execution .orb { opacity: 0.75; }
.q-card.alignment .orb { opacity: 0.8; }

.q-card.vitality { background: var(--vitality-bg); color: #000; }
.q-card.emotion  { background: var(--emotion-bg); color: #fff; }
.q-card.mind     { background: var(--mind-bg); color: #fff; }
.q-card.execution{ background: var(--execution-bg); color: #fff; }
.q-card.alignment{ background: var(--alignment-bg); color: #fff; }
.q-card.span-2 {
  grid-column: span 2;
}

.q-card.span-2 .q-head {
  justify-content: flex-start;
  gap: 12px;
}

.q-card.vitality .q-copy {
  color: rgba(0,0,0,0.85);
}
.q-card.vitality .q-section-label {
  color: rgba(0,0,0,0.65);
}
.q-card .q-head {
  display: flex; 
  justify-content: space-between; 
  align-items: baseline; 
  gap:6px;
  font-family: 'q5-heading', sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
  border-bottom: 1px solid #ffffff9f;
  width: 100%;
}
.q-card.vitality .q-head {
  border-bottom: 1px solid #000000a9;
}

.q-section:first-of-type {
  margin-top: 2px;
}

.q-section:last-of-type {
  margin-top: 10px;
}
.q-card .q-bars {
  display: flex; justify-content: space-between; align-items: center; gap:2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.8;
}

.q-card .q-metrics {
  display: flex; 
  align-items: baseline; 
  gap: 8px;
  
}

.q-card .q-role {
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 8px;
  opacity: 0.9;
  max-width: 85%;
}

.q-section {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.q-section:first-of-type .q-copy {
  font-weight: 500;
}

.q-section:nth-of-type(2) .q-copy {
  opacity: 0.85;
}

.q-section:last-of-type .q-copy {
  font-style: italic;
  opacity: 0.95;
  font-weight: 500;
}

.q-section-label {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.75;

}
.q-copy {
  font-size: 14px;
  line-height: 1.4;
}

.qcard-lbl { font-size: 11px; color: #888; margin-bottom: 4px; }
.qcard-val { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.qbar-row { display: flex; align-items: center; gap: 4px; margin-bottom: 4px; }
.qbar-l { font-size: 10px; color: #aaa; width: 10px; }
.qbar-t { flex: 1; height: 4px; background: #e0dfd8; border-radius: 2px; overflow: hidden; }
.qbar-f { height: 100%; border-radius: 2px; }


.debrief { 
  background: linear-gradient(
    180deg,
    rgba(255, 208, 0, 0.06),
    rgba(229, 56, 70, 0.05),
    rgba(45, 82, 181, 0.05)
  ); 
  border: 1px solid rgba(83,74,183,0.25);
  border-radius: 18px; 
  padding: 24px 28px; 
  margin: 36px 0;
  position: relative;
}

.debrief::before {
  content: "";
  width: 40px;
  height: 2px;
  background: rgba(125,92,110,0.25);
  display: block;
  margin-bottom: 12px;
  border-radius: 2px;
}


.mode-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 20px;
}

.mode-card {
  border: 1px solid #deded8;
  border-radius: 12px;
  padding: 22px 22px 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.7), rgba(250,249,246,0.86));
  box-shadow: none;
}

#mode-grid-wm>.mode-grid>.mode-card {
  background: rgba(255,255,255,0.02);

}

.mode-card.resilience {
  background: #1E1E1E;
  border-color: rgba(102, 91, 208, 0.28);
}
.mode-card.preparedness {
  background: #1E1E1E;
  border-color: rgba(36, 169, 135, 0.28);
}


#mode-grid-wm > .mode-grid > .mode-card.resilience,
#mode-grid-wm > .mode-grid > .mode-card.preparedness {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.76), rgba(250,249,246,0.9));
}


.mode-head {
  display: flex;
  align-items: baseline;
  /* border-bottom: 1px solid rgba(255,255,255,0.08); */
  padding-bottom: 6px;
  gap: 10px;
}

.mode-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 0;
}

#mode-grid-wm > .mode-grid > .mode-card > .mode-head {
  color: #111827;
}
#mode-grid-wm > .mode-grid > .mode-card > .mode-head > .mode-score {
  color: #111827;
}
.mode-label {
  font-size: 21px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: -0.02em;
}
.mode-label.resilience {
  color: #6645d0;
}
.mode-label.preparedness {
  color: #24A987;
}

.mode-score {
  font-size: 17px;
  font-weight: 800;
  color: #f5f5f5;
}

.mode-role {
  max-width: 34ch;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.35;
  font-style: italic;
  color: #888888;
  opacity: 0.9;
}
#mode-grid-wm > .mode-grid > .mode-card > .mode-role {
  color: #2f333a;
}
.mode-quotients {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.mode-quotients > .q-chip {
  font-size: 12px;
  opacity: 0.9;
}

.verdict-ov-mode {
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
}
.verdict-ov-mode.v-s1{
  color: #ff9a9a;
  border-color: #ff9a9a;
  background: linear-gradient(180deg, rgba(105, 28, 28, 0.68), rgba(61, 21, 21, 0.9));
}
.verdict-ov-mode.v-s2{
  color: #ffd966;
  border-color: #ffd966;
  background: linear-gradient(180deg, rgba(96, 73, 0, 0.64), rgba(61, 46, 0, 0.9));

}
.verdict-ov-mode.v-s3{
  color: #5debb0;
  border-color: #5debb0;
  background: linear-gradient(180deg, rgba(16, 73, 45, 0.68), rgba(13, 51, 32, 0.92));
}
.verdict-ov-mode.v-s4{
  color: #7ab8f5;
  border-color: #7ab8f5;
  background: linear-gradient(180deg, rgba(12, 45, 88, 0.72), rgba(10, 31, 61, 0.94));
}

.zone-scale {
  margin-top: 18px;
}
.zone-label {
  font-size: 0.75rem;
  color: rgba(207, 203, 194, 0.58);
  margin-bottom: 50px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.zone-label-score {
  color: #ffda33;
}

.zone-strip {
  position: relative;
  display: grid;
  grid-template-columns: 6fr 6fr 7fr 6fr;
  border-radius: 8px;
  overflow: visible;
  border: 1px solid rgba(255,255,255,0.08);
}

.zone-strip-rp {
  position: relative;
  display: grid;
  grid-template-columns: 35% 25% 20% 20%;
  overflow: visible;
  margin-top: 34px;

  border: 1px solid #deded8;
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}

.zone-strip-rp .zone {
  min-height: 64px;
  padding: 13px 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;

  border: 0;
  border-right: 1px solid #e6e3dc;
  background: transparent;
  text-align: center;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 750;
}

.zone-strip-rp .zone:last-of-type {
  border-right: 0;
}

.zone-strip-rp .zone span {
  max-width: 145px;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.78;
}

/* subtle top rail instead of filled color blocks */
.zone-strip-rp .zone::before {
  content: "";
  position: absolute;
  top: 0;
  height: 3px;
}

.zone-strip-rp .z-risk {
  background: linear-gradient(180deg, rgba(255, 228, 230, 0.58), rgba(255,255,255,0.55));
  color: #9f1239;
}

.zone-strip-rp .z-dev {
  background: linear-gradient(180deg, rgba(254, 243, 199, 0.58), rgba(255,255,255,0.55));
  color: #92400e;
}

.zone-strip-rp .z-build {
  background: linear-gradient(180deg, rgba(209, 250, 229, 0.58), rgba(255,255,255,0.55));
  color: #047857;
}

.zone-strip-rp .z-ready {
  background: linear-gradient(180deg, rgba(219, 234, 254, 0.58), rgba(255,255,255,0.55));
  color: #1d4ed8;
}

.zone-strip-rp .zone-marker {
  position: absolute;
  top: -24px;
  transform: translateX(-50%);
  z-index: 5;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.zone-strip-rp .zone-marker::before {
  content: attr(data-label);
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fff;
  box-shadow: none;
  border: 1px solid currentColor;
}

.zone-strip-rp .zone-marker::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 22px;
  transform: translateX(-50%);
  width: 1px;
  height: 12px;
  border: 0;
  background: currentColor;
  opacity: 0.55;
  filter: none;
}

.zone-marker.preparedness {
  color: #24a987;
}

.zone-marker.resilience {
  color: #665bd0;
}

#preparedness-zone-marker {
  left: var(--score-pos-p);
}

#resilience-zone-marker {
  left: var(--score-pos-r);
}

.zone-marker {
  position: absolute;
  left: var(--score-pos);
  top: -30px;
  transform: translateX(-50%);
  width: max-content;
  pointer-events: none;
  z-index: 5;

  color: #ffda33;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.zone-marker::before {
  content: attr(data-score);
  display: block;
  text-align: center;
  margin-bottom: 5px;
}

.zone-marker::after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #ffda33;
  filter: drop-shadow(0 0 6px rgba(255, 218, 51, 0.35));
}


.zone {
  min-height: 48px;
  padding: 10px 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.zone span {
  display: block;
  font-weight: 500;
  font-size: 12px;
  margin-top: 2px;
  opacity: 0.85;
}

.z-risk {
  background: linear-gradient(180deg, rgba(105, 28, 28, 0.68), rgba(61, 21, 21, 0.9));
  color: #ff9a9a;
}

.z-dev {
  background: linear-gradient(180deg, rgba(96, 73, 0, 0.64), rgba(61, 46, 0, 0.9));
  color: #ffd966;
}

.z-build {
  background: linear-gradient(180deg, rgba(16, 73, 45, 0.68), rgba(13, 51, 32, 0.92));
  color: #5debb0;
}

.z-ready {
  background: linear-gradient(180deg, rgba(12, 45, 88, 0.72), rgba(10, 31, 61, 0.94));
  color: #7ab8f5;
}



.zone.active {
  position: relative;
  z-index: 2;
}

.z-risk.active {
  box-shadow: inset 0 -2px 0 #ff9a9a, 0 0 14px rgba(255, 154, 154, 0.24);
}

.z-dev.active {
  box-shadow: inset 0 -2px 0 #ffd966, 0 0 14px rgba(255, 217, 102, 0.24);
}

.z-build.active {
  box-shadow: inset 0 -2px 0 #5debb0, 0 0 14px rgba(93, 235, 176, 0.24);
}

.z-ready.active {
  box-shadow: inset 0 -2px 0 #7ab8f5, 0 0 14px rgba(122, 184, 245, 0.24);
}

.q-compact-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 760px;
}

.q-compact-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.q-compact-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid #e5e7eb;
}

.q-compact-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #BBBBBB;
}

.q-compact-subtitle {
  font-size: 10px;
  color: #c4c7cc;
}

.q-compact-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.q-compact-row {
  display: grid;
  grid-template-columns: 128px minmax(180px, 1fr) 36px 86px;
  align-items: center;
  gap: 12px;
}

.q-compact-label {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.q-compact-role {
  margin-top: 3px;
  font-size: 10px;
  line-height: 1.25;
  color: #9ca3af;
}

.q-compact-bar-track {
  width: 100%;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #efede8;
}

.q-compact-bar-fill {
  height: 100%;
  border-radius: inherit;
}

.q-compact-score {
  font-size: 14px;
  font-weight: 800;
  color: #111827;
  text-align: right;
}

.q-compact-badge {
  justify-self: start;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.q-compact-badge.risk {
  color: #b91c1c;
  background: #fee2e2;
}

.q-compact-badge.developing {
  color: #b45309;
  background: #fef3c7;
}

.q-compact-badge.building {
  color: #047857;
  background: #d1fae5;
}

.q-compact-badge.ready {
  color: #1d4ed8;
  background: #dbeafe;
}

.pattern-card {
  margin: 28px 0 34px;
  padding: 20px 22px 20px 24px;
  border: 1px solid #deded8;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(249,250,251,0.96));
  box-shadow: none;
}

.pattern-kicker {
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #aaa7a0;
}

.pattern-main {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: #161b2a;
}

.pattern-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pattern-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid #deded8;
  font-size: 12px;
  color: #6b7280;
}

.pattern-chip-label {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  background: #fff;
}

.pattern-chip strong {
  font-size: 12px;
  font-weight: 800;
  color: #111827;
}

.pattern-chip.preparedness .pattern-chip-label {
  color: #24a987;
  border: 1px solid #24a987;
}

.pattern-chip.resilience .pattern-chip-label {
  color: #665bd0;
  border: 1px solid #665bd0;
}

#pattern-chip-p-mode,
#pattern-chip-r-mode {
  text-transform: capitalize;

}
.ranked-signal-card {
  margin: 22px 0 28px;
  border: 1px solid #d9d9d4;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.ranked-signal-row {
  display: grid;
  /* grid-template-columns: 12px 1fr; */
  gap: 12px;
  padding: 22px 24px;
  border-bottom: 1px solid #e5e5df;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(249,250,251,0.96));
  position: relative;
  overflow: hidden;
}

.ranked-signal-row:last-child {
  border-bottom: 0;
}

/* .ranked-signal-dot {
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 999px;
  background: currentColor;
}
 */
.ranked-signal-row::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: #fbbf24;
}

.ranked-signal-row.risk::before {
  background: #f87171;
}

.ranked-signal-row.developing::before {
  background: #fbbf24;
}

.ranked-signal-row.building::before {
  background: #34d399;
} 

.ranked-signal-copy {
  color: #374151;
  font-size: 14px;
  line-height: 1.55;
  display: flex;
  flex-direction: column; 
}
.ranked-signal-copy-title-div{
  display: flex;
  align-items: start;
  gap: 8px;
}
.ranked-chip-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  vertical-align: middle;
}

.ranked-signal-copy strong {
  color: #111827;
  font-weight: 650;
}

.page-break-label{background:#F5F4F0;padding:12px 44px;border:1px solid #DEDEDE;border-top:none;font-size:9px;font-weight:600;color:#AAAAAA;letter-spacing:2px;text-transform:uppercase}

.focus-actions-section{
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.focus-actions-block{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 2rem;
}
.focus-actions-block-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.focus-actions-block-header > strong {
  font-size: 19px;
  font-weight: 500;
  color: #111827;
}


.section-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;
}

.section-icon svg {
  width: 17px;
  height: 17px;
}

.section-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-icon-up svg {
  transform: rotate(180deg);
}

.focus-actions-block.do-more .section-icon {
  background: #d7f8e7;
  color: #145c3a;
}

.focus-actions-block.do-less .section-icon {
  background: #ffe1e1;
  color: #8a2424;
}
.section-icon-question {
  background: #eee7ff;
  color: #5b3db3;
}
.section-icon-question svg {
  width: 18px;
  height: 18px;
}
.outcome-arrow {
  width: 10px;
  height: 10px;
  margin-left: 2px;
  vertical-align: -1px;
}

.outcome-arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.focus-actions-block>strong{
  font-size: 18px;
  font-weight: 500;
  color: #111827;
}

.focus-action-item{
  display: flex;
  gap: 1.5rem;
}

.focus-action-card {
  padding: 22px 24px;
  border: 1px solid rgba(20, 40, 60, 0.10);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(249,250,251,0.96));
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
}

.focus-actions-block.do-more .focus-action-number {
  background: #d7f8e7;
  color: #145c3a;
}

.focus-actions-block.do-less .focus-action-number {
  background: #ffe1e1;
  color: #8a2424;
}

.focus-action-copy>h4{
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}
.focus-action-copy>p{
  font-size: 14px;
  line-height: 1.4;
  color: #1A1A1A;
}

.focus-action-number {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 700;
  line-height: 1;

  background: #d7f8e7;
  color: #145c3a;
}
.focus-action-outcome {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;

  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(20, 40, 60, 0.08);
}

.focus-action-outcome {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;

  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(20, 40, 60, 0.06);
}

.focus-action-outcome span {
  display: inline-flex;
  align-items: center;
  gap: 4px;

  border-radius: 0;

  font-size: 11px;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-transform: capitalize;

  background: transparent;
}

.focus-action-outcome .outcome-prefix {
  color: rgba(20, 40, 60, 0.42);
  font-weight: 500;
}

.focus-action-outcome span.resilience {
  color: rgba(102, 91, 208, 0.72);
}

.focus-action-outcome span.preparedness {
  color: rgba(36, 169, 135, 0.72);
}

.focus-actions-block.questions {
  gap: 1.25rem;
  padding-top: 0.25rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.focus-actions-block.questions > strong {
  font-size: 18px;
  font-weight: 500;
  color: #111827;
}

.focus-question-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;

  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(20, 40, 60, 0.07);
  border-radius: 16px;
  background: rgba(249, 250, 251, 0.65);
}

.focus-question-item {
  margin: 0;
  padding-left: 1rem;
  border-left: 2px solid rgba(91, 61, 179, 0.28);

  font-size: 15px;
  line-height: 1.45;
  font-style: italic;
  color: #111827;
}

.focus-question-intro {
  margin: -0.5rem 0 0;
  max-width: 680px;

  font-size: 12px;
  line-height: 1.45;
  color: rgba(20, 40, 60, 0.58);
}

.chip-build.preparedness {
  color: rgba(36, 169, 135, 1);
}

.chip-build.resilience {
  color: rgba(102, 91, 208, 1);
}
.focus-actions-callout {
  margin-top: -3rem;
  padding: 20px 22px;

  border: 1px solid rgba(20, 40, 60, 0.10);
  border-radius: 16px;

  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(249,250,251,0.96));
}

.focus-actions-callout::before {
  display: none;
}

.focus-actions-callout p {
  margin: 0;
  max-width: 760px;

  font-size: 14px;
  line-height: 1.65;
  color: #4b5563;
}

.focus-actions-callout strong {
  color: #111827;
  font-weight: 650;
}

.focus-actions-callout .q-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;

  padding-left: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;

  background: transparent;
  border: 0;
}

.q-chip {
  font-weight: 600;
  position: relative;
  padding-left: 10px;
}

.q-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: currentColor;
}

.q-chip.vitality  { color: var(--vitality); }
.q-chip.emotion   { color: var(--emotion); }
.q-chip.mind      { color: var(--mind); }
.q-chip.execution { color: var(--execution); }
.q-chip.alignment { color: var(--alignment); }

.mode-quotients>.q-chip{
  font-size: 14px;
  text-transform: capitalize;
  opacity: 0.85;
}
.mode-quotients{
  display: flex;
  align-items: start;
  gap: 10px;
}

.debrief-lbl { 
  font-size: 11px; 
  font-weight: 600; 
  opacity: 0.7;
  letter-spacing: .14em;
  text-transform: uppercase; 
  color: rgba(43,33,29,0.45);
  margin-bottom: 8px; 
}
.debrief-q { 
  font-size: 18px; 
  font-weight: 600; 
  color: #2b211d; 
  margin-bottom: 6px; 
  line-height: 1.45; 
}
.debrief-n { 
  font-size: 14px; 
  color: rgba(43,33,29,0.72);
  line-height: 1.65;
  margin-top: 8px;
}
.debrief-r { 
  color: rgba(43,33,29,0.9);
  margin-top: 6px;
  font-weight: 600;
}


.ring-row {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  border-top: 1px solid #333333;
}

.ring-card{background:#fff;border:1px solid #e8e7e0;border-radius:12px;padding:1.25rem 1rem;text-align:center}
.ring-card.hero{border-color:#534AB7;background:#EEEDFE}
.ring-card .rl{font-size:11px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:#888780;margin-bottom:10px}
.ring-card.hero .rl{color:#534AB7}
.ring-card .rs{font-size:11px;color:#888780;margin-top:8px}


.signal-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:1.5rem}
.signal-card{background:#fff;border:none;box-shadow: 0 0 0 1px rgba(0,0,0,0.06);border-radius:10px;padding: 1.1rem 1.2rem; overflow:hidden;position:relative}
.signal-item{display:flex;align-items:flex-start;gap:8px;margin-bottom:8px}
.signal-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0;margin-top:3px}
.signal-text{font-size:13px;color:#444441;line-height:1.4}

.signal-card .sc-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #6f6e68;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.signal-text strong {
  font-weight: 600;
  color: #222;
}

.signal-text .q-chip {
  font-weight: 600;
  position: relative;
  padding-left: 0px;
  text-transform: capitalize;
}
.signal-text .q-chip::before {
  display: none;
}

.signal-meta {
  opacity: 0.7;
  font-size: 12px;
}

.signal-card.strength {
  background: #f4fbf7;
  border-color: #cfe9dc;
}

.signal-card.constraint {
  background: #fdf4f2;
  border-color: #f1d0c8;
}

.signal-card.pattern {
  background: #f4f3fc;
  border-color: #d9d6f4;
}

.signal-card.leverage {
  background: #f4f6fb;
  border-color: #d6def4;
}


.signal-card.strength.execution .signal-dot { background: var(--execution) !important; }
.signal-card.strength.emotion .signal-dot { background: var(--emotion) !important; }
.signal-card.strength.mind .signal-dot { background: var(--mind) !important; }
.signal-card.strength.vitality .signal-dot { background: var(--vitality) !important; }
.signal-card.strength.alignment .signal-dot { background: var(--alignment) !important; }

.signal-card.constraint.execution .signal-dot { background: var(--execution) !important; }
.signal-card.constraint.emotion .signal-dot { background: var(--emotion) !important; }
.signal-card.constraint.mind .signal-dot { background: var(--mind) !important; }
.signal-card.constraint.vitality .signal-dot { background: var(--vitality) !important; }
.signal-card.constraint.alignment .signal-dot { background: var(--alignment) !important; }

.signal-card.pattern .signal-dot { background: #534AB7; }
.signal-card.leverage .signal-dot { background: #2D52B5; }

.signal-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  opacity: 0.8;
}

.signal-card.strength::before { background: #1D9E75; }
.signal-card.constraint::before { background: #D85A30; }
.signal-card.pattern::before { background: #534AB7; }
.signal-card.leverage::before { background: #2D52B5; }


.orbit-svg {
  width: 100%;
  height: 100%;
  max-width: 600px;
  display: block;
  margin: 0 auto;
}

.ring-node {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.score-label {
  font-size: 10px;
  letter-spacing: 1.4px;
  fill: #f5f5f5;
  font-weight: 600;
}
.score-label.center-label {
  font-size: 12px;
  letter-spacing: 1.4px;
  fill: #f5f5f5;
  border-bottom: 1px solid #770136;
  font-weight: 700;
}
.score-sub {
  font-size: 10px;
  fill: #a39d93;
}

.score-sub.center-sub {
  font-size: 12px;
  fill: #a39d93;
}
.q-track-bg {
  fill: none;
  stroke: #7d5c6e;
  stroke-opacity: 0.22;
  stroke-width: 1.25;
}
.q-track-fill {
  fill: none;
  stroke: #7d5c6e;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.results-shell {
  position: relative;
  min-height: 420px;
}

.index-wrapper {
  display: flex;
  background:
  radial-gradient(circle at top left, rgba(255, 255, 255, 0.055), transparent 34%),
  linear-gradient(180deg, #292929 0%, #222222 100%);
  gap: 12px;
  flex-direction: column;
  padding: 5% 5%;
  border-radius: 18px 18px 0 0;
  color: #f5f5f5;
}
.content-wrapper {
  display: flex;
/*   background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.75), transparent 34%), 
    linear-gradient(180deg, #f1f1f1 0%, #e9e9e9 100%); */
  gap: 12px;
  flex-direction: column;
  padding: 5% 5%;
  border-radius: 0;
  color: black;
  border: 1px solid #DEDEDE;
  background: radial-gradient(circle at center, #fff, #f5f5f5);
}
.index-content-wrapper{
  background: #2A2A2A;
  display: flex;
  flex-direction: column;
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid #383838;
  margin-bottom: 2%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.03); 
}


.verdict-rp-flex {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 22px 18px 22px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #cfcbc2;
  font-size: 1.5rem;
}

.verdict-rp-item {
  display: flex;
  flex-direction: column-reverse;
  gap: 2px;
  min-width: 54px;
}

.verdict-rp-val {
  font-size: 2.1rem;
  line-height: 1;
  /* font-weight: 800; */
  letter-spacing: -0.03em;
  color: #ffda33;
}
.verdict-rp-val.resilience{
  color: #665bd0;
}
.verdict-rp-val.preparedness{
  color: #24a987;
}

.verdict-rp-label {
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 500;
  color: rgba(207, 203, 194, 0.68);
}

.verdict-rp-flex > :not(.verdict-rp-item) {
  padding-top: 4px;
  font-size: 14px;
  color: rgba(207, 203, 194, 0.45);
}

.verdict-ov{
  display: flex;
  align-items: baseline;
  justify-content: start;
  padding: 22px 18px 22px 0px;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.verdict-ov-desc{
  gap: 1rem;
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}

.verdict-ov-score{
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffda33;
}
.verdict-ov-flex{
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.verdict-ov-description{
  font-size: 0.875rem;
  color: rgba(207, 203, 194, 0.68);
  max-width: 75%;
  line-height: 1.6;
}
.report-meta-line {
  color: #888888;
  font-size: 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.report-meta-line span {
  display: inline-flex;
  align-items: center;
}

.report-meta-line span + span::before {
  content: "·";
  margin-right: 0.5rem;
  color: #b8b8b8;
}

.results-loader {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.96);
  z-index: 999;
}

.results-loader.active {
  display: flex;
}

.results-loader-inner {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.results-spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite
}
.results-spinner::before , .results-spinner::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid black;
  animation: prixClipFix 2s linear infinite ;
}
.results-spinner::after{
  border-color: #ffda33;
  animation: prixClipFix 2s linear infinite , rotate 0.5s linear infinite reverse;
  inset: 6px;
}
.results-loader-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a18;
  margin-bottom: 6px;
}
.results-loader-copy {
  font-size: 14px;
  line-height: 1.5;
  color: #6f6e68;
}
.results-shell {
  position: relative;
}
@keyframes rotate {
  0%   {transform: rotate(0deg)}
  100%   {transform: rotate(360deg)}
}

@keyframes prixClipFix {
    0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
    25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
    50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
    75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
    100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
}

#results-content.is-hidden {
  visibility: hidden;
  opacity: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.foot{background:#292929;padding:16px 44px;display:flex;justify-content:space-between;align-items:center;border-radius:0 0 16px 16px}
.foot-brand{font-size:11px;color:#F5C518;font-weight:600;letter-spacing:0.5px}
.foot-url{font-size:11px;color:#666666}


@media print {
  .btn, .nav, .note-div, .no-print { display: none; }
  .cover,.foot{border-radius:0}
  .zone-scale {
    margin-top: 0 !important;
  }
  .index-wrapper {
    padding-top: 25px !important;
    gap: 0px !important;
    border-radius: 0 !important;
  }
  .wrap {
    padding-top: 25px !important;
  }
  .brand {
    position: absolute;
    top: 0px;
    left: 24px;
    width: clamp(96px, 10vw, 180px);
    height: auto;
    display: block;
    opacity: 1;
  }
  .q-card .q-head {
/*     border-color: #000 !important;
    color: #000 !important; */
  }

  .q-card .q-copy {
/*     color: #000 !important; */
  }

  .q-card::after {
    display: none !important;
  }
  .q-card::before {
    display: none !important;
  }
  .q-card {
/*     border:1px solid #000 !important;
    color: #000 !important; */
    break-inside: avoid;
  }
  .q-card.vitality {
    background-color: #ffda33 !important;
    border-color: #ffda33 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .q-card.emotion {
    background-color: #E53846 !important;
    border-color: #E53846 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .q-card.execution {
    background-color: #2D52B5 !important;
    border-color: #2D52B5 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .q-card.mind {
    background-color: #770136 !important;
    border-color: #770136 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .q-card.alignment {
    background-color: #1B74CD !important;
    border-color: #1B74CD !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

   .ring-row{
    display: none !important;
  }
  .mode-card {
    /* border-color: #000 !important; */
    /* color: #000 !important; */
    break-inside: avoid;
  }
  .index-content-wrapper{
    break-inside: avoid;
  }
  .q-compact-list{
    break-inside: avoid;
  }
  .signal-card {
    border: 1px solid #000 !important;
    color: #000 !important;
    break-inside: avoid;
  }

  .index-wrapper {
    background: #292929 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .q-compact-bar-wrap,
  .q-compact-bar-track,
  .section-icon,
  .q-chip::before,
  .foot,
  .focus-action-number,
  .ranked-signal-card,
  .ranked-signal-card::before,
  .q-compact-bar-fill {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  #first-cw {
    break-before: page;
    page-break-before: always;
  }
  .page-break-label {
    border-top: 1px solid #DEDEDE;
    display: block;
    break-before: page;
    page-break-before: always;
  }
  .focus-actions-block {
    break-inside: avoid;
  }
/*   .q-card .q-copy {
    color: rgba(0,0,0,0.85) !important;
  }
  .q-card .q-section-label {
    color: rgba(0,0,0,0.65) !important;
  }
  .q-card .q-role {
    color: rgba(0,0,0,0.65) !important;
  }
  .q-card .q-last {
    color: rgba(0,0,0,0.65) !important;
  } */
}

@media (max-width: 700px) {
  #scr-results {
    max-width: 100%;
  }
  #scr-intro {
    max-width: 100%;
  }
  .screen {
    max-width: 100%;
  }
  .wrap{
    padding: 0;
  }
  .q-grid {
    grid-template-columns: 1fr;
  }
  .mode-grid {
    grid-template-columns: 1fr;
  }
  .signal-grid {
    grid-template-columns: 1fr;
  }
  .q-card.span-2 {
    grid-column: span 1;
  }
  .q-card.span-2 .q-head {
    justify-content: space-between;
  }
  .ring-row {
    height: 250px;
  }
  .verdict-ov{
    flex-direction: column;
    gap: 7px;
  }
  .verdict-ov-desc{
    margin-top: 0px;
  }
  .q-compact-row {
    grid-template-columns: 1fr 48px;
    gap: 8px 12px;
  }

  .q-compact-bar-track {
    grid-column: 1 / -1;
  }

  .q-compact-badge {
    grid-column: 1 / -1;
  }

}