:root {
  --dark-blue: #003087;
  --medium-blue: #026CFF;
  --light-blue: #009CDE;
  --mustard: #FFC43A;
  --deep-navy: #071B3A;
  --soft-blue: #EAF4FF;
  --ice-blue: #F5FAFF;
  --charcoal: #1E293B;
  --slate: #64748B;
  --line: #E2E8F0;
  --white: #FFFFFF;
  --success: #08775B;
  --shadow: 0 24px 60px rgba(7, 27, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.assessment-no-smooth {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: var(--dark-blue);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(226, 232, 240, 0.78);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-width: 178px;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 300px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0;
  color: var(--dark-blue);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: var(--dark-blue);
  font-size: 14px;
  font-weight: 800;
}

.nav-link,
.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 12px;
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--soft-blue);
}

.nav-cta {
  color: var(--white);
  background: var(--medium-blue);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 12px 20px;
  color: var(--white);
  background: var(--medium-blue);
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(2, 108, 255, 0.25);
}

.button:disabled {
  color: #8290A3;
  background: #E5EAF0;
  cursor: not-allowed;
}

.button.light {
  color: var(--dark-blue);
  background: var(--white);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover:not(:disabled) {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.15);
}

.button.quiet {
  border: 1px solid var(--line);
  color: var(--dark-blue);
  background: var(--white);
}

.button.quiet:hover:not(:disabled) {
  box-shadow: none;
  background: var(--soft-blue);
}

.assessment-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 24%, rgba(0, 156, 222, 0.28), transparent 30%),
    linear-gradient(135deg, var(--deep-navy), var(--dark-blue));
}

.assessment-hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: 56px;
}

.assessment-hero h1,
.assessment-hero h2,
.assessment-hero p,
.assessment-workspace h2,
.assessment-workspace h3,
.assessment-workspace p,
.method-section h2,
.method-section h3,
.method-section p {
  margin-top: 0;
}

.eyebrow,
.section-kicker {
  margin-bottom: 14px;
  color: var(--mustard);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.assessment-hero h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.04;
}

.assessment-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

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

.assessment-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 24px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.assessment-facts li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--mustard);
}

.readiness-preview {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow);
}

.readiness-preview .preview-label {
  margin-bottom: 10px;
  color: var(--mustard);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.readiness-preview h2 {
  margin-bottom: 22px;
  font-size: 27px;
  line-height: 1.2;
}

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

.preview-dimensions span {
  min-height: 48px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 14px;
  font-weight: 700;
}

.readiness-preview .preview-note {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.assessment-workspace {
  padding: 78px 20px 88px;
  background: var(--ice-blue);
  scroll-margin-top: 92px;
}

.workspace-heading,
.assessment-panel {
  width: min(880px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.workspace-heading {
  margin-bottom: 30px;
  text-align: center;
}

.workspace-heading .section-kicker,
.method-copy .section-kicker,
.result-summary .section-kicker,
.primary-area .section-kicker {
  color: var(--medium-blue);
}

.workspace-heading h2 {
  margin-bottom: 12px;
  color: var(--deep-navy);
  font-size: clamp(30px, 4.2vw, 45px);
  line-height: 1.12;
}

.workspace-heading > p:last-child {
  max-width: 680px;
  margin: 0 auto;
  color: var(--slate);
  font-size: 17px;
}

.assessment-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.assessment-intro {
  padding: 44px;
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: start;
  gap: 26px;
}

.intro-number {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--deep-navy);
  background: var(--mustard);
  font-size: 38px;
  font-weight: 800;
}

.assessment-intro h3 {
  margin-bottom: 8px;
  color: var(--deep-navy);
  font-size: 29px;
}

.assessment-intro p {
  max-width: 610px;
  margin-bottom: 22px;
  color: var(--slate);
  font-size: 16px;
}

.question-panel {
  padding: 38px 44px 42px;
}

.question-progress {
  margin-bottom: 32px;
}

.question-progress > div {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 700;
}

.question-progress #dimension-label {
  color: var(--dark-blue);
}

.question-progress progress,
.dimension-result progress {
  width: 100%;
  display: block;
  border: 0;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}

.question-progress progress {
  height: 8px;
}

.question-progress progress::-webkit-progress-bar,
.dimension-result progress::-webkit-progress-bar {
  background: var(--line);
}

.question-progress progress::-webkit-progress-value,
.dimension-result progress::-webkit-progress-value {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--medium-blue), var(--light-blue));
}

.question-progress progress::-moz-progress-bar,
.dimension-result progress::-moz-progress-bar {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--medium-blue), var(--light-blue));
}

.question-panel fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}

.question-panel legend {
  width: 100%;
  margin-bottom: 22px;
  color: var(--deep-navy);
  font-size: clamp(25px, 3.6vw, 34px);
  font-weight: 800;
  line-height: 1.22;
}

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

.answer-choice {
  min-height: 64px;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 16px;
  color: var(--charcoal);
  background: var(--white);
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.answer-choice:hover {
  border-color: #89B9FB;
  background: var(--ice-blue);
}

.answer-choice:has(input:checked) {
  border-color: var(--medium-blue);
  background: var(--soft-blue);
  box-shadow: 0 0 0 1px var(--medium-blue);
}

.answer-choice input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--medium-blue);
}

.answer-choice span {
  font-size: 16px;
  font-weight: 650;
  line-height: 1.4;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 4px;
  color: #A2382A;
  font-size: 14px;
  font-weight: 700;
}

.question-controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.assessment-results {
  outline: none;
}

.result-hero {
  padding: 42px 44px;
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 38px;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep-navy), var(--dark-blue));
}

.score-block {
  min-height: 184px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.09);
  text-align: center;
}

.score-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.score-block strong {
  margin: 3px 0 10px;
  color: var(--white);
  font-size: 45px;
  line-height: 1.05;
}

.tier-badge {
  border-radius: 999px;
  padding: 5px 11px;
  color: var(--deep-navy);
  background: var(--mustard);
  font-size: 13px;
  font-weight: 800;
}

.result-summary .section-kicker {
  margin-bottom: 8px;
  color: var(--mustard);
}

.result-summary h2 {
  margin-bottom: 8px;
  font-size: 33px;
  line-height: 1.16;
}

.result-summary h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.3;
}

.result-summary > p:not(.section-kicker) {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.78);
}

.result-summary .result-note {
  margin-bottom: 0;
  font-size: 13px;
}

.result-section {
  padding: 38px 44px;
}

.result-section + .result-section {
  border-top: 1px solid var(--line);
}

.result-section-heading {
  margin-bottom: 22px;
}

.result-section-heading h3,
.primary-area h3,
.results-cta h3 {
  margin-bottom: 7px;
  color: var(--deep-navy);
  font-size: 25px;
  line-height: 1.25;
}

.result-section-heading p {
  margin-bottom: 0;
  color: var(--slate);
}

.dimension-results {
  display: grid;
  gap: 19px;
}

.dimension-result-heading {
  margin-bottom: 7px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 750;
}

.dimension-result-heading strong {
  color: var(--dark-blue);
}

.dimension-result progress {
  height: 10px;
}

.primary-area {
  margin: 0 44px 8px;
  border: 1px solid #F2D17D;
  border-radius: 8px;
  padding: 28px;
  background: #FFF9E8;
}

.primary-area .section-kicker {
  margin-bottom: 7px;
  color: #8A5B00;
}

.primary-area > p:not(.section-kicker) {
  color: #5C4A24;
}

.primary-area .primary-recommendation {
  margin-bottom: 0;
  color: var(--deep-navy);
  font-weight: 750;
}

.next-actions ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.next-actions li {
  min-height: 62px;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: start;
  gap: 14px;
  color: var(--charcoal);
}

.action-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--medium-blue);
  font-size: 14px;
  font-weight: 800;
}

.results-cta {
  padding: 38px 44px;
  color: var(--white);
  background: var(--deep-navy);
}

.results-cta h3 {
  color: var(--white);
}

.results-cta p {
  max-width: 690px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.74);
}

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

.method-section {
  padding: 86px 20px;
  background: var(--white);
}

.method-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 58px;
}

.method-copy h2 {
  margin-bottom: 16px;
  color: var(--deep-navy);
  font-size: clamp(30px, 4vw, 43px);
  line-height: 1.14;
}

.method-copy > p:not(.section-kicker) {
  color: var(--slate);
  font-size: 16px;
}

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

.dimension-guide article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--ice-blue);
}

.dimension-guide h3 {
  margin-bottom: 6px;
  color: var(--dark-blue);
  font-size: 17px;
}

.dimension-guide p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 14px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  color: var(--slate);
  font-size: 13px;
}

.footer-brand-link {
  color: inherit;
}

@media (max-width: 980px) {
  .assessment-hero-inner,
  .method-inner {
    grid-template-columns: 1fr;
  }

  .assessment-hero-inner {
    gap: 34px;
  }

  .readiness-preview {
    max-width: 720px;
  }

  .method-inner {
    gap: 34px;
  }
}

@media (max-width: 720px) {
  .assessment-hero-inner {
    width: min(100% - 28px, 1180px);
    padding: 62px 0;
  }

  .assessment-hero h1 {
    font-size: 36px;
  }

  .assessment-hero-copy > p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-actions,
  .hero-actions .button,
  .assessment-intro .button,
  .results-actions,
  .results-actions .button {
    width: 100%;
  }

  .assessment-facts {
    display: grid;
    gap: 7px;
  }

  .readiness-preview {
    border-radius: 8px;
    padding: 24px;
  }

  .preview-dimensions {
    grid-template-columns: 1fr;
  }

  .assessment-workspace {
    padding: 58px 14px 66px;
  }

  .workspace-heading {
    text-align: left;
  }

  .workspace-heading > p:last-child {
    margin-left: 0;
  }

  .assessment-panel {
    border-radius: 8px;
  }

  .assessment-intro {
    padding: 28px 22px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .intro-number {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    font-size: 30px;
  }

  .question-panel,
  .result-section,
  .results-cta {
    padding: 28px 22px;
  }

  .question-progress > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .question-panel legend {
    font-size: 26px;
  }

  .answer-choice {
    min-height: 68px;
    padding: 14px;
  }

  .question-controls {
    flex-direction: column-reverse;
  }

  .question-controls .button {
    width: 100%;
  }

  .result-hero {
    padding: 30px 22px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .score-block {
    min-height: 158px;
  }

  .primary-area {
    margin: 0 22px 4px;
    padding: 22px;
  }

  .method-section {
    padding: 66px 14px;
  }

  .dimension-guide {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    width: min(100% - 28px, 1180px);
    min-height: 110px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .answer-choice {
    transition: none;
  }
}
