:root {
  --sava-green: #147B57;
  --sava-blue: #029ECE;
  --sava-purple: #9F7CB8;
  --sava-orange: #F78D1D;
  --ink: #12313b;
  --muted: #5e7079;
  --surface: #ffffff;
  --surface-soft: rgba(245, 248, 250, 0.84);
  --line: rgba(18, 49, 59, 0.12);
  --line-strong: rgba(18, 49, 59, 0.2);
  --card: rgba(255, 255, 255, 0.84);
  --bg: #f5f8fa;
  --shadow: 0 18px 45px rgba(14, 43, 61, 0.08);
  --radius: 24px;
  --radius-sm: 18px;
  --font: "Montserrat", "Segoe UI", system-ui, sans-serif;
  --accent: var(--sava-green);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-size: 0.96rem;
  font-family: var(--font);
  background:
    radial-gradient(circle at 15% 12%, rgba(2, 158, 206, 0.12), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(159, 124, 184, 0.11), transparent 20%),
    radial-gradient(circle at 50% 82%, rgba(20, 123, 87, 0.11), transparent 28%),
    linear-gradient(180deg, #fdfefe 0%, var(--bg) 100%);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18, 49, 59, 0.016) 1px, transparent 1px),
    linear-gradient(rgba(18, 49, 59, 0.016) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.public-header {
  display: flex;
  width: min(980px, calc(100% - 56px));
  justify-content: flex-start;
  margin: 0 auto;
  padding: 12px 0 8px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 98px;
  height: auto;
}

.brand-subtitle {
  display: block;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.1;
}

.app-shell {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 56px));
  margin: 0 auto;
  padding: 0.25rem 0 4rem;
}

.hero-card,
.content-card,
.support-card,
.cta-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card,
.content-card {
  padding: clamp(1.1rem, 2.1vw, 1.7rem);
}

.hero-card {
  overflow: hidden;
  position: relative;
}

.hero-card::after {
  position: absolute;
  right: -3.5rem;
  bottom: -6rem;
  width: 15rem;
  height: 15rem;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(247, 141, 29, 0.18), transparent 62%),
    radial-gradient(circle at 20% 20%, rgba(159, 124, 184, 0.16), transparent 55%);
  content: "";
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--sava-green);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 0.75rem;
  font-size: clamp(1.75rem, 2.45vw, 2.7rem);
  line-height: 1.07;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.05rem, 1.65vw, 1.35rem);
}

h3 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.hero-subtitle {
  max-width: 760px;
  color: #23423a;
  font-size: clamp(0.98rem, 1.35vw, 1.14rem);
  line-height: 1.45;
}

.hero-copy,
.culture-note,
.support-card p,
.report-card p,
.score-card p,
.cta-card p,
.disclaimer {
  color: var(--muted);
  line-height: 1.6;
}

.culture-note {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0.85rem 0;
  padding: 0.9rem 1rem;
  border-left: 4px solid var(--sava-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(2, 158, 206, 0.07);
}

.time-pill {
  display: inline-flex;
  margin: 0.45rem 0 1.05rem;
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  color: #114635;
  font-weight: 800;
  background: rgba(20, 123, 87, 0.12);
}

.dimension-preview {
  position: relative;
  z-index: 1;
  margin: 1rem 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: default;
}

.dimension-preview ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dimension-preview li {
  padding: 0.32rem 0.6rem;
  border: 0;
  border-left: 3px solid var(--accent);
  border-radius: 999px;
  color: #103d30;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.64);
  cursor: default;
}

@media (max-width: 480px) {
  .dimension-preview ul {
    display: grid;
    grid-template-columns: 1fr;
  }

  .dimension-preview li {
    width: 100%;
  }
}

.button-row {
  display: flex;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.button-row.spread {
  justify-content: space-between;
}

.section-actions .ghost-button {
  order: 1;
}

.section-actions .primary-button {
  order: 2;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.primary-button,
.secondary-button,
.ghost-button,
.secondary-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.control-item {
  display: block;
}

.primary-button,
.secondary-button {
  border: 0;
  color: #fff;
  background: var(--sava-green);
  box-shadow: 0 12px 24px rgba(20, 123, 87, 0.18);
  padding: 0.74rem 1.18rem;
}

.secondary-button {
  background: linear-gradient(135deg, var(--sava-purple), var(--sava-orange));
}

.ghost-button,
.secondary-link {
  border: 1px solid var(--line);
  color: var(--sava-green);
  background: rgba(255, 255, 255, 0.72);
  padding: 0.7rem 1rem;
}

.disclaimer {
  position: relative;
  z-index: 1;
  margin: 1.35rem 0 0;
  font-size: 0.92rem;
}

.support-card,
.cta-card {
  margin-top: 1rem;
  padding: 1.15rem;
}

.support-card.compact {
  box-shadow: none;
}

.intro-card,
.section-card,
.results-card {
  max-width: 860px;
  margin: 0 auto;
}

.guidance-list {
  display: grid;
  gap: 0.5rem;
  margin: 1.2rem 0;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--sava-green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(20, 123, 87, 0.06);
}

.guidance-list h2 {
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
}

.guidance-list ol {
  margin: 0;
  padding-left: 1.35rem;
}

.guidance-list li {
  padding: 0.18rem 0;
  color: var(--muted);
  line-height: 1.55;
}

.guidance-list li::marker {
  color: var(--sava-green);
  font-weight: 900;
}

.scale-row {
  margin: 0;
  padding: 0.72rem 0;
  border: 1px solid var(--line);
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
  line-height: 1.55;
  cursor: default;
}

.scale-card {
  margin: 1.35rem 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(2, 158, 206, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(2, 158, 206, 0.08);
  cursor: default;
}

.scale-row {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0;
}

.scale-row:last-child {
  margin-bottom: 0;
}

.scale-row strong {
  display: grid;
  width: 2.08rem;
  height: 2.08rem;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--sava-blue);
}

.section-heading,
.results-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
}

.section-heading h1,
.results-hero h1 {
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
}

.section-card {
  border-top: 5px solid var(--accent);
}

.progress-stack {
  display: grid;
  gap: 0.45rem;
  min-width: 12rem;
}

.progress-stack span {
  display: inline-flex;
  justify-content: center;
  border-radius: 999px;
  background: var(--surface-soft);
  padding: 0.55rem 0.76rem;
  color: #17483a;
  font-weight: 700;
  white-space: nowrap;
}

.validation-message {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(247, 141, 29, 0.45);
  border-radius: 1rem;
  color: #6f3900;
  font-weight: 800;
  background: rgba(247, 141, 29, 0.14);
}

.items-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.item-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.item-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.item-text {
  font-size: 0.98rem;
  line-height: 1.5;
}

.response-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(2.5rem, 1fr));
  gap: 0.45rem;
}

.response-button {
  min-height: 2.65rem;
  border: 1px solid rgba(20, 123, 87, 0.25);
  border-radius: 14px;
  color: #164437;
  font-weight: 800;
  background: #f7fbf9;
}

.response-button.selected {
  border: 3px solid var(--accent);
  color: #fff;
  background: var(--accent);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.results-hero {
  display: block;
  margin-bottom: 0.85rem;
}

.results-hero h1 {
  color: #17324d;
  line-height: 1.12;
}

.overall-card,
.benefits-card,
.self-guided-card,
.self-guided-hero-card,
.self-guided-module,
.self-guided-note,
.score-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
}

.overall-card {
  margin-bottom: 0.85rem;
}

.overall-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: start;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.overall-top h2,
.benefits-card h2,
.cta-card h2 {
  color: #17324d;
  line-height: 1.2;
}

.overall-top p {
  margin: 0.25rem 0 0;
}

.overall-score {
  color: var(--sava-green);
  text-align: right;
  white-space: nowrap;
}

.overall-score strong {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 900;
}

.overall-score span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.interpretations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.8rem;
}

.interpretation {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
  padding-left: 0.65rem;
  border-left: 4px solid var(--accent);
}

.area-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.interpretation h3 {
  margin: 0;
  color: #17324d;
  font-size: 0.95rem;
  line-height: 1.2;
}

.area-score {
  white-space: nowrap;
}

.interpretation p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.35;
}

.desktop-extra {
  display: inline;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0.85rem 0;
}

.score-card {
  display: grid;
  min-height: 7.9rem;
  align-content: start;
  gap: 0.5rem;
  border-top: 5px solid var(--accent);
}

.score-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
}

.score-card h3 {
  margin: 0;
  color: #17324d;
  font-size: 0.95rem;
  line-height: 1.22;
}

.dimension-score {
  margin: 0;
  color: #17324d;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.dimension-score span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.dimension-bar {
  overflow: hidden;
  height: 0.5rem;
  border-radius: 999px;
  background: #e9eef1;
}

.dimension-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.score-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.35;
}

.benefits-card {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.self-guided-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 0.85rem;
  border-left: 5px solid var(--accent);
}

.self-guided-card h2 {
  margin: 0.15rem 0 0.3rem;
  color: #17324d;
  font-size: 1.12rem;
  line-height: 1.2;
}

.self-guided-card p {
  margin: 0;
}

.self-guided-report-link {
  white-space: nowrap;
  border: 1px solid color-mix(in srgb, var(--accent) 58%, rgba(18, 49, 59, 0.18));
  color: #12313b;
  background: color-mix(in srgb, var(--accent) 14%, #fff);
  box-shadow: none;
}

.desktop-benefit {
  display: block;
}

.mobile-benefits {
  display: none;
  gap: 0.4rem;
  margin: 0;
  padding-left: 1.2rem;
}

.cta-card {
  border-color: var(--line);
  border-radius: 8px;
  background: #f8fbfb;
  box-shadow: none;
}

.results-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 0.65rem;
}

.results-actions .primary-button,
.results-actions .secondary-link,
.results-actions .ghost-button {
  width: 100%;
  border-radius: 6px;
  text-align: center;
}

.results-actions .secondary-link {
  border-color: var(--sava-green);
  color: var(--sava-green);
  background: #fff;
}

.results-actions .ghost-button {
  color: #17324d;
  font-weight: 700;
}

.accent-cultural-drive {
  --accent: var(--sava-green);
}

.accent-strategic-cultural-intelligence {
  --accent: var(--sava-blue);
}

.accent-cultural-mind {
  --accent: var(--sava-purple);
}

.accent-adaptive-action {
  --accent: var(--sava-orange);
}

.self-guided-page .app-shell {
  width: min(920px, calc(100% - 56px));
}

.self-guided-layout {
  display: grid;
  gap: 0.85rem;
  max-width: 860px;
  margin: 0 auto;
}

.self-guided-page [hidden] {
  display: none !important;
}

.self-guided-layout .self-guided-layout {
  width: 100%;
  max-width: none;
}

.self-guided-hero-card {
  display: grid;
  gap: 0.58rem;
  border-top: 5px solid var(--accent);
}

.self-guided-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.self-guided-title {
  margin: 0;
  color: #17324d;
  font-size: clamp(1.5rem, 2.65vw, 2.1rem);
  line-height: 1.08;
}

.self-guided-score {
  display: inline-flex;
  width: fit-content;
  align-items: baseline;
  gap: 0.28rem;
  border: 1px solid rgba(18, 49, 59, 0.14);
  border-radius: 8px;
  padding: 0.42rem 0.62rem;
  color: #17324d;
  font-weight: 850;
  background: #f7faf9;
}

.self-guided-score strong {
  color: #435760;
  font-size: 0.95rem;
  line-height: 1;
}

.self-guided-action {
  margin: 0;
  color: #17324d;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.35;
}

.self-guided-try-first {
  display: grid;
  gap: 0.32rem;
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 0.72rem 0.9rem;
  background: rgba(245, 248, 250, 0.92);
}

.self-guided-try-first p {
  margin: 0;
  line-height: 1.45;
}

.self-guided-try-label {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.self-guided-reason {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.42;
}

.self-guided-value-block {
  display: grid;
  gap: 0.74rem;
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 0.78rem 0.92rem;
  background: rgba(245, 248, 250, 0.92);
}

.self-guided-return-actions,
.self-guided-support-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.62rem;
}

.self-guided-return-actions {
  margin-top: 0.8rem;
}

.self-guided-return-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.24rem;
  border: 1px solid rgba(18, 49, 59, 0.16);
  border-radius: 6px;
  padding: 0.5rem 0.7rem;
  color: #17324d;
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  background: #fff;
}

.self-guided-return-link:hover,
.self-guided-return-link:focus-visible {
  border-color: rgba(20, 123, 87, 0.42);
  color: var(--sava-green);
}

.first-mile-section {
  display: grid;
  gap: 0.34rem;
}

.first-mile-section + .first-mile-section {
  border-top: 1px solid rgba(18, 49, 59, 0.09);
  padding-top: 0.72rem;
}

.first-mile-section h2 {
  margin: 0;
  color: #17324d;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.25;
}

.first-mile-section p {
  margin: 0;
  color: #435760;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.48;
}

.first-mile-section ol {
  display: grid;
  gap: 0.28rem;
  margin: 0.08rem 0 0;
  padding-left: 1.1rem;
}

.first-mile-section li {
  color: #435760;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.44;
}

.self-guided-outcome,
.self-guided-private-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.self-guided-outcome {
  font-weight: 700;
}

.self-guided-private-note {
  font-size: 0.86rem;
}

.self-guided-desktop-note,
.self-guided-mobile-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.self-guided-mobile-note {
  display: none;
}

.self-guided-module {
  display: grid;
  gap: 0.75rem;
  border-top: 5px solid var(--accent);
}

.self-guided-module summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: #17324d;
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
}

.self-guided-module summary::-webkit-details-marker {
  display: none;
}

.self-guided-module > summary::after {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 900;
  content: "+";
}

.self-guided-module[open] > summary::after {
  content: "-";
}

.self-guided-module h2,
.self-guided-module summary span {
  margin: 0;
  color: #17324d;
  font-size: 1.22rem;
  line-height: 1.2;
}

.self-guided-module p {
  margin: 0;
  line-height: 1.5;
}

.self-guided-flow {
  display: grid;
  gap: 0.7rem;
}

.self-guided-dimension-intro {
  margin-top: 0.7rem;
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 0.75rem 0.9rem;
  background: rgba(245, 248, 250, 0.92);
}

.self-guided-dimension-intro p {
  margin: 0;
  color: #435760;
  font-weight: 700;
  line-height: 1.45;
}

.self-guided-practice-card-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.self-guided-practice-card {
  scroll-margin-top: 0.8rem;
  overflow: hidden;
  border: 1px solid rgba(18, 49, 59, 0.13);
  border-radius: 8px;
  background: #fff;
}

.self-guided-practice-card[open] {
  border-color: color-mix(in srgb, var(--accent) 36%, rgba(18, 49, 59, 0.13));
  box-shadow: 0 10px 28px rgba(18, 49, 59, 0.08);
}

.self-guided-practice-card summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 0.58rem;
  padding: 0.82rem 0.9rem;
  cursor: pointer;
  list-style: none;
}

.self-guided-practice-card summary::-webkit-details-marker {
  display: none;
}

.self-guided-practice-card summary::after {
  display: none;
  content: "";
}

.self-guided-practice-card[open] summary::after {
  content: "";
}

.practice-card-title {
  min-width: 0;
}

.self-guided-practice-card .practice-card-title {
  display: grid;
  gap: 0.18rem;
  grid-column: 1;
  color: #17324d;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.25;
}

.self-guided-practice-card .practice-card-preview {
  grid-column: 1;
  color: #435760;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.35;
}

.recommended-practice-badge {
  display: block;
  width: fit-content;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: #5a6b73;
  font-size: 0.65rem;
  font-weight: 500;
  line-height: 1.2;
  background: transparent;
  cursor: default;
  pointer-events: none;
}

.self-guided-practice-card .practice-card-category {
  grid-column: 1;
  width: fit-content;
  border: 0;
  border-radius: 999px;
  padding: 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  text-transform: none;
  background: transparent;
}

.practice-card-open-cue {
  grid-column: 1;
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(18, 49, 59, 0.18);
  border-radius: 6px;
  padding: 0.28rem 0.46rem;
  color: #17324d;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
  background: #fff;
}

.practice-card-open-cue .practice-card-open-label {
  font-size: 0.7rem;
  font-weight: 600;
}

.practice-card-open-cue.recommended-open-cue {
  border-color: rgba(18, 49, 59, 0.18);
  background: #fff;
}

.practice-card-open-label-open {
  display: none;
}

.self-guided-practice-card[open] .practice-card-open-label-closed {
  display: none;
}

.self-guided-practice-card[open] .practice-card-open-label-open {
  display: inline;
}

.practice-card-body {
  display: grid;
  gap: 0.5rem;
  padding: 0 0.82rem 0.82rem;
}

.self-guided-card-section {
  display: grid;
  gap: 0.26rem;
  border: 1px solid rgba(18, 49, 59, 0.09);
  border-radius: 8px;
  padding: 0.64rem 0.72rem;
  background: #f8fbfb;
}

.self-guided-card-section h4 {
  margin: 0;
  color: #17324d;
  font-size: 0.82rem;
  line-height: 1.25;
}

.self-guided-card-section p,
.self-guided-card-section li {
  color: #435760;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.48;
}

.self-guided-card-section ul {
  display: grid;
  gap: 0.28rem;
  margin: 0;
  padding-left: 1.15rem;
}

.reflection-box-section {
  border-color: color-mix(in srgb, var(--accent) 24%, rgba(18, 49, 59, 0.09));
  background: #ffffff;
}

.reflection-box-section summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  border: 1px solid color-mix(in srgb, var(--accent) 42%, rgba(18, 49, 59, 0.14));
  border-radius: 6px;
  padding: 0.56rem 0.68rem;
  color: #17324d;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
  background: color-mix(in srgb, var(--accent) 11%, #fff);
}

.reflection-box-section summary::-webkit-details-marker {
  display: none;
}

.reflection-box-section summary::after {
  color: var(--accent);
  content: "+";
}

.reflection-box-section[open] summary::after {
  content: "-";
}

.reflection-box-content {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.48rem;
}

.reflection-privacy-note,
.reflection-instruction,
.reflection-status {
  margin: 0;
}

.reflection-instruction {
  color: #17324d;
  font-weight: 400;
}

.reflection-box {
  width: 100%;
  min-height: 7rem;
  resize: vertical;
  border: 1px solid rgba(18, 49, 59, 0.18);
  border-radius: 8px;
  padding: 0.68rem 0.72rem;
  color: #17324d;
  font: inherit;
  line-height: 1.45;
  background: #fff;
}

.reflection-box:focus {
  border-color: var(--accent);
  outline: 3px solid color-mix(in srgb, var(--accent) 18%, transparent);
}

.reflection-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.reflection-action-button {
  border: 1px solid color-mix(in srgb, var(--accent) 58%, rgba(18, 49, 59, 0.18));
  border-radius: 6px;
  padding: 0.5rem 0.68rem;
  color: #17324d;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.2;
  background: color-mix(in srgb, var(--accent) 4%, #fff);
  cursor: pointer;
}

.reflection-action-button:hover,
.reflection-action-button:focus-visible {
  color: #fff;
  background: var(--accent);
}

.reflection-status {
  min-height: 1.2rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.self-guided-flow section {
  display: grid;
  gap: 0.32rem;
  border: 1px solid rgba(18, 49, 59, 0.1);
  border-radius: 8px;
  padding: 0.8rem 0.9rem;
  background: #f8fbfb;
}

.self-guided-flow h3 {
  margin: 0;
  color: #17324d;
  font-size: 0.9rem;
  line-height: 1.25;
}

.self-guided-flow p,
.self-guided-flow li {
  color: #435760;
  font-size: 0.9rem;
  line-height: 1.52;
}

.self-guided-flow ol {
  display: grid;
  gap: 0.3rem;
  margin: 0;
  padding-left: 1.25rem;
}

.self-guided-practice-step {
  border-left: 4px solid var(--accent) !important;
  background: rgba(255, 255, 255, 0.94) !important;
}

.self-guided-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.self-guided-prompt {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.85rem;
  background: #f8fbfb;
}

.self-guided-prompt h3 {
  margin: 0 0 0.35rem;
  color: #17324d;
  font-size: 0.88rem;
  line-height: 1.25;
}

.self-guided-dimension-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.self-guided-dimension-nav a {
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 0.62rem 0.7rem;
  color: #17324d;
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  background: #fff;
}

.self-guided-note {
  display: grid;
  gap: 0.65rem;
  background: #f8fbfb;
}

.self-guided-note.compact-note {
  padding: 0.7rem 0.85rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.self-guided-note.explore-note {
  border-left: 5px solid var(--sava-blue);
}

.fallback-path-note {
  border-left: 5px solid var(--sava-blue);
}

.fallback-path-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.fallback-path-button {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  border: 1px solid rgba(18, 49, 59, 0.16);
  border-radius: 6px;
  padding: 0.52rem 0.72rem;
  color: #17324d;
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  background: #fff;
}

.fallback-path-button-primary {
  border-color: var(--sava-green);
  color: #fff;
  background: var(--sava-green);
}

.fallback-path-button-secondary {
  border-color: rgba(18, 49, 59, 0.18);
}

.fallback-path-instruction {
  margin: 0;
  color: #435760;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.45;
}

.self-guided-note h2 {
  margin: 0;
  color: #17324d;
  font-size: 1.04rem;
}

.self-guided-note p {
  margin: 0;
}

.self-guided-note .secondary-button {
  justify-self: start;
}

.privacy-evidence-note {
  color: var(--muted);
}

.privacy-evidence-note summary {
  color: #17324d;
  font-weight: 900;
  cursor: pointer;
}

.privacy-evidence-note div {
  display: grid;
  gap: 0.55rem;
}

@media (max-width: 780px) {
  .app-shell {
    width: min(100% - 1rem, 980px);
    padding-bottom: 2rem;
  }

  .public-header {
    width: min(100% - 1rem, 980px);
    justify-content: flex-start;
  }

  .brand-logo {
    width: 96px;
  }

  .dimension-preview ul,
  .section-heading,
  .results-hero,
  .score-grid,
  .score-card,
  .interpretations,
  .overall-top,
  .self-guided-card,
  .self-guided-module-grid,
  .self-guided-dimension-nav,
  .results-actions {
    grid-template-columns: 1fr;
  }

  .progress-stack {
    min-width: 0;
  }

  .results-card {
    padding: 0.88rem;
  }

  .results-hero {
    margin-bottom: 0.65rem;
  }

  .results-hero h1 {
    font-size: 1.38rem;
  }

  .overall-card,
  .benefits-card,
  .self-guided-card,
  .self-guided-hero-card,
  .self-guided-module,
  .self-guided-note,
  .cta-card {
    padding: 0.82rem;
  }

  .overall-top {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .overall-top p {
    display: none;
  }

  .overall-score strong {
    font-size: 2.1rem;
  }

  .overall-score span {
    font-size: 0.86rem;
  }

  .interpretations {
    gap: 0.5rem;
    margin-top: 0.65rem;
  }

  .interpretation {
    gap: 0.18rem;
    padding-left: 0.5rem;
  }

  .area-label {
    font-size: 0.69rem;
  }

  .interpretation h3 {
    font-size: 0.88rem;
  }

  .interpretation p {
    font-size: 0.78rem;
    line-height: 1.32;
  }

  .desktop-extra {
    display: none;
  }

  .score-grid {
    gap: 0.5rem;
    margin: 0.65rem 0;
  }

  .score-card {
    min-height: 0;
    padding: 0.7rem;
    gap: 0.42rem;
  }

  .score-card h3 {
    font-size: 0.88rem;
  }

  .dimension-score {
    font-size: 1rem;
  }

  .dimension-bar {
    height: 0.42rem;
  }

  .score-card p,
  .benefits-card li {
    font-size: 0.78rem;
    line-height: 1.32;
  }

  .self-guided-report-link {
    white-space: normal;
  }

  .self-guided-page .app-shell {
    width: min(100% - 1rem, 980px);
  }

  .self-guided-layout {
    gap: 0.65rem;
  }

  .self-guided-title {
    font-size: 1.36rem;
  }

  .self-guided-score strong {
    font-size: 1.15rem;
  }

  .self-guided-action {
    font-size: 0.96rem;
  }

  .self-guided-try-first,
  .self-guided-flow section {
    padding: 0.72rem;
  }

  .self-guided-desktop-note {
    display: none;
  }

  .self-guided-mobile-note {
    display: block;
  }

  .self-guided-module h2 {
    font-size: 1.05rem;
  }

  .self-guided-module summary,
  .self-guided-module summary span {
    font-size: 1.05rem;
  }

  .self-guided-module p,
  .self-guided-note p,
  .self-guided-prompt p,
  .self-guided-flow p,
  .self-guided-flow li,
  .self-guided-card-section p,
  .self-guided-card-section li {
    font-size: 0.84rem;
    line-height: 1.4;
  }

  .self-guided-practice-card summary {
    grid-template-columns: minmax(0, 1fr) 0.9rem;
    gap: 0.34rem;
    padding: 0.72rem;
  }

  .self-guided-practice-card summary::after {
    display: none;
  }

  .self-guided-practice-card .practice-card-category {
    font-size: 0.64rem;
    text-align: left;
  }

  .self-guided-practice-card .practice-card-title {
    font-size: 0.9rem;
  }

  .self-guided-practice-card .practice-card-preview {
    font-size: 0.74rem;
  }

  .practice-card-body {
    gap: 0.5rem;
    padding: 0 0.72rem 0.72rem;
  }

  .self-guided-card-section {
    padding: 0.64rem;
  }

  .desktop-benefit {
    display: none;
  }

  .mobile-benefits {
    display: grid;
  }

  .response-grid {
    grid-template-columns: repeat(5, minmax(2.7rem, 1fr));
  }

  .button-row.spread {
    align-items: stretch;
    justify-content: flex-start;
  }

  .section-actions .primary-button,
  .section-actions .ghost-button {
    order: initial;
  }

  .button-row.spread button,
  .primary-button,
  .ghost-button,
  .secondary-link {
    width: 100%;
  }

  .control-item {
    width: 100%;
  }
}

.self-guided-module summary .practice-card-open-cue,
.self-guided-module summary .practice-card-open-cue .practice-card-open-label {
  font-size: 0.7rem;
  font-weight: 600;
}
