:root {
  --xpd-navy-deep: #030035;
  --xpd-brand-blue: #02076f;
  --xpd-mustard: #f0af07;
  --xpd-mustard-bright: #ffc42b;
  --xpd-ink: #1d2b4b;
  --xpd-muted: #56657b;
  --xpd-grey-soft: #eef1f5;
  --xpd-grey-panel: #eceff3;
  --xpd-line: #dde4ec;
  --xpd-academy-green: #82ba0e;
  --xpd-white: #ffffff;
  --xpd-shadow: 0 18px 42px rgba(3, 0, 53, 0.10);
  --xpd-shadow-soft: 0 8px 22px rgba(3, 0, 53, 0.045);
  --xpd-focus: rgba(240, 175, 7, 0.86);
  --xpd-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--xpd-ink);
  background: var(--xpd-white);
  font-family: "tt-commons-pro", "TT Commons Pro", Arial, sans-serif;
  line-height: 1.55;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--xpd-focus);
  outline-offset: 4px;
}

img {
  max-width: 100%;
}

.hero-inner > *,
.split > *,
.proof-inner > *,
.card-grid > *,
.route-grid > *,
.step-grid > * {
  min-width: 0;
}

h1,
.section-title,
.hero-copy,
.section-intro,
.content-card,
.button {
  overflow-wrap: break-word;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--xpd-line);
  backdrop-filter: blur(8px);
}

.nav {
  width: calc(100% - 40px);
  max-width: 1320px;
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  width: 184px;
  height: auto;
  display: block;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 16px;
  clip: auto;
  clip-path: none;
  color: var(--xpd-navy-deep);
  background: var(--xpd-white);
  z-index: 1000;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--xpd-brand-blue);
  border-radius: 2px;
  color: var(--xpd-brand-blue);
  background: var(--xpd-white);
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 3px solid rgba(240, 175, 7, 0.45);
  outline-offset: 3px;
}

.nav-toggle-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
}

.nav-toggle-lines span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 160ms ease, opacity 160ms ease;
}

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

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

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

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: var(--xpd-navy-deep);
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-links a:not(.button) {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 2px;
}

.nav-links a[aria-current="page"] {
  color: var(--xpd-brand-blue);
  border-bottom: 3px solid var(--xpd-mustard);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 850;
  font-size: 0.92rem;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(3, 0, 53, 0.14);
}

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

.button-secondary {
  color: var(--xpd-brand-blue);
  background: var(--xpd-white);
  border-color: var(--xpd-brand-blue);
}

.button-gold {
  color: var(--xpd-navy-deep);
  background: var(--xpd-mustard);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--xpd-white);
  border-bottom: 1px solid var(--xpd-line);
}

.hero-inner {
  width: calc(100% - 40px);
  max-width: var(--xpd-max);
  margin: 0 auto;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 50px;
  padding: 58px 0 42px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--xpd-brand-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--xpd-mustard);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--xpd-brand-blue);
  font-size: 2.78rem;
  line-height: 1.1;
  font-weight: 820;
}

.hero-copy {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--xpd-ink);
  font-size: 1.05rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--xpd-brand-blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-visual {
  position: relative;
  min-height: 460px;
}

.image-frame {
  position: absolute;
  top: 22px;
  right: 0;
  width: min(100%, 460px);
  aspect-ratio: 0.92;
  overflow: hidden;
  background: var(--xpd-grey-panel);
  box-shadow: var(--xpd-shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 48% center;
}

.image-square {
  position: absolute;
  width: 132px;
  height: 132px;
  right: 190px;
  top: 190px;
  background: var(--xpd-mustard);
  z-index: 2;
}

.image-slab {
  position: absolute;
  width: 198px;
  height: 150px;
  right: 274px;
  top: 190px;
  background: rgba(3, 0, 53, 0.12);
  z-index: 1;
}

.visual-proof {
  position: absolute;
  left: 0;
  bottom: 16px;
  width: min(88%, 360px);
  background: var(--xpd-navy-deep);
  color: var(--xpd-white);
  padding: 24px 26px;
  z-index: 3;
  box-shadow: var(--xpd-shadow);
}

.visual-proof span {
  display: block;
  color: var(--xpd-mustard-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-proof strong {
  display: block;
  margin-top: 7px;
  font-size: 1.05rem;
  line-height: 1.34;
}

.proof-strip {
  background: var(--xpd-navy-deep);
  color: var(--xpd-white);
}

.proof-inner {
  width: calc(100% - 40px);
  max-width: var(--xpd-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-item {
  padding: 22px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item span {
  display: block;
  color: var(--xpd-mustard-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-item strong {
  display: block;
  margin-top: 6px;
  font-size: 0.98rem;
  line-height: 1.35;
}

.section {
  padding: 76px 0;
}

.section.alt {
  background: var(--xpd-grey-soft);
}

.wrap {
  width: calc(100% - 40px);
  max-width: var(--xpd-max);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 1.08fr);
  gap: 52px;
  align-items: start;
}

.section-title {
  max-width: 900px;
  margin: 0;
  color: var(--xpd-brand-blue);
  font-size: 2.28rem;
  line-height: 1.1;
  font-weight: 820;
}

.section-intro {
  max-width: 840px;
  margin: 18px 0 0;
  color: var(--xpd-muted);
  font-size: 1.05rem;
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(440px, 1.05fr);
  gap: 46px;
  align-items: center;
}

.video-copy .section-title {
  max-width: 620px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--xpd-navy-deep);
  border: 1px solid var(--xpd-line);
  border-top: 5px solid var(--xpd-brand-blue);
  box-shadow: var(--xpd-shadow);
}

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

.article-ending {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.96fr);
  gap: 28px;
  align-items: stretch;
}

.article-ending-panel {
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: var(--xpd-white);
  border: 1px solid var(--xpd-line);
  border-top: 5px solid var(--xpd-brand-blue);
  box-shadow: 0 12px 30px rgba(3, 0, 53, 0.07);
}

.article-ending-next {
  border-top-color: var(--xpd-mustard);
}

.article-ending .section-title {
  font-size: 1.86rem;
}

.article-ending .section-intro {
  max-width: none;
}

.article-ending-image {
  width: 100%;
  margin: auto 0 0;
  padding-top: 28px;
}

.article-ending-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  border: 1px solid var(--xpd-line);
}

.article-learning-note {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--xpd-line);
}

.article-learning-note h3 {
  margin: 0;
  color: var(--xpd-brand-blue);
  font-size: 1.08rem;
}

.article-learning-note p {
  margin: 12px 0 0;
  color: var(--xpd-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.compact-actions {
  margin-top: 18px;
}

.policy-body {
  max-width: 980px;
  margin-top: 34px;
  padding: 36px;
  overflow-x: auto;
  background: var(--xpd-white);
  border: 1px solid var(--xpd-line);
  border-top: 5px solid var(--xpd-brand-blue);
  box-shadow: 0 12px 30px rgba(3, 0, 53, 0.07);
}

.policy-body section {
  margin: 0 0 34px;
  padding: 0;
}

.policy-body section:last-child {
  margin-bottom: 0;
}

.policy-body h2,
.policy-body h3 {
  margin: 30px 0 12px;
  color: var(--xpd-navy-deep);
  font-size: 1.32rem;
  line-height: 1.22;
}

.policy-body h2:first-child,
.policy-body h3:first-child {
  margin-top: 0;
}

.policy-body p,
.policy-body li,
.policy-body td {
  color: var(--xpd-muted);
  line-height: 1.68;
}

.policy-body p {
  margin: 0 0 15px;
}

.policy-body ul {
  margin: 0 0 20px;
  padding-left: 1.15rem;
}

.policy-body li + li {
  margin-top: 8px;
}

.policy-body strong {
  color: var(--xpd-navy-deep);
}

.policy-body a {
  color: var(--xpd-brand-blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-body table {
  width: 100%;
  min-width: 620px;
  margin: 18px 0 24px;
  border-collapse: collapse;
}

.policy-body td,
.policy-body th {
  padding: 12px 14px;
  border: 1px solid var(--xpd-line);
  vertical-align: top;
}

.policy-body thead td,
.policy-body th {
  background: var(--xpd-grey-soft);
  color: var(--xpd-navy-deep);
}

.policy-body section span {
  display: inline-flex;
  margin: 10px 0 8px;
  color: var(--xpd-brand-blue);
  font-size: 0.8rem;
  font-weight: 900;
}

.article-source {
  background: var(--xpd-white);
}

.article-body {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px;
  overflow-x: auto;
  background: var(--xpd-white);
  border: 1px solid var(--xpd-line);
  border-top: 5px solid var(--xpd-brand-blue);
  box-shadow: 0 12px 30px rgba(3, 0, 53, 0.07);
}

.article-body h2,
.article-body h3 {
  margin: 34px 0 14px;
  color: var(--xpd-navy-deep);
  font-size: 1.44rem;
  line-height: 1.22;
}

.article-body h2:first-child,
.article-body h3:first-child {
  margin-top: 0;
}

.article-body p,
.article-body li,
.article-body td {
  color: var(--xpd-muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.article-body p {
  margin: 0 0 17px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 22px;
  padding-left: 1.25rem;
}

.article-body li + li {
  margin-top: 8px;
}

.article-body a {
  color: var(--xpd-brand-blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  background: var(--xpd-grey-soft);
  border-left: 5px solid var(--xpd-mustard);
}

.article-body blockquote p {
  margin-bottom: 0;
  color: var(--xpd-navy-deep);
  font-weight: 800;
}

.article-body aside {
  margin-top: 38px;
  padding: 24px;
  background: var(--xpd-grey-soft);
  border-left: 5px solid var(--xpd-brand-blue);
}

.article-body aside h2 {
  margin-top: 0;
  font-size: 1.12rem;
}

.article-body img {
  max-width: 100%;
  height: auto;
}

.article-body table {
  width: 100%;
  min-width: 620px;
  margin: 18px 0 24px;
  border-collapse: collapse;
}

.article-body td,
.article-body th {
  padding: 12px 14px;
  border: 1px solid var(--xpd-line);
  vertical-align: top;
}

.card-grid,
.route-grid,
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

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

.content-card,
.step-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--xpd-white);
  border: 1px solid var(--xpd-line);
  border-top: 4px solid var(--xpd-brand-blue);
  border-radius: 2px;
  box-shadow: var(--xpd-shadow-soft);
}

.route-grid .content-card {
  min-height: 265px;
  border-color: #d7e0eb;
  box-shadow: 0 10px 26px rgba(3, 0, 53, 0.06);
}

.content-card.has-image {
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.content-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.content-card:not(.has-image) .content-card-body {
  padding: 0;
}

.card-image {
  flex: 0 0 clamp(190px, 18vw, 220px);
  width: 100%;
  height: clamp(190px, 18vw, 220px);
  margin: 0;
  background: var(--xpd-grey-soft);
  border-bottom: 1px solid var(--xpd-line);
}

.card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.content-card.has-image h3 {
  margin-top: 12px;
}

.content-card.accent-gold,
.step-card:nth-child(2) {
  border-top-color: var(--xpd-mustard);
}

.content-card.accent-green,
.step-card:nth-child(3) {
  border-top-color: var(--xpd-academy-green);
}

.content-card h3,
.step-card h3 {
  margin: 14px 0 12px;
  color: var(--xpd-navy-deep);
  font-size: 1.22rem;
  line-height: 1.18;
}

.content-card p,
.step-card p {
  margin: 0;
  color: var(--xpd-muted);
}

.content-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.article-list {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--xpd-line);
}

.article-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--xpd-line);
}

.article-row.has-image {
  grid-template-columns: minmax(118px, 180px) minmax(0, 1fr);
}

.article-row-image {
  margin: 0;
  overflow: hidden;
  background: var(--xpd-grey-soft);
  border: 1px solid var(--xpd-line);
}

.article-row-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.article-row h3 {
  margin: 10px 0 10px;
  color: var(--xpd-navy-deep);
  font-size: 1.18rem;
  line-height: 1.2;
}

.article-row p {
  max-width: 760px;
  margin: 0;
  color: var(--xpd-muted);
}

.article-row-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  color: var(--xpd-brand-blue);
  font-weight: 850;
  border-bottom: 1px solid currentColor;
}

.related-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.related-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--xpd-line);
  border-top: 3px solid rgba(2, 7, 111, 0.54);
}

.related-card.accent-gold {
  border-top-color: rgba(240, 175, 7, 0.78);
}

.related-card.accent-green {
  border-top-color: rgba(130, 186, 14, 0.72);
}

.related-card h3 {
  margin: 12px 0 10px;
  color: var(--xpd-navy-deep);
  font-size: 1.12rem;
  line-height: 1.22;
}

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

.related-card-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 14px;
  color: var(--xpd-brand-blue);
  font-weight: 850;
  border-bottom: 1px solid currentColor;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 58px;
  margin-top: 36px;
  border-top: 1px solid var(--xpd-line);
}

.feature-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--xpd-line);
}

.feature-item span {
  color: var(--xpd-brand-blue);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.45;
  text-transform: uppercase;
}

.feature-item:nth-child(3n + 2) span {
  color: #9a6d00;
}

.feature-item:nth-child(3n) span {
  color: #4f7c00;
}

.feature-item h3 {
  margin: 0 0 8px;
  color: var(--xpd-navy-deep);
  font-size: 1.18rem;
  line-height: 1.2;
}

.feature-item p {
  max-width: 540px;
  margin: 0;
  color: var(--xpd-muted);
}

.side-card-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 44px;
  align-items: start;
}

.side-card-copy .section-title {
  max-width: 620px;
}

.side-card-copy .section-intro {
  max-width: 580px;
}

.side-card-list {
  display: grid;
  gap: 16px;
}

.side-card {
  padding: 24px 26px;
  background: var(--xpd-white);
  border: 1px solid var(--xpd-line);
  border-left: 5px solid var(--xpd-brand-blue);
  box-shadow: 0 12px 30px rgba(3, 0, 53, 0.07);
}

.side-card:nth-child(2) {
  border-left-color: var(--xpd-mustard);
}

.side-card:nth-child(3) {
  border-left-color: var(--xpd-academy-green);
}

.side-card h3 {
  margin: 0 0 8px;
  color: var(--xpd-navy-deep);
  font-size: 1.08rem;
  line-height: 1.2;
}

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

.card-topline,
.step-card span {
  color: var(--xpd-brand-blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.decision-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 46px;
  align-items: start;
}

.decision-checks {
  display: grid;
  gap: 0;
  padding-left: 18px;
  border-left: 3px solid var(--xpd-line);
}

.decision-check {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--xpd-line);
  box-shadow: none;
}

.decision-check:last-child {
  border-bottom: 0;
}

.decision-check span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--xpd-brand-blue);
  font-size: 0.82rem;
  font-weight: 900;
  background: var(--xpd-white);
  border: 1px solid var(--xpd-line);
}

.decision-check h3 {
  margin: 0 0 6px;
  color: var(--xpd-navy-deep);
  font-size: 1.12rem;
  line-height: 1.18;
}

.decision-check p {
  margin: 0;
  color: var(--xpd-muted);
}

.output-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.12fr);
  gap: 46px;
  align-items: start;
}

.output-main,
.output-aside {
  background: var(--xpd-white);
  border: 1px solid var(--xpd-line);
  box-shadow: 0 12px 30px rgba(3, 0, 53, 0.07);
}

.output-main {
  padding: 28px;
  border-top: 5px solid var(--xpd-brand-blue);
}

.output-main h3 {
  margin: 14px 0 22px;
  color: var(--xpd-navy-deep);
  font-size: 1.24rem;
  line-height: 1.22;
}

.output-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--xpd-line);
}

.output-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.34fr) minmax(0, 1fr);
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--xpd-line);
}

.output-row span {
  color: var(--xpd-brand-blue);
  font-size: 0.84rem;
  font-weight: 900;
}

.output-row p {
  margin: 0;
  color: var(--xpd-muted);
}

.output-aside {
  margin-top: 30px;
  padding: 24px;
  border-top: 5px solid var(--xpd-mustard);
}

.output-aside h3 {
  margin: 0 0 18px;
  color: var(--xpd-navy-deep);
  font-size: 1.12rem;
}

.output-aside ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.output-aside li {
  position: relative;
  padding-left: 20px;
  color: var(--xpd-muted);
  font-weight: 750;
}

.output-aside li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 8px;
  height: 8px;
  border: 2px solid var(--xpd-academy-green);
}

.question-table {
  margin-top: 34px;
  background: var(--xpd-white);
  border: 1px solid var(--xpd-line);
  border-top: 5px solid var(--xpd-brand-blue);
  box-shadow: 0 12px 30px rgba(3, 0, 53, 0.06);
}

.question-table-head,
.question-table-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.question-table-head {
  padding: 18px 26px;
  color: var(--xpd-brand-blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 1px solid var(--xpd-line);
}

.question-table-row {
  padding: 23px 26px;
  border-bottom: 1px solid var(--xpd-line);
}

.question-table-row:last-child {
  border-bottom: 0;
}

.question-table-row h3 {
  margin: 0;
  color: var(--xpd-navy-deep);
  font-size: 1.08rem;
  line-height: 1.22;
}

.question-table-row p {
  margin: 0;
  color: var(--xpd-muted);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.12fr);
  gap: 46px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 106px;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  background: var(--xpd-white);
  border: 1px solid var(--xpd-line);
  border-left: 3px solid rgba(2, 7, 111, 0.34);
  box-shadow: none;
}

.faq-item:nth-child(3n + 2) {
  border-left-color: rgba(240, 175, 7, 0.62);
}

.faq-item:nth-child(3n) {
  border-left-color: rgba(130, 186, 14, 0.62);
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  color: var(--xpd-navy-deep);
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.22;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--xpd-brand-blue);
  background: var(--xpd-grey-soft);
  font-size: 1.1rem;
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "-";
  color: var(--xpd-white);
  background: var(--xpd-brand-blue);
}

.faq-answer {
  padding: 0 20px 20px;
}

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

.faq-answer p + p {
  margin-top: 12px;
}

.profile-grid {
  display: grid;
  gap: 22px;
  margin-top: 42px;
}

.founder-note-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: 48px;
  align-items: center;
}

.founder-note-copy {
  max-width: 860px;
}

.founder-quote {
  margin: 28px 0 0;
  padding: 0 0 0 28px;
  border-left: 5px solid var(--xpd-mustard);
  color: var(--xpd-ink);
}

.founder-quote p {
  margin: 0;
  color: var(--xpd-muted);
  font-size: 1.04rem;
  line-height: 1.68;
}

.founder-quote p + p {
  margin-top: 16px;
}

.founder-quote footer {
  margin-top: 20px;
  color: var(--xpd-navy-deep);
  font-weight: 880;
}

.founder-note-image {
  margin: 0;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--xpd-grey-panel);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(3, 0, 53, 0.08);
}

.founder-note-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.profile-card {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 26px;
  background: var(--xpd-white);
  border: 1px solid var(--xpd-line);
  border-left: 5px solid var(--xpd-brand-blue);
  box-shadow: 0 12px 30px rgba(3, 0, 53, 0.06);
}

.profile-image {
  min-height: 260px;
  background: var(--xpd-grey-panel);
  overflow: hidden;
}

.profile-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.profile-copy {
  align-self: center;
}

.profile-role {
  margin: 0 0 8px;
  color: var(--xpd-brand-blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-copy h3 {
  margin: 0 0 10px;
  color: var(--xpd-navy-deep);
  font-size: 1.72rem;
  line-height: 1.08;
}

.profile-credentials {
  margin: 0 0 18px;
  color: var(--xpd-ink);
  font-size: 0.95rem;
  font-weight: 780;
  line-height: 1.42;
}

.profile-copy p:not(.profile-role):not(.profile-credentials) {
  margin: 12px 0 0;
  color: var(--xpd-muted);
}

.signal-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--xpd-line);
}

.signal-list li {
  position: relative;
  padding: 16px 0 16px 34px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--xpd-line);
  color: var(--xpd-ink);
  font-weight: 730;
}

.signal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--xpd-mustard);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: start;
}

.signal-list.compact {
  margin-top: 30px;
}

.signal-list.compact li {
  padding-top: 13px;
  padding-bottom: 13px;
  font-weight: 720;
}

.contact-form {
  padding: 34px;
  background: var(--xpd-white);
  border: 1px solid var(--xpd-line);
  border-top: 5px solid var(--xpd-mustard);
  border-radius: 2px;
  box-shadow: 0 16px 42px rgba(3, 0, 53, 0.09);
}

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

.contact-form .form-grid > p {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}

.contact-form p {
  margin: 0;
}

.contact-form .form-grid > p > br {
  display: none;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--xpd-navy-deep);
  font-size: 0.88rem;
  font-weight: 850;
}

.form-note {
  color: var(--xpd-muted);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.4;
}

.contact-form [hidden] {
  display: none !important;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #c8d2e1;
  border-radius: 2px;
  background: #fbfcff;
  color: var(--xpd-ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--xpd-brand-blue);
  outline: 3px solid rgba(0, 0, 121, 0.16);
}

.form-wide {
  grid-column: 1 / -1;
}

.contact-form .button {
  margin-top: 24px;
}

.section-media {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--xpd-shadow);
  background: var(--xpd-grey-panel);
  min-height: 420px;
}

.section-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.site-footer {
  background: var(--xpd-navy-deep);
  color: var(--xpd-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) repeat(3, minmax(0, 0.82fr));
  gap: 42px;
  padding: 58px 0 34px;
}

.footer-brand img {
  width: 198px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 360px;
  margin: 22px 0;
  color: #dce2ef;
  font-size: 1rem;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer .footer-social {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: #dce2ef;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.2;
}

.site-footer .footer-social:hover {
  color: var(--xpd-mustard-bright);
}

.site-footer h2 {
  margin: 0 0 18px;
  color: var(--xpd-mustard-bright);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:not(.button) {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 2px 0;
  color: var(--xpd-white);
  font-weight: 560;
}

.site-footer a:not(.button):hover {
  color: var(--xpd-mustard-bright);
}

.footer-offices {
  padding: 26px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-offices h2 {
  margin-bottom: 14px;
  font-size: 0.74rem;
}

.footer-office-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.footer-office-list li {
  display: grid;
  gap: 4px;
  align-content: start;
}

.footer-office-list strong {
  color: var(--xpd-white);
  font-size: 0.84rem;
  font-weight: 780;
}

.site-footer .footer-office-list a {
  color: #dce2ef;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.32;
}

.footer-country {
  color: #dce2ef;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.25;
}

.site-footer .footer-office-list .footer-phone {
  color: var(--xpd-white);
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0;
  color: #dce2ef;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-office-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1160px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    white-space: normal;
  }
}

@media (max-width: 980px) {
  .hero-inner,
  .split,
  .video-layout,
  .media-split,
  .side-card-layout,
  .article-ending,
  .decision-layout,
  .output-layout,
  .contact-layout,
  .founder-note-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }

  .hero-inner {
    padding: 52px 0 66px;
  }

  .hero-visual {
    min-height: auto;
  }

  .image-frame,
  .image-square,
  .image-slab,
  .visual-proof {
    position: relative;
    inset: auto;
  }

  .image-frame {
    width: 100%;
    aspect-ratio: 1.5;
  }

  .image-square,
  .image-slab {
    display: none;
  }

  .visual-proof {
    width: 100%;
    margin-top: 14px;
  }

  .proof-inner,
  .profile-card,
  .footer-grid,
  .footer-office-list {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .feature-list,
  .route-grid,
  .related-card-grid,
  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-card,
  .step-card {
    min-height: 0;
  }

  .question-table-head,
  .question-table-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .question-table-head {
    display: none;
  }

  .profile-image,
  .profile-image img {
    min-height: 320px;
  }

  .founder-note-image {
    max-width: 320px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .section-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 980px) {
  .nav {
    min-height: 68px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0;
  }

  .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 30;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    white-space: normal;
    background: var(--xpd-white);
    border: 1px solid var(--xpd-line);
    box-shadow: var(--xpd-shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a:not(.button) {
    padding: 12px 4px;
    border-bottom: 1px solid var(--xpd-line);
  }

  .nav-links a[aria-current="page"] {
    border-bottom: 1px solid var(--xpd-line);
    color: var(--xpd-brand-blue);
  }

  .nav-links .button {
    width: 100%;
    margin-top: 12px;
  }
}

@media (max-width: 560px) {
      .nav,
      .wrap,
      .hero-inner,
      .proof-inner {
    width: calc(100% - 28px);
  }

  .logo img {
    width: 184px;
  }

  h1 {
    font-size: 1.78rem;
    line-height: 1.18;
  }

  .section-title {
    font-size: 1.72rem;
    line-height: 1.18;
  }

  .hero-copy,
  .section-intro {
    font-size: 1rem;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .footer-brand .button {
    width: 100%;
  }

  .footer-grid {
    gap: 28px;
    padding: 44px 0 30px;
  }

  .card-grid,
  .feature-list,
  .route-grid,
  .related-card-grid,
  .step-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 30px;
  }

  .proof-item,
  .content-card,
  .content-card-body,
  .related-card,
  .article-ending-panel,
  .step-card,
  .faq-item summary,
  .faq-answer,
  .contact-form,
  .visual-proof {
    padding: 22px;
  }

  .faq-answer {
    padding-top: 0;
  }

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

  .contact-form .form-grid > p {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 0;
  }

  .article-row {
    padding: 20px 0;
  }

  .article-row.has-image {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 14px;
  }

  .article-row-image img {
    aspect-ratio: 1;
  }

  .related-card {
    min-height: 0;
  }

  .feature-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 20px 0;
  }
}

.bot-trap-link { display: none !important; }
