/* Phase 3 homepage architecture. This remains the final homepage composition layer. */
main.phase3-home {
  --phase3-navy: #073c48;
  --phase3-navy-strong: #052f39;
  --phase3-teal: #0f6974;
  --phase3-gold: #b58a35;
  --phase3-ink: #11343b;
  --phase3-muted: #5f7479;
  --phase3-line: rgba(7, 60, 72, 0.14);
  --phase3-mist: #eef5f4;
  --phase3-surface: #f8fbfa;
  --phase3-white: #ffffff;
  --phase3-radius: 24px;
  --phase3-radius-small: 15px;
  --phase3-shadow: 0 22px 60px rgba(6, 52, 62, 0.09);
  --phase3-ease: cubic-bezier(0.23, 1, 0.32, 1);
  background: var(--phase3-white);
  color: var(--phase3-ink);
  overflow: clip;
  font-family: var(--font-sans, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}

main.phase3-home *,
main.phase3-home *::before,
main.phase3-home *::after {
  box-sizing: border-box;
}

main.phase3-home a {
  color: inherit;
  text-decoration: none;
}

main.phase3-home button,
main.phase3-home a {
  -webkit-tap-highlight-color: transparent;
}

main.phase3-home button {
  font: inherit;
}

.phase3-shell {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.phase3-deferred {
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}

.phase3-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(620px, 76svh, 720px);
  isolation: isolate;
  overflow: hidden;
  background: var(--phase3-navy-strong);
}

.phase3-hero-media,
.phase3-hero-media picture,
.phase3-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.phase3-hero-media {
  z-index: -2;
  background-color: var(--phase3-navy-strong);
  background-image: linear-gradient(90deg, rgba(3, 37, 45, 0.16), rgba(3, 43, 52, 0.02));
}

.phase3-hero-media img {
  object-fit: cover;
  object-position: center 55%;
}

.phase3-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 37, 45, 0.94) 0%, rgba(3, 43, 52, 0.78) 44%, rgba(3, 43, 52, 0.18) 72%, rgba(3, 43, 52, 0.08) 100%),
    linear-gradient(0deg, rgba(2, 34, 41, 0.42), transparent 46%);
}

.phase3-hero-copy {
  padding-top: 96px;
  padding-bottom: 64px;
  color: #fff;
}

.phase3-overline {
  margin: 0 0 20px;
  color: #e1c77d;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.19em;
}

.phase3-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-family: var(--font-serif, Georgia, "Times New Roman", serif);
  font-size: clamp(46px, 5.25vw, 70px);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 1.02;
  white-space: pre-line;
  text-wrap: balance;
}

.phase3-hero-copy > p:not(.phase3-overline) {
  max-width: 630px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.7;
}

.phase3-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.phase3-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  transition: color 180ms var(--phase3-ease), background-color 180ms var(--phase3-ease), border-color 180ms var(--phase3-ease), transform 140ms var(--phase3-ease);
}

.phase3-button-primary {
  background: #dfbd67;
  color: #17383d;
}

.phase3-button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(6, 48, 57, 0.36);
  color: #fff;
}

.phase3-proof {
  position: relative;
  z-index: 2;
  margin-top: -38px;
}

.phase3-proof > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  background: linear-gradient(115deg, rgba(7, 52, 65, 0.96), rgba(9, 83, 93, 0.92));
  box-shadow: 0 22px 52px rgba(5, 47, 57, 0.16), inset 0 1px rgba(255, 255, 255, 0.18);
}

.phase3-proof p {
  display: grid;
  gap: 3px;
  min-width: 0;
  margin: 0;
  padding: 21px 26px;
}

.phase3-proof p + p {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.phase3-proof strong {
  color: #fff;
  font-size: 21px;
  line-height: 1.2;
}

.phase3-proof span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.phase3-section-heading {
  margin-bottom: 34px;
}

.phase3-section-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--phase3-navy-strong);
  font-family: var(--font-serif, Georgia, "Times New Roman", serif);
  font-size: clamp(34px, 3.7vw, 48px);
  font-weight: 560;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-wrap: balance;
}

.phase3-section-heading p {
  max-width: 680px;
  margin: 13px 0 0;
  color: var(--phase3-muted);
  font-size: 16px;
  line-height: 1.75;
}

.phase3-section-heading-action {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.phase3-section-heading-action > a {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--phase3-line);
  color: var(--phase3-navy);
  font-size: 14px;
  font-weight: 750;
}

.phase3-decision {
  padding-top: 92px;
  padding-bottom: 84px;
}

.phase3-decision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 60, 72, 0.16);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 10%, rgba(15, 105, 116, 0.12), transparent 30%),
    linear-gradient(135deg, #f7f4ed, #edf5f2);
  box-shadow: 0 24px 58px rgba(7, 60, 72, 0.08);
}

.phase3-decision-grid > article {
  position: relative;
  display: grid;
  min-height: 176px;
  min-width: 0;
  grid-template-columns: 48px minmax(260px, 0.88fr) minmax(360px, 1.12fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 10px 24px;
  padding: 28px 32px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.phase3-decision-grid > article:first-child {
  background: transparent;
}

.phase3-decision-grid > article:last-child {
  border-top: 1px solid rgba(7, 60, 72, 0.13);
  background: rgba(255, 255, 255, 0.28);
}

.phase3-decision-grid > article::after {
  display: none;
}

.phase3-decision-grid > article > span {
  display: grid;
  width: 48px;
  height: 48px;
  grid-column: 1;
  grid-row: 1 / 3;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: var(--phase3-navy);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.phase3-decision-grid h3 {
  margin: 2px 0 7px;
  color: var(--phase3-navy-strong);
  font-size: 23px;
  line-height: 1.2;
}

.phase3-decision-grid p {
  margin: 0;
  color: var(--phase3-muted);
  font-size: 15px;
  line-height: 1.65;
}

.phase3-decision-grid nav,
.phase3-decision-grid .phase3-text-link {
  grid-column: 3;
}

.phase3-decision-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  grid-row: 1;
  align-self: end;
}

.phase3-decision-grid .phase3-text-link {
  grid-row: 2;
  align-self: start;
  justify-content: flex-start;
}

.phase3-decision-grid nav a,
.phase3-destination-grid nav a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(7, 60, 72, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--phase3-navy);
  font-size: 13px;
  font-weight: 720;
}

.phase3-text-link,
.phase3-country-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--phase3-navy);
  font-size: 15px;
  font-weight: 780;
}

.phase3-exams,
.phase3-cases {
  background: var(--phase3-mist);
}

.phase3-exams {
  background:
    radial-gradient(circle at 90% 10%, rgba(40, 132, 132, 0.2), transparent 30%),
    #062f38;
  color: #fff;
}

.phase3-exams .phase3-section-heading h2 {
  color: #fff;
}

.phase3-exams .phase3-section-heading p {
  color: rgba(255, 255, 255, 0.68) !important;
}

.phase3-exams .phase3-section-heading-action > a {
  border-bottom-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.phase3-exams > .phase3-shell,
.phase3-cases > .phase3-shell {
  padding-top: 86px;
  padding-bottom: 86px;
}

.phase3-exam-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
}

.phase3-exam-rail > article {
  display: flex;
  min-width: 0;
  min-height: 220px;
  flex-direction: column;
  padding: 28px;
  border: 0;
  border-radius: 0;
  background: rgba(4, 43, 53, 0.92);
}

.phase3-exam-rail > article.is-featured {
  background: rgba(9, 76, 86, 0.94);
  box-shadow: none;
}

.phase3-exam-rail header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.phase3-exam-rail header strong {
  color: #fff;
  font-family: var(--font-serif, Georgia, "Times New Roman", serif);
  font-size: 30px;
  font-weight: 560;
  letter-spacing: -0.035em;
}

.phase3-exam-rail header span {
  color: #dfbd67;
  font-size: 13px;
  font-weight: 750;
}

.phase3-exam-rail > article > p {
  margin: 22px 0 26px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.7;
}

.phase3-exam-rail > article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
}

.phase3-exam-rail > article > div a:first-child {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 780;
}

.phase3-exam-rail > article > div a:last-child:not(:first-child) {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.phase3-destinations,
.phase3-service,
.phase3-insights {
  padding-top: 88px;
  padding-bottom: 88px;
}

.phase3-destination-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  grid-template-rows: repeat(4, auto);
  gap: 0 64px;
}

.phase3-destination-grid::before {
  grid-column: 1;
  grid-row: 1 / 5;
  min-height: 520px;
  background: url('/brand-globe-v4.svg') center / 88% auto no-repeat;
  filter: drop-shadow(0 24px 26px rgba(6, 52, 62, 0.16));
  content: "";
}

.phase3-destination-grid > article {
  display: grid;
  min-height: 130px;
  min-width: 0;
  grid-column: 2;
  grid-template-columns: minmax(180px, 0.82fr) minmax(0, 1.18fr);
  grid-template-rows: auto auto;
  align-content: center;
  gap: 8px 24px;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid var(--phase3-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.phase3-destination-grid > article:last-child {
  border-bottom: 1px solid var(--phase3-line);
}

.phase3-destination-grid > article:nth-child(2),
.phase3-destination-grid > article:nth-child(3) {
  background: transparent;
}

.phase3-destination-grid header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phase3-destination-grid header > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  background: var(--phase3-navy);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.phase3-destination-grid h3 {
  margin: 0;
  color: var(--phase3-navy-strong);
  font-size: 22px;
}

.phase3-destination-grid header small {
  display: block;
  margin-top: 3px;
  color: var(--phase3-muted);
  font-size: 12px;
}

.phase3-destination-grid > article > p {
  margin: 8px 0 0;
  color: var(--phase3-muted);
  font-size: 15px;
}

.phase3-destination-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: end;
}

.phase3-country-link {
  min-height: 34px;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.phase3-case-filter {
  display: flex;
  gap: 8px;
  margin: -8px 0 24px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.phase3-case-filter::-webkit-scrollbar {
  display: none;
}

.phase3-case-filter button {
  min-width: max-content;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--phase3-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--phase3-muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  transition: color 160ms var(--phase3-ease), background-color 160ms var(--phase3-ease), border-color 160ms var(--phase3-ease), transform 120ms var(--phase3-ease);
}

.phase3-case-filter button[aria-pressed="true"] {
  border-color: var(--phase3-navy);
  background: var(--phase3-navy);
  color: #fff;
}

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

.phase3-case-grid > article {
  display: flex;
  min-width: 0;
  min-height: 310px;
  flex-direction: column;
  padding: 25px;
  border: 1px solid rgba(7, 60, 72, 0.12);
  border-radius: var(--phase3-radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(7, 60, 72, 0.05);
}

.phase3-case-grid > article:first-child {
  display: grid;
  min-height: 360px;
  grid-column: 1 / -1;
  grid-template-areas:
    "meta meta meta"
    "score score score"
    "target title link"
    "target copy link";
  grid-template-columns: minmax(150px, 0.5fr) minmax(0, 1.5fr) auto;
  grid-template-rows: auto auto auto 1fr;
  gap: 0 38px;
  padding: 34px 38px 30px;
  border-color: transparent;
  background: linear-gradient(125deg, #063b47, #07515d);
  color: #fff;
  box-shadow: 0 24px 54px rgba(6, 52, 62, 0.16);
}

.phase3-case-grid > article:first-child > header {
  grid-area: meta;
}

.phase3-case-grid > article:first-child > header,
.phase3-case-grid > article:first-child h3 + p {
  color: rgba(255, 255, 255, 0.66);
}

.phase3-case-grid > article:first-child h3 {
  grid-area: title;
  align-self: end;
  margin: 22px 0 7px;
  color: #fff;
  font-family: var(--font-serif, Georgia, "Times New Roman", serif);
  font-size: 25px;
}

.phase3-case-grid > article:first-child .phase3-score-route {
  grid-area: score;
  min-height: 190px;
  margin: 20px 0 0;
  padding: 30px 18px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.phase3-case-grid > article:first-child .phase3-score-route small,
.phase3-case-grid > article:first-child .phase3-target {
  color: rgba(255, 255, 255, 0.64) !important;
}

.phase3-case-grid > article:first-child .phase3-score-route strong,
.phase3-case-grid > article:first-child .phase3-target strong {
  color: #fff;
}

.phase3-case-grid > article:first-child .phase3-score-route strong {
  font-size: clamp(52px, 6vw, 76px);
  letter-spacing: -0.045em;
}

.phase3-case-grid > article:first-child .phase3-score-route > b {
  display: flex;
  width: min(26vw, 250px);
  align-items: center;
  gap: 12px;
  color: #dfbd67;
  font-size: 20px;
}

.phase3-case-grid > article:first-child .phase3-score-route > b::before,
.phase3-case-grid > article:first-child .phase3-score-route > b::after {
  height: 1px;
  flex: 1;
  background: rgba(223, 189, 103, 0.42);
  content: "";
}

.phase3-case-grid > article:first-child .phase3-score-route p:last-child {
  text-align: right;
}

.phase3-case-grid > article:first-child .phase3-target {
  grid-area: target;
  align-self: center;
  margin: 22px 0 0;
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.phase3-case-grid > article:first-child h3 + p {
  grid-area: copy;
  margin: 0;
  font-size: 15px;
}

.phase3-case-grid > article:first-child > a {
  grid-area: link;
  min-width: 176px;
  min-height: 48px;
  align-self: center;
  justify-content: center;
  margin-top: 22px;
  padding: 0 20px;
  border: 1px solid rgba(223, 189, 103, 0.44);
  border-radius: 999px;
  color: #dfbd67;
}

.phase3-case-grid > article:not(:first-child) .phase3-score-route {
  margin: 20px 0 14px;
  padding: 16px 0;
  border-top: 1px solid var(--phase3-line);
  border-bottom: 1px solid var(--phase3-line);
  border-radius: 0;
  background: transparent;
}

.phase3-case-grid > article:not(:first-child) .phase3-score-route strong {
  font-size: 19px;
}

.phase3-case-grid > article:not(:first-child) h3 + p {
  -webkit-line-clamp: 2;
}

.phase3-case-grid > article > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--phase3-muted);
  font-size: 12px;
}

.phase3-case-grid > article > header span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phase3-case-grid > article > header strong {
  flex: 0 0 auto;
  color: var(--phase3-gold);
}

.phase3-score-route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 24px 0 12px;
  padding: 17px;
  border-radius: var(--phase3-radius-small);
  background: var(--phase3-mist);
}

.phase3-score-route p {
  margin: 0;
}

.phase3-score-route small {
  display: block;
  margin-bottom: 4px;
  color: var(--phase3-muted);
  font-size: 11px;
}

.phase3-score-route strong {
  color: var(--phase3-navy-strong);
  font-size: 23px;
}

.phase3-score-route > b {
  color: var(--phase3-gold);
}

.phase3-target {
  margin: 0 0 18px;
  color: var(--phase3-muted);
  font-size: 12px;
}

.phase3-target strong {
  color: var(--phase3-navy);
}

.phase3-case-grid h3 {
  margin: 0 0 10px;
  color: var(--phase3-navy-strong);
  font-size: 19px;
  line-height: 1.35;
}

.phase3-case-grid h3 + p {
  display: -webkit-box;
  margin: 0 0 22px;
  overflow: hidden;
  color: var(--phase3-muted);
  font-size: 14px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.phase3-case-grid > article > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid var(--phase3-line);
  color: var(--phase3-navy);
  font-size: 14px;
  font-weight: 780;
}

.phase3-case-empty {
  padding: 38px;
  border: 1px dashed rgba(7, 60, 72, 0.25);
  border-radius: var(--phase3-radius);
  background: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.phase3-case-empty strong {
  color: var(--phase3-navy);
  font-size: 20px;
}

.phase3-case-empty p {
  color: var(--phase3-muted);
}

.phase3-case-empty a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-weight: 750;
}

.phase3-case-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 22px 24px;
  border-radius: var(--phase3-radius-small);
  background: var(--phase3-navy);
  color: #fff;
}

.phase3-case-cta p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.phase3-case-cta span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.phase3-case-cta > a {
  display: inline-flex;
  min-height: 46px;
  flex: 0 0 auto;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  background: #dfbd67;
  color: #17383d;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.phase3-process-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.phase3-process-rail > article {
  min-width: 0;
  padding: 22px;
  border-top: 3px solid var(--phase3-gold);
  background: var(--phase3-surface);
}

.phase3-process-rail > article > span {
  color: var(--phase3-gold);
  font-size: 12px;
  font-weight: 800;
}

.phase3-process-rail h3 {
  margin: 14px 0 9px;
  color: var(--phase3-navy-strong);
  font-size: 17px;
  line-height: 1.3;
}

.phase3-process-rail p {
  margin: 0;
  color: var(--phase3-muted);
  font-size: 13px;
  line-height: 1.65;
}

.phase3-process-rail strong {
  display: block;
  margin-top: 15px;
  color: var(--phase3-navy);
  font-size: 12px;
  line-height: 1.5;
}

.phase3-consult {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  margin-top: 32px;
  padding: 34px;
  border-radius: var(--phase3-radius);
  background: var(--phase3-navy-strong);
  color: #fff;
}

.phase3-consult h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-serif, Georgia, "Times New Roman", serif);
  font-size: clamp(28px, 3.3vw, 42px);
  font-weight: 560;
  letter-spacing: -0.035em;
}

.phase3-consult p {
  max-width: 640px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.phase3-consult > div:last-child {
  display: grid;
  gap: 9px;
  min-width: 250px;
}

.phase3-consult a,
.phase3-consult button {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
}

.phase3-consult a {
  background: #dfbd67;
  color: #17383d;
  font-size: 14px;
  font-weight: 800;
}

.phase3-consult button {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  text-align: left;
}

.phase3-consult button span,
.phase3-consult button small {
  display: block;
}

.phase3-consult button span {
  font-size: 13px;
  font-weight: 750;
}

.phase3-consult button small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.phase3-insights {
  border-top: 1px solid var(--phase3-line);
}

.phase3-insight-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
}

.phase3-insight-grid > a {
  display: flex;
  min-width: 0;
  min-height: 190px;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--phase3-line);
  border-radius: var(--phase3-radius-small);
  background: var(--phase3-surface);
}

.phase3-insight-grid > a:first-child {
  grid-row: span 2;
  min-height: 394px;
  justify-content: end;
  background: linear-gradient(150deg, #0d5965, #073b46);
  color: #fff;
}

.phase3-insight-grid > a > span {
  color: var(--phase3-gold);
  font-size: 11px;
  font-weight: 760;
}

.phase3-insight-grid > a > strong {
  margin-top: 15px;
  color: var(--phase3-navy-strong);
  font-size: 20px;
  line-height: 1.35;
}

.phase3-insight-grid > a:first-child > strong {
  max-width: 660px;
  color: #fff;
  font-family: var(--font-serif, Georgia, "Times New Roman", serif);
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 560;
}

.phase3-insight-grid > a > p {
  display: -webkit-box;
  margin: 10px 0 18px;
  overflow: hidden;
  color: var(--phase3-muted);
  font-size: 13px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.phase3-insight-grid > a:first-child > p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.phase3-insight-grid > a > b {
  margin-top: auto;
  color: var(--phase3-navy);
  font-size: 12px;
}

.phase3-insight-grid > a:first-child > b {
  color: #dfbd67;
}

.phase3-faq {
  padding: 94px 0;
  background: var(--phase3-mist);
}

.phase3-faq > section {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.phase3-footer {
  padding: 48px 0 38px;
  background: #062f38;
  color: #fff;
}

.phase3-footer > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px 42px;
}

.phase3-footer-brand {
  display: grid;
  color: #fff;
  letter-spacing: 0.13em;
}

.phase3-footer-brand strong {
  font-family: var(--font-serif, Georgia, "Times New Roman", serif);
  font-size: 24px;
}

.phase3-footer-brand span {
  color: #d9b968;
  font-size: 10px;
  font-weight: 800;
}

.phase3-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.phase3-footer nav {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.phase3-footer nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.phase3-footer small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.phase3-mobile-cta {
  display: none;
}

main.phase3-home :where(a, button):focus-visible {
  outline: 3px solid #d1a848;
  outline-offset: 3px;
}

main.phase3-home :where(a, button):active {
  transform: scale(0.975);
}

@media (hover: hover) and (pointer: fine) {
  .phase3-button:hover,
  .phase3-case-cta > a:hover {
    transform: translateY(-2px);
  }

  .phase3-decision-grid nav a:hover,
  .phase3-destination-grid nav a:hover {
    border-color: var(--phase3-navy);
    background: #fff;
  }

  .phase3-exam-rail > article,
  .phase3-destination-grid > article,
  .phase3-case-grid > article,
  .phase3-insight-grid > a {
    transition: border-color 180ms var(--phase3-ease), box-shadow 180ms var(--phase3-ease), transform 180ms var(--phase3-ease);
  }

  .phase3-exam-rail > article:hover,
  .phase3-destination-grid > article:hover,
  .phase3-case-grid > article:hover,
  .phase3-insight-grid > a:hover {
    border-color: rgba(7, 60, 72, 0.28);
    box-shadow: 0 18px 42px rgba(7, 60, 72, 0.08);
    transform: translateY(-3px);
  }
}

/* Real-case coverage: evidence-led geography, not a second destination directory. */
.phase3-country-requirement {
  max-width: 32ch;
  color: #4f696d !important;
  font-size: 13px !important;
  line-height: 1.65 !important;
}

.phase3-case-coverage {
  min-height: 390px;
  margin: 30px 0 26px;
  padding: clamp(28px, 3.5vw, 46px);
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(460px, 1.22fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(191, 229, 223, .18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 76% 48%, rgba(87, 180, 170, .18), transparent 34%),
    radial-gradient(circle at 14% -14%, rgba(229, 199, 118, .09), transparent 34%),
    linear-gradient(132deg, #062f39 0%, #084650 52%, #062f39 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    inset 0 -1px 0 rgba(0, 25, 31, .16),
    0 28px 64px rgba(7, 53, 60, .15);
  color: #f8fbfa;
}

.phase3-case-coverage::before {
  position: absolute;
  inset: auto -8% -55% 32%;
  height: 78%;
  border: 1px solid rgba(207, 235, 230, .08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.phase3-case-coverage-copy {
  position: relative;
  z-index: 2;
}

.phase3-case-coverage-copy .phase3-overline {
  margin: 0 0 13px;
  color: #e4c56f;
}

.phase3-case-coverage-copy h3 {
  max-width: 9em;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 650;
  letter-spacing: -.045em;
  line-height: 1.08;
  text-wrap: balance;
}

.phase3-case-coverage-copy > p:not(.phase3-overline) {
  max-width: 34em;
  margin: 17px 0 0;
  color: rgba(235, 246, 243, .72);
  font-size: 14px;
  line-height: 1.75;
}

.phase3-case-coverage-copy dl {
  margin: 28px 0 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(220, 239, 235, .14);
  border-bottom: 1px solid rgba(220, 239, 235, .14);
}

.phase3-case-coverage-copy dl > div {
  padding: 17px 15px 17px 0;
}

.phase3-case-coverage-copy dl > div + div {
  padding-left: 15px;
  border-left: 1px solid rgba(220, 239, 235, .12);
}

.phase3-case-coverage-copy dt {
  color: #fff;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 680;
  letter-spacing: -.035em;
  line-height: 1;
}

.phase3-case-coverage-copy dd {
  margin: 7px 0 0;
  color: rgba(229, 243, 239, .62);
  font-size: 11px;
}

.phase3-case-coverage-copy > a {
  width: fit-content;
  min-height: 48px;
  padding: 0 8px 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(226, 199, 120, .48);
  border-radius: 999px;
  color: #f1d47e;
  font-size: 13px;
  font-weight: 780;
}

.phase3-case-coverage-copy > a b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #ead28e, #d9b85e);
  color: #173940;
}

.phase3-case-coverage-visual {
  min-height: 340px;
  position: relative;
}

.phase3-coverage-globe {
  width: 340px;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  display: grid;
  place-items: center;
  border: 1px solid rgba(186, 228, 221, .16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%, rgba(158, 224, 213, .18), transparent 29%),
    radial-gradient(circle at 50% 53%, rgba(8, 79, 85, .84), #052b35 72%);
  box-shadow:
    inset -24px -18px 44px rgba(0, 22, 28, .32),
    inset 12px 10px 28px rgba(169, 229, 219, .07),
    0 30px 52px rgba(0, 22, 28, .28);
}

.phase3-coverage-globe::before,
.phase3-coverage-globe::after {
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(184, 227, 220, .11);
  border-radius: 50%;
  content: "";
}

.phase3-coverage-globe::after {
  inset: 21% 5%;
}

.phase3-coverage-globe img {
  width: 78%;
  height: 78%;
  opacity: .38;
  filter: brightness(0) invert(1);
}

.phase3-coverage-points {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.phase3-coverage-points a {
  min-width: 112px;
  min-height: 48px;
  padding: 7px 12px 7px 10px;
  display: grid;
  grid-template-columns: 10px 1fr;
  column-gap: 8px;
  position: absolute;
  align-items: center;
  border: 1px solid rgba(213, 238, 234, .16);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(223, 242, 238, .14), rgba(133, 193, 186, .07));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .11),
    0 12px 26px rgba(0, 25, 31, .16);
  color: #f7fbfa;
  transform: translate(-50%, -50%);
}

.phase3-coverage-points a i {
  width: 8px;
  height: 8px;
  border: 2px solid #e9c96f;
  border-radius: 50%;
  background: #f2d579;
  box-shadow: 0 0 0 6px rgba(235, 202, 111, .12), 0 0 18px rgba(238, 204, 112, .5);
}

.phase3-coverage-points a span {
  font-size: 14px;
  font-weight: 760;
  line-height: 1.2;
}

.phase3-coverage-points a small {
  color: rgba(230, 244, 240, .58);
  font-size: 10px;
  line-height: 1.2;
}

.phase3-coverage-points a[data-region="CA"] { left: 14%; top: 20%; }
.phase3-coverage-points a[data-region="US"] { left: 12%; top: 43%; }
.phase3-coverage-points a[data-region="GB"] { left: 42%; top: 13%; }
.phase3-coverage-points a[data-region="SG"] { left: 67%; top: 53%; }
.phase3-coverage-points a[data-region="HK"] { left: 76%; top: 31%; }
.phase3-coverage-points a[data-region="MY"] { left: 81%; top: 59%; }
.phase3-coverage-points a[data-region="AU"] { left: 71%; top: 80%; }
.phase3-coverage-points a[data-region="NZ"] { left: 93%; top: 82%; }

.phase3-case-coverage-visual > p {
  margin: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  color: rgba(226, 242, 238, .5);
  font-size: 10px;
  letter-spacing: .06em;
}

@media (hover: hover) and (pointer: fine) {
  .phase3-case-coverage-copy > a:hover,
  .phase3-coverage-points a:hover {
    border-color: rgba(237, 207, 124, .48);
    background-color: rgba(231, 204, 128, .12);
    transform: translate(-50%, calc(-50% - 2px));
  }

  .phase3-case-coverage-copy > a:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 1050px) {
  .phase3-case-coverage {
    grid-template-columns: minmax(0, .82fr) minmax(390px, 1.18fr);
  }

  .phase3-coverage-globe {
    width: 300px;
  }

  .phase3-coverage-points a {
    min-width: 100px;
  }
}

@media (max-width: 800px) {
  .phase3-case-coverage {
    min-height: 0;
    padding: 28px 22px 22px;
    grid-template-columns: 1fr;
    gap: 26px;
    border-radius: 26px;
  }

  .phase3-case-coverage-copy h3 {
    max-width: 12em;
    font-size: clamp(31px, 9vw, 40px);
  }

  .phase3-case-coverage-copy dl {
    margin: 22px 0;
  }

  .phase3-case-coverage-visual {
    min-height: 380px;
  }

  .phase3-coverage-globe {
    width: min(260px, 76vw);
    top: 37%;
  }

  .phase3-coverage-points {
    inset: auto 0 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .phase3-coverage-points a,
  .phase3-coverage-points a[data-region] {
    min-width: 0;
    min-height: 44px;
    position: static;
    transform: none;
  }

  .phase3-coverage-points a small {
    display: none;
  }

  .phase3-case-coverage-visual > p {
    right: auto;
    bottom: 0;
    left: 0;
  }
}

@media (max-width: 420px) {
  .phase3-case-coverage-copy dl > div {
    padding-inline: 8px;
  }

  .phase3-case-coverage-copy dl > div:first-child {
    padding-left: 0;
  }

  .phase3-case-coverage-copy dt {
    font-size: 24px;
  }

  .phase3-case-coverage-visual {
    min-height: 410px;
  }
}

/* Trust and content system refinement — clearer hierarchy, evidence and editorial imagery. */
.phase3-hero-title-line {
  display: block;
}

.phase3-hero-accent {
  color: #f0cb67;
  font-style: normal;
}

.phase3-case-media {
  display: none;
}

.phase3-insight-grid > a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.phase3-insight-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phase3-insight-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.phase3-insight-copy > small {
  color: var(--phase3-gold);
  font-size: 11px;
  font-weight: 780;
}

.phase3-insight-copy > strong {
  display: -webkit-box;
  margin-top: 14px;
  overflow: hidden;
  color: var(--phase3-navy-strong);
  font-size: 22px;
  line-height: 1.3;
  text-wrap: pretty;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.phase3-insight-copy > p {
  display: -webkit-box;
  margin: 10px 0 0;
  overflow: hidden;
  color: var(--phase3-muted);
  font-size: 13px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.phase3-insight-grid > a > b {
  position: relative;
  z-index: 2;
}

.phase3-insight-grid > a:first-child {
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 38px;
  background: #063c47;
}

.phase3-insight-grid > a:first-child::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(2, 34, 41, .96) 0%, rgba(2, 40, 48, .82) 50%, rgba(2, 40, 48, .2) 100%);
  content: "";
}

.phase3-insight-grid > a:first-child .phase3-insight-cover {
  position: absolute;
  inset: 0;
}

.phase3-insight-grid > a:first-child .phase3-insight-copy {
  width: min(68%, 700px);
  align-self: center;
}

.phase3-insight-grid > a:first-child .phase3-insight-copy > small {
  color: #f0cb67;
}

.phase3-insight-grid > a:first-child .phase3-insight-copy > strong {
  color: #fff;
  font-size: clamp(33px, 3vw, 43px);
  font-weight: 650;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.phase3-insight-grid > a:first-child .phase3-insight-copy > p {
  max-width: 58ch;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.phase3-insight-grid > a:not(:first-child):has(.phase3-insight-cover) {
  padding-right: 45%;
}

.phase3-insight-grid > a:not(:first-child) .phase3-insight-cover {
  position: absolute;
  inset: 0 0 0 auto;
  width: 40%;
}

@media (min-width: 901px) {
  .phase3-hero {
    min-height: min(700px, 74svh);
  }

  .phase3-hero-copy {
    padding-top: 66px;
    padding-bottom: 82px;
  }

  .phase3-overline {
    margin-bottom: 17px;
  }

  .phase3-hero h1 {
    max-width: 760px;
    font-size: clamp(54px, 4.7vw, 74px);
    line-height: .96;
    text-wrap: nowrap;
  }

  .phase3-hero-copy > p:not(.phase3-overline) {
    margin-top: 22px;
    font-size: 17px;
  }

  .phase3-hero-actions {
    margin-top: 28px;
  }

  .phase3-case-grid > article:first-child {
    min-height: 472px;
    grid-template-areas:
      "meta media"
      "title media"
      "copy media"
      "target score"
      "link score";
    grid-template-columns: minmax(0, 1.16fr) minmax(360px, .84fr);
    grid-template-rows: auto auto minmax(62px, 1fr) auto auto;
    gap: 0 42px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .1);
    background:
      radial-gradient(circle at 8% 6%, rgba(32, 119, 120, .23), transparent 32%),
      #063b46;
  }

  .phase3-case-grid > article:first-child .phase3-case-media {
    display: block;
    min-width: 0;
    grid-area: media;
    align-self: stretch;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 21px;
    background: #092f36;
  }

  .phase3-case-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.82) contrast(1.04) brightness(.9);
  }

  .phase3-case-grid > article:first-child h3 {
    align-self: end;
    margin: 32px 0 10px;
    font-size: clamp(28px, 2.25vw, 35px);
    line-height: 1.16;
  }

  .phase3-case-grid > article:first-child h3 + p {
    align-self: start;
    max-width: 55ch;
    line-height: 1.65;
    -webkit-line-clamp: 2;
  }

  .phase3-case-grid > article:first-child .phase3-target {
    min-height: 34px;
    align-self: center;
    margin: 20px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .phase3-case-grid > article:first-child .phase3-score-route {
    min-height: 98px;
    grid-area: score;
    align-self: end;
    gap: 10px;
    margin: 18px 0 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 17px;
    background: rgba(255, 255, 255, .07);
  }

  .phase3-case-grid > article:first-child .phase3-score-route strong {
    max-width: 10em;
    font-size: clamp(25px, 2.25vw, 38px);
    line-height: 1.05;
    letter-spacing: -.04em;
  }

  .phase3-case-grid > article:first-child .phase3-score-route > b {
    width: 32px;
    gap: 5px;
    font-size: 15px;
  }

  .phase3-case-grid > article:first-child > a {
    width: fit-content;
    min-width: 190px;
    min-height: 50px;
    align-self: end;
    margin-top: 18px;
  }

  .phase3-case-grid > article:not(:first-child) {
    min-height: 362px;
    background: rgba(250, 252, 249, .94);
  }

  .phase3-case-grid > article:nth-child(3) {
    background: rgba(237, 245, 242, .96);
  }
}

@media (max-width: 900px) {
  .phase3-hero-title-line {
    white-space: nowrap;
  }

  .phase3-case-grid > article:first-child {
    display: flex;
    min-height: 0;
    padding: 20px;
    background: #063b46;
  }

  .phase3-case-grid > article:first-child .phase3-case-media {
    display: block;
    order: -1;
    height: 210px;
    margin: -4px -4px 20px;
    overflow: hidden;
    border-radius: 17px;
  }

  .phase3-case-grid > article:first-child .phase3-score-route {
    min-height: 106px;
    margin-top: 18px;
    padding: 17px 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 15px;
    background: rgba(255, 255, 255, .07);
  }

  .phase3-case-grid > article:first-child .phase3-score-route strong {
    font-size: clamp(25px, 8vw, 36px);
  }

  .phase3-case-grid > article:first-child h3 {
    margin-top: 22px;
    font-size: 24px;
  }

  .phase3-case-grid > article:first-child .phase3-target {
    margin-top: 16px;
    padding: 0;
    border: 0;
  }

  .phase3-insight-grid > a:first-child {
    min-height: 430px;
    padding: 26px;
    background: #063c47;
  }

  .phase3-insight-grid > a:first-child::before {
    background: linear-gradient(0deg, rgba(2, 34, 41, .97) 0%, rgba(2, 38, 46, .72) 62%, rgba(2, 38, 46, .18) 100%);
  }

  .phase3-insight-grid > a:first-child .phase3-insight-copy {
    width: 100%;
    align-self: end;
  }

  .phase3-insight-grid > a:first-child .phase3-insight-copy > strong {
    font-size: clamp(28px, 8vw, 38px);
  }
}

@media (max-width: 520px) {
  .phase3-hero {
    min-height: 610px;
  }

  .phase3-hero-copy {
    padding-top: 78px;
    padding-bottom: 56px;
  }

  .phase3-hero h1 {
    max-width: none;
    font-size: clamp(37px, 11.4vw, 49px);
    line-height: 1;
  }

  .phase3-insight-grid > a:not(:first-child):has(.phase3-insight-cover) {
    padding-right: 25px;
  }

  .phase3-insight-grid > a:not(:first-child) .phase3-insight-cover {
    display: none;
  }
}

@media (max-width: 900px) {
  .phase3-proof > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .phase3-proof p:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .phase3-proof p:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .phase3-decision-grid,
  .phase3-case-grid {
    grid-template-columns: 1fr;
  }

  .phase3-destination-grid {
    grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
    gap: 0 30px;
  }

  .phase3-destination-grid::before {
    min-height: 480px;
    background-size: 94% auto;
  }

  .phase3-destination-grid > article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 14px;
  }

  .phase3-decision-grid > article {
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
  }

  .phase3-decision-grid > article > span {
    grid-row: 1 / 4;
  }

  .phase3-decision-grid nav {
    grid-column: 2;
    grid-row: 2;
  }

  .phase3-decision-grid .phase3-text-link {
    grid-column: 2;
    grid-row: 3;
  }

  .phase3-exam-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .phase3-case-grid > article {
    min-height: 0;
  }

  .phase3-case-grid > article:first-child {
    grid-row: auto;
    min-height: 340px;
    grid-template-areas:
      "meta meta"
      "score score"
      "target link"
      "title link"
      "copy link";
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0 24px;
  }

  .phase3-process-rail {
    display: flex;
    gap: 12px;
    padding-bottom: 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .phase3-process-rail::-webkit-scrollbar {
    display: none;
  }

  .phase3-process-rail > article {
    width: min(76vw, 290px);
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .phase3-consult {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .phase3-shell,
  .phase3-faq > section {
    width: min(100% - 32px, 1180px);
  }

  .phase3-deferred {
    contain-intrinsic-size: auto 920px;
  }

  .phase3-hero {
    min-height: 640px;
    align-items: end;
  }

  .phase3-hero::after {
    background: linear-gradient(0deg, rgba(3, 37, 45, 0.98) 0%, rgba(3, 37, 45, 0.82) 48%, rgba(3, 37, 45, 0.18) 82%);
  }

  .phase3-hero-media img {
    object-position: center 35%;
  }

  .phase3-hero-copy {
    padding-top: 112px;
    padding-bottom: 70px;
  }

  .phase3-overline {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .phase3-hero h1 {
    max-width: 12ch;
    font-size: clamp(42px, 13vw, 58px);
    letter-spacing: -0.052em;
    line-height: 1.04;
  }

  .phase3-hero-copy > p:not(.phase3-overline) {
    max-width: 30em;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.62;
  }

  .phase3-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 25px;
  }

  .phase3-button {
    width: 100%;
    min-height: 50px;
  }

  .phase3-proof {
    margin-top: -22px;
  }

  .phase3-proof > div {
    border-radius: 19px;
  }

  .phase3-proof p {
    padding: 17px 16px;
  }

  .phase3-proof strong {
    font-size: 17px;
  }

  .phase3-proof span {
    font-size: 11px;
  }

  .phase3-section-heading {
    margin-bottom: 24px;
  }

  .phase3-section-heading h2 {
    font-size: 34px;
    line-height: 1.1;
  }

  .phase3-section-heading p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.68;
  }

  .phase3-section-heading-action {
    display: block;
  }

  .phase3-section-heading-action > a {
    margin-top: 13px;
  }

  .phase3-decision {
    padding-top: 76px;
    padding-bottom: 70px;
  }

  .phase3-decision-grid {
    gap: 12px;
  }

  .phase3-decision-grid > article {
    min-height: 0;
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 14px;
    padding: 20px;
    border-radius: 19px;
  }

  .phase3-decision-grid > article::after {
    display: none;
  }

  .phase3-decision-grid > article > span {
    grid-row: 1 / 4;
  }

  .phase3-decision-grid nav,
  .phase3-decision-grid .phase3-text-link {
    grid-column: 2;
  }

  .phase3-decision-grid nav {
    grid-row: 2;
  }

  .phase3-decision-grid .phase3-text-link {
    grid-row: 3;
  }

  .phase3-decision-grid > article > span {
    width: 44px;
    height: 44px;
    font-size: 13px;
  }

  .phase3-decision-grid h3 {
    font-size: 20px;
  }

  .phase3-decision-grid p {
    font-size: 13px;
  }

  .phase3-decision-grid nav {
    gap: 6px;
  }

  .phase3-decision-grid nav a,
  .phase3-destination-grid nav a {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .phase3-exams > .phase3-shell,
  .phase3-cases > .phase3-shell,
  .phase3-destinations,
  .phase3-service,
  .phase3-insights {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .phase3-exam-rail {
    display: flex;
    gap: 12px;
    margin-right: -16px;
    padding-right: 16px;
    padding-bottom: 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .phase3-exam-rail::-webkit-scrollbar {
    display: none;
  }

  .phase3-exam-rail > article {
    width: min(82vw, 310px);
    min-height: 220px;
    flex: 0 0 auto;
    padding: 22px;
    scroll-snap-align: start;
  }

  .phase3-destination-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .phase3-destination-grid::before {
    grid-column: 1;
    grid-row: auto;
    min-height: 270px;
    background-size: 78% auto;
  }

  .phase3-destination-grid > article {
    grid-column: 1;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 20px 0;
    border-radius: 0;
  }

  .phase3-destination-grid header > span {
    width: 46px;
    height: 46px;
  }

  .phase3-destination-grid h3 {
    font-size: 22px;
  }

  .phase3-case-filter {
    margin-right: -16px;
    padding-right: 16px;
  }

  .phase3-case-filter button {
    min-height: 44px;
  }

  .phase3-case-grid {
    gap: 12px;
  }

  .phase3-case-grid > article {
    padding: 21px;
    border-radius: 19px;
  }

  .phase3-case-grid > article:first-child {
    min-height: 0;
    grid-template-areas:
      "meta"
      "score"
      "target"
      "title"
      "copy"
      "link";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
    padding: 24px 21px;
  }

  .phase3-case-grid > article:first-child .phase3-score-route {
    min-height: 184px;
    margin: 20px 0;
    padding: 22px 18px;
  }

  .phase3-case-grid > article:first-child .phase3-score-route strong {
    font-size: clamp(34px, 11vw, 48px);
  }

  .phase3-case-grid > article:first-child .phase3-score-route > b {
    width: min(22vw, 88px);
    height: auto;
  }

  .phase3-case-grid > article:first-child .phase3-target,
  .phase3-case-grid > article:first-child h3 {
    margin-top: 0;
  }

  .phase3-case-grid > article:first-child .phase3-target {
    padding-right: 0;
    border-right: 0;
  }

  .phase3-case-grid > article:first-child > a {
    width: 100%;
    margin-top: 18px;
  }

  .phase3-score-route {
    margin-top: 20px;
  }

  .phase3-case-cta {
    display: grid;
    gap: 15px;
    padding: 20px;
  }

  .phase3-case-cta > a {
    width: 100%;
    justify-content: center;
  }

  .phase3-process-rail {
    margin-right: -16px;
    padding-right: 16px;
  }

  .phase3-process-rail > article {
    width: min(80vw, 290px);
  }

  .phase3-consult {
    gap: 24px;
    margin-top: 24px;
    padding: 24px 20px;
    border-radius: 19px;
  }

  .phase3-consult h2 {
    font-size: 30px;
  }

  .phase3-consult > div:last-child {
    min-width: 0;
  }

  .phase3-insight-grid {
    grid-template-columns: 1fr;
  }

  .phase3-insight-grid > a,
  .phase3-insight-grid > a:first-child {
    grid-row: auto;
    min-height: 210px;
    padding: 22px;
  }

  .phase3-insight-grid > a:first-child {
    min-height: 300px;
  }

  .phase3-insight-grid > a:first-child > strong {
    font-size: 30px;
  }

  .phase3-faq {
    padding: 70px 0;
  }

  .phase3-footer {
    padding-bottom: 96px;
  }

  .phase3-footer > div {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .phase3-footer nav,
  .phase3-footer small {
    grid-column: auto;
  }

  .phase3-footer nav {
    gap: 4px 18px;
  }

  .phase3-footer p {
    line-height: 1.6;
  }

  .phase3-mobile-cta {
    position: fixed;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    z-index: 38;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    background: #dfbd67;
    box-shadow: 0 15px 34px rgba(4, 42, 50, 0.22);
    color: #17383d;
    font-size: 14px;
    font-weight: 820;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 180ms var(--phase3-ease), transform 180ms var(--phase3-ease);
  }

  .phase3-mobile-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  main.phase3-home *,
  main.phase3-home *::before,
  main.phase3-home *::after {
    scroll-behavior: auto;
    transition-duration: 1ms;
  }

  .phase3-mobile-cta {
    transform: none;
  }
}

/* 2026-08-26 · PC editorial preview
 * Visual direction: image-led hero, Worklife-like typographic scale, and
 * concise route posters. Homepage copy stays editable and routes stay intact.
 * Mobile remains on the approved production composition until PC sign-off.
 */
@media (min-width: 901px) {
  main.phase3-home {
    --phase3-navy: #063e49;
    --phase3-navy-strong: #032f38;
    --phase3-teal: #176d72;
    --phase3-gold: #b68a32;
    --phase3-ink: #0b3037;
    --phase3-muted: #66777a;
    --phase3-line: rgba(3, 47, 56, 0.13);
    --phase3-mist: #e9f0ed;
    --phase3-surface: #f3f5f1;
    --phase3-white: #f7f8f4;
    --phase3-radius: 30px;
    --phase3-radius-small: 20px;
    --phase3-shadow: 0 28px 74px rgba(3, 47, 56, 0.09);
    background: #f7f8f4;
  }

  .phase3-shell {
    width: min(1280px, calc(100% - 80px));
  }

  .phase3-hero {
    min-height: min(780px, 84svh);
    background: #032f38;
  }

  .phase3-hero-media img {
    object-position: center 50%;
    filter: saturate(0.88) contrast(1.03);
    transform: scale(1.015);
  }

  .phase3-hero::after {
    background:
      linear-gradient(90deg, rgba(2, 35, 42, 0.96) 0%, rgba(2, 39, 47, 0.78) 42%, rgba(2, 39, 47, 0.2) 70%, rgba(2, 39, 47, 0.04) 100%),
      linear-gradient(0deg, rgba(2, 35, 42, 0.54), transparent 52%);
  }

  .phase3-hero-copy {
    padding-top: 126px;
    padding-bottom: 82px;
  }

  .phase3-overline {
    margin-bottom: 24px;
    color: #e7cb7f;
    font-size: 12px;
    letter-spacing: 0.22em;
  }

  .phase3-hero h1 {
    max-width: 800px;
    font-family: var(--font-sans, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
    font-size: clamp(64px, 6.15vw, 92px);
    font-weight: 660;
    letter-spacing: -0.065em;
    line-height: 0.98;
  }

  .phase3-hero-copy > p:not(.phase3-overline) {
    max-width: 570px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
    line-height: 1.65;
  }

  .phase3-hero-actions {
    margin-top: 38px;
  }

  .phase3-button {
    min-height: 56px;
    padding-inline: 27px;
    border-radius: 999px;
    font-size: 15px;
  }

  .phase3-button-primary {
    background: #e3c56d;
  }

  .phase3-button-secondary {
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(3, 47, 56, 0.32);
  }

  .phase3-proof {
    margin-top: -48px;
  }

  .phase3-proof > div {
    width: min(1180px, calc(100% - 96px));
    border-color: rgba(255, 255, 255, 0.32);
    border-radius: 24px;
    background: linear-gradient(112deg, rgba(5, 57, 68, 0.94), rgba(18, 103, 108, 0.9));
    box-shadow: 0 28px 68px rgba(3, 47, 56, 0.18), inset 0 1px rgba(255, 255, 255, 0.24);
  }

  .phase3-proof p {
    padding: 25px 30px;
  }

  .phase3-proof strong {
    font-size: 27px;
    letter-spacing: -0.035em;
  }

  .phase3-proof span {
    font-size: 14px;
  }

  .phase3-section-heading {
    margin-bottom: 44px;
  }

  .phase3-section-heading h2 {
    max-width: 900px;
    font-family: var(--font-sans, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
    font-size: clamp(48px, 4.75vw, 66px);
    font-weight: 630;
    letter-spacing: -0.06em;
    line-height: 1.02;
  }

  .phase3-section-heading p {
    max-width: 560px;
    margin-top: 17px;
    font-size: 17px;
    line-height: 1.7;
  }

  .phase3-section-heading-action {
    align-items: flex-end;
  }

  .phase3-section-heading-action > a {
    min-height: 48px;
    border-bottom-color: rgba(3, 47, 56, 0.2);
    font-size: 15px;
  }

  .phase3-decision {
    padding-top: 128px;
    padding-bottom: 112px;
  }

  .phase3-decision .phase3-section-heading {
    max-width: 820px;
    margin-bottom: 54px;
  }

  .phase3-decision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .phase3-decision-grid > article {
    min-height: 420px;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-rows: auto 1fr auto auto;
    align-items: start;
    gap: 22px 22px;
    padding: 38px 40px 36px;
    overflow: hidden;
    border: 1px solid rgba(3, 47, 56, 0.12);
    border-radius: 30px;
    box-shadow: 0 24px 60px rgba(3, 47, 56, 0.08);
  }

  .phase3-decision-grid > article:first-child {
    border-color: rgba(255, 255, 255, 0.14);
    background:
      radial-gradient(circle at 100% 0%, rgba(51, 145, 146, 0.34), transparent 42%),
      linear-gradient(145deg, #03333d, #07515a);
    color: #fff;
  }

  .phase3-decision-grid > article:last-child {
    border-top: 1px solid rgba(3, 47, 56, 0.12);
    background:
      linear-gradient(115deg, rgba(247, 248, 244, 0.76), rgba(219, 235, 229, 0.86));
  }

  .phase3-decision-grid > article:first-child::after {
    position: absolute;
    right: -42px;
    bottom: -68px;
    display: block;
    width: 52%;
    height: 106%;
    background: url('/home-decision-exam-v1.webp') center bottom / contain no-repeat;
    content: "";
    filter: saturate(0.88) drop-shadow(0 26px 30px rgba(1, 24, 29, 0.32));
    opacity: 0.9;
    pointer-events: none;
  }

  .phase3-decision-grid > article:last-child::after {
    position: absolute;
    right: -30px;
    bottom: -82px;
    display: block;
    width: 50%;
    height: 112%;
    background: url('/home-decision-route-v2.webp') center bottom / contain no-repeat;
    content: "";
    filter: saturate(0.86) drop-shadow(0 28px 28px rgba(3, 47, 56, 0.15));
    opacity: 0.94;
    pointer-events: none;
  }

  .phase3-decision-grid > article > span {
    width: 54px;
    height: 54px;
    grid-column: 1;
    grid-row: 1;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(3, 47, 56, 0.96);
    font-size: 15px;
  }

  .phase3-decision-grid > article:first-child > span {
    background: rgba(255, 255, 255, 0.1);
  }

  .phase3-decision-grid > article > div {
    z-index: 1;
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: start;
  }

  .phase3-decision-grid h3 {
    max-width: 12ch;
    margin: 0;
    font-size: 32px;
    font-weight: 650;
    letter-spacing: -0.04em;
    line-height: 1.12;
  }

  .phase3-decision-grid > article:first-child h3 {
    color: #fff;
  }

  .phase3-decision-grid p {
    max-width: 25em;
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.65;
  }

  .phase3-decision-grid > article:first-child p {
    color: rgba(255, 255, 255, 0.68);
  }

  .phase3-decision-grid nav,
  .phase3-decision-grid .phase3-text-link {
    z-index: 1;
    grid-column: 1 / -1;
  }

  .phase3-decision-grid nav {
    max-width: 65%;
    grid-row: 3;
    align-self: end;
  }

  .phase3-decision-grid .phase3-text-link {
    grid-row: 4;
    align-self: end;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid rgba(3, 47, 56, 0.14);
  }

  .phase3-decision-grid > article:first-child .phase3-text-link {
    border-top-color: rgba(255, 255, 255, 0.16);
    color: #e9ce7e;
  }

  .phase3-decision-grid nav a {
    min-height: 39px;
    padding-inline: 15px;
    border-color: rgba(3, 47, 56, 0.15);
    background: rgba(255, 255, 255, 0.76);
    font-size: 13px;
  }

  .phase3-decision-grid > article:first-child nav a {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .phase3-exams {
    background: #f0f2ed;
    color: var(--phase3-ink);
  }

  .phase3-exams > .phase3-shell {
    padding-top: 112px;
    padding-bottom: 118px;
  }

  .phase3-exams .phase3-section-heading h2 {
    color: var(--phase3-navy-strong);
  }

  .phase3-exams .phase3-section-heading p {
    color: var(--phase3-muted) !important;
  }

  .phase3-exams .phase3-section-heading-action > a {
    border-bottom-color: rgba(3, 47, 56, 0.2);
    color: var(--phase3-navy);
  }

  .phase3-exam-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .phase3-exam-rail > article {
    position: relative;
    min-height: 274px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(3, 47, 56, 0.1);
    border-radius: 26px;
    background: #fbfcf8;
    box-shadow: none;
  }

  .phase3-exam-rail > article:nth-child(3n + 1) {
    background: linear-gradient(145deg, #073e49, #0d6269);
    color: #fff;
  }

  .phase3-exam-rail > article:nth-child(3n + 2) {
    background: linear-gradient(145deg, #d9e9e4, #edf3ee);
  }

  .phase3-exam-rail > article:nth-child(3n) {
    background: linear-gradient(145deg, #eef0e9, #e8dfc4);
  }

  .phase3-exam-rail header {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
  }

  .phase3-exam-rail > article::after {
    position: absolute;
    right: -10px;
    bottom: 52px;
    max-width: 92%;
    overflow: hidden;
    color: rgba(3, 47, 56, 0.055);
    content: attr(data-exam);
    font-family: var(--font-sans, sans-serif);
    font-size: clamp(54px, 5.2vw, 76px);
    font-weight: 760;
    letter-spacing: -0.075em;
    line-height: 0.9;
    white-space: nowrap;
  }

  .phase3-exam-rail > article:nth-child(3n + 1)::after {
    color: rgba(255, 255, 255, 0.065);
  }

  .phase3-exam-rail header strong {
    color: var(--phase3-navy-strong);
    font-family: var(--font-sans, sans-serif);
    font-size: clamp(38px, 3.2vw, 50px);
    font-weight: 670;
    letter-spacing: -0.065em;
    line-height: 1;
  }

  .phase3-exam-rail > article:nth-child(3n + 1) header strong {
    color: #fff;
  }

  .phase3-exam-rail header span {
    color: #8e681f;
    font-size: 14px;
  }

  .phase3-exam-rail > article:nth-child(3n + 1) header span {
    color: #e0be67;
  }

  .phase3-exam-rail > article > p {
    display: none;
  }

  .phase3-exam-rail > article > div {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(3, 47, 56, 0.13);
  }

  .phase3-exam-rail > article:nth-child(3n + 1) > div {
    border-top-color: rgba(255, 255, 255, 0.16);
  }

  .phase3-exam-rail > article > div a:first-child {
    color: var(--phase3-navy-strong);
    font-size: 15px;
  }

  .phase3-exam-rail > article:nth-child(3n + 1) > div a:first-child {
    color: #fff;
  }

  .phase3-exam-rail > article > div a:last-child:not(:first-child) {
    color: inherit;
    opacity: 0.58;
  }

  .phase3-destinations {
    padding-top: 128px;
    padding-bottom: 130px;
  }

  .phase3-destinations .phase3-section-heading {
    margin-bottom: 64px;
  }

  .phase3-destination-grid {
    grid-template-columns: minmax(390px, 0.82fr) minmax(0, 1.18fr);
    grid-template-rows: repeat(4, auto);
    gap: 0 84px;
  }

  .phase3-destination-grid::before {
    min-height: 610px;
    background-size: 96% auto;
    filter: drop-shadow(0 36px 32px rgba(3, 47, 56, 0.17));
  }

  .phase3-destination-grid > article {
    min-height: 152px;
    grid-template-columns: minmax(210px, 0.9fr) minmax(0, 1.1fr);
    gap: 8px 28px;
    padding: 24px 0;
  }

  .phase3-destination-grid header > span {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .phase3-destination-grid h3 {
    font-size: 30px;
    font-weight: 640;
    letter-spacing: -0.04em;
  }

  .phase3-destination-grid header small {
    font-size: 13px;
  }

  .phase3-destination-grid > article > p {
    display: none;
  }

  .phase3-destination-grid nav {
    align-self: end;
  }

  .phase3-destination-grid nav a {
    min-height: 36px;
    padding: 0 11px;
    border-color: transparent;
    background: transparent;
    font-size: 13px;
  }

  .phase3-country-link {
    font-size: 14px;
  }

  .phase3-cases {
    background:
      radial-gradient(circle at 86% 14%, rgba(42, 130, 129, 0.16), transparent 30%),
      #eaf1ee;
  }

  .phase3-cases > .phase3-shell {
    padding-top: 122px;
    padding-bottom: 124px;
  }

  .phase3-case-filter {
    margin-bottom: 30px;
  }

  .phase3-case-filter button {
    min-height: 44px;
    padding-inline: 18px;
    background: rgba(255, 255, 255, 0.64);
  }

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

  .phase3-case-grid > article {
    min-height: 330px;
    padding: 28px;
    border-radius: 26px;
    background: rgba(250, 252, 248, 0.9);
    box-shadow: 0 16px 44px rgba(3, 47, 56, 0.06);
  }

  .phase3-case-grid > article:first-child {
    min-height: 430px;
    grid-template-areas:
      "meta meta meta"
      "score score score"
      "target title link"
      "target copy link";
    grid-template-columns: minmax(150px, 0.48fr) minmax(0, 1.52fr) auto;
    padding: 40px 44px 36px;
    border-radius: 30px;
    background:
      linear-gradient(90deg, rgba(2, 36, 43, 0.84), rgba(3, 50, 59, 0.56) 48%, rgba(2, 35, 42, 0.78)),
      linear-gradient(0deg, rgba(2, 35, 42, 0.46), rgba(2, 35, 42, 0.02)),
      url('/home-case-study-v1.webp') center / cover no-repeat;
    box-shadow: 0 30px 68px rgba(3, 47, 56, 0.17);
  }

  .phase3-case-grid > article:first-child .phase3-score-route {
    min-height: 226px;
    margin-top: 24px;
    padding: 38px 20px 42px;
  }

  .phase3-case-grid > article:first-child .phase3-score-route strong {
    font-family: var(--font-sans, sans-serif);
    font-size: clamp(68px, 7.2vw, 96px);
    font-weight: 650;
    letter-spacing: -0.07em;
  }

  .phase3-case-grid > article:first-child h3 {
    font-family: var(--font-sans, sans-serif);
    font-size: 28px;
    font-weight: 620;
    letter-spacing: -0.04em;
  }

  .phase3-case-grid > article:first-child h3 + p {
    max-width: 54ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .phase3-case-grid > article:not(:first-child) .phase3-score-route {
    min-height: 132px;
    margin: 22px 0 18px;
    padding: 24px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(125deg, #e1ece8, #eef3ef);
  }

  .phase3-case-grid > article:nth-child(2) {
    background: rgba(250, 250, 244, 0.96);
  }

  .phase3-case-grid > article:nth-child(3) {
    background: rgba(224, 236, 231, 0.94);
  }

  .phase3-case-grid > article:not(:first-child) .phase3-score-route strong {
    font-size: 28px;
    letter-spacing: -0.035em;
  }

  .phase3-case-grid > article:not(:first-child) h3 {
    font-size: 22px;
  }

  .phase3-case-grid > article:not(:first-child) h3 + p {
    -webkit-line-clamp: 1;
  }

  .phase3-case-cta {
    margin-top: 20px;
    padding: 28px 30px;
    border-radius: 22px;
    background: #073e49;
  }

  .phase3-case-cta strong {
    font-size: 18px;
  }

  .phase3-case-cta span {
    margin-top: 4px;
    font-size: 14px;
  }

  .phase3-service {
    padding-top: 126px;
    padding-bottom: 74px;
  }

  .phase3-process-rail {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--phase3-line);
    border-bottom: 1px solid var(--phase3-line);
  }

  .phase3-process-rail > article {
    min-height: 210px;
    padding: 30px 24px;
    border-top: 0;
    background: transparent;
  }

  .phase3-process-rail > article + article {
    border-left: 1px solid var(--phase3-line);
  }

  .phase3-process-rail > article > span {
    color: rgba(3, 47, 56, 0.18);
    font-size: 48px;
    font-weight: 650;
    letter-spacing: -0.06em;
  }

  .phase3-process-rail h3 {
    margin-top: 36px;
    font-size: 19px;
  }

  .phase3-process-rail p,
  .phase3-process-rail strong {
    display: none;
  }

  .phase3-consult {
    min-height: 280px;
    margin-top: 38px;
    padding: 44px 46px;
    border-radius: 30px;
    background:
      radial-gradient(circle at 88% 10%, rgba(44, 139, 140, 0.28), transparent 34%),
      #03333d;
  }

  .phase3-consult h2 {
    max-width: 690px;
    font-family: var(--font-sans, sans-serif);
    font-size: clamp(44px, 4.2vw, 60px);
    font-weight: 620;
    line-height: 1.02;
  }

  .phase3-consult p {
    max-width: 600px;
    margin-top: 17px;
    font-size: 16px;
  }

  .phase3-consult > div:last-child {
    min-width: 270px;
  }

  .phase3-insights {
    padding-top: 74px;
    padding-bottom: 128px;
    border-top: 0;
  }

  .phase3-insight-grid {
    grid-template-columns: 1.36fr 0.94fr;
    gap: 16px;
  }

  .phase3-insight-grid > a {
    min-height: 205px;
    padding: 30px;
    border: 0;
    border-radius: 24px;
    background: #edf1ed;
  }

  .phase3-insight-grid > a:first-child {
    min-height: 426px;
    padding: 38px;
    background:
      linear-gradient(0deg, rgba(2, 38, 45, 0.9), rgba(2, 38, 45, 0.1)),
      url('/hero-australia-coast.webp') center 48% / cover no-repeat;
  }

  .phase3-insight-grid > a > strong {
    font-size: 23px;
  }

  .phase3-insight-grid > a:first-child > strong {
    max-width: 700px;
    font-family: var(--font-sans, sans-serif);
    font-size: clamp(34px, 3.5vw, 50px);
    font-weight: 610;
    letter-spacing: -0.045em;
    line-height: 1.06;
  }

  .phase3-insight-grid > a:not(:first-child) > p {
    display: none;
  }

  .phase3-faq {
    padding: 116px 0;
    background: #edf2ef;
  }

  .phase3-faq > section {
    width: min(1200px, calc(100% - 80px));
  }

  .phase3-footer {
    padding-top: 58px;
    background: #03333d;
  }
}

/* Generated visual assets keep the two decisions distinct on tablet and mobile. */
@media (max-width: 900px) {
  .phase3-decision-grid {
    gap: 12px;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .phase3-decision-grid > article {
    min-height: 320px;
    overflow: hidden;
    border: 1px solid rgba(3, 47, 56, 0.12);
    border-radius: 24px;
  }

  .phase3-decision-grid > article:first-child {
    border-color: rgba(255, 255, 255, 0.14);
    background: linear-gradient(145deg, #03333d, #07515a);
    color: #fff;
  }

  .phase3-decision-grid > article:last-child {
    background: linear-gradient(115deg, rgba(247, 248, 244, 0.88), rgba(219, 235, 229, 0.94));
  }

  .phase3-decision-grid > article > div,
  .phase3-decision-grid nav,
  .phase3-decision-grid .phase3-text-link {
    position: relative;
    z-index: 1;
  }

  .phase3-decision-grid > article:first-child h3 {
    color: #fff;
  }

  .phase3-decision-grid > article:first-child p {
    color: rgba(255, 255, 255, 0.68);
  }

  .phase3-decision-grid > article:first-child nav a {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .phase3-decision-grid > article:first-child .phase3-text-link {
    color: #e9ce7e;
  }

  .phase3-decision-grid > article::after {
    position: absolute;
    right: -28px;
    bottom: -48px;
    display: block;
    width: 45%;
    height: 82%;
    background-position: center bottom;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    pointer-events: none;
  }

  .phase3-decision-grid > article:first-child::after {
    background-image: url('/home-decision-exam-v1.webp');
    filter: saturate(0.86) drop-shadow(0 18px 22px rgba(1, 24, 29, 0.28));
    opacity: 0.74;
  }

  .phase3-decision-grid > article:last-child::after {
    background-image: url('/home-decision-route-v2.webp');
    filter: saturate(0.84) drop-shadow(0 18px 22px rgba(3, 47, 56, 0.14));
    opacity: 0.86;
  }

  .phase3-decision-grid nav,
  .phase3-decision-grid .phase3-text-link {
    max-width: 72%;
  }

  .phase3-case-grid > article:first-child {
    background:
      linear-gradient(90deg, rgba(2, 36, 43, 0.84), rgba(3, 50, 59, 0.56) 48%, rgba(2, 35, 42, 0.78)),
      linear-gradient(0deg, rgba(2, 35, 42, 0.46), rgba(2, 35, 42, 0.02)),
      url('/home-case-study-v1.webp') center / cover no-repeat;
  }
}

@media (max-width: 700px) {
  .phase3-decision-grid > article {
    min-height: 330px;
  }

  .phase3-decision-grid > article::after {
    right: -24px;
    bottom: -42px;
    display: block;
    width: 48%;
    height: 68%;
  }

  .phase3-decision-grid nav,
  .phase3-decision-grid .phase3-text-link {
    max-width: 70%;
  }
}

/* 2026-08-26 · Conversion hierarchy pass
 * The homepage keeps its editable copy and full records. This layer only
 * improves wide-screen composition, case scanning, and action affordance.
 */
.phase3-section-heading-action > a {
  min-height: 46px;
  padding: 0 6px 0 17px;
  gap: 12px;
  border: 1px solid rgba(3, 47, 56, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
}

.phase3-section-heading-action > a > b,
.phase3-decision-grid .phase3-text-link > b,
.phase3-country-link > b,
.phase3-case-grid > article > a > b {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--phase3-navy);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.phase3-decision-grid > article:first-child .phase3-text-link > b {
  background: #dfbd67;
  color: #17383d;
}

.phase3-exam-rail > article > div {
  gap: 10px;
}

.phase3-exam-rail > article > div a:first-child {
  min-width: 0;
  flex: 1;
  justify-content: space-between;
  padding: 0 6px 0 14px;
  border: 1px solid rgba(3, 47, 56, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.phase3-exam-rail > article > div a:first-child > b {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--phase3-navy);
  color: #fff;
}

.phase3-exam-rail > article > div a:last-child:not(:first-child) {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(3, 47, 56, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  text-decoration: none;
  white-space: nowrap;
}

.phase3-score-route p,
.phase3-score-route strong {
  min-width: 0;
}

.phase3-score-route strong {
  display: block;
  overflow-wrap: anywhere;
}

.phase3-insight-grid > a > b {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding: 0 6px 0 15px;
  border: 1px solid rgba(3, 47, 56, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  font-size: 13px;
  font-style: normal;
}

.phase3-insight-grid > a > b > i {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--phase3-navy);
  color: #fff;
  font-size: 14px;
  font-style: normal;
}

.phase3-insight-grid > a:first-child > b {
  border-color: rgba(223, 189, 103, 0.46);
  background: rgba(3, 47, 56, 0.5);
  color: #f1d27d;
}

.phase3-insight-grid > a:first-child > b > i {
  background: #dfbd67;
  color: #17383d;
}

@media (min-width: 901px) {
  .phase3-hero {
    min-height: min(790px, 84svh);
  }

  .phase3-hero-copy {
    width: min(1540px, calc(100% - 112px));
    padding-top: 132px;
    padding-bottom: 104px;
  }

  .phase3-hero h1 {
    max-width: 10.25em;
    font-size: clamp(62px, 5.25vw, 86px);
    line-height: 0.99;
    white-space: normal;
    text-wrap: balance;
  }

  .phase3-hero-copy > p:not(.phase3-overline) {
    max-width: 35em;
    font-size: 18px;
    line-height: 1.68;
    text-wrap: pretty;
  }

  .phase3-hero::after {
    background:
      linear-gradient(90deg, rgba(2, 35, 42, 0.95) 0%, rgba(2, 39, 47, 0.82) 39%, rgba(2, 39, 47, 0.28) 61%, rgba(2, 39, 47, 0.04) 82%),
      linear-gradient(0deg, rgba(2, 35, 42, 0.5), transparent 54%);
  }

  .phase3-proof {
    margin-top: -54px;
  }

  .phase3-proof > div {
    width: min(1540px, calc(100% - 112px));
  }

  .phase3-proof p {
    padding: 27px 32px;
  }

  .phase3-cases .phase3-section-heading {
    margin-bottom: 30px;
  }

  .phase3-case-grid {
    align-items: start;
    gap: 20px;
  }

  .phase3-case-grid > article {
    align-self: start;
    border-radius: 24px;
  }

  .phase3-case-grid > article:first-child {
    min-height: 0;
    grid-template-areas:
      "meta meta"
      "score score"
      "target target"
      "title link"
      "copy link";
    grid-template-columns: minmax(0, 1fr) 210px;
    grid-template-rows: auto auto auto auto auto;
    gap: 0 42px;
    padding: 36px 40px 38px;
  }

  .phase3-case-grid > article:first-child .phase3-score-route {
    min-height: 196px;
    margin-top: 20px;
    padding: 30px 18px 32px;
  }

  .phase3-case-grid > article:first-child .phase3-score-route strong {
    max-width: 8.8em;
    font-size: clamp(60px, 6vw, 84px);
    line-height: 0.96;
  }

  .phase3-case-grid > article:first-child .phase3-target {
    display: inline-flex;
    width: fit-content;
    min-height: 34px;
    grid-area: target;
    align-items: center;
    align-self: start;
    margin: 20px 0 0;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(3, 47, 56, 0.42);
  }

  .phase3-case-grid > article:first-child h3 {
    align-self: end;
    margin: 22px 0 8px;
    font-size: clamp(27px, 2.7vw, 36px);
    line-height: 1.16;
    text-wrap: balance;
  }

  .phase3-case-grid > article:first-child h3 + p {
    max-width: 62ch;
    margin: 0;
    overflow: hidden;
    white-space: normal;
    text-overflow: clip;
    text-wrap: pretty;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .phase3-case-grid > article:first-child > a {
    min-width: 198px;
    min-height: 54px;
    align-self: end;
    justify-content: space-between;
    margin-top: 22px;
    padding: 0 8px 0 20px;
    border: 0;
    background: #dfbd67;
    box-shadow: 0 14px 30px rgba(1, 27, 32, 0.2);
    color: #17383d;
  }

  .phase3-case-grid > article:first-child > a > b {
    background: #17383d;
    color: #fff;
  }

  .phase3-case-grid > article:not(:first-child) {
    min-height: 388px;
    padding: 30px;
    box-shadow: 0 15px 38px rgba(3, 47, 56, 0.055);
  }

  .phase3-case-grid > article:not(:first-child) .phase3-score-route {
    min-height: 124px;
    grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr);
    margin: 22px 0 17px;
    padding: 22px;
  }

  .phase3-case-grid > article:not(:first-child) .phase3-score-route strong {
    max-width: 12em;
    font-size: clamp(22px, 2.15vw, 30px);
    line-height: 1.18;
  }

  .phase3-case-grid > article:not(:first-child) .phase3-target {
    margin-bottom: 14px;
  }

  .phase3-case-grid > article:not(:first-child) h3 {
    display: -webkit-box;
    margin-bottom: 8px;
    overflow: hidden;
    font-size: clamp(21px, 1.9vw, 26px);
    line-height: 1.28;
    text-wrap: pretty;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .phase3-case-grid > article:not(:first-child) h3 + p {
    margin-bottom: 20px;
    line-height: 1.65;
    -webkit-line-clamp: 2;
  }

  .phase3-case-grid > article:not(:first-child) > a {
    min-height: 52px;
    padding: 0 7px 0 16px;
    border: 1px solid rgba(3, 47, 56, 0.12);
    border-radius: 14px;
    background: rgba(3, 47, 56, 0.045);
  }

  .phase3-case-cta {
    min-height: 104px;
    margin-top: 22px;
    padding: 24px 26px 24px 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
      radial-gradient(circle at 92% 0%, rgba(42, 130, 129, 0.22), transparent 34%),
      #073e49;
  }

  .phase3-case-cta > a {
    min-height: 50px;
    padding-inline: 21px;
    border-radius: 999px;
    background: #dfbd67;
    color: #17383d;
  }

  .phase3-insight-grid > a:first-child {
    background:
      linear-gradient(90deg, rgba(2, 38, 45, 0.94) 0%, rgba(2, 38, 45, 0.76) 46%, rgba(2, 38, 45, 0.18) 86%),
      linear-gradient(0deg, rgba(2, 38, 45, 0.72), rgba(2, 38, 45, 0.04) 70%),
      url('/home-insights-policy-v1.webp') center / cover no-repeat;
  }

  .phase3-insight-grid > a:first-child > strong {
    max-width: 680px;
    font-size: clamp(34px, 3vw, 42px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .phase3-insight-grid > a:not(:first-child) > strong {
    display: -webkit-box;
    overflow: hidden;
    text-wrap: pretty;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .phase3-exam-rail > article:nth-child(3n + 1) > div a:first-child {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
  }

  .phase3-exam-rail > article:nth-child(3n + 1) > div a:first-child > b {
    background: #dfbd67;
    color: #17383d;
  }

  .phase3-exam-rail > article:nth-child(3n + 1) > div a:last-child:not(:first-child) {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 900px) {
  .phase3-exams .phase3-section-heading-action > a {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
  }

  .phase3-exams .phase3-section-heading-action > a > b {
    background: #dfbd67;
    color: #17383d;
  }

  .phase3-exam-rail > article > div a:first-child {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
  }

  .phase3-exam-rail > article > div a:first-child > b {
    background: #dfbd67;
    color: #17383d;
  }

  .phase3-exam-rail > article > div a:last-child:not(:first-child) {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
  }
}

@media (max-width: 700px) {
  .phase3-section-heading-action > a {
    width: fit-content;
  }

  .phase3-case-grid > article:not(:first-child) .phase3-score-route {
    grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr);
  }

  .phase3-case-grid > article:not(:first-child) .phase3-score-route strong {
    font-size: 21px;
    line-height: 1.2;
  }

  .phase3-case-grid > article:not(:first-child) > a {
    padding: 0 6px 0 14px;
    border: 1px solid var(--phase3-line);
    border-radius: 13px;
    background: rgba(3, 47, 56, 0.045);
  }

  .phase3-case-grid > article:first-child > a {
    padding: 0 7px 0 18px;
    border: 0;
    background: #dfbd67;
    color: #17383d;
  }

  .phase3-case-grid > article:first-child > a > b {
    background: #17383d;
  }

  .phase3-insight-grid > a:first-child {
    background:
      linear-gradient(90deg, rgba(2, 38, 45, 0.92), rgba(2, 38, 45, 0.48)),
      linear-gradient(0deg, rgba(2, 38, 45, 0.8), rgba(2, 38, 45, 0.08) 74%),
      url('/home-insights-policy-v1.webp') center / cover no-repeat;
  }
}

@media (hover: hover) and (pointer: fine) {
  .phase3-section-heading-action > a,
  .phase3-exam-rail > article > div a,
  .phase3-case-grid > article > a,
  .phase3-insight-grid > a > b {
    transition:
      color 180ms var(--phase3-ease),
      background-color 180ms var(--phase3-ease),
      border-color 180ms var(--phase3-ease),
      transform 180ms var(--phase3-ease),
      box-shadow 180ms var(--phase3-ease);
  }

  .phase3-section-heading-action > a:hover,
  .phase3-exam-rail > article > div a:hover,
  .phase3-case-grid > article > a:hover {
    border-color: rgba(3, 47, 56, 0.34);
    box-shadow: 0 9px 22px rgba(3, 47, 56, 0.09);
    transform: translateY(-2px);
  }

  .phase3-section-heading-action > a:hover > b,
  .phase3-decision-grid .phase3-text-link:hover > b,
  .phase3-country-link:hover > b,
  .phase3-case-grid > article > a:hover > b,
  .phase3-exam-rail > article > div a:first-child:hover > b,
  .phase3-insight-grid > a:hover > b > i {
    transform: translateX(2px);
  }

  .phase3-section-heading-action > a > b,
  .phase3-decision-grid .phase3-text-link > b,
  .phase3-country-link > b,
  .phase3-case-grid > article > a > b,
  .phase3-exam-rail > article > div a:first-child > b,
  .phase3-insight-grid > a > b > i {
    transition: transform 180ms var(--phase3-ease);
  }
}

/* Final trust/content overrides: keep this at the end of the homepage cascade. */
.phase3-insight-grid > a:first-child {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  isolation: isolate;
  overflow: hidden;
  padding: 38px;
  background: #063c47;
}

.phase3-insight-grid > a:first-child::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(2, 34, 41, .96), rgba(2, 40, 48, .8) 52%, rgba(2, 40, 48, .2));
  content: "";
}

.phase3-insight-grid .phase3-insight-cover {
  display: block;
  object-fit: cover;
}

.phase3-insight-grid > a:first-child .phase3-insight-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.phase3-insight-grid > a:first-child .phase3-insight-copy {
  width: min(68%, 700px);
  align-self: center;
}

.phase3-insight-grid > a:first-child .phase3-insight-copy > strong {
  color: #fff;
  font-size: clamp(33px, 3vw, 43px);
  font-weight: 650;
  line-height: 1.1;
}

.phase3-insight-grid > a:first-child .phase3-insight-copy > p {
  max-width: 58ch;
  color: rgba(255, 255, 255, .72);
}

@media (min-width: 901px) {
  .phase3-hero {
    min-height: min(700px, 74svh);
  }

  .phase3-hero-copy {
    padding-top: 66px;
    padding-bottom: 82px;
  }

  .phase3-overline {
    margin-bottom: 17px;
  }

  .phase3-hero h1 {
    max-width: 760px;
    font-size: clamp(54px, 4.7vw, 74px);
    line-height: .96;
    text-wrap: nowrap;
  }

  .phase3-hero-copy > p:not(.phase3-overline) {
    margin-top: 22px;
    font-size: 17px;
  }

  .phase3-hero-actions {
    margin-top: 28px;
  }

  .phase3-case-grid > article:first-child {
    min-height: 472px;
    grid-template-areas:
      "meta media"
      "title media"
      "copy media"
      "target score"
      "link score";
    grid-template-columns: minmax(0, 1.16fr) minmax(360px, .84fr);
    grid-template-rows: auto auto minmax(62px, 1fr) auto auto;
    gap: 0 42px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: radial-gradient(circle at 8% 6%, rgba(32, 119, 120, .23), transparent 32%), #063b46;
  }

  .phase3-case-grid > article:first-child .phase3-case-media {
    display: block;
    min-width: 0;
    grid-area: media;
    align-self: stretch;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 21px;
  }

  .phase3-case-grid > article:first-child h3 {
    align-self: end;
    margin: 32px 0 10px;
    font-size: clamp(28px, 2.25vw, 35px);
    line-height: 1.16;
  }

  .phase3-case-grid > article:first-child h3 + p {
    align-self: start;
    max-width: 55ch;
    line-height: 1.65;
    -webkit-line-clamp: 2;
  }

  .phase3-case-grid > article:first-child .phase3-target {
    min-height: 34px;
    align-self: center;
    margin: 20px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .phase3-case-grid > article:first-child .phase3-score-route {
    min-height: 98px;
    grid-area: score;
    align-self: end;
    gap: 10px;
    margin: 18px 0 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 17px;
    background: rgba(255, 255, 255, .07);
  }

  .phase3-case-grid > article:first-child .phase3-score-route strong {
    max-width: 10em;
    font-size: clamp(25px, 2.25vw, 38px);
    line-height: 1.05;
  }

  .phase3-case-grid > article:first-child .phase3-score-route > b {
    width: 32px;
    gap: 5px;
    font-size: 15px;
  }

  .phase3-case-grid > article:first-child > a {
    width: fit-content;
    min-width: 190px;
    min-height: 50px;
    align-self: end;
    margin-top: 18px;
  }

  .phase3-case-grid > article:not(:first-child) {
    min-height: 362px;
    background: rgba(250, 252, 249, .94);
  }

  .phase3-case-grid > article:nth-child(3) {
    background: rgba(237, 245, 242, .96);
  }
}

@media (max-width: 900px) {
  .phase3-case-grid > article:first-child {
    display: flex;
    min-height: 0;
    padding: 20px;
    background: #063b46;
  }

  .phase3-case-grid > article:first-child .phase3-case-media {
    display: block;
    order: -1;
    height: 210px;
    margin: -4px -4px 20px;
    overflow: hidden;
    border-radius: 17px;
  }

  .phase3-case-grid > article:first-child .phase3-score-route {
    min-height: 106px;
    margin-top: 18px;
    padding: 17px 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 15px;
    background: rgba(255, 255, 255, .07);
  }

  .phase3-case-grid > article:first-child .phase3-score-route strong {
    font-size: clamp(25px, 8vw, 36px);
  }

  .phase3-insight-grid > a:first-child {
    min-height: 430px;
    padding: 26px;
    background: #063c47;
  }

  .phase3-insight-grid > a:first-child::before {
    background: linear-gradient(0deg, rgba(2, 34, 41, .97), rgba(2, 38, 46, .7) 62%, rgba(2, 38, 46, .16));
  }

  .phase3-insight-grid > a:first-child .phase3-insight-copy {
    width: 100%;
    align-self: end;
  }
}

/* Premium tonal material pass: softer ocean depth, mist surfaces and restrained champagne light. */
.phase3-cases {
  background:
    radial-gradient(ellipse at 88% 4%, rgba(89, 166, 160, 0.13), transparent 34%),
    radial-gradient(ellipse at 12% 96%, rgba(183, 216, 207, 0.2), transparent 38%),
    linear-gradient(180deg, #f1f6f4 0%, #eaf2ef 52%, #f5f7f5 100%);
}

.phase3-case-filter button {
  border-color: rgba(46, 91, 94, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(239, 246, 243, 0.84));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 7px 18px rgba(13, 64, 70, 0.045);
  color: #5c7275;
}

.phase3-case-filter button[aria-pressed="true"] {
  border-color: rgba(173, 221, 213, 0.22);
  background: linear-gradient(140deg, #0a4550 0%, #0d5962 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 11px 24px rgba(8, 58, 66, 0.14);
  color: #f8fbfa;
}

.phase3-case-grid > article {
  border-color: rgba(48, 96, 97, 0.13);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 20px 48px rgba(10, 61, 67, 0.075);
}

.phase3-case-grid > article:first-child {
  border-color: rgba(205, 234, 229, 0.2);
  background:
    radial-gradient(ellipse at 91% -8%, rgba(145, 217, 207, 0.2), transparent 43%),
    radial-gradient(ellipse at 7% 1%, rgba(235, 211, 145, 0.085), transparent 31%),
    linear-gradient(138deg, #0a414d 0%, #0b535e 49%, #073d48 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    inset 0 -1px 0 rgba(0, 29, 35, 0.14),
    0 28px 62px rgba(7, 53, 61, 0.15);
}

.phase3-case-grid > article:first-child > header,
.phase3-case-grid > article:first-child h3 + p {
  color: rgba(236, 246, 243, 0.74);
}

.phase3-case-grid > article:first-child .phase3-case-media {
  border-color: rgba(219, 240, 236, 0.2);
  background: #0a3e47;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 36px rgba(1, 30, 36, 0.18);
}

.phase3-case-media img {
  filter: saturate(0.74) contrast(0.96) brightness(1.04);
}

.phase3-case-grid > article:first-child .phase3-score-route {
  border-color: rgba(219, 241, 236, 0.18);
  background: linear-gradient(135deg, rgba(222, 242, 237, 0.13), rgba(191, 225, 219, 0.065));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 12px 30px rgba(0, 31, 37, 0.08);
}

.phase3-case-grid > article:first-child .phase3-target {
  color: rgba(235, 245, 242, 0.69) !important;
}

.phase3-case-grid > article:first-child > a,
.phase3-case-cta > a,
.phase3-consult a {
  background: linear-gradient(135deg, #ead28e 0%, #d9b85e 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    0 13px 28px rgba(71, 58, 20, 0.16);
  color: #153940;
}

.phase3-case-grid > article:not(:first-child) {
  background: linear-gradient(145deg, rgba(254, 254, 251, 0.98), rgba(243, 248, 245, 0.97));
}

.phase3-case-grid > article:nth-child(3) {
  background: linear-gradient(145deg, rgba(240, 248, 245, 0.98), rgba(228, 239, 235, 0.97));
}

.phase3-case-grid > article:not(:first-child) .phase3-score-route {
  border: 1px solid rgba(53, 101, 100, 0.08);
  background: linear-gradient(140deg, rgba(220, 235, 231, 0.78), rgba(243, 248, 245, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.phase3-case-grid > article:not(:first-child) > a {
  border-color: rgba(48, 96, 97, 0.14);
  background: linear-gradient(145deg, rgba(247, 250, 248, 0.82), rgba(228, 239, 235, 0.74));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.phase3-consult {
  border: 1px solid rgba(205, 234, 229, 0.19);
  background:
    radial-gradient(ellipse at 88% -9%, rgba(139, 211, 201, 0.18), transparent 42%),
    radial-gradient(ellipse at 8% 105%, rgba(235, 211, 145, 0.065), transparent 36%),
    linear-gradient(136deg, #083d48 0%, #0a505a 50%, #073a45 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    inset 0 -1px 0 rgba(0, 27, 33, 0.14),
    0 25px 58px rgba(7, 52, 59, 0.14);
}

.phase3-consult p {
  color: rgba(237, 247, 244, 0.74);
}

.phase3-consult button {
  border-color: rgba(218, 240, 235, 0.2);
  background: linear-gradient(145deg, rgba(229, 245, 241, 0.075), rgba(170, 215, 208, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.phase3-consult button small {
  color: rgba(237, 247, 244, 0.68);
}

@media (hover: hover) and (pointer: fine) {
  .phase3-case-filter button:hover:not([aria-pressed="true"]),
  .phase3-case-grid > article:not(:first-child):hover {
    border-color: rgba(45, 103, 103, 0.21);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      0 24px 52px rgba(8, 60, 66, 0.095);
  }

  .phase3-case-grid > article:first-child:hover,
  .phase3-consult:hover {
    border-color: rgba(202, 234, 228, 0.27);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.15),
      inset 0 -1px 0 rgba(0, 27, 33, 0.13),
      0 31px 68px rgba(7, 52, 59, 0.17);
  }

  .phase3-consult a:hover,
  .phase3-case-grid > article:first-child > a:hover {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.52),
      0 16px 32px rgba(71, 58, 20, 0.2);
    transform: translateY(-2px);
  }
}

/* Secondary case cards: editorial evidence hierarchy instead of nested form panels. */
.phase3-case-grid > article:not(:first-child) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.phase3-case-grid > article:not(:first-child)::before {
  position: absolute;
  inset: 0 24px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.92), transparent);
  content: "";
  pointer-events: none;
}

.phase3-case-grid > article:nth-child(2) {
  background:
    radial-gradient(ellipse at 88% 2%, rgba(182, 219, 210, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(254, 254, 251, 0.99), rgba(243, 248, 245, 0.98));
}

.phase3-case-grid > article:nth-child(3) {
  background:
    radial-gradient(ellipse at 92% 0%, rgba(255, 255, 255, 0.7), transparent 34%),
    linear-gradient(145deg, rgba(238, 247, 244, 0.99), rgba(226, 238, 234, 0.98));
}

.phase3-case-grid > article:not(:first-child) > header {
  min-height: 28px;
  color: #526e72;
  font-size: 12px;
  letter-spacing: 0.01em;
}

.phase3-case-grid > article:not(:first-child) > header strong {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(173, 133, 50, 0.14);
  border-radius: 999px;
  background: rgba(222, 191, 111, 0.11);
  color: #84631f;
  font-weight: 760;
}

.phase3-case-grid > article:not(:first-child) .phase3-score-route {
  position: relative;
  min-height: 96px;
  margin: 16px 0 13px;
  padding: 15px 4px;
  border: 0;
  border-top: 1px solid rgba(54, 102, 101, 0.12);
  border-bottom: 1px solid rgba(54, 102, 101, 0.12);
  border-radius: 0;
  background: linear-gradient(90deg, rgba(203, 226, 220, 0.2), rgba(255, 255, 255, 0.4) 50%, rgba(203, 226, 220, 0.2));
  box-shadow: none;
}

.phase3-case-grid > article:not(:first-child) .phase3-score-route small {
  margin-bottom: 6px;
  color: #637b7e;
  font-size: 11px;
}

.phase3-case-grid > article:not(:first-child) .phase3-score-route strong {
  color: #073b45;
  font-size: clamp(24px, 2.05vw, 30px);
  font-weight: 680;
  letter-spacing: -0.035em;
}

.phase3-case-grid > article:not(:first-child) .phase3-score-route > b {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(187, 145, 58, 0.18);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(238, 213, 150, 0.58), rgba(219, 185, 97, 0.38));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
  color: #74551a;
  font-size: 13px;
}

.phase3-case-grid > article:not(:first-child) .phase3-target {
  display: inline-flex;
  width: fit-content;
  min-height: 29px;
  align-items: center;
  margin: 0 0 13px;
  padding: 0 10px;
  border: 1px solid rgba(48, 96, 97, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  color: #60777a;
}

.phase3-case-grid > article:not(:first-child) h3 {
  margin-bottom: 7px;
  color: #073b45;
  font-size: clamp(21px, 1.7vw, 24px);
  font-weight: 620;
  letter-spacing: -0.025em;
  line-height: 1.32;
}

.phase3-case-grid > article:not(:first-child) h3 + p {
  margin-bottom: 17px;
  color: #62777a;
  font-size: 13px;
  line-height: 1.62;
}

.phase3-case-grid > article:not(:first-child) > a {
  width: fit-content;
  min-width: 176px;
  min-height: 48px;
  align-self: flex-start;
  justify-content: space-between;
  padding: 0 7px 0 17px;
  border: 1px solid rgba(177, 218, 211, 0.18);
  border-radius: 999px;
  background: linear-gradient(140deg, #0a4550 0%, #0c5660 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 11px 24px rgba(7, 55, 62, 0.12);
  color: #f8fbfa;
}

.phase3-case-grid > article:not(:first-child) > a > b {
  background: linear-gradient(145deg, #ead28e, #d9b85e);
  color: #173940;
}

@media (min-width: 901px) {
  .phase3-case-grid > article:not(:first-child) {
    min-height: 376px;
    padding: 26px 28px 27px;
  }

  .phase3-case-grid > article:not(:first-child) h3 {
    min-height: 2.64em;
  }
}

@media (max-width: 700px) {
  .phase3-case-grid > article:not(:first-child) {
    min-height: 0;
    padding: 20px;
  }

  .phase3-case-grid > article:not(:first-child) .phase3-score-route {
    min-height: 92px;
    grid-template-columns: minmax(0, 1fr) 31px minmax(0, 1fr);
    padding: 14px 2px;
  }

  .phase3-case-grid > article:not(:first-child) .phase3-score-route strong {
    font-size: 23px;
  }

  .phase3-case-grid > article:not(:first-child) h3 {
    font-size: 21px;
  }

  .phase3-case-grid > article:not(:first-child) > a {
    width: 100%;
    min-width: 0;
    align-self: stretch;
  }
}

@media (hover: hover) and (pointer: fine) {
  .phase3-case-grid > article:not(:first-child) > a:hover {
    border-color: rgba(203, 233, 228, 0.26);
    background: linear-gradient(140deg, #0b4c56 0%, #0e6068 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.15),
      0 14px 28px rgba(7, 55, 62, 0.16);
    transform: translateY(-2px);
  }
}

/* Exam evidence links, editorial feature balance and footer contrast repair. */
.phase3-exam-rail > article > div a:last-child:not(:first-child) {
  min-width: 104px;
  min-height: 48px;
  justify-content: center;
  padding: 0 17px;
  border-color: rgba(35, 82, 85, 0.18);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(231, 241, 237, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 8px 18px rgba(23, 70, 75, 0.07);
  color: #174951;
  font-size: 14px;
  font-weight: 720;
  letter-spacing: 0.01em;
  opacity: 1;
}

main.phase3-home .phase3-footer {
  background:
    radial-gradient(ellipse at 86% 0%, rgba(92, 171, 164, 0.2), transparent 38%),
    linear-gradient(135deg, #073f49 0%, #052f39 58%, #042a33 100%);
  color: #f8fbfa;
}

main.phase3-home .phase3-footer-brand,
main.phase3-home .phase3-footer-brand strong {
  color: #f8fbfa;
}

main.phase3-home .phase3-footer-brand span {
  color: #e7c56e;
}

main.phase3-home .phase3-footer p {
  color: #c9dbd8;
}

main.phase3-home .phase3-footer nav {
  border-top-color: rgba(219, 237, 232, 0.17);
}

main.phase3-home .phase3-footer nav a {
  color: #e0ebe8;
  font-weight: 620;
}

main.phase3-home .phase3-footer small {
  color: #9fb8b5;
}

@media (min-width: 901px) {
  .phase3-exam-rail > article:nth-child(3n + 1) > div a:last-child:not(:first-child) {
    border-color: rgba(229, 244, 239, 0.21);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(166, 211, 202, 0.08));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 8px 18px rgba(0, 26, 32, 0.12);
    color: #f1f7f5;
  }

  .phase3-insight-grid > a:first-child {
    grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
    grid-template-rows: 1fr auto;
    padding: clamp(38px, 3.5vw, 54px);
  }

  .phase3-insight-grid > a:first-child::before {
    background: linear-gradient(90deg, rgba(2, 34, 41, 0.96) 0%, rgba(2, 39, 47, 0.86) 42%, rgba(2, 39, 47, 0.42) 64%, rgba(2, 39, 47, 0.12) 100%);
  }

  .phase3-insight-grid > a:first-child .phase3-insight-cover {
    object-position: 68% center;
  }

  .phase3-insight-grid > a:first-child .phase3-insight-copy {
    width: 100%;
    max-width: 570px;
    grid-column: 1;
    justify-self: start;
    align-self: center;
  }

  .phase3-insight-grid > a:first-child .phase3-insight-copy > strong {
    max-width: 11.5em;
    font-size: clamp(34px, 2.8vw, 44px);
    line-break: strict;
    text-wrap: balance;
  }

  .phase3-insight-grid > a:first-child > b {
    grid-column: 1;
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .phase3-exam-rail > article > div a:last-child:not(:first-child) {
    min-width: 100px;
    min-height: 46px;
    padding-inline: 15px;
    border-color: rgba(229, 244, 239, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(164, 210, 201, 0.07));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: #f1f7f5;
  }
}

@media (hover: hover) and (pointer: fine) {
  .phase3-exam-rail > article > div a:last-child:not(:first-child):hover {
    border-color: rgba(38, 91, 92, 0.31);
    background: linear-gradient(145deg, #ffffff, #e7f1ed);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.96),
      0 11px 22px rgba(21, 67, 71, 0.11);
  }

  main.phase3-home .phase3-footer nav a:hover {
    color: #f0ca67;
  }

  .phase3-exam-rail > article:nth-child(3n + 1) > div a:last-child:not(:first-child):hover {
    border-color: rgba(231, 246, 241, 0.33);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.19), rgba(166, 211, 202, 0.11));
  }
}

/* Country-intent index: concise editorial rows; the globe now belongs to verified case coverage. */
.phase3-destination-grid {
  grid-template-columns: 1fr;
  grid-template-rows: none;
  gap: 0;
  border-top: 1px solid rgba(39, 83, 87, .16);
}

.phase3-destination-grid::before {
  display: none;
  content: none;
}

.phase3-destination-grid > article,
.phase3-destination-grid > article:nth-child(2),
.phase3-destination-grid > article:nth-child(3) {
  min-height: 148px;
  grid-column: 1;
  grid-template-columns: minmax(190px, .7fr) minmax(260px, 1.28fr) minmax(220px, .84fr) minmax(176px, .58fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 6px 28px;
  padding: 25px 10px;
  border: 0;
  border-bottom: 1px solid rgba(39, 83, 87, .16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.phase3-destination-grid > article:hover {
  border-color: rgba(39, 83, 87, .22);
  background: linear-gradient(90deg, rgba(223, 238, 233, .36), rgba(250, 251, 247, .08));
  box-shadow: none;
  transform: none;
}

.phase3-destination-grid header {
  grid-column: 1;
  grid-row: 1 / 3;
}

.phase3-destination-grid > article > p:not(.phase3-country-requirement) {
  display: block;
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  color: #9a711d;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .04em;
}

.phase3-destination-grid > article > .phase3-country-requirement {
  display: block;
  max-width: 44ch;
  grid-column: 2;
  grid-row: 2;
  margin: 4px 0 0;
}

.phase3-destination-grid nav {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
}

.phase3-destination-grid nav a {
  min-height: 36px;
  padding-inline: 11px;
  border-color: rgba(43, 89, 91, .12);
  background: rgba(255, 255, 255, .54);
}

.phase3-destination-grid .phase3-country-link {
  min-height: 48px;
  grid-column: 4;
  grid-row: 1 / 3;
  justify-content: space-between;
  padding: 0 7px 0 16px;
  border: 1px solid rgba(39, 83, 87, .16);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .74), rgba(229, 239, 235, .62));
}

.phase3-destination-grid .phase3-country-link b {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  background: #0a4a54;
  color: #fff;
}

@media (max-width: 1000px) {
  .phase3-destination-grid > article,
  .phase3-destination-grid > article:nth-child(2),
  .phase3-destination-grid > article:nth-child(3) {
    grid-template-columns: minmax(170px, .7fr) minmax(240px, 1.3fr) minmax(190px, .8fr);
  }

  .phase3-destination-grid .phase3-country-link {
    width: fit-content;
    grid-column: 2;
    grid-row: 3;
  }

  .phase3-destination-grid nav {
    grid-row: 1 / 4;
  }
}

@media (max-width: 800px) {
  .phase3-destination-grid {
    gap: 0;
  }

  .phase3-destination-grid > article,
  .phase3-destination-grid > article:nth-child(2),
  .phase3-destination-grid > article:nth-child(3) {
    min-height: 0;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto auto;
    gap: 10px 16px;
    padding: 24px 0;
  }

  .phase3-destination-grid header {
    grid-column: 1;
    grid-row: 1;
  }

  .phase3-destination-grid > article > p:not(.phase3-country-requirement) {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 3px;
  }

  .phase3-destination-grid > article > .phase3-country-requirement {
    grid-column: 1 / -1;
    grid-row: 3;
    margin: 0;
  }

  .phase3-destination-grid nav {
    grid-column: 1 / -1;
    grid-row: 4;
  }

  .phase3-destination-grid .phase3-country-link {
    width: 48px;
    min-width: 48px;
    grid-column: 2;
    grid-row: 1;
    padding: 0 7px;
    overflow: hidden;
    color: transparent;
  }
}

/* 2026-08-27 · Mobile reading rhythm and overflow repair. */
@media (max-width: 800px) {
  main.phase3-home {
    max-width: 100%;
    overflow-x: clip;
  }

  .phase3-shell,
  .phase3-faq > section {
    width: min(100% - 32px, 1180px);
  }

  .phase3-hero {
    min-height: clamp(580px, 82svh, 630px);
    align-items: end;
  }

  .phase3-hero-copy {
    width: min(100% - 32px, 1180px);
    padding-top: 88px;
    padding-bottom: 48px;
  }

  .phase3-hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(35px, 9.6vw, 42px);
    font-weight: 660;
    letter-spacing: -0.045em;
    line-height: 1.08;
    white-space: normal;
    text-wrap: wrap;
    overflow-wrap: anywhere;
  }

  .phase3-hero-title-line {
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }

  .phase3-overline {
    margin-bottom: 12px;
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .phase3-hero-copy > p:not(.phase3-overline) {
    max-width: 32em;
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.58;
  }

  .phase3-hero-actions {
    gap: 8px;
    margin-top: 20px;
  }

  .phase3-button {
    min-height: 48px;
    font-size: 14px;
  }

  .phase3-proof {
    margin-top: 0;
    padding-top: 14px;
    background: #f7f8f4;
  }

  .phase3-proof > div {
    width: min(100% - 32px, 1180px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border-color: rgba(7, 60, 72, 0.12);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(5, 47, 57, 0.1), inset 0 1px rgba(255, 255, 255, 0.16);
  }

  .phase3-proof p {
    min-height: 74px;
    align-content: center;
    padding: 14px 16px;
  }

  .phase3-proof p:nth-child(3),
  .phase3-proof p:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .phase3-proof p:nth-child(3) {
    border-left: 0;
  }

  .phase3-proof strong {
    font-size: 18px;
    letter-spacing: -0.025em;
  }

  .phase3-proof span {
    font-size: 11px;
  }

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

  .phase3-section-heading h2 {
    max-width: 13em;
    font-size: clamp(28px, 7.8vw, 32px);
    letter-spacing: -0.04em;
    line-height: 1.12;
    text-wrap: balance;
  }

  .phase3-section-heading p {
    max-width: 36em;
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.6;
    text-wrap: pretty;
  }

  .phase3-section-heading-action {
    display: block;
  }

  .phase3-section-heading-action > a {
    min-height: 44px;
    margin-top: 12px;
    font-size: 13px;
  }

  .phase3-decision {
    padding-top: 52px;
    padding-bottom: 56px;
  }

  .phase3-decision-grid {
    gap: 10px;
  }

  .phase3-decision-grid > article {
    min-height: 0;
    grid-template-columns: 38px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 12px;
    padding: 18px;
    overflow: hidden;
    border-radius: 18px;
  }

  .phase3-decision-grid > article::after {
    display: none;
    content: none;
  }

  .phase3-decision-grid > article > span {
    width: 38px;
    height: 38px;
    grid-row: 1;
    font-size: 12px;
  }

  .phase3-decision-grid > article > div {
    min-width: 0;
  }

  .phase3-decision-grid h3 {
    font-size: 19px;
    line-height: 1.3;
  }

  .phase3-decision-grid p {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.55;
  }

  .phase3-decision-grid nav,
  .phase3-decision-grid .phase3-text-link {
    max-width: none;
    grid-column: 1 / -1;
  }

  .phase3-decision-grid nav {
    grid-row: 2;
    gap: 6px;
  }

  .phase3-decision-grid .phase3-text-link {
    grid-row: 3;
    min-height: 42px;
  }

  .phase3-exams > .phase3-shell,
  .phase3-cases > .phase3-shell,
  .phase3-destinations,
  .phase3-service,
  .phase3-insights {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .phase3-exam-rail {
    gap: 10px;
    margin-right: 0;
    padding-right: 0;
    padding-bottom: 6px;
  }

  .phase3-exam-rail > article {
    width: min(calc(100vw - 64px), 300px);
    min-height: 196px;
    padding: 18px;
    border-radius: 18px;
  }

  .phase3-exam-rail header strong {
    font-size: 27px;
  }

  .phase3-exam-rail > article > p {
    display: -webkit-box;
    margin: 14px 0 17px;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.58;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .phase3-exam-rail > article > div {
    gap: 8px;
  }

  .phase3-exam-rail > article > div a:first-child,
  .phase3-exam-rail > article > div a:last-child:not(:first-child) {
    min-height: 44px;
  }

  .phase3-destination-grid {
    width: 100%;
    gap: 0;
    border-top-color: rgba(39, 83, 87, 0.14);
  }

  .phase3-destination-grid > article,
  .phase3-destination-grid > article:nth-child(2),
  .phase3-destination-grid > article:nth-child(3) {
    width: 100%;
    min-width: 0;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto auto auto;
    align-content: start;
    gap: 9px;
    padding: 20px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(39, 83, 87, 0.14);
  }

  .phase3-destination-grid header {
    min-width: 0;
    grid-column: 1;
    grid-row: 1;
    gap: 12px;
  }

  .phase3-destination-grid header > span {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 12px;
    font-size: 12px;
  }

  .phase3-destination-grid h3 {
    font-size: 24px;
    line-height: 1.15;
  }

  .phase3-destination-grid header small {
    font-size: 12px;
  }

  .phase3-destination-grid > article > p:not(.phase3-country-requirement) {
    min-width: 0;
    grid-column: 1;
    grid-row: 2;
    margin: 2px 0 0;
    font-size: 12px;
    line-height: 1.45;
  }

  .phase3-destination-grid > article > .phase3-country-requirement {
    max-width: 36em;
    min-width: 0;
    grid-column: 1;
    grid-row: 3;
    margin: 0;
    font-size: 14px !important;
    line-height: 1.58 !important;
    overflow-wrap: anywhere;
  }

  .phase3-destination-grid nav {
    min-width: 0;
    max-width: 100%;
    grid-column: 1;
    grid-row: 4;
    align-self: start;
    flex-wrap: wrap;
    gap: 7px;
    overflow: visible;
  }

  .phase3-destination-grid nav a {
    max-width: 100%;
    min-height: 38px;
    padding-inline: 12px;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .phase3-destination-grid .phase3-country-link {
    width: fit-content;
    min-width: 0;
    min-height: 44px;
    grid-column: 1;
    grid-row: 5;
    justify-content: space-between;
    margin-top: 2px;
    padding: 0 6px 0 15px;
    overflow: visible;
    color: #174951;
    font-size: 13px;
  }

  .phase3-destination-grid .phase3-country-link b {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .phase3-case-coverage {
    min-height: 0;
    margin: 22px 0 20px;
    padding: 22px 18px;
    gap: 20px;
    border-radius: 20px;
  }

  .phase3-case-coverage-copy h3 {
    max-width: 12em;
    font-size: 29px;
    line-height: 1.12;
  }

  .phase3-case-coverage-copy > p:not(.phase3-overline) {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.6;
  }

  .phase3-case-coverage-copy dl {
    margin: 18px 0;
  }

  .phase3-case-coverage-copy dl > div {
    padding: 14px 10px 14px 0;
  }

  .phase3-case-coverage-copy dt {
    font-size: 23px;
  }

  .phase3-case-coverage-copy > a {
    min-height: 44px;
  }

  .phase3-case-coverage-visual {
    min-height: 0;
  }

  .phase3-coverage-globe {
    display: none;
  }

  .phase3-coverage-points {
    position: static;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .phase3-coverage-points a,
  .phase3-coverage-points a[data-region] {
    min-width: 0;
    min-height: 44px;
    position: static;
    transform: none;
  }

  .phase3-coverage-points a small {
    display: none;
  }

  .phase3-case-coverage-visual > p {
    margin-top: 10px;
    position: static;
  }

  .phase3-case-filter {
    margin: 0 0 18px;
    padding-right: 0;
  }

  .phase3-case-grid {
    gap: 10px;
  }

  .phase3-case-grid > article {
    padding: 19px;
    border-radius: 18px;
  }

  .phase3-case-grid > article:first-child {
    min-height: 0;
    padding: 21px 19px;
  }

  .phase3-case-grid > article:first-child .phase3-score-route {
    min-height: 112px;
    margin: 14px 0;
    padding: 15px 12px;
  }

  .phase3-case-grid > article:first-child .phase3-score-route strong {
    font-size: clamp(28px, 8.4vw, 36px);
  }

  .phase3-case-grid > article:first-child .phase3-score-route > b {
    width: 52px;
  }

  .phase3-case-grid > article:not(:first-child) {
    padding: 19px;
  }

  .phase3-case-grid > article:not(:first-child) .phase3-score-route {
    min-height: 80px;
    padding-block: 10px;
  }

  .phase3-case-grid > article:not(:first-child) .phase3-score-route strong {
    font-size: 21px;
  }

  .phase3-case-grid > article h3,
  .phase3-case-grid > article:not(:first-child) h3 {
    font-size: 20px;
    line-height: 1.32;
  }

  .phase3-case-cta {
    gap: 12px;
    margin-top: 16px;
    padding: 18px;
  }

  .phase3-process-rail {
    gap: 10px;
    margin-right: 0;
    padding-right: 0;
  }

  .phase3-process-rail > article {
    width: min(calc(100vw - 64px), 280px);
    padding: 19px;
  }

  .phase3-consult {
    gap: 18px;
    margin-top: 18px;
    padding: 20px 18px;
    border-radius: 18px;
  }

  .phase3-consult h2 {
    font-size: 28px;
    line-height: 1.15;
  }

  .phase3-consult p {
    font-size: 14px;
    line-height: 1.6;
  }

  .phase3-insight-grid {
    gap: 10px;
  }

  .phase3-insight-grid > a,
  .phase3-insight-grid > a:first-child {
    min-height: 180px;
    padding: 19px;
    border-radius: 18px;
  }

  .phase3-insight-grid > a:first-child {
    min-height: 260px;
  }

  .phase3-insight-grid > a:first-child .phase3-insight-copy {
    width: 100%;
  }

  .phase3-insight-grid > a:first-child .phase3-insight-copy > strong {
    font-size: 27px;
    line-height: 1.14;
  }

  .phase3-insight-copy > strong {
    margin-top: 10px;
    font-size: 20px;
  }

  .phase3-insight-copy > p {
    margin-top: 7px;
    line-height: 1.55;
  }

  .phase3-faq {
    padding: 56px 0;
  }
}

@media (max-width: 420px) {
  .phase3-shell,
  .phase3-faq > section,
  .phase3-hero-copy,
  .phase3-proof > div {
    width: calc(100% - 28px);
  }

  .phase3-hero {
    min-height: 570px;
  }

  .phase3-hero-copy {
    padding-top: 82px;
    padding-bottom: 42px;
  }

  .phase3-hero h1 {
    font-size: clamp(33px, 9.2vw, 38px);
    line-height: 1.1;
  }

  .phase3-proof p {
    min-height: 70px;
    padding: 12px 13px;
  }

  .phase3-section-heading h2 {
    font-size: 28px;
  }

  .phase3-decision-grid > article {
    padding: 16px;
  }

  .phase3-destination-grid > article,
  .phase3-destination-grid > article:nth-child(2),
  .phase3-destination-grid > article:nth-child(3) {
    padding: 18px 0;
  }

  .phase3-case-coverage {
    padding: 20px 16px;
  }

  .phase3-case-coverage-copy dl > div {
    padding-inline: 7px;
  }

  .phase3-case-coverage-copy dt {
    font-size: 22px;
  }

  .phase3-coverage-points {
    grid-template-columns: 1fr;
  }
}

/* 2026-08-27 · Desktop proof placement and section rhythm repair. */
@media (min-width: 901px) {
  .phase3-proof {
    margin-top: 0;
    padding-top: 20px;
    background: #f7f8f4;
  }

  .phase3-proof > div {
    width: min(1450px, calc(100% - 64px));
    overflow: hidden;
    border-color: rgba(7, 60, 72, 0.13);
    border-radius: 18px;
    box-shadow:
      0 18px 42px rgba(5, 47, 57, 0.11),
      inset 0 1px rgba(255, 255, 255, 0.18);
  }

  .phase3-proof p {
    min-height: 88px;
    align-content: center;
    padding: 19px 28px;
  }

  .phase3-proof strong {
    font-size: 25px;
    letter-spacing: -0.03em;
  }

  .phase3-proof span {
    font-size: 13px;
  }

  .phase3-decision {
    padding-top: 60px;
  }
}

/* 2026-08-27 · Hero density balance across desktop and mobile. */
@media (min-width: 901px) {
  .phase3-hero h1 {
    display: grid;
    max-width: 800px;
    gap: 0.07em;
    font-size: clamp(52px, 4.4vw, 68px);
    letter-spacing: -0.04em;
    line-height: 1;
    white-space: normal;
    text-wrap: balance;
  }

  .phase3-hero-title-line {
    line-height: 1.02;
  }
}

@media (max-width: 800px) {
  .phase3-hero {
    min-height: 0;
    align-items: start;
  }

  .phase3-hero-copy {
    padding-top: 48px;
    padding-bottom: 50px;
  }

  .phase3-hero h1 {
    display: grid;
    gap: 0.06em;
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .phase3-hero-title-line {
    line-height: 1.04;
  }
}

@media (max-width: 420px) {
  .phase3-hero {
    min-height: 0;
  }

  .phase3-hero-copy {
    padding-top: 44px;
    padding-bottom: 46px;
  }
}

