:root {
  --navy-950: #061633;
  --navy-900: #081d42;
  --navy-800: #102b57;
  --navy-700: #183b70;
  --gold-600: #ad8040;
  --gold-500: #c49a59;
  --gold-300: #dfc28f;
  --cream-100: #f7f4ed;
  --cream-50: #fbfaf7;
  --white: #ffffff;
  --ink: #15233a;
  --muted: #647084;
  --line: #dce2e9;
  --success: #1f7452;
  --danger: #a33737;
  --shadow-sm: 0 12px 30px rgba(7, 29, 66, 0.08);
  --shadow-lg: 0 28px 70px rgba(7, 29, 66, 0.14);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1200px;
  --header-height: 78px;
  --font-sans: Inter, "Avenir Next", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Avenir Next", Inter, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--navy-700);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.container--narrow {
  width: min(calc(100% - 40px), 850px);
  margin-inline: auto;
}

.section {
  padding: clamp(76px, 9vw, 128px) 0;
}

.section--compact {
  padding: clamp(56px, 7vw, 88px) 0;
}

.section--cream {
  background: var(--cream-50);
}

.section--navy {
  color: var(--white);
  background: var(--navy-900);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 46px;
}

.section-heading__copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold-600);
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section--navy .eyebrow,
.dark-panel .eyebrow {
  color: var(--gold-300);
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.55rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

h4 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.section--navy h1,
.section--navy h2,
.section--navy h3,
.dark-panel h2,
.dark-panel h3,
.page-hero--dark h1 {
  color: var(--white);
}

p {
  margin: 0 0 1.2em;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.7;
}

.section--navy .lead,
.dark-panel .lead,
.page-hero--dark .lead {
  color: #ccd5e2;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy-800);
  font-weight: 750;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 10px 24px rgba(8, 29, 66, 0.2);
}

.button--primary:hover {
  background: var(--navy-700);
  box-shadow: 0 14px 28px rgba(8, 29, 66, 0.24);
}

.button--gold {
  color: var(--navy-950);
  background: var(--gold-300);
}

.button--gold:hover {
  background: #efd6a7;
}

.button--outline {
  color: var(--navy-900);
  background: transparent;
  border-color: #9aa6b8;
}

.button--outline:hover {
  border-color: var(--navy-900);
}

.button--light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.36);
}

.button--light:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--white);
}

.button--block {
  width: 100%;
}

.topbar {
  color: #e0e6ef;
  background: var(--navy-950);
  font-size: 0.78rem;
}

.topbar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.topbar a {
  text-decoration: none;
}

.topbar a:hover {
  color: var(--gold-300);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(8, 29, 66, 0.09);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(6, 22, 51, 0.08);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--navy-950);
  text-decoration: none;
}

.brand__mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand__text {
  display: grid;
  line-height: 1;
}

.brand__name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brand__sub {
  margin-top: 5px;
  color: var(--gold-600);
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.site-nav,
.site-nav__list {
  display: flex;
  align-items: center;
}

.site-nav {
  gap: 24px;
}

.site-nav__list {
  margin: 0;
  padding: 0;
  gap: 5px;
  list-style: none;
}

.site-nav__link,
.nav-dropdown__toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 9px 11px;
  color: #26354d;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.91rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav__link:hover,
.site-nav__link[aria-current="page"],
.nav-dropdown__toggle:hover,
.nav-dropdown__toggle[aria-expanded="true"] {
  color: var(--navy-900);
  background: var(--cream-100);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle::after {
  width: 7px;
  height: 7px;
  margin: -4px 0 0 8px;
  content: "";
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.nav-dropdown__toggle[aria-expanded="true"]::after {
  margin-top: 3px;
  transform: rotate(225deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 290px;
  margin: 0;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown.is-open .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 11px 13px;
  border-radius: 10px;
  color: var(--ink);
  font-size: 0.9rem;
  text-decoration: none;
}

.nav-dropdown__menu a:hover {
  color: var(--navy-900);
  background: var(--cream-100);
}

.header-cta {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.88rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--navy-900);
  background: var(--cream-100);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  width: 21px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle__icon {
  position: relative;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
  position: absolute;
  left: 0;
}

.menu-toggle__icon::before { top: -7px; }
.menu-toggle__icon::after { top: 7px; }

.menu-toggle[aria-expanded="true"] .menu-toggle__icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 12%, rgba(196, 154, 89, 0.18), transparent 24%),
    linear-gradient(145deg, #fbfaf7 0%, #f4f0e8 100%);
}

.hero::before {
  position: absolute;
  right: -160px;
  bottom: -260px;
  width: 570px;
  height: 570px;
  content: "";
  border: 1px solid rgba(173, 128, 64, 0.18);
  border-radius: 50%;
}

.hero__inner {
  display: grid;
  min-height: min(790px, calc(100svh - 112px));
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.78fr);
  gap: clamp(48px, 7vw, 100px);
  padding-top: clamp(75px, 9vw, 120px);
  padding-bottom: clamp(75px, 9vw, 120px);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__copy h1 {
  max-width: 780px;
}

.hero__copy h1 span {
  color: var(--gold-600);
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin-top: 38px;
  color: #4c5b70;
  font-size: 0.86rem;
  font-weight: 650;
}

.hero__proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__proof span::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--gold-500);
  border-radius: 50%;
}

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

.hero-visual__panel {
  position: absolute;
  inset: 35px 0 20px 50px;
  overflow: hidden;
  padding: 46px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 150px 26px 26px 26px;
  box-shadow: var(--shadow-lg);
}

.hero-visual__panel::after {
  position: absolute;
  right: -75px;
  bottom: -95px;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(223, 194, 143, 0.4);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(223, 194, 143, 0.05), 0 0 0 72px rgba(223, 194, 143, 0.04);
}

.hero-visual__mark {
  width: 88px;
  height: 88px;
  margin: 18px 0 54px auto;
  padding: 8px;
  background: var(--white);
  border-radius: 50%;
  object-fit: contain;
}

.journey {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey__item {
  display: grid;
  align-items: center;
  grid-template-columns: 40px 1fr;
  gap: 14px;
}

.journey__number {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--gold-300);
  border: 1px solid rgba(223, 194, 143, 0.45);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
}

.journey__item strong {
  display: block;
  font-size: 0.98rem;
}

.journey__item small {
  color: #aebbd0;
}

.hero-visual__note {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  max-width: 210px;
  padding: 18px 20px;
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid rgba(8, 29, 66, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  font-size: 0.84rem;
  font-weight: 700;
}

.intro-grid,
.split-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(48px, 8vw, 110px);
}

.intro-stat {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  padding: 44px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius-lg);
}

.intro-stat::before {
  position: absolute;
  right: -80px;
  bottom: -115px;
  width: 280px;
  height: 280px;
  content: "";
  background: var(--gold-500);
  border-radius: 50%;
  opacity: 0.13;
}

.intro-stat__big {
  max-width: 420px;
  margin: 90px 0 16px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.intro-stat__line {
  width: 70px;
  height: 3px;
  background: var(--gold-500);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

.card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  border-color: #c8d0db;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 34px;
}

.tag,
.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 5px 10px;
  color: var(--navy-800);
  background: var(--cream-100);
  border: 1px solid #e4ddce;
  border-radius: 999px;
  font-size: 0.71rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-transform: uppercase;
}

.tag--gold {
  color: #6d4a17;
  background: #f3e7d0;
  border-color: #e4cda2;
}

.card__index {
  color: var(--gold-600);
  font-size: 0.75rem;
  font-weight: 800;
}

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

.card .text-link {
  margin-top: auto;
  padding-top: 20px;
}

.feature-list,
.check-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list {
  display: grid;
  gap: 9px;
  margin: 4px 0 22px;
  color: #435168;
  font-size: 0.88rem;
}

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 22px;
}

.feature-list li::before,
.check-list li::before {
  position: absolute;
  top: 0.78em;
  left: 2px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--gold-500);
  border-radius: 50%;
  transform: translateY(-50%);
}

.spotlight {
  position: relative;
  display: grid;
  overflow: hidden;
  align-items: center;
  padding: clamp(40px, 6vw, 76px);
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 60px;
}

.spotlight::before {
  position: absolute;
  top: -120px;
  right: -90px;
  width: 380px;
  height: 380px;
  content: "";
  border: 1px solid rgba(223, 194, 143, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(223, 194, 143, 0.035), 0 0 0 92px rgba(223, 194, 143, 0.025);
}

.spotlight__copy,
.spotlight__meta {
  position: relative;
  z-index: 1;
}

.spotlight h2 {
  color: var(--white);
}

.spotlight__meta {
  display: grid;
  gap: 16px;
}

.spotlight__meta-item {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
}

.spotlight__meta-item small,
.meta-item small {
  display: block;
  margin-bottom: 4px;
  color: #9fadc1;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.spotlight__meta-item strong {
  color: var(--white);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.method-item {
  min-height: 250px;
  padding: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.method-item__number {
  display: block;
  margin-bottom: 45px;
  color: var(--gold-300);
  font-size: 0.76rem;
  font-weight: 800;
}

.method-item p {
  margin-bottom: 0;
  color: #bfc9d8;
  font-size: 0.92rem;
}

.enterprise-panel,
.accessibility-panel,
.cta-panel {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
}

.enterprise-panel {
  padding: clamp(38px, 6vw, 70px);
  background: var(--cream-100);
  border: 1px solid #e7dfd0;
  border-radius: var(--radius-lg);
}

.accessibility-panel {
  padding: clamp(34px, 5vw, 58px);
  background: #eef3f7;
  border-radius: var(--radius-md);
}

.accessibility-panel__icon {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 50%;
  font-size: 2.25rem;
  font-weight: 800;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 7vw, 80px);
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius-lg);
}

.cta-panel::after {
  position: absolute;
  right: -110px;
  bottom: -190px;
  width: 360px;
  height: 360px;
  content: "";
  background: var(--gold-500);
  border-radius: 50%;
  opacity: 0.13;
}

.cta-panel h2 {
  color: var(--white);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 10vw, 138px) 0 clamp(72px, 9vw, 118px);
  background: var(--cream-50);
}

.page-hero::after {
  position: absolute;
  top: -240px;
  right: -220px;
  width: 560px;
  height: 560px;
  content: "";
  border: 1px solid rgba(173, 128, 64, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(196, 154, 89, 0.035);
}

.page-hero--dark {
  color: var(--white);
  background: var(--navy-900);
}

.page-hero--dark::after {
  border-color: rgba(223, 194, 143, 0.25);
  box-shadow: 0 0 0 70px rgba(223, 194, 143, 0.03);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-hero__inner h1 {
  font-size: clamp(2.7rem, 6vw, 5.25rem);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  color: var(--muted);
  font-size: 0.78rem;
  list-style: none;
}

.page-hero--dark .breadcrumb {
  color: #b5c0d0;
}

.breadcrumb li + li::before {
  margin-right: 8px;
  content: "/";
  opacity: 0.55;
}

.anchor-nav {
  position: sticky;
  z-index: 50;
  top: var(--header-height);
  overflow-x: auto;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.topbar + .site-header + main .anchor-nav {
  top: var(--header-height);
}

.anchor-nav__inner {
  display: flex;
  min-width: max-content;
  gap: 8px;
  padding: 12px 0;
}

.anchor-nav a {
  padding: 8px 12px;
  color: #4a586d;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.anchor-nav a:hover {
  color: var(--navy-900);
  background: var(--cream-100);
}

.catalog-intro {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 50px;
}

.catalog-note {
  padding: 24px;
  color: #4e5b6e;
  background: var(--cream-100);
  border-left: 3px solid var(--gold-500);
  border-radius: 0 14px 14px 0;
  font-size: 0.9rem;
}

.course-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 24px;
}

.course-card__meta span {
  padding: 5px 9px;
  color: #4a596e;
  background: #f3f5f7;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 650;
}

.course-card--certifying {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.course-card--certifying h3,
.course-card--certifying .text-link {
  color: var(--white);
}

.course-card--certifying p,
.course-card--certifying .feature-list {
  color: #bec9d8;
}

.course-card--certifying .text-link::after {
  color: var(--gold-300);
}

.tp-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.tp-hero__badges span {
  padding: 8px 12px;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 700;
}

.tp-meta-grid {
  display: grid;
  margin-top: -42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.meta-item {
  padding: 25px 26px;
}

.meta-item + .meta-item {
  border-left: 1px solid var(--line);
}

.meta-item strong {
  display: block;
  color: var(--navy-900);
  line-height: 1.4;
}

.content-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(46px, 7vw, 90px);
}

.content-stack > section + section {
  margin-top: 80px;
}

.side-card {
  position: sticky;
  top: 150px;
  padding: 28px;
  background: var(--cream-50);
  border: 1px solid #e5ded1;
  border-radius: var(--radius-md);
}

.side-card h3 {
  font-size: 1.35rem;
}

.side-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.side-card__info {
  display: grid;
  gap: 14px;
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid #ddd4c4;
  border-bottom: 1px solid #ddd4c4;
}

.side-card__info span {
  color: var(--muted);
  font-size: 0.78rem;
}

.side-card__info strong {
  display: block;
  color: var(--navy-900);
  font-size: 0.91rem;
}

.ccp-grid {
  display: grid;
  gap: 22px;
}

.ccp-card {
  padding: clamp(28px, 5vw, 48px);
  background: var(--cream-50);
  border: 1px solid #e6dfd2;
  border-radius: var(--radius-md);
}

.ccp-card__header {
  display: grid;
  align-items: start;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  margin-bottom: 27px;
}

.ccp-card__number {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 50%;
  font-weight: 800;
}

.ccp-card .check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
}

.check-list li {
  color: #465369;
}

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

.info-card {
  padding: 27px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.info-card p,
.info-card li {
  color: var(--muted);
  font-size: 0.93rem;
}

.info-card p:last-child,
.info-card ul:last-child {
  margin-bottom: 0;
}

.info-card--full {
  grid-column: 1 / -1;
}

.programme-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  counter-reset: programme;
  list-style: none;
}

.programme-list li {
  display: grid;
  align-items: start;
  padding: 18px 20px;
  background: var(--cream-50);
  border: 1px solid #e9e3d7;
  border-radius: 12px;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  counter-increment: programme;
}

.programme-list li::before {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--gold-600);
  content: counter(programme, decimal-leading-zero);
  border: 1px solid #ddc69d;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
}

.programme-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy-900);
}

.programme-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 100px);
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.contact-detail {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.contact-detail small {
  display: block;
  margin-bottom: 3px;
  color: var(--gold-600);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail a {
  color: var(--navy-900);
  font-size: 1.08rem;
  font-weight: 750;
  text-decoration: none;
}

.form-card {
  padding: clamp(28px, 5vw, 50px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

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

.form-field {
  display: grid;
  gap: 7px;
}

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

.form-field label,
.form-field legend {
  color: var(--navy-900);
  font-size: 0.84rem;
  font-weight: 750;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #bfc8d3;
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--navy-700);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(24, 59, 112, 0.12);
}

.form-help {
  color: var(--muted);
  font-size: 0.75rem;
}

.checkbox-field {
  display: grid;
  align-items: start;
  grid-template-columns: 20px 1fr;
  gap: 10px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--navy-800);
}

.checkbox-field label {
  color: #4d5a6d;
  font-size: 0.82rem;
  line-height: 1.55;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 25px;
}

.form-status {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
}

.form-status[data-state="success"] { color: var(--success); }
.form-status[data-state="error"] { color: var(--danger); }

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 70px;
}

.legal-nav {
  position: sticky;
  top: 125px;
  display: grid;
  gap: 5px;
}

.legal-nav a {
  padding: 8px 10px;
  color: var(--muted);
  border-radius: 8px;
  font-size: 0.84rem;
  text-decoration: none;
}

.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
  color: var(--navy-900);
  background: var(--cream-100);
}

.prose {
  max-width: 850px;
}

.prose h2 {
  margin-top: 2.15em;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.prose h3 {
  margin-top: 1.8em;
  font-size: 1.25rem;
}

.prose p,
.prose li {
  color: #4d596b;
}

.prose ul,
.prose ol {
  padding-left: 1.3rem;
}

.notice {
  margin: 26px 0;
  padding: 18px 20px;
  color: #514329;
  background: #faf1df;
  border-left: 3px solid var(--gold-500);
  border-radius: 0 10px 10px 0;
  font-size: 0.88rem;
}

.quote {
  margin: 0;
  padding: clamp(30px, 6vw, 56px);
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius-md);
}

.quote p {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

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

.value-card {
  padding: 26px;
  background: var(--cream-50);
  border-radius: var(--radius-sm);
}

.value-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold-600);
  font-size: 0.74rem;
  font-weight: 800;
}

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

.site-footer {
  margin-top: 0;
  color: #cbd4e1;
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  padding: 74px 0 54px;
  grid-template-columns: 1.2fr 0.75fr 0.85fr 1fr;
  gap: 54px;
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand .brand__mark {
  padding: 2px;
  background: var(--white);
  border-radius: 8px;
}

.footer-brand p {
  max-width: 300px;
  margin-top: 23px;
  color: #aeb9ca;
  font-size: 0.89rem;
}

.footer-column h2 {
  margin-bottom: 21px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 9px;
  list-style: none;
}

.footer-links a {
  color: #b9c4d3;
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-300);
}

.footer-contact a,
.footer-contact span {
  display: block;
  margin-bottom: 9px;
  color: #cbd4e1;
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #8f9caf;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-nav { gap: 10px; }
  .site-nav__link,
  .nav-dropdown__toggle { padding-inline: 8px; font-size: 0.84rem; }
  .header-cta { display: none; }
  .hero__inner { grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr); gap: 40px; }
  .footer-main { grid-template-columns: 1.2fr 0.8fr 0.9fr; }
  .footer-brand { grid-row: span 2; }
}

@media (max-width: 920px) {
  :root { --header-height: 72px; }
  .topbar { display: none; }
  .js .menu-toggle { display: inline-flex; }
  .site-nav {
    display: block;
    width: 100%;
  }
  .js .site-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    width: min(90vw, 430px);
    overflow-y: auto;
    padding: 26px;
    background: var(--white);
    box-shadow: -20px 20px 60px rgba(6, 22, 51, 0.18);
    transform: translateX(105%);
    transition: transform 0.28s ease;
  }
  .js .site-nav.is-open { transform: translateX(0); }
  .site-nav__list { display: grid; align-items: stretch; gap: 4px; }
  .site-nav__link,
  .nav-dropdown__toggle { width: 100%; min-height: 48px; justify-content: space-between; padding: 11px 13px; font-size: 0.96rem; }
  .nav-dropdown__menu {
    position: static;
    display: none;
    width: 100%;
    margin: 2px 0 10px;
    padding: 5px 0 5px 12px;
    border: 0;
    border-left: 2px solid var(--gold-300);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .nav-dropdown.is-open .nav-dropdown__menu { display: block; }
  .hero__inner { min-height: auto; grid-template-columns: 1fr; }
  .hero__copy { max-width: 760px; }
  .hero-visual { width: min(100%, 560px); min-height: 500px; margin: 0 auto; }
  .intro-grid,
  .split-grid,
  .contact-layout { grid-template-columns: 1fr; }
  .intro-stat { min-height: 350px; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spotlight { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tp-meta-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .meta-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .meta-item:nth-child(4) { border-top: 1px solid var(--line); }
  .content-layout { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-layout { grid-template-columns: 1fr; gap: 38px; }
  .legal-nav { position: static; display: flex; overflow-x: auto; }
  .legal-nav a { white-space: nowrap; }
}

@media (max-width: 700px) {
  .container,
  .container--narrow { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 72px 0; }
  .section-heading { display: block; margin-bottom: 34px; }
  .section-heading .button { margin-top: 22px; }
  .brand__mark { width: 40px; height: 40px; }
  .brand__name { font-size: 0.9rem; }
  .brand__sub { font-size: 0.55rem; }
  h1 { font-size: clamp(2.6rem, 14vw, 4.3rem); }
  h2 { font-size: clamp(1.9rem, 9vw, 2.75rem); }
  .hero__inner { padding-top: 70px; padding-bottom: 76px; }
  .hero-visual { min-height: 440px; }
  .hero-visual__panel { inset: 20px 0 18px 18px; padding: 34px 28px; border-radius: 105px 22px 22px 22px; }
  .hero-visual__mark { width: 72px; height: 72px; margin-bottom: 35px; }
  .hero-visual__note { max-width: 185px; padding: 14px 16px; }
  .journey { gap: 17px; }
  .card-grid,
  .card-grid--2,
  .method-grid,
  .info-grid { grid-template-columns: 1fr; }
  .info-card--full { grid-column: auto; }
  .card { padding: 25px; }
  .enterprise-panel,
  .accessibility-panel,
  .cta-panel { grid-template-columns: 1fr; gap: 24px; }
  .accessibility-panel__icon { width: 70px; height: 70px; font-size: 1.8rem; }
  .catalog-intro { grid-template-columns: 1fr; gap: 28px; }
  .tp-meta-grid { margin-top: -25px; grid-template-columns: 1fr; }
  .meta-item + .meta-item,
  .meta-item:nth-child(3),
  .meta-item:nth-child(4) { border-top: 1px solid var(--line); border-left: 0; }
  .ccp-card__header { grid-template-columns: 54px 1fr; gap: 17px; }
  .ccp-card__number { width: 54px; height: 54px; }
  .ccp-card .check-list { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 26px; }
  .footer-brand { grid-column: 1 / -1; grid-row: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 5px; padding: 20px 0; }
}

@media (max-width: 420px) {
  .brand__text { display: none; }
  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .button { width: 100%; }
  .hero-visual { min-height: 430px; }
  .hero-visual__panel { left: 0; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .topbar,
  .site-header,
  .anchor-nav,
  .site-footer,
  .button,
  .form-card { display: none !important; }
  body { color: #000; font-size: 11pt; }
  .page-hero,
  .section { padding: 24px 0; background: #fff !important; }
  .page-hero--dark { color: #000; }
  h1,
  h2,
  h3,
  .page-hero--dark h1 { color: #000 !important; }
}
