:root {
  --navy: #08162d;
  --navy-2: #122744;
  --navy-3: #1d385b;
  --gold: #cda447;
  --gold-2: #f0d58c;
  --cream: #f4ead1;
  --ink: #101723;
  --muted: #657184;
  --line: rgba(216, 173, 66, 0.24);
  --white: #ffffff;
  --danger: #d16b55;
  --shadow: 0 22px 70px rgba(7, 21, 43, 0.22);
  --contours: url("data:image/svg+xml,%3Csvg width='760' height='460' viewBox='0 0 760 460' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23f0d58c' stroke-opacity='.18' stroke-width='1.4'%3E%3Cpath d='M-40 98C38 40 104 34 167 72c77 47 152 39 226-25 58-50 128-59 210-26 78 31 142 30 193-4'/%3E%3Cpath d='M-26 148C61 82 130 78 181 120c66 55 147 47 239-24 58-45 123-51 194-20 76 34 139 31 188-11'/%3E%3Cpath d='M-22 202C54 137 123 126 186 168c75 51 158 43 247-25 59-45 125-52 198-23 70 28 126 26 174-7'/%3E%3Cpath d='M-35 261C39 208 111 200 179 236c82 44 171 39 261-19 70-45 140-49 209-12 63 34 111 39 151 17'/%3E%3Cpath d='M-21 321C51 275 120 271 187 309c77 44 166 40 267-13 80-42 154-39 222 10 49 35 91 47 126 34'/%3E%3Cpath d='M-42 384C38 338 111 337 177 382c75 51 166 55 274 12 91-36 171-24 240 37'/%3E%3Cpath d='M145 -30c-30 43-30 80 0 111 44 46 49 93 16 143-39 59-38 116 4 171 35 46 41 89 18 129'/%3E%3Cpath d='M363 -41c-40 49-45 97-13 143 39 58 39 111 1 160-43 55-44 112-5 170'/%3E%3Cpath d='M594 -26c-44 52-51 103-21 153 36 59 32 113-12 162-40 44-48 94-24 149'/%3E%3C/g%3E%3C/svg%3E");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(8, 22, 45, 0.045) 1px, transparent 1px),
    linear-gradient(#f7f0de, #efe2c2);
  background-size: 72px 72px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

button,
textarea,
input {
  font: inherit;
}

button,
a,
label {
  -webkit-tap-highlight-color: transparent;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  z-index: -2;
  background:
    var(--contours),
    linear-gradient(90deg, rgba(8, 22, 45, 0.98), rgba(8, 22, 45, 0.82) 46%, rgba(8, 22, 45, 0.45)),
    radial-gradient(circle at 68% 58%, rgba(205, 164, 71, 0.32), transparent 34%),
    linear-gradient(180deg, rgba(7, 21, 43, 0.18), rgba(7, 21, 43, 0.72));
  background-size: 760px 460px, auto, auto, auto;
  background-position: right 4% top 8%, center, center, center;
}

.topbar {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
.nav-link {
  color: var(--white);
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 173, 66, 0.72);
  color: var(--gold-2);
  background: rgba(7, 21, 43, 0.58);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
}

button.nav-link {
  font: inherit;
}

.nav-link.is-active {
  border-color: rgba(216, 173, 66, 0.72);
  color: var(--gold-2);
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 11vh 0 9vh;
}

.sedbergh-logo {
  display: block;
  width: min(380px, 78vw);
  height: auto;
  margin: 0 0 34px;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.28));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.4rem, 8.8vw, 9rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__copy {
  max-width: 680px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.14rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 18px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 900;
  transition: transform 160ms ease, opacity 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.button--gold {
  color: #171100;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-color: var(--gold);
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.button--quiet {
  color: var(--navy);
  background: transparent;
  border-color: rgba(7, 21, 43, 0.2);
}

.button--full {
  width: 100%;
}

.framework-strip,
.questionnaire,
.report,
.app-tabs {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.app-tabs {
  padding: 0 0 80px;
}

.tab-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: -8px 0 24px;
  padding: 8px;
  border: 1px solid rgba(205, 164, 71, 0.26);
  background: rgba(244, 234, 209, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 36px rgba(8, 22, 45, 0.12);
}

.tab-button {
  min-height: 58px;
  border: 1px solid rgba(8, 22, 45, 0.12);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.56);
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
}

.tab-button span {
  margin-left: 8px;
  color: rgba(8, 22, 45, 0.54);
  font-size: 0.72rem;
}

.tab-button.is-active {
  color: #181105;
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.tab-button.is-active span {
  color: rgba(24, 17, 5, 0.72);
}

.tab-panel[hidden] {
  display: none !important;
}

.framework-strip {
  transform: translateY(-38px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: var(--shadow);
  background: transparent;
  border: 0;
  gap: 12px;
}

.framework-strip article {
  min-height: 300px;
  padding: 24px;
  border: 1px solid rgba(205, 164, 71, 0.38);
  color: rgba(8, 22, 45, 0.72);
  background: linear-gradient(180deg, #fff7df, #efdfb8);
  box-shadow: 0 18px 44px rgba(8, 22, 45, 0.12);
}

.framework-strip article:last-child {
  border-right: 0;
}

.framework-strip span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  color: rgba(8, 22, 45, 0.96);
  background: transparent;
  border: 1px solid rgba(205, 164, 71, 0.52);
  font-size: 3.1rem;
  font-weight: 950;
  line-height: 1;
}

.framework-strip h2 {
  margin: 8px 0 12px;
  color: var(--navy);
  font-size: 1.7rem;
  line-height: 1.02;
  text-transform: uppercase;
}

.framework-strip p,
.progress-panel p,
.question-card p,
.report-card p {
  color: inherit;
}

.questionnaire {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 12px 0 68px;
}

.questionnaire[hidden] {
  display: none;
}

.questionnaire-preface {
  max-width: 920px;
  margin: 12px auto 68px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(216, 173, 66, 0.28);
  color: var(--white);
  background:
    var(--contours),
    radial-gradient(circle at 88% 12%, rgba(216, 173, 66, 0.2), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  background-size: 720px 420px, auto, auto;
  background-position: right -180px top -120px, center, center;
  box-shadow: var(--shadow);
}

.questionnaire-preface[hidden] {
  display: none;
}

.questionnaire-preface h2 {
  max-width: 680px;
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  line-height: 0.98;
}

.questionnaire-preface p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.questionnaire-preface strong {
  color: var(--gold-2);
}

.questionnaire-preface .button {
  margin-top: 14px;
}

.progress-panel {
  position: sticky;
  top: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(7, 21, 43, 0.1);
  box-shadow: 0 14px 42px rgba(7, 21, 43, 0.1);
}

.progress-panel h2,
.section-heading h2,
.report-lock h2,
.report-cover h2,
.report-card h3 {
  margin: 0;
  line-height: 1.1;
}

.progress-panel p {
  color: var(--muted);
}

.progress-ring {
  --progress: 0deg;
  width: 184px;
  height: 184px;
  margin: 22px auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--gold) var(--progress), #e8dcc5 0deg);
}

.progress-ring > div {
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: var(--white);
}

.progress-ring strong {
  font-size: 2.1rem;
  line-height: 1;
}

.progress-ring span {
  color: var(--muted);
  font-weight: 800;
}

.scale-key {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.submission-status {
  margin: 12px 0 16px;
  padding: 10px 12px;
  border: 1px solid rgba(205, 164, 71, 0.35);
  color: var(--navy);
  background: #fff8df;
  font-size: 0.86rem;
  font-weight: 850;
}

.submission-status--report {
  max-width: 620px;
  margin: 16px 0;
  color: var(--gold-2);
  background: rgba(8, 22, 45, 0.5);
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 8px;
}

.report-actions .button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.athlete-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 920px;
  margin: 22px 0 6px;
}

.athlete-fields label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 900;
}

.athlete-fields input {
  min-height: 46px;
  border: 1px solid rgba(216, 173, 66, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  padding: 0 12px;
  outline: none;
}

.athlete-fields input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.athlete-fields input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 173, 66, 0.18);
}

.question-flow {
  min-width: 0;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

#questionnaireList {
  display: grid;
  gap: 18px;
}

.questionnaire-loading {
  padding: 24px;
  border: 1px solid rgba(216, 173, 66, 0.3);
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
}

.questionnaire-loading strong {
  display: block;
  color: var(--gold-2);
  font-size: 1.2rem;
}

.questionnaire-loading p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.question-card {
  background: var(--white);
  border: 1px solid rgba(7, 21, 43, 0.1);
  overflow: hidden;
}

.question-card__header {
  padding: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
}

.question-card__header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.question-card__header p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.question-pair {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 22px;
  border-top: 1px solid rgba(7, 21, 43, 0.08);
}

.mindset-pill {
  align-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  color: var(--navy);
  background: #f7edcf;
  border: 1px solid rgba(216, 173, 66, 0.42);
  font-weight: 950;
}

.item-block {
  display: grid;
  gap: 14px;
}

.item-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 14px;
  align-items: center;
}

.item-copy strong {
  display: block;
  color: var(--navy);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.item-copy span {
  display: block;
  margin-top: 4px;
  color: #303b4b;
}

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

.rating label {
  position: relative;
}

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

.rating span {
  min-height: 54px;
  display: grid;
  gap: 2px;
  place-items: center;
  border: 1px solid rgba(7, 21, 43, 0.15);
  background: #fbf8f0;
  color: var(--navy);
  cursor: pointer;
  font-weight: 950;
  text-align: center;
  padding: 6px 4px;
}

.rating strong {
  line-height: 1;
}

.rating small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.05;
}

.rating input:checked + span {
  color: #171100;
  border-color: var(--gold);
  background: var(--gold);
}

.rating input:checked + span small {
  color: #2a2108;
}

.priority-choice {
  display: grid;
  gap: 12px;
  padding: 18px 22px 22px;
  border-top: 1px solid rgba(7, 21, 43, 0.08);
  background: #fbf8f0;
}

.priority-choice > strong {
  color: var(--navy);
  font-size: 0.92rem;
}

.priority-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.priority-options label {
  position: relative;
}

.priority-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.priority-options span {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(7, 21, 43, 0.14);
  color: var(--navy);
  background: #fff;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 950;
  text-align: center;
}

.priority-options input:checked + span {
  border-color: var(--priority-color);
  background: color-mix(in srgb, var(--priority-color) 32%, white);
}

.report {
  padding: 18px 0 80px;
}

.report-lock,
.report-cover,
.report-card {
  background: var(--navy);
  border: 1px solid rgba(216, 173, 66, 0.28);
  color: var(--white);
  box-shadow: var(--shadow);
}

.report-lock {
  padding: 36px;
}

.report-lock p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
}

.report-content {
  display: grid;
  gap: 16px;
}

.report-cover {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 24px;
  align-items: center;
  padding: 34px;
  background:
    var(--contours),
    radial-gradient(circle at 84% 20%, rgba(216, 173, 66, 0.24), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  background-size: 760px 460px, auto, 68px 68px, auto;
  background-position: right -120px top -80px, center, center, center;
}

.report-cover h2 {
  max-width: 720px;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  text-transform: uppercase;
  line-height: 0.92;
}

.report-cover p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.report-chapters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 22px;
}

.report-chapters span {
  min-height: 62px;
  display: grid;
  align-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(216, 173, 66, 0.28);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.075);
  font-weight: 900;
}

.report-chapters b {
  display: block;
  color: var(--gold-2);
  font-size: 0.76rem;
}

.signature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
  max-width: 760px;
}

.signature-chip {
  min-height: 94px;
  padding: 14px;
  border: 1px solid rgba(216, 173, 66, 0.25);
  background: rgba(255, 255, 255, 0.07);
}

.signature-chip span {
  display: block;
  color: var(--gold-2);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.signature-chip strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.12;
}

.report-guide-card {
  color: var(--navy);
  background: linear-gradient(135deg, #fffaf0, #f1dfae);
  border: 1px solid rgba(205, 164, 71, 0.36);
}

.report-guide-card .card-title h3 {
  color: var(--navy);
}

.report-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.report-guide-grid section {
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(8, 22, 45, 0.12);
  background: rgba(255, 255, 255, 0.62);
}

.report-guide-grid span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #171100;
  background: var(--gold);
  font-weight: 950;
}

.report-guide-grid strong {
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.1;
}

.report-guide-grid p {
  margin: 0;
  color: rgba(8, 22, 45, 0.72);
  font-weight: 740;
}

.report-score {
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(216, 173, 66, 0.44);
  background: rgba(255, 255, 255, 0.06);
}

.report-score span {
  font-size: 3.3rem;
  line-height: 1;
  color: var(--gold-2);
  font-weight: 950;
}

.report-score small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.report-detail {
  display: none !important;
}

.report-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background:
    var(--contours),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    var(--navy);
  background-size: 720px 430px, auto, auto;
  background-position: right -260px top -160px, center, center;
}

.report-card > * {
  position: relative;
  z-index: 1;
}

.report-card--wide {
  grid-column: 1 / -1;
}

.chapter-feature {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 30px;
  min-height: 520px;
  overflow: hidden;
  color: var(--navy);
  background:
    radial-gradient(circle at 12% 20%, rgba(205, 164, 71, 0.2), transparent 30%),
    linear-gradient(135deg, #fff8df, #ead8a8);
  border-color: rgba(205, 164, 71, 0.44);
}

.chapter-feature::after {
  content: "THREAD OF GOLD";
  position: absolute;
  right: 22px;
  bottom: 16px;
  color: rgba(8, 22, 45, 0.08);
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 1;
  font-weight: 950;
}

.chapter-letter {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  align-self: start;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(8, 22, 45, 0.16);
  color: var(--navy);
  font-size: 7.5rem;
  line-height: 1;
  font-weight: 950;
}

.chapter-copy {
  position: relative;
  z-index: 1;
}

.chapter-copy .eyebrow {
  color: var(--gold);
}

.chapter-copy h3 {
  max-width: 820px;
  color: var(--navy);
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  text-transform: uppercase;
}

.chapter-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.chapter-columns section {
  min-height: 174px;
  padding: 18px;
  border: 1px solid rgba(8, 22, 45, 0.12);
  background: rgba(255, 255, 255, 0.45);
}

.chapter-columns span {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.chapter-columns p {
  margin: 0;
  color: rgba(8, 22, 45, 0.72);
}

.report-card p,
.report-card li {
  color: rgba(255, 255, 255, 0.74);
}

.chapter-feature p {
  color: rgba(8, 22, 45, 0.72);
}

.report-guide-card .report-guide-grid p {
  color: rgba(8, 22, 45, 0.72);
}

.card-title {
  margin-bottom: 16px;
}

.mindset-bars {
  display: grid;
  gap: 14px;
}

.bar-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 112px;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.045);
}

.bar-label strong,
.bar-value {
  color: var(--white);
}

.bar-label span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.bar-value b,
.bar-value span {
  display: block;
}

.bar-value b {
  color: var(--gold-2);
  font-size: 1.25rem;
  line-height: 1;
}

.bar-value span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.dual-track {
  display: grid;
  gap: 6px;
}

.track {
  height: 12px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.fill {
  height: 100%;
  width: 0%;
}

.fill--current {
  background: var(--gold);
}

.fill--intention {
  background: #7db8ff;
}

.bar-value {
  font-weight: 950;
  text-align: right;
}

.gold-use-card,
.strengths-panel,
.mindset-card-panel,
.pressure-panel {
  display: grid;
  gap: 28px;
  color: #050505;
  background: #fff;
  border: 0;
  box-shadow: 0 18px 54px rgba(8, 22, 45, 0.12);
}

.gold-use-card {
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  padding: 42px;
}

.gold-use-card::after,
.strengths-panel::after,
.mindset-card-panel::after,
.pressure-panel::after {
  display: none;
}

.gold-use-copy h3,
.strengths-heading h3,
.pressure-heading h3 {
  margin: 0;
  color: #050505;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.08;
}

.mindset-card-panel {
  padding: 38px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    repeating-linear-gradient(135deg, rgba(8, 22, 45, 0.045) 0 1px, transparent 1px 9px),
    #f7f4ee;
}

.mindset-card-panel .card-title h3 {
  color: #050505;
}

.mindset-profile-grid {
  display: grid;
  gap: 18px;
}

.mindset-profile-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 2px solid #050505;
  background:
    radial-gradient(circle at 14% 18%, rgba(216, 173, 66, 0.13), transparent 18%),
    #fbfaf5;
}

.mindset-profile-card__top {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.mindset-note {
  position: relative;
  min-height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 18px 12px;
  background: #e8e1d5;
  box-shadow: 0 10px 24px rgba(8, 22, 45, 0.08);
}

.mindset-tape {
  position: absolute;
  top: -10px;
  width: 88px;
  height: 22px;
  background: linear-gradient(90deg, rgba(241, 212, 134, 0.75), var(--note-color));
  transform: rotate(-8deg);
  opacity: 0.85;
}

.mindset-svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: #050505;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mindset-note strong {
  color: #3f3f3f;
  font-size: 1.08rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mindset-profile-intro span,
.mindset-box span {
  display: block;
  color: #777;
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mindset-profile-intro h4 {
  margin: 4px 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid #050505;
  color: #050505;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.mindset-profile-intro ul {
  margin: 0;
  padding-left: 20px;
  color: #050505;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 760;
  line-height: 1.35;
}

.mindset-profile-body {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12px;
}

.mindset-box {
  padding: 14px;
  border: 2px solid #050505;
  background: rgba(255, 255, 255, 0.72);
}

.mindset-box p {
  margin: 8px 0 0;
  color: #050505;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 760;
  line-height: 1.35;
}

.mindset-box--quote {
  align-content: center;
}

.mindset-box--quote p {
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  font-weight: 950;
  line-height: 1.12;
  text-transform: uppercase;
}

.mindset-box--careful,
.mindset-box--counter {
  grid-column: 2;
}

.mindset-box--careful strong {
  display: block;
  margin-top: 8px;
  color: #050505;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1.02rem;
  text-transform: uppercase;
}

.counter-prompt-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.counter-prompt-list div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px;
  border: 2px solid #050505;
  background: #fff;
}

.counter-prompt-list .mindset-svg {
  width: 38px;
  height: 38px;
  justify-self: center;
  stroke-width: 2.4;
}

.counter-prompt-list p {
  margin: 0;
}

.gold-use-copy .eyebrow,
.strengths-heading .eyebrow,
.pressure-heading .eyebrow {
  color: var(--gold);
}

.gold-use-notes {
  display: grid;
  gap: 22px;
  margin-top: 26px;
}

.gold-use-notes section strong {
  display: block;
  color: #050505;
  font-size: 1.15rem;
}

.gold-use-notes section p {
  margin: 4px 0 0;
  color: #111;
  font-weight: 750;
}

.gold-use-brief {
  max-width: 360px;
  color: #222;
  font-size: 1.05rem;
  font-weight: 780;
}

.gold-use-visual {
  min-width: 0;
}

.gold-curve-svg {
  display: block;
  width: 100%;
  height: auto;
}

.gold-map-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(690px, 100%);
  margin: 0 auto;
  padding: 22px;
  border: 2px solid #ead89d;
  border-radius: 28px;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(8, 22, 45, 0.18) 50%, transparent calc(50% + 1px)),
    linear-gradient(180deg, transparent calc(50% - 1px), rgba(8, 22, 45, 0.18) 50%, transparent calc(50% + 1px)),
    #fffaf0;
}

.gold-map-quadrant {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--map-color) 72%, var(--navy));
  border-radius: 20px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--map-color) 52%, white), color-mix(in srgb, var(--map-color) 30%, white));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.gold-map-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}

.gold-map-heading span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 3px solid var(--navy);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  font-size: 1.7rem;
  font-weight: 950;
  line-height: 1;
}

.gold-map-heading strong {
  font-size: clamp(1.2rem, 2.1vw, 1.7rem);
  font-weight: 950;
  line-height: 1;
}

.gold-map-quadrant ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gold-map-quadrant li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 9px 10px 9px 12px;
  border: 2px solid rgba(8, 22, 45, 0.86);
  border-radius: 10px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 6px 0 rgba(8, 22, 45, 0.1);
}

.gold-map-quadrant li span {
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1.05;
}

.gold-map-quadrant li b {
  min-width: 38px;
  min-height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #171100;
  background: var(--gold-2);
  font-size: 0.9rem;
  font-weight: 950;
}

.gold-map-quadrant li.is-empty {
  border-style: dashed;
  opacity: 0.62;
  box-shadow: none;
}

.gold-map-overall {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  align-content: center;
  transform: translate(-50%, -50%);
  border: 7px solid var(--navy);
  border-radius: 50%;
  color: var(--navy);
  background: #f0d58c;
  box-shadow: 0 16px 30px rgba(8, 22, 45, 0.16);
}

.gold-map-overall strong {
  font-size: 2rem;
  line-height: 0.95;
}

.gold-map-overall span {
  color: rgba(8, 22, 45, 0.72);
  font-size: 0.85rem;
  font-weight: 950;
}

.gold-use-summary {
  max-width: 520px;
  margin: 8px auto 0;
  padding: 16px;
  border: 1px solid rgba(205, 164, 71, 0.28);
  background: #fff8df;
}

.gold-use-summary span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.gold-use-summary strong {
  display: block;
  margin-top: 5px;
  color: #050505;
}

.gold-use-summary p {
  margin: 6px 0 0;
  color: #222;
}

.strengths-panel,
.pressure-panel {
  padding: 38px;
}

.gold-strengths,
.pressure-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
}

.gold-strength-card {
  min-height: 124px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 8px;
  background: #f7f7f7;
}

.gold-strength-card--scenario {
  min-height: 0;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 16px;
  background:
    linear-gradient(135deg, rgba(216, 173, 66, 0.16), transparent 42%),
    #f7f7f7;
}

.scenario-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.scenario-score {
  min-width: 82px;
  min-height: 58px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 2px solid var(--navy);
  border-radius: 8px;
  background: #f0d58c;
  color: var(--navy);
}

.scenario-score b {
  font-size: 1.25rem;
  line-height: 1;
}

.scenario-score small {
  margin-top: 2px;
  max-width: 70px;
  font-size: 0.52rem;
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.scenario-strength-copy {
  display: grid;
  gap: 12px;
}

.scenario-strength-copy > span {
  color: #7c7c7c;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.scenario-strength-copy p {
  margin: 0;
  color: #161616;
  font-weight: 760;
  line-height: 1.35;
}

.scenario-strength-copy p b {
  color: #050505;
  font-weight: 950;
}

.scenario-mindset-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.scenario-mindset-chip {
  min-height: 0;
  display: grid;
  grid-template-columns: 128px minmax(0, 150px) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-top: 0;
  border-left: 6px solid var(--chip-color);
  border-radius: 8px;
  background: #fff;
}

.scenario-mindset-chip span {
  color: #777;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.scenario-mindset-chip strong {
  color: #050505;
  font-size: 1rem;
  line-height: 1.12;
}

.scenario-mindset-chip p {
  margin: 0;
  color: #333;
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.25;
}

.scenario-next {
  padding-top: 2px;
}

.gold-strength-icon,
.pressure-dots {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid #b9b9b9;
  border-radius: 8px;
  color: var(--icon-color, var(--gold));
  background: #fff;
}

.gold-strength-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gold-strength-card strong {
  color: #050505;
  font-size: clamp(1.08rem, 2vw, 1.6rem);
  line-height: 1.22;
}

.pressure-panel {
  background: #fff;
}

.pressure-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pressure-card {
  min-height: 250px;
  display: grid;
  align-content: space-between;
  padding: 24px;
  border-radius: 22px;
  background: #f7f7f7;
}

.pressure-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.pressure-card__top strong {
  color: #858585;
  font-size: 1rem;
  text-align: right;
  text-transform: uppercase;
}

.pressure-dots {
  grid-template-columns: repeat(2, 18px);
  gap: 3px;
  border: 0;
  background: transparent;
}

.pressure-dots i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #d8d8d8;
}

.pressure-dots i.is-active {
  background: var(--active-color);
}

.pressure-card p {
  margin: 28px 0 0;
  color: #050505;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 900;
  line-height: 1.28;
}

.coaching-prompt {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 18px;
  padding-top: 28px;
  border-top: 2px solid #e1e1e1;
}

.coaching-prompt > span {
  color: #8d8d8d;
  font-size: 2rem;
  line-height: 1;
}

.coaching-prompt strong {
  display: block;
  color: #888;
  font-size: 1.35rem;
}

.coaching-prompt p {
  margin: 4px 0 0;
  color: #050505;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 950;
  line-height: 1.12;
}

.curve-card {
  overflow: hidden;
}

.curve-card .card-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.curve-card .card-title p:last-child {
  max-width: 560px;
  margin: 8px 0 0;
}

.curve-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 900;
}

.legend-swatch {
  width: 24px;
  height: 3px;
  background: var(--gold);
}

.curve-wrap {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(216, 173, 66, 0.2);
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    rgba(255, 255, 255, 0.04);
  background-size: 100% 25%, 25% 100%, auto;
}

.curve-svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 280px;
}

.curve-axis,
.curve-value {
  fill: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 900;
}

.curve-value {
  fill: var(--white);
  paint-order: stroke;
  stroke: rgba(7, 21, 43, 0.82);
  stroke-width: 4px;
}

.curve-axis-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.insight-moments,
.support-grid {
  display: grid;
  gap: 12px;
}

.insight-moments {
  grid-template-columns: repeat(3, 1fr);
}

.support-grid {
  grid-template-columns: repeat(4, 1fr);
}

.moment-card,
.support-tile,
.list-item {
  border: 1px solid rgba(216, 173, 66, 0.2);
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
}

.moment-card span,
.support-tile span,
.list-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.moment-card strong,
.support-tile strong,
.list-item strong {
  display: block;
  color: var(--white);
  line-height: 1.15;
}

.moment-card p,
.support-tile p,
.list-item p {
  margin-bottom: 0;
}

.report-list {
  display: grid;
  gap: 12px;
}

.awareness-cards,
.thread-cards {
  display: grid;
  gap: 12px;
}

.awareness-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.thread-cards {
  grid-template-columns: repeat(4, 1fr);
}

.awareness-card,
.thread-card {
  border: 1px solid rgba(216, 173, 66, 0.2);
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
}

.awareness-card__head {
  display: grid;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(216, 173, 66, 0.16);
}

.awareness-card__head h4 {
  margin: 0;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.08;
}

.awareness-card__head p {
  margin: 0;
}

.awareness-score {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 0;
}

.awareness-score strong {
  color: var(--gold-2);
  font-size: 3rem;
  line-height: 1;
}

.awareness-score span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.awareness-pattern {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.mini-meter {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 24px;
  gap: 8px;
  align-items: center;
}

.mini-meter span,
.mini-meter em {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 950;
}

.mini-meter i {
  height: 8px;
  display: block;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.mini-meter b {
  display: block;
  height: 100%;
}

.awareness-copy {
  display: grid;
  gap: 10px;
}

.awareness-copy section {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.045);
}

.awareness-copy span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.awareness-copy p {
  margin: 0;
}

.awareness-card__head > span,
.thread-card strong {
  display: block;
  color: var(--white);
}

.awareness-card__head > span,
.thread-card span {
  color: var(--gold-2);
  font-size: 0.86rem;
  font-weight: 900;
}

.thread-card p {
  margin: 10px 0 0;
}

.thread-card b {
  color: var(--gold-2);
}

.support-card {
  background:
    radial-gradient(circle at 78% 10%, rgba(216, 173, 66, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    var(--navy);
}

.action-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: start;
}

textarea {
  width: 100%;
  min-height: 126px;
  resize: vertical;
  padding: 14px;
  border: 1px solid rgba(216, 173, 66, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 173, 66, 0.16);
}

@media (max-width: 980px) {
  .framework-strip,
  .questionnaire,
  .report-grid,
  .awareness-cards,
  .thread-cards,
  .insight-moments,
  .support-grid,
  .report-cover,
  .action-card,
  .signature-strip,
  .chapter-feature,
  .chapter-columns,
  .report-guide-grid,
  .gold-use-card,
  .gold-strengths,
  .mindset-profile-card__top,
  .mindset-profile-body,
  .pressure-cards {
    grid-template-columns: 1fr;
  }

  .mindset-box--careful,
  .mindset-box--counter {
    grid-column: auto;
  }

  .chapter-feature {
    min-height: auto;
  }

  .framework-strip {
    transform: translateY(-24px);
  }

  .framework-strip article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(216, 173, 66, 0.18);
  }

  .progress-panel {
    position: static;
  }

  .athlete-fields {
    grid-template-columns: 1fr;
  }

  .gold-map-board {
    max-width: 720px;
  }
}

@media (max-width: 700px) {
  html {
    scroll-behavior: auto;
  }

  .topbar {
    align-items: flex-start;
  }

  .topbar__actions {
    gap: 6px;
  }

  .nav-link {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 56px 0 58px;
  }

  .sedbergh-logo {
    width: min(300px, 82vw);
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .hero__copy {
    font-size: 1rem;
  }

  .tab-bar {
    position: static;
    margin-top: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .tab-button {
    min-height: 50px;
    font-size: 0.86rem;
  }

  .question-pair,
  .item-row,
  .bar-row {
    grid-template-columns: 1fr;
  }

  .rating {
    max-width: 100%;
  }

  .report-cover,
  .report-card,
  .report-lock,
  .gold-use-card,
  .mindset-card-panel,
  .strengths-panel,
  .pressure-panel {
    padding: 22px;
  }

  .report-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .report-actions .button {
    width: 100%;
  }

  .gold-strength-card {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 16px;
  }

  .gold-strength-card--scenario {
    grid-template-columns: 1fr;
  }

  .scenario-card-top {
    align-items: flex-start;
  }

  .scenario-mindset-grid {
    grid-template-columns: 1fr;
  }

  .scenario-mindset-chip {
    grid-template-columns: 1fr;
  }

  .gold-map-board {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
    background: #fffaf0;
  }

  .gold-map-quadrant {
    min-height: auto;
  }

  .gold-map-overall {
    position: static;
    width: 100%;
    height: auto;
    min-height: 70px;
    transform: none;
    border-radius: 14px;
  }

  .mindset-profile-card {
    padding: 16px;
  }

  .mindset-note {
    min-height: 132px;
  }

  .pressure-card {
    min-height: 210px;
  }
}

@media print {
  @page {
    margin: 14mm;
  }

  body {
    background: #fff;
  }

  .hero,
  .topbar,
  .tab-bar,
  .app-tabs > .tab-bar,
  .questionnairePanel,
  #questionnairePanel,
  .questionnaire,
  .framework-strip,
  .report-lock,
  .report-actions,
  .button,
  .icon-button {
    display: none !important;
  }

  main,
  .app-tabs,
  #reportPanel,
  #reportContent,
  .tab-panel[hidden],
  #reportContent[hidden] {
    display: block !important;
  }

  .report,
  .report-content,
  .report-grid,
  .report-cover,
  .report-card {
    width: 100%;
    display: block;
    margin: 0 0 14px;
    padding: 0;
    color: #111;
    background: #fff;
    border-color: #ddd;
    box-shadow: none;
  }

  .report-card p,
  .report-card li,
  .report-cover p {
    color: #333;
  }
}
