:root {
  --ink: #101035;
  --navy: #11113b;
  --blue: #2639c7;
  --red: #f22d12;
  --mint: #43cdb2;
  --gold: #f8b729;
  --orange: #ef7b1a;
  --paper: #F7F6F3;
  --line: #deded5;
  --muted: #66667a;
  --white: #ffffff;
  --greentee: #1c4b42;
  --shadow: 0 24px 70px rgba(17, 17, 59, 0.12);
  --border: #B3B3B3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.5;
  background: var(--paper);
}

button,
input,
textarea {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(110px, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 12px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(17, 17, 59, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
}

.brand img {
  width: 250px;
  height: auto;
}

.brand span {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 17px;
  font-weight: 500;
}

.desktop-nav a {
  position: relative;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #f22d12;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: #f22d12;
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.prototype-pill {
  justify-self: end;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
}

.mobile-nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(17, 17, 59, 0.12);
  border-radius: 12px;
  background: rgba(17, 17, 59, 0.03);
  cursor: pointer;
}

.mobile-nav-toggle span {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}

.mobile-nav-toggle span:nth-child(1) {
  top: 15px;
}

.mobile-nav-toggle span:nth-child(2) {
  top: 21px;
}

.mobile-nav-toggle span:nth-child(3) {
  top: 27px;
}

.mobile-nav-toggle.is-active span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.mobile-nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.is-active span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
  grid-column: 1 / -1;
  gap: 8px;
  padding-top: 12px;
}

.mobile-nav a {
  padding: 10px 0;
  border-bottom: 1px solid rgba(17, 17, 59, 0.08);
  color: var(--navy);
  font-size: 17px;
  font-weight: 500;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: clamp(42px, 7vw, 100px);
  min-height: 620px;
  padding: clamp(72px, 10vw, 110px) clamp(24px, 7vw, 112px);
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--red) 0 33%,
    var(--mint) 33% 66%,
    var(--gold) 66%
  );
  content: "";
}

.hero-content,
.hero-aside {
  position: relative;
  z-index: 2;
  align-self: stretch;
}

/* Hero aside: image shown large (not cropped or animated); stats overlay animated */
.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-right: -12px;
  align-items: stretch;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.hero-aside img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

@keyframes statFloat {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-10px); opacity: 0.9; }
  100% { transform: translateY(0); opacity: 1; }
}

.hero-stat {
  animation: statFloat 9s ease-in-out infinite;
}
.hero-stats-list .hero-stat:nth-child(1) { animation-delay: 0s; }
.hero-stats-list .hero-stat:nth-child(2) { animation-delay: 1.2s; }
.hero-stats-list .hero-stat:nth-child(3) { animation-delay: 2.4s; }

@media (prefers-reduced-motion: reduce) {
  .hero-stat { animation: none; }
}

/* Reveal / entrance animations */
@keyframes slideInFromRight {
  0% { transform: translateX(28px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes fadeUp {
  0% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

:root {
  --reveal-ease: cubic-bezier(.2,.9,.2,1);
}

/* Triggered on page load */
.animate-in .hero-aside img {
  animation: slideInFromRight 680ms var(--reveal-ease) both;
  animation-delay: 140ms;
}

.animate-in .hero-content {
  animation: fadeUp 680ms var(--reveal-ease) both;
  animation-delay: 60ms;
}

/* Generic reveal attribute for elements to animate when in view */
[data-reveal] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms var(--reveal-ease), transform 520ms var(--reveal-ease);
}

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

@media (prefers-reduced-motion: reduce) {
  .animate-in .hero-aside img,
  .animate-in .hero-content,
  [data-reveal] {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--mint);
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--gray);
  padding: 5px 20px 5px 20px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: var(--border);
  border-radius: 16px 16px 16px 16px;
  display: inline-block;
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 28px;
  font-size: 65px;
  font-weight: 800;
  line-height: 0.94;
}

.hero-copy {
  max-width: 780px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.18);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

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

.button-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}

.button-span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  flex: none;
  border-radius: 50%;
  margin-left: -12px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.hero-stats div {
  display: flex;
  min-height: 140px;
  padding: 22px 14px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.hero-stats div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats strong {
  font-size: 2.35rem;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-aside > p {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0;
  padding: 16px 18px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

.hero-aside > p span {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  font-weight: 900;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: -360px;
  right: -220px;
  width: 820px;
  height: 820px;
  box-shadow:
    0 0 0 90px rgba(67, 205, 178, 0.03),
    0 0 0 180px rgba(248, 183, 41, 0.025);
}

.hero-orbit-two {
  right: 14%;
  bottom: -210px;
  width: 390px;
  height: 390px;
  border-color: rgba(243, 45, 23, 0.22);
}

@keyframes heroPan {
  0% {
    transform: scale(1.03) translateY(0);
  }
  50% {
    transform: scale(1.08) translateY(-6%);
  }
  100% {
    transform: scale(1.03) translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-aside img {
    animation: none;
  }
}

.route-section,
.content-section,
.handoff-section,
.liaison-section {
  max-width: 1700px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 72px);
}

.route-section {
  margin-top: -44px;
  padding-top: 0;
  position: relative;
  z-index: 4;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 42px;
}

.section-heading h2,
.liaison-copy h2 {
  margin-bottom: 18px;
  font-size: 45px;
  font-weight: 500;
  line-height: 1.02;
}

.section-heading p:last-child,
.section-intro,
.liaison-copy > p {
  color: var(--muted);
}

.compact-heading {
  margin-bottom: 26px;
  padding: 28px 30px 0;
  background: var(--paper);
}

.compact-heading h2 {
  margin-bottom: 0;
  /* font-size: c   lamp(1.8rem, 3vw, 3.1rem); */
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.route-card {
  position: relative;
  display: flex;
  min-height: 250px;
  padding: 28px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: var(--white);
  transition: transform 180ms ease;
}

.route-card:hover {
  z-index: 2;
  transform: translateY(-6px);
}

.route-card::after {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 180px;
  height: 180px;
  background-image: url("../assets/svg/form-3.svg");
  opacity: 0.12;
  content: "";
}

.route-red {
  background: var(--red);
}

.route-blue {
  background: var(--blue);
}

.route-mint {
  color: var(--navy);
  background: var(--mint);
}

.route-gold {
  color: var(--navy);
  background: var(--gold);
}

.route-index {
  font-size: 0.76rem;
  font-weight: 500;
  padding: 10px 13px;
  border-radius: 50%;
  color: var(--muted);
  background: var(--white);
  width: fit-content;
  margin-bottom: 18px;
}

.route-card p {
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.route-card h3 {
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.05;
}

.route-card div > span {
  font-size: 18px;
  font-weight: 800;
}

.actions-section {
  padding-top: 84px;
  background: var(--white);
}

.split-heading {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
}

/* Place the progress card to the right in split headings */
.section-heading.split-heading .progress-card {
  margin-left: auto;
  align-self: flex-end;
}

@media (max-width: 820px) {
  .section-heading.split-heading .progress-card {
    margin-left: 0;
    align-self: center;
    margin-top: 12px;
  }
}

.split-heading > div:first-child {
  max-width: 820px;
}

.search-box {
  display: flex;
  width: min(100%, 390px);
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(17, 17, 59, 0.05);
}

.search-box > span {
  color: var(--blue);
  font-size: 1.4rem;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

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

.action-card {
  position: relative;
  display: flex;
  min-height: 190px;
  padding: 18px;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.action-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--tone);
  content: "";
}

.action-card:hover,
.action-card.is-selected {
  border-color: color-mix(in srgb, var(--tone) 65%, white);
  box-shadow: 0 16px 42px rgba(17, 17, 59, 0.1);
  transform: translateY(-4px);
}

.action-card.is-selected {
  background: color-mix(in srgb, var(--tone) 7%, white);
}

.tone-red {
  --tone: var(--red);
}

.tone-blue {
  --tone: var(--blue);
}

.tone-mint {
  --tone: var(--mint);
}

.tone-gold {
  --tone: var(--gold);
}

.tone-orange {
  --tone: var(--orange);
}

.action-number {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.action-tag {
  margin-top: 28px;
  color: var(--tone);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.action-card strong {
  max-width: 180px;
  margin-top: 8px;
  font-size: 1.02rem;
  line-height: 1.25;
}

.action-arrow {
  position: absolute;
  right: 16px;
  bottom: 14px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--tone);
  background: color-mix(in srgb, var(--tone) 9%, white);
  font-weight: 900;
}

.empty-state {
  padding: 30px;
  text-align: center;
  color: var(--muted);
}

.detail-shell {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 70px);
  scroll-margin-top: 90px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.detail-header {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.detail-header > div:first-child {
  max-width: 1000px;
}

.detail-kicker {
  margin-bottom: 12px;
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-header h2 {
  margin-bottom: 22px;
  font-size: 45px;
  font-weight: 500;
  line-height: 0.98;
}

.detail-header p:not(.detail-kicker) {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.76);
}

.detail-header p strong {
  color: var(--white);
}

.detail-tools {
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  gap: 8px;
}

.tool-button {
  display: inline-flex;
  min-height: 42px;
  padding: 9px 12px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}

.detail-grid,
.compass-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.detail-panel,
.compass-panel {
  overflow: hidden;
  border: 0;
  color: var(--navy);
  background: var(--tone);
}

.detail-panel summary,
.compass-panel summary {
  display: flex;
  min-height: 76px;
  padding: 18px 20px;
  align-items: center;
  gap: 10px;
  list-style: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-panel summary::-webkit-details-marker,
.compass-panel summary::-webkit-details-marker {
  display: none;
}

.detail-panel summary span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.detail-panel summary i {
  margin-left: auto;
  font-style: normal;
}

.detail-panel ul,
.compass-panel ul {
  display: flex;
  margin: 0;
  padding: 0 20px 24px 38px;
  flex-direction: column;
  gap: 14px;
}

.detail-panel li,
.compass-panel li {
  padding-left: 2px;
  font-size: 0.84rem;
  line-height: 1.55;
}

.detail-panel.tone-red,
.detail-panel.tone-blue {
  color: var(--white);
}

.hidden-meaning {
  margin-top: -10px;
  opacity: 0.82;
}

.hidden-meaning strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.essential-quote {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  margin: 14px 0 0;
  padding: 22px 28px;
  color: var(--white);
  background: #050510;
}

.essential-quote > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.8;
}

.essential-quote p {
  margin-bottom: 4px;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.essential-quote strong,
.essential-quote small {
  display: block;
}

.essential-quote strong {
  margin-bottom: 8px;
  font-size: 1rem;
}

.essential-quote small {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.prototype-notice {
  display: flex;
  max-width: 800px;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.prototype-notice > span {
  color: var(--gold);
  font-size: 1.6rem;
}

.prototype-notice p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.compass-section {
  padding-top: 120px;
}

/* Center the boussoles (compass) section and its inner content */
#boussoles {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#boussoles .section-heading {
  max-width: 1550px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#boussoles .v3-intersection {
  max-width: 1550px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  text-align: left;
}

#boussoles .compass-selector,
#boussoles .compass-detail {
  width: 100%;
  max-width: 1550px;
  margin-left: auto;
  margin-right: auto;
}

.compass-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 4px;
  overflow-x: auto;
  justify-content: center;
  align-items: center;
}

.compass-selector button {
  display: flex;
  flex: 0 0 auto;
  min-height: 46px;
  padding: 10px 14px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
}

.compass-selector button.is-selected {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
}

.compass-detail {
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid var(--line);
  text-align: left;
  background: var(--white);
  box-shadow: 0 16px 60px rgba(17, 17, 59, 0.07);
}

.compass-title {
  display: flex;
  gap: 18px;
  margin-bottom: 10px;
}

.compass-mark {
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--blue);
  font-size: 1.8rem;
}

.compass-title p {
  margin-bottom: 2px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.compass-title h3 {
  margin-bottom: 3px;
  font-size: clamp(1.6rem, 3vw, 3rem);
}

.compass-title div > span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.compass-panel.tone-red,
.compass-panel.tone-blue {
  color: var(--white);
}

.compass-panel summary {
  align-items: flex-start;
  justify-content: space-between;
  font-size: 0.92rem;
}

.compass-panel summary span {
  font-size: 1.2rem;
}

.light-notice {
  border-color: var(--line);
  color: var(--ink);
  background: var(--paper);
}

.light-notice p {
  color: var(--muted);
}

.navigation-section {
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--navy);
}

.navigation-section > * {
  max-width: 1550px;
  margin-right: auto;
  margin-left: auto;
}

.centered-heading {
  max-width: 920px;
  text-align: center;
}

.centered-heading h2 {
  margin-bottom: 18px;
}

.centered-heading > p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.level-stepper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.level-stepper::before {
  position: absolute;
  top: 27px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  content: "";
}

.level-button {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 108px;
  padding: 18px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  text-align: center;
}

.level-button > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--tone);
  border-radius: 50%;
  color: var(--tone);
  background: var(--navy);
  font-size: 0.84rem;
  font-weight: 900;
}

.level-button strong {
  font-size: 0.82rem;
  text-transform: uppercase;
}

.level-button.is-selected {
  border-color: color-mix(in srgb, var(--tone) 60%, transparent);
  color: var(--white);
  background: color-mix(in srgb, var(--tone) 16%, var(--navy));
}

.level-detail {
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.level-title {
  display: flex;
  min-height: 116px;
  padding: 28px 34px;
  align-items: center;
  gap: 24px;
  border-bottom: 6px solid var(--tone);
  background: color-mix(in srgb, var(--tone) 8%, white);
}

.level-title span {
  display: grid;
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--tone);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.level-title h3 {
  margin: 0;
  font-size: 28px;
  text-transform: uppercase;
}

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

.level-columns article {
  padding: 30px;
}

.level-columns article + article {
  border-left: 1px solid var(--line);
}

.level-columns article > p {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.level-columns ul {
  display: flex;
  margin: 0;
  padding-left: 18px;
  flex-direction: column;
  gap: 12px;
}

.level-columns li {
  font-size: 0.87rem;
  line-height: 1.55;
}

.progress-card {
  min-width: 210px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.progress-card > span {
  font-size: 1.2rem;
  font-weight: 900;
}

.progress-card > div {
  height: 6px;
  margin: 8px 0;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.progress-card i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(to right, var(--mint), var(--blue), var(--red));
  transition: width 200ms ease;
}

.progress-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.handoff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.handoff-card {
  padding: clamp(22px, 3vw, 34px);
  background: var(--tone);
}

.handoff-card.tone-blue,
.handoff-card.tone-red {
  color: var(--white);
}

.handoff-card-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.handoff-card-title > span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
}

.handoff-card-title > span i {
  display: block;
  font-size: 19px;
  line-height: 1;
}

.handoff-card-title h3 {
  margin-bottom: 0;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.handoff-card-title p {
  margin: 0;
  opacity: 0.7;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist label {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.13);
  cursor: pointer;
  transition: opacity 160ms ease;
}

.handoff-card.tone-mint .checklist label {
  border-color: rgba(17, 17, 59, 0.13);
  background: rgba(255, 255, 255, 0.28);
}

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

.checklist label > span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 900;
}

.checklist label p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
}

.checklist label.is-checked {
  opacity: 0.58;
}

.checklist label.is-checked p {
  text-decoration: line-through;
}

.liaison-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: start;
  padding-top: 60px;
}

.liaison-copy {
  position: sticky;
  top: 112px;
}

.liaison-copy h2 {
  font-size: 45px;
  font-weight: 500;
}

.privacy-note {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  padding: 18px;
  border-left: 4px solid var(--mint);
  border-radius: 0 12px 12px 0;
  background: var(--white);
}

.privacy-note > span {
  color: var(--blue);
  font-size: 1.4rem;
}

.privacy-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.privacy-note strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}

.liaison-form {
  padding: clamp(24px, 5vw, 52px);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.form-header span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-header h3 {
  margin: 5px 0 0;
  font-size: 1.6rem;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.liaison-form label:not(.checklist label) {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.liaison-form input[type="text"],
.liaison-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--ink);
  background: #fbfbf8;
}

.liaison-form input[type="text"] {
  min-height: 44px;
  padding: 9px 11px;
}

.liaison-form textarea {
  padding: 11px;
  resize: vertical;
}

.liaison-form fieldset {
  display: flex;
  gap: 18px;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.liaison-form legend {
  padding: 0 6px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.liaison-form fieldset label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
}

.full-field {
  margin-top: 18px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

footer {
  display: flex;
  min-height: 190px;
  padding: 46px clamp(24px, 7vw, 112px);
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: rgba(255, 255, 255, 0.64);
  background: var(--navy);
}

footer > div img {
  width: 150px;
  filter: brightness(0) invert(1);
}

footer p {
  max-width: 520px;
  margin: 18px 0 0;
  font-size: 0.8rem;
}

.ircc-logo {
  width: min(420px, 44vw);
  padding: 12px;
  border-radius: 8px;
  background: var(--white);
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

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

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header.is-open .mobile-nav {
    display: grid;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-aside {
    max-width: 520px;
  }

  .route-grid,
  .action-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-grid,
  .compass-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    min-height: 68px;
    padding: 10px 18px;
  }

  .brand img {
    width: 200px;
  }

  .brand span {
    display: none;
  }

  .prototype-pill {
    font-size: 0.64rem;
  }

  .hero {
    padding: 76px 24px;
  }

  .route-section {
    margin-top: 0;
    padding-top: 60px;
    background: var(--paper);
  }

  .compact-heading {
    padding: 0;
    background: transparent;
  }

  .split-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .search-box {
    width: 100%;
  }

  .detail-header {
    flex-direction: column;
  }

  .level-stepper {
    grid-template-columns: repeat(2, 1fr);
  }

  .level-stepper::before {
    display: none;
  }

  .level-columns,
  .handoff-grid,
  .liaison-section {
    grid-template-columns: 1fr;
  }

  .level-columns article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .liaison-copy {
    position: static;
  }

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

  .ircc-logo {
    width: min(100%, 460px);
  }
}

@media (max-width: 560px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: 86px;
  }

  .hero-stats div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

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

  .route-grid,
  .action-grid,
  .detail-grid,
  .compass-grid,
  .level-stepper,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .action-card {
    min-height: 150px;
  }

  .detail-tools {
    width: 100%;
  }

  .tool-button {
    flex: 1;
    justify-content: center;
  }

  .essential-quote {
    grid-template-columns: 1fr;
  }

  .essential-quote > span {
    height: 44px;
  }

  .compass-title {
    align-items: flex-start;
  }

  .level-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .liaison-form fieldset {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-actions,
  .form-actions .button {
    width: 100%;
  }

  .form-actions {
    flex-direction: column-reverse;
  }
}

@media print {
  .site-header,
  .hero,
  .route-section,
  .actions-section,
  .compass-section,
  .navigation-section,
  .handoff-section,
  footer,
  .detail-tools,
  .prototype-notice {
    display: none !important;
  }

  body {
      background: var(--paper);
  }

  .detail-shell,
  .liaison-section {
    padding: 20px;
    box-shadow: none;
  }

  .detail-shell {
    color: black;
    background: white;
  }

  .detail-header p:not(.detail-kicker) {
    color: #333;
  }

  .detail-header p strong,
  .detail-header h2 {
    color: black;
  }
}

.site-header {
  grid-template-columns: minmax(180px, 1fr) auto auto;
  gap: 20px;
}
.desktop-nav {
  gap: 35px;
  font-size: 17px;
}
.hero {
  min-height: 650px;
}

.hero-copy {
  max-width: 820px;
}
.v3-audience {
  margin: -12px 0 24px;
  color: var(--mint);
  font-weight: 500;
  font-size: 20px;
}
.v3-hero-note {
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 440px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}
.v3-hero-note span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  background: #fff ;
  color: var(--ink);
  font-weight: 900;
}

.route-card {
  min-height: 270px;
}
.v3-route-copy {
  display: block !important;
  margin-top: 12px !important;
  margin-bottom: 12px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.45;
}

.v3-route-copy-black {
  display: block !important;
  margin-top: 12px !important;
  margin-bottom: 12px !important;
  color: #000 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.45;
}
.v3-context {
  padding: clamp(64px, 7vw, 100px) clamp(24px, 7vw, 112px);
  background: white;
}
.v3-context-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 24px;
  max-width: 1280px;
  margin: auto;
}
.v3-context-copy,
.v3-context-callout {
  padding: clamp(28px, 4vw, 52px);
}
.v3-context-copy {
  border: 1px solid var(--line);
}
.v3-context-callout {
  color: white;
  background: var(--navy);
}
.v3-context-copy h2,
.v3-context-callout h3 {
  margin-bottom: 18px;
  font-size: 45px;
  line-height: 1.05;
  font-weight: 400;
}
.v3-context-callout .context-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 14px;
  background: var(--mint);
  color: var(--navy);
  font-size: 1.4rem;
  font-weight: 900;
}
.v3-orientation {
  padding: clamp(72px, 8vw, 112px) clamp(24px, 7vw, 112px);
  background: var(--paper);
}
.v3-orientation-inner {
  max-width: 1280px;
  margin: auto;
}
.v3-orientation-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}
.v3-orientation-intro h2 {
  max-width: 800px;
  margin-bottom: 0;
  font-size: 45px;
  font-weight: 500;
  line-height: 0.98;
}
.v3-orientation-intro p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}
.v3-orientation-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.7fr);
  gap: 20px;
  align-items: start;
}
.v3-questionnaire,
.v3-results {
  background: white;
  box-shadow: var(--shadow);
}
.v3-questionnaire {
  padding: clamp(24px, 4vw, 46px);
}
.v3-results {
  position: sticky;
  top: 96px;
  padding: 26px;
  max-height: calc(100vh - 120px);
  overflow: auto;
}
.v3-step + .v3-step {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.v3-step-title {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.v3-step-title > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-weight: 900;
}
.v3-step-title h3 {
  margin: 0 0 4px;
  font-size: 1.15rem;
}
.v3-step-title p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.v3-category {
  margin: 20px 0 8px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.v3-choice-grid,
.v3-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.v3-choice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 62px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: 150ms ease;
}
.v3-choice:hover {
  border-color: var(--blue);
  transform: translateY(-1px);
}
.v3-choice.is-selected {
  border-color: var(--blue);
  background: rgba(38, 57, 199, 0.07);
  box-shadow: inset 0 0 0 1px var(--blue);
}
.v3-choice > span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 1px;
  border: 1.5px solid #aaa;
  border-radius: 6px;
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
}
.v3-choice.is-selected > span {
  border-color: var(--blue);
  background: var(--blue);
}
.v3-choice strong {
  font-size: 0.86rem;
  line-height: 1.35;
}
.v3-profile-grid .v3-choice:last-child {
  grid-column: 1/-1;
}
.v3-stage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.v3-stage {
  padding: 14px 10px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: white;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}
.v3-stage.is-selected {
  border-color: var(--blue);
  color: white;
  background: var(--blue);
}
.v3-reset {
  margin-top: 24px;
  border: 0;
  background: none;
  color: var(--blue);
  text-decoration: underline;
  cursor: pointer;
  font-weight: 800;
}
.v3-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.v3-results-head h3 {
  margin: 0;
  font-size: 1.1rem;
}
.v3-results-count {
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
}
.v3-empty {
  padding: 34px 14px;
  text-align: center;
  color: var(--muted);
}
.v3-empty span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--paper);
  font-size: 1.3rem;
}
.v3-result-list {
  display: grid;
  gap: 10px;
}
.v3-result {
  display: block;
  width: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  text-align: left;
  cursor: pointer;
}
.v3-result:hover {
  border-color: var(--blue);
}
.v3-result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
}
.v3-result-type {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}
.v3-result-score {
  border-radius: 999px;
  padding: 3px 8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 900;
}
.v3-result strong {
  display: block;
  font-size: 0.94rem;
  line-height: 1.25;
}
.v3-result small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}
.v3-urgent {
  margin-bottom: 14px;
  padding: 15px;
  border-left: 5px solid var(--red);
  border-radius: 12px;
  background: #fff0ed;
  font-size: 0.84rem;
}
.v3-urgent strong {
  display: block;
  color: var(--red);
  margin-bottom: 4px;
}
.v3-action-download {
  flex: none;
}
.v3-detect-item {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.v3-detect-item:last-child {
  border-bottom: 0;
}
.v3-detect-item p {
  margin: 0;
}
.v3-reveal {
  margin-top: 9px;
  padding: 8px 12px;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
  animation: v3Pulse 2.4s ease-in-out infinite;
}
@keyframes v3Pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(243, 45, 23, 0.16);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(243, 45, 23, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .v3-reveal {
    animation: none;
  }
}
.v3-hidden-meaning {
  display: none;
  margin-top: 9px !important;
  padding: 11px 12px;
  border-radius: 10px;
  background: #fff0ed;
  color: #5d2520;
  font-size: 0.84rem;
}
.v3-hidden-meaning.is-open {
  display: block;
}
.v3-resources {
  display: grid;
  gap: 10px;
  padding: 14px 18px 18px;
}
.v3-resource-link {
  display: block;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}
.v3-resource-link:hover {
  border-color: var(--gold);
}
.v3-resource-link strong {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--blue);
}
.v3-resource-link small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}
.v3-external {
  flex: none;
  color: var(--blue);
}
.v3-intersection {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  max-width: 920px;
  margin: 26px 0 34px;
  padding: 24px;
  background: var(--navy);
  color: white;
}
.v3-intersection > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--navy);
  font-weight: 900;
}
.v3-intersection h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}
.v3-intersection p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}
.v3-severity {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  max-width: 900px;
  margin: 28px auto 38px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.v3-severity-line {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--mint),
    var(--gold),
    var(--orange),
    var(--red)
  );
}
.v3-severity-line::after {
  position: absolute;
  right: -1px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--red);
  border-right: 3px solid var(--red);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}
.v3-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.v3-principle {
  padding: 24px;
  border: 1px solid var(--line);
  background: white;
}
.v3-principle span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 11px;
  background: var(--navy);
  color: white;
  font-weight: 900;
}
.v3-principle h3 {
  margin: 0 0 9px;
  font-size: 1rem;
}
.v3-principle p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.v3-download-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(32px, 6vw, 90px);
  padding: clamp(72px, 8vw, 112px) clamp(24px, 7vw, 112px);
  background: white;
}
.v3-download-copy {
  align-self: center;
  max-width: 620px;
}
.v3-download-copy h2 {
  margin-bottom: 18px;
  font-size: 45px;
  line-height: 0.98;
  font-weight: 500;
}
.v3-download-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: white;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.v3-download-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v3-download-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 60px 26px 22px;
  color: white;
  background: linear-gradient(transparent, rgba(11, 25, 44, 0.88));
  font-size: 0.86rem;
  font-weight: 800;
}
.v3-download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.v3-local-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #eaf9f5;
  color: #165548;
  font-size: 0.85rem;
}
.v4-local-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f9eaea;
  color: var(--red);
  font-size: 0.85rem;
}
.v3-about {
  padding: clamp(72px, 8vw, 112px) clamp(24px, 7vw, 112px);
  background: var(--paper);
}
.v3-about-inner {
  max-width: 1280px;
  margin: auto;
}
.v3-about-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}
.v3-guide-pdf {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 0 0 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 50px;
  background: white;
  box-shadow: 0 8px 28px rgba(17, 17, 59, 0.05);
}
.v3-guide-pdf > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50px;
  color: white;
  background: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
}
.v3-guide-pdf h3 {
  margin: 0 0 5px;
  font-size: 1.05rem;
}
.v3-guide-pdf p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.v3-guide-pdf .button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
  pointer-events: none;
}
.v3-about details {
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  overflow: hidden;
}
.v3-about summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px;
  cursor: pointer;
  font-weight: 900;
}
.v3-about summary::after {
  content: "＋";
  color: var(--blue);
}
.v3-about details[open] summary::after {
  content: "−";
}
.v3-about-body {
  padding: 0 22px 24px;
  color: var(--muted);
  font-size: 0.94rem;
}
.v3-about-body h3 {
  margin: 26px 0 12px;
  color: var(--ink);
}
.v3-about-body h4 {
  margin: 22px 0 10px;
  color: var(--blue);
}
.v3-about-body ul {
  padding-left: 20px;
}
.v3-about-body li {
  margin-bottom: 9px;
}
.v3-participants {
  columns: 2;
  column-gap: 38px;
}
.v3-participants li {
  break-inside: avoid;
}
.v3-person-name {
  color: var(--ink);
  font-weight: 900;
}
.v3-interview-grid {
  display: grid;
  gap: 12px;
}
.v3-interview-card {
  padding: 18px;
  border-left: 5px solid var(--mint);
  border-radius: 12px;
  background: var(--paper);
}
.v3-interview-card h4 {
  margin: 0 0 8px;
}
.v3-interview-question {
  margin: 0;
}
.v3-interview-question + .v3-interview-question {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.v3-interview-question strong {
  color: var(--ink);
}
.v3-feedback {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1.2fr);
  gap: 36px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(72px, 8vw, 112px) clamp(24px, 7vw, 112px);
}
.v3-feedback h2 {
  font-size: 45px;
  line-height: 1;
  font-weight: 500;
}
.v3-feedback-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}
.v3-feedback-card label {
  display: block;
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 900;
}
.v3-feedback-card select,
.v3-feedback-card textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: white;
}
.v3-feedback-card textarea {
  min-height: 130px;
  resize: vertical;
}
.v3-feedback-placeholder {
  display: inline-flex;
  margin: 0;
  padding: 10px 13px;
  border: 1px dashed var(--muted);
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}
.v3-feedback-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}
@media (max-width: 1120px) {
  .desktop-nav a:nth-child(5),
  .desktop-nav a:nth-child(6) {
    display: none;
  }
  .v3-orientation-shell {
    grid-template-columns: 1fr;
  }
  .v3-results {
    position: static;
    max-height: none;
  }
}
@media (max-width: 900px) {
  .v3-context-grid,
  .v3-orientation-intro,
  .v3-download-section,
  .v3-feedback {
    grid-template-columns: 1fr;
  }
  .v3-principles {
    grid-template-columns: 1fr;
  }
  .v3-participants {
    columns: 1;
  }
  .v3-download-card {
    min-height: 420px;
  }
}
@media (max-width: 700px) {
  .v3-choice-grid,
  .v3-profile-grid,
  .v3-stage-grid {
    grid-template-columns: 1fr;
  }
  .v3-profile-grid .v3-choice:last-child {
    grid-column: auto;
  }
  .v3-severity {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .v3-context {
    padding-right: 20px;
    padding-left: 20px;
  }
  .v3-intersection,
  .v3-guide-pdf {
    grid-template-columns: 1fr;
  }
  .v3-guide-pdf > span {
    display: none;
  }
  .v3-guide-pdf .button {
    width: 100%;
  }
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .prototype-pill {
    display: none;
  }
}
@media print {
  .site-header,
  .hero,
  .route-section,
  .v3-context,
  .v3-orientation,
  .v3-about,
  .v3-feedback,
  .v3-download-section,
  footer {
    display: none !important;
  }
}
