:root {
  --bg: #071f27;
  --bg-elev: #0a2c35;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --text: #f2f4f5;
  --muted: #b5c1c6;
  --brand: #f05933;
  --brand-2: #ff7a4f;
  --line: rgba(255, 255, 255, 0.16);
  --ok: #13b58a;
  --radius: 14px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 5% 0%, #123746 0%, transparent 40%),
              radial-gradient(circle at 95% 15%, #16303d 0%, transparent 35%),
              var(--bg);
  color: var(--text);
  line-height: 1.65;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 999;
  background: #fff;
  color: #000;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.ambient span {
  position: absolute;
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.25;
}

.ambient span:nth-child(1) {
  width: 280px;
  height: 280px;
  background: var(--brand);
  top: -60px;
  right: 8%;
}

.ambient span:nth-child(2) {
  width: 320px;
  height: 320px;
  background: #2d8ca7;
  bottom: 10%;
  left: -120px;
}

.ambient span:nth-child(3) {
  width: 200px;
  height: 200px;
  background: #1d6376;
  bottom: 10%;
  right: 20%;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(6, 22, 29, 0.78);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.02em;
  font-size: 1.4rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
}

.logo strong {
  color: var(--brand);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
}


.nav-order-dropdown {
  position: relative;
}

.nav-menu-dropdown {
  position: relative;
}

.nav-menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.nav-menu-toggle:hover,
.nav-menu-toggle:focus-visible,
.nav-menu-dropdown:has([aria-current="page"]) > .nav-menu-toggle {
  color: var(--text);
}

.nav-menu-toggle::after {
  content: "";
  display: inline-block;
  width: 0.36rem;
  height: 0.36rem;
  margin-left: 0.38rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.12rem) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-menu-dropdown.open .nav-menu-toggle::after {
  transform: translateY(0.1rem) rotate(225deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: -0.65rem;
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 230px;
  padding: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(6, 22, 29, 0.98);
  box-shadow: var(--shadow);
}

.nav-menu-dropdown.open .nav-menu {
  display: flex;
}

.nav-menu a {
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  color: var(--text);
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a[aria-current="page"] {
  background: var(--surface);
  color: #fff;
}

.nav-order-toggle {
  cursor: pointer;
}

.nav-order-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  min-width: 220px;
  padding: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(6, 22, 29, 0.98);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 30;
}

.nav-order-dropdown.open .nav-order-menu {
  display: flex;
}

.nav-order-menu a {
  color: var(--text);
  font-weight: 700;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
}

.nav-order-menu a:hover,
.nav-order-menu a:focus-visible {
  background: var(--surface);
  color: #fff;
}

.purchase-dropdown {
  position: relative;
}

.purchase-toggle {
  cursor: pointer;
  min-width: 155px;
}

.purchase-toggle::after,
.nav-order-toggle::after {
  content: "";
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.15rem) rotate(45deg);
  transition: transform 180ms ease;
}

.purchase-dropdown.open .purchase-toggle::after,
.nav-order-dropdown.open .nav-order-toggle::after {
  transform: translateY(0.1rem) rotate(225deg);
}

.purchase-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  z-index: 35;
  display: none;
  flex-direction: column;
  min-width: 260px;
  padding: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(6, 22, 29, 0.98);
  box-shadow: var(--shadow);
}

.purchase-dropdown.open .purchase-menu {
  display: flex;
}

.purchase-menu a {
  display: grid;
  padding: 0.72rem 0.8rem;
  border-radius: 10px;
}

.purchase-menu a:hover,
.purchase-menu a:focus-visible {
  background: var(--surface);
}

.purchase-menu span {
  font-weight: 700;
}

.purchase-menu small {
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.2rem;
  align-items: center;
  padding: 4.8rem 0 3rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-2);
  font-weight: 700;
  font-size: 0.75rem;
  margin: 0 0 0.8rem;
}

h1, h2, h3 {
  margin: 0 0 1rem;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  font-size: 1.4rem;
}

.lede {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.24rem);
  max-width: 68ch;
}

.section-note {
  max-width: 78ch;
  margin: 1.2rem 0 0;
  color: var(--muted);
}

.hero-art img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--surface-strong);
}

.cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 1.4rem 0 0.8rem;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.82rem 1.25rem;
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  font-weight: 700;
  transition: transform 180ms ease, filter 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}

.btn-sm {
  padding: 0.55rem 0.9rem;
  font-size: 0.92rem;
}

.quick-points {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.quick-points li {
  position: relative;
  padding-left: 1.1rem;
}

.quick-points li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--brand);
  position: absolute;
  left: 0;
  top: 0.62rem;
}

.audio-overview {
  padding-top: 2.2rem;
}

.audio-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1rem 1rem 0.9rem;
}

.audio-card p {
  margin-top: 0;
}

.audio-card audio {
  width: 100%;
  margin: 0.3rem 0 0.6rem;
}


.video-review-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1rem;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-review-copy p:first-child {
  margin-top: 0;
}

.section {
  padding: 3.4rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

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

.faq-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1rem;
}

.faq-card h3 {
  margin-bottom: 0.55rem;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
}

.section-head {
  margin-bottom: 1rem;
}

.text-link {
  color: var(--brand-2);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.actions-inline {
  margin-top: 0.5rem;
}

.author-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.2rem;
  align-items: start;
}

.author-photo-wrap {
  margin: 0;
}

.author-photo {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.consulting-cta {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1rem;
}

.consulting-cta p {
  margin-top: 0;
}

.consulting-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.4rem;
  align-items: center;
}

.mailchimp-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1rem;
}

.mailchimp-card p {
  margin-top: 0;
  color: var(--muted);
}

#mc_embed_signup {
  background: transparent !important;
  clear: left;
  width: 100% !important;
  max-width: 100%;
}

#mc_embed_signup form {
  margin: 0;
  padding: 0;
}

#mc_embed_signup .mc-field-group {
  width: 100%;
  padding-bottom: 12px;
}

#mc_embed_signup .mc-field-group label {
  color: var(--muted);
  font-weight: 600;
}

#mc_embed_signup input[type="email"],
#mc_embed_signup input[type="text"] {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  padding: 0.7rem 0.8rem;
  font: inherit;
}

#mc_embed_signup input.button,
#mc_embed_signup .button {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.82rem 1.25rem;
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  font-weight: 700;
}

.booking-form {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr 1fr;
}

.booking-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--muted);
}

.booking-form .full {
  grid-column: 1 / -1;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.booking-form input:focus-visible,
.booking-form select:focus-visible,
.booking-form textarea:focus-visible {
  outline: 2px solid var(--brand-2);
  outline-offset: 2px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  grid-column: 1 / -1;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.media-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  background: var(--surface);
  transition: transform 180ms ease, border-color 180ms ease;
}

.media-card:hover,
.media-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--brand-2);
}

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

.addon-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.25rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1rem;
}

.addon-art {
  margin: 0;
}

.addon-art img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.addon-copy p {
  margin-top: 0;
}

.addon-price,
.study-price {
  color: var(--brand-2);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
}

.content-figure {
  margin: 0;
}

.content-figure img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.inline-figure {
  margin: 1rem 0 1.2rem;
}

.district-page {
  padding-bottom: 2rem;
}

.district-hero h2 {
  color: var(--muted);
  margin-top: 0.2rem;
}

.district-content {
  max-width: 860px;
}

.district-content ul {
  margin: 0.5rem 0 1rem;
}

.district-content li {
  margin-bottom: 0.35rem;
}

.cta-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1rem;
}

.study-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.study-art {
  margin: 0;
}

.study-art img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.study-cta-row {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
}

.check-list li::before {
  content: "✓";
  color: var(--brand-2);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

.quiz-page {
  padding-bottom: 2rem;
}

.quiz-promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.2rem, 3vw, 2rem);
  overflow: hidden;
  border: 1px solid rgba(240, 89, 51, 0.48);
  border-radius: 24px;
  background: radial-gradient(circle at 100% 0%, rgba(240, 89, 51, 0.28), transparent 40%), var(--surface);
}

.quiz-promo p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.quiz-promo .btn {
  white-space: nowrap;
}

.quiz-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  gap: 2rem;
  align-items: center;
  padding-top: 4.4rem;
}

.quiz-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.quiz-meta span {
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
}

.quiz-hero-mark {
  position: relative;
  min-height: 300px;
  display: grid;
  place-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(240, 89, 51, 0.2), rgba(10, 44, 53, 0.75));
  box-shadow: var(--shadow);
}

.quiz-hero-mark::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -70px;
  bottom: -150px;
  border: 28px solid rgba(240, 89, 51, 0.4);
  border-radius: 50%;
}

.quiz-hero-mark span {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  color: var(--brand-2);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0.34;
}

.quiz-hero-mark strong {
  position: relative;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.quiz-shell {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.1rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.quiz-intro {
  max-width: 720px;
  margin-bottom: 1.8rem;
}

.quiz-intro p:last-child,
.curve-intro p:last-child {
  color: var(--muted);
}

.quiz-progress {
  margin-bottom: 1.5rem;
}

.quiz-progress-copy {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.quiz-progress-track,
.result-meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.quiz-progress-track span,
.result-meter span {
  display: block;
  width: 14.285%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transition: width 320ms ease;
}

.quiz-question {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.leadership-quiz.quiz-enhanced .quiz-question {
  display: none;
}

.leadership-quiz.quiz-enhanced .quiz-question.is-active {
  display: block;
  animation: quiz-question-in 320ms ease both;
}

.quiz-question legend {
  width: 100%;
  margin-bottom: 1rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 700;
  line-height: 1.12;
}

.quiz-question label {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 0.7rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.12);
  color: var(--muted);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.quiz-question label:hover,
.quiz-question label:has(input:checked) {
  border-color: var(--brand-2);
  background: rgba(240, 89, 51, 0.1);
  color: var(--text);
}

.quiz-question input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.25rem;
  flex: 0 0 auto;
  accent-color: var(--brand);
}

.quiz-error {
  margin: 0.8rem 0 0;
  color: #ffb39d;
  font-weight: 700;
}

.quiz-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.quiz-actions #quiz-back {
  margin-right: auto;
}

.quiz-results[hidden] {
  display: none;
}

.quiz-results {
  animation: quiz-question-in 420ms ease both;
  scroll-margin-top: 100px;
}

.result-summary {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.result-score-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.result-score-card,
.next-move-card,
.support-card {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.14);
}

.result-score-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.result-score-heading h3 {
  margin-bottom: 0.65rem;
}

.result-score-heading strong {
  color: var(--brand-2);
  white-space: nowrap;
}

.result-score-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.next-move-card {
  margin-bottom: 1rem;
  border-color: rgba(240, 89, 51, 0.48);
  background: linear-gradient(135deg, rgba(240, 89, 51, 0.15), rgba(0, 0, 0, 0.12));
}

.next-move-card p:last-child,
.support-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.support-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 1.2rem;
  align-items: center;
}

.support-card .cta-row {
  justify-content: flex-end;
}

.result-actions {
  justify-content: flex-start;
}

.curve-intro {
  max-width: 760px;
}

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

.curve-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.curve-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.curve-card figcaption {
  display: grid;
  gap: 0.15rem;
  padding: 0.9rem 1rem;
}

.curve-card figcaption strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
}

.curve-card figcaption span {
  color: var(--muted);
  font-size: 0.9rem;
}

@keyframes quiz-question-in {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: none; }
}

.site-footer {
  padding: 2.1rem 0 2.6rem;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.footer-grid nav {
  display: flex;
  gap: 1rem;
}

.footer-grid nav a {
  color: var(--muted);
}

.footer-grid nav a:hover,
.footer-grid nav a:focus-visible {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 4%;
    width: min(300px, 92vw);
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #0a232e;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-order-menu {
    position: static;
    margin-top: 0.45rem;
    box-shadow: none;
  }

  .nav-menu-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.35rem 0;
  }

  .nav-menu {
    position: static;
    min-width: 0;
    margin-top: 0.35rem;
    box-shadow: none;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 3.2rem;
  }

  .hero-art {
    order: -1;
  }

  .grid-2,
  .faq-grid,
  .media-grid,
  .author-grid,
  .study-hero-grid,
  .addon-card,
  .consulting-layout,
  .video-review-card,
  .quiz-promo,
  .quiz-hero,
  .result-score-grid,
  .support-card,
  .curve-grid {
    grid-template-columns: 1fr;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 4%;
    width: min(280px, 92vw);
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #0a232e;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open {
    display: flex;
  }

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

  .quiz-hero-mark {
    min-height: 220px;
  }

  .support-card .cta-row {
    justify-content: flex-start;
  }

  .footer-grid nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .quiz-shell {
    width: 100%;
    border-radius: 18px;
  }

  .quiz-question label {
    padding: 0.8rem;
  }

  .quiz-actions .btn,
  .support-card .btn {
    width: 100%;
    text-align: center;
  }

  .quiz-actions #quiz-back {
    order: 2;
  }

  .purchase-menu {
    min-width: min(260px, 88vw);
  }
}

@media print {
  .site-header,
  .ambient,
  .quiz-hero,
  .quiz-intro,
  .leadership-quiz,
  .result-actions,
  .section-soft,
  .site-footer {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  .section {
    padding: 0;
  }

  .quiz-shell,
  .result-score-card,
  .next-move-card,
  .support-card {
    border-color: #bbb;
    background: #fff;
    box-shadow: none;
  }

  .quiz-results,
  .quiz-results[hidden] {
    display: block !important;
  }

  .result-summary,
  .result-score-card p,
  .next-move-card p:last-child,
  .support-card p:last-child {
    color: #333;
  }
}
