:root {
  --blue-900: #0b2f47;
  --blue-800: #0b3e67;
  --blue: #006fae;
  --cyan: #00a9c6;
  --gold: #f2a51a;
  --gold-ink: #8a4d00;
  --ink: #0b2f47;
  --muted: #526c7c;
  --cloud: #f7f4ec;
  --mist: #eaf3f7;
  --line: rgb(11 62 103 / 14%);
  --surface: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei",
    "Noto Sans CJK SC", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cloud);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cloud); color: var(--ink); }
a { color: inherit; }
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 999;
  padding: .8rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}
.skip-link:focus { top: 1rem; }
.static-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.static-hero__media,
.static-hero__media img,
.static-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.static-hero__media img { object-fit: cover; object-position: center 42%; }
.static-hero__overlay {
  background: linear-gradient(
    90deg,
    rgb(4 24 42 / 92%) 0%,
    rgb(4 24 42 / 70%) 38%,
    transparent 72%
  );
}
.static-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}
.static-hero__logo {
  width: min(19rem, 68vw);
  height: auto;
  margin: -3.8rem 0 -3.2rem;
}
.static-hero h1 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  line-height: 1;
}
.static-hero__content > p:last-child {
  max-width: 42rem;
  color: var(--muted);
  line-height: 1.75;
}
.static-mode-note {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: .65rem .9rem;
  border-radius: .75rem;
  background: rgb(255 255 255 / 86%);
  color: var(--muted);
  font-size: .8rem;
}
#world.sw-root > .static-hero,
#world.sw-root > noscript {
  display: none;
}
.content-shell {
  position: relative;
  z-index: 80;
  background: var(--cloud);
  border-radius: 2rem 2rem 0 0;
  border-top: 1px solid rgb(242 165 26 / 28%);
  box-shadow: 0 -1.5rem 3.75rem rgb(11 47 71 / 12%);
}
.content-section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.kicker {
  margin: 0 0 .8rem;
  color: var(--blue);
  font-size: .8rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.service-grid, .trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}
.service-grid article, .trust-grid article {
  position: relative;
  min-height: 16rem;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--surface);
  box-shadow: 0 14px 36px rgb(11 47 71 / 6%);
}
.service-grid article::before, .trust-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}
.service-grid article:nth-child(2) { background: #edf7fa; }
.service-grid article:nth-child(2)::before {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}
.service-grid article:nth-child(3) { background: #fff6e5; }
.service-grid article:nth-child(3)::before {
  background: linear-gradient(90deg, var(--gold), #ffd27a);
}
.service-grid span, .trust-grid strong {
  color: var(--gold-ink);
  font-size: 1.3rem;
  font-weight: 800;
}
.service-grid h3 { margin: 3rem 0 1rem; font-size: 1.5rem; }
.service-grid p, .process span, .faq p {
  color: var(--muted);
  line-height: 1.75;
}
.certificate-explorer {
  position: relative;
  isolation: isolate;
  padding-block: 1.5rem;
}
.certificate-explorer::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 calc(50% - 50vw);
  border-block: 1px solid rgb(11 62 103 / 8%);
  background: #fbfaf6;
}
.certificate-explorer__layout {
  display: grid;
  grid-template-columns: minmax(18rem, .72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 7vw, 7rem);
}
.certificate-explorer__heading {
  position: sticky;
  top: 7rem;
  align-self: start;
}
.certificate-explorer__heading h2 {
  max-width: 10ch;
  font-size: clamp(2.875rem, 3.3vw, 3rem);
  line-height: 1.24;
}
.certificate-explorer__heading > p:last-child {
  max-width: 30ch;
  margin: 1.35rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}
.certificate-list {
  border-top: 1px solid var(--line);
}
.certificate-item {
  --certificate-color: var(--blue);
  --certificate-soft: #e8f1ff;
  border-bottom: 1px solid var(--line);
}
.certificate-item--cyan {
  --certificate-color: #008c9b;
  --certificate-soft: #e5f4f4;
}
.certificate-item--gold {
  --certificate-color: #c66700;
  --certificate-soft: #fff0e5;
}
.certificate-item--blue {
  --certificate-color: #0d65d8;
  --certificate-soft: #e8f1ff;
}
.certificate-item--teacher {
  --certificate-icon: url("/assets/icons/tabler/school.svg");
}
.certificate-item--accounting {
  --certificate-icon: url("/assets/icons/tabler/calculator.svg");
}
.certificate-item--construction {
  --certificate-icon: url("/assets/icons/tabler/building-community.svg");
}
.certificate-item--ai {
  --certificate-icon: url("/assets/icons/tabler/brain.svg");
}
.certificate-item--care {
  --certificate-icon: url("/assets/icons/tabler/heart-handshake.svg");
}
.certificate-item--special {
  --certificate-icon: url("/assets/icons/tabler/tool.svg");
}
.certificate-item summary {
  display: grid;
  min-height: 5.25rem;
  padding: 1rem .5rem;
  grid-template-columns: 3rem minmax(0, 1fr) 1.4rem;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  transition: background-color .2s ease;
}
.certificate-item summary::-webkit-details-marker {
  display: none;
}
@media (hover: hover) {
  .certificate-item summary:hover {
    background: rgb(255 255 255 / 68%);
  }
}
.certificate-item summary:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -3px;
  box-shadow: inset 0 0 0 5px var(--blue);
}
.certificate-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 50%;
  background: var(--certificate-soft);
  color: var(--certificate-color);
}
.certificate-icon::before,
.certificate-arrow,
.certificate-inline-arrow {
  content: "";
  display: block;
  background: currentColor;
  -webkit-mask: url("/assets/icons/tabler/arrow-right.svg") center / contain no-repeat;
  mask: url("/assets/icons/tabler/arrow-right.svg") center / contain no-repeat;
}
.certificate-icon::before {
  width: 1.45rem;
  height: 1.45rem;
  -webkit-mask-image: var(--certificate-icon);
  mask-image: var(--certificate-icon);
}
.certificate-copy {
  display: grid;
  min-width: 0;
  gap: .4rem;
}
.certificate-copy strong {
  color: var(--blue-900);
  font-size: clamp(1.08rem, 1.6vw, 1.15rem);
  line-height: 1.35;
}
.certificate-copy > span {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5;
}
.certificate-arrow {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--blue-900);
  transition: transform .2s ease;
}
.certificate-item[open] summary {
  background: rgb(255 255 255 / 72%);
}
.certificate-item[open] .certificate-arrow {
  transform: rotate(90deg);
}
.certificate-detail {
  margin: 0 2.75rem 1.35rem 4.5rem;
  padding: .25rem 0 .25rem 1rem;
  border-left: 2px solid var(--certificate-color);
}
.certificate-detail p {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.certificate-detail a {
  display: inline-flex;
  min-height: 2.75rem;
  margin-top: .85rem;
  align-items: center;
  gap: .55rem;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}
.certificate-inline-arrow {
  width: 1.05rem;
  height: 1.05rem;
}
.certificate-note {
  max-width: 30ch;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.65;
}
.process ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 4rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.process li {
  position: relative;
  counter-increment: step;
  padding: 2.5rem 1.5rem 1.6rem 0;
  border-top: 1px solid rgb(11 62 103 / 24%);
}
.process li::before {
  content: "0" counter(step);
  position: absolute;
  top: -1.1rem;
  left: 0;
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border: 3px solid var(--cloud);
  border-radius: 50%;
  background: var(--blue-900);
  box-shadow: 0 0 0 2px var(--gold);
  color: var(--cloud);
  font-size: .72rem;
  font-weight: 800;
}
.process strong, .process span { display: block; }
.process strong { margin-bottom: .65rem; }
.faq details { border-top: 1px solid var(--line); padding: 1.4rem 0; }
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-size: 1.15rem; font-weight: 700; }
.primary-button {
  display: inline-flex;
  margin-top: 1.4rem;
  padding: .95rem 1.4rem;
  border-radius: 999px;
  background: var(--gold);
  color: #172b38;
  font-weight: 800;
  text-decoration: none;
}
:where(.primary-button, summary, a):focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--blue);
}
.status-message { max-width: 36rem; margin-top: 1rem; }
.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--gold);
  background:
    linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px),
    radial-gradient(circle at 88% 16%, rgb(0 169 198 / 16%), transparent 24rem),
    linear-gradient(135deg, #071f37, var(--blue-900));
  background-size: 48px 48px, 48px 48px, auto, auto;
  color: #fff;
}
.site-footer::after {
  position: absolute;
  right: -7rem;
  bottom: -11rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgb(242 165 26 / 18%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.site-footer__main,
.site-footer__bottom {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}
.site-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(22rem, .75fr);
  gap: clamp(3rem, 9vw, 8rem);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.site-footer__brand {
  max-width: 36rem;
}
.site-footer__logo {
  display: inline-flex;
  width: 11rem;
  height: 4.6rem;
  padding: .3rem .75rem;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 1rem;
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 14px 34px rgb(0 0 0 / 22%);
}
.site-footer__logo img {
  width: 100%;
  height: auto;
}
.site-footer__slogan {
  max-width: 20ch;
  margin: 1.75rem 0 0;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: -.025em;
}
.site-footer__intro {
  max-width: 34rem;
  margin: 1rem 0 0;
  color: rgb(234 243 247 / 72%);
  line-height: 1.75;
}
.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(9rem, 1fr));
  gap: 2rem;
  padding-top: .6rem;
}
.site-footer__nav section {
  display: grid;
  align-content: start;
  gap: .8rem;
}
.site-footer__nav h2 {
  margin: 0 0 .35rem;
  color: #ffd27a;
  font-size: .78rem;
  letter-spacing: .14em;
}
.site-footer__nav a {
  width: fit-content;
  color: rgb(255 255 255 / 78%);
  font-size: .9rem;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}
.site-footer__nav a:hover {
  color: #fff;
  transform: translateX(.2rem);
}
.site-footer__bottom {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.5rem;
  padding: 1.25rem 0 1.5rem;
  align-items: center;
  border-top: 1px solid rgb(255 255 255 / 12%);
  color: rgb(234 243 247 / 58%);
  font-size: .75rem;
}
.site-footer__bottom p {
  margin: 0;
}
.site-footer__deerflow {
  color: inherit;
  opacity: .65;
  text-decoration: none;
  transition: opacity 160ms ease;
}
.site-footer__deerflow:hover {
  opacity: 1;
}
@media (max-width: 820px) {
  .static-hero { align-items: end; }
  .static-hero__media img { object-position: center 44%; }
  .static-hero__overlay {
    background: linear-gradient(
      0deg,
      rgb(7 35 55 / 97%) 4%,
      rgb(7 35 55 / 86%) 46%,
      transparent 78%
    );
  }
  .static-hero__content {
    gap: .8rem;
    padding-bottom: max(4.5rem, calc(3.5rem + env(safe-area-inset-bottom)));
  }
  .static-hero__logo {
    width: min(15rem, 58vw);
    margin: -4rem 0 -3.5rem;
  }
  .static-hero h1 {
    color: #fff;
    font-size: clamp(2.35rem, 11vw, 4rem);
  }
  .static-hero .kicker { color: #ffd27a; }
  .static-hero__content > p:last-child { color: var(--mist); }
  .static-hero__logo {
    filter: drop-shadow(0 5px 18px rgb(255 255 255 / 45%));
  }
  .service-grid, .trust-grid { grid-template-columns: 1fr; }
  .service-grid article { min-height: 14rem; }
  .service-grid h3 { margin-top: 2.5rem; }
  .process ol {
    display: block;
    margin-left: 1rem;
  }
  .process li {
    min-height: 7rem;
    padding: 0 0 2.25rem 2.75rem;
    border-top: 0;
    border-left: 1px solid rgb(11 62 103 / 24%);
  }
  .process li::before {
    top: 0;
    left: -1.1rem;
  }
  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }
  .site-footer__nav {
    width: min(100%, 27rem);
  }
  .site-footer__bottom {
    grid-template-columns: 1fr;
    gap: .65rem;
    align-items: start;
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .certificate-item summary,
  .certificate-arrow {
    transition: none;
  }
}

.sw-root {
  --sw-bg: #f7f4ec;
  --sw-ink: #0b2f47;
  --sw-ink-soft: #526c7c;
  --sw-accent: #006fae;
  --sw-font-display: -apple-system, BlinkMacSystemFont, "PingFang SC",
    "Microsoft YaHei", sans-serif;
  --sw-font-body: var(--sw-font-display);
}
.sw-scrollbar span {
  background: linear-gradient(90deg, var(--blue), var(--cyan) 55%, var(--gold));
}
.sw-brand {
  padding: .35rem .7rem;
  border: 1px solid rgb(11 62 103 / 12%);
  border-radius: 1rem;
  background: rgb(255 255 255 / 78%);
  box-shadow: 0 10px 30px rgb(11 47 71 / 8%);
  backdrop-filter: blur(14px);
}
.sw-brand__logo { height: clamp(38px, 4.3vw, 52px); }
.sw-nav {
  border-color: rgb(11 62 103 / 12%);
  background: rgb(255 255 255 / 76%);
  box-shadow: 0 10px 30px rgb(11 47 71 / 7%);
  backdrop-filter: blur(14px);
}
.sw-nav__item.is-active {
  background: var(--blue-900);
  box-shadow: inset 0 -2px 0 var(--gold);
}
.sw-topcta {
  background: var(--blue-900);
  box-shadow: 0 10px 26px rgb(11 47 71 / 18%);
}
.sw-copy {
  width: min(43vw, 500px);
  padding-left: clamp(16px, 1.5vw, 22px);
  border-left: 3px solid var(--sw-accent);
}
.sw-copy:first-child .sw-copy__title {
  font-size: clamp(2.7rem, 5vw, 4.6rem);
}
.sw-copy__num,
.sw-copy__eyebrow {
  color: var(--gold-ink);
}
.sw-copy__tags li {
  border-color: rgb(0 111 174 / 28%);
  background: rgb(255 255 255 / 62%);
  color: var(--blue-900);
  backdrop-filter: blur(8px);
}
.sw-btn--primary {
  background: var(--blue-900);
  color: #fff;
}
.sw-btn--ghost {
  border-color: rgb(11 47 71 / 32%);
}
.sw-route::before {
  background: linear-gradient(180deg, var(--blue), var(--cyan) 52%, var(--gold));
  opacity: .58;
}
.sw-route__dot i {
  border: 2px solid var(--blue);
  background: #fff;
}
.sw-route__dot.is-active i {
  border-color: var(--blue-900);
  background: var(--gold);
  box-shadow: 0 0 0 5px rgb(242 165 26 / 24%);
}
.sw-route__label {
  border-color: rgb(11 62 103 / 14%);
  background: rgb(255 255 255 / 86%);
  color: var(--blue-900);
}

@media (max-width: 860px) {
  .certificate-explorer {
    padding-block: 4rem;
  }
  .certificate-explorer__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .certificate-explorer__heading {
    position: static;
  }
  .certificate-explorer__heading h2 {
    max-width: 10ch;
    font-size: clamp(2.25rem, 9.5vw, 2.375rem);
    line-height: 1.12;
  }
  .certificate-note {
    max-width: 34rem;
  }
  .certificate-item summary {
    min-height: 5.75rem;
    padding: .875rem 0;
    grid-template-columns: 2.75rem minmax(0, 1fr) 1.25rem;
    gap: .75rem;
  }
  .certificate-icon {
    width: 2.75rem;
    height: 2.75rem;
  }
  .certificate-icon::before {
    width: 1.35rem;
    height: 1.35rem;
  }
  .certificate-copy strong {
    font-size: 1.0625rem;
  }
  .certificate-copy > span {
    font-size: .875rem;
  }
  .certificate-arrow {
    width: 1.25rem;
    height: 1.25rem;
  }
  .certificate-detail {
    margin: 0 1.25rem 1.35rem 3.5rem;
  }
  .sw-root {
    --sw-ink: #f7f4ec;
    --sw-ink-soft: #eaf3f7;
  }
  .sw-copylayer::before {
    width: 100%;
    height: 68%;
    inset: auto 0 0;
    background: linear-gradient(
      0deg,
      rgb(7 35 55 / 96%) 0%,
      rgb(7 35 55 / 86%) 54%,
      transparent 100%
    );
  }
  .sw-copy {
    right: 48px;
    border-left-color: #ffd27a;
  }
  .sw-copy__num,
  .sw-copy__eyebrow {
    color: #ffd27a;
  }
  .sw-copy__title { color: #fff; text-shadow: 0 2px 20px rgb(7 35 55 / 70%); }
  .sw-copy__body { color: var(--mist); text-shadow: 0 1px 12px rgb(7 35 55 / 90%); }
  .sw-copy__tags li {
    border-color: rgb(255 255 255 / 25%);
    background: rgb(255 255 255 / 10%);
    color: #fff;
  }
  .sw-btn--primary {
    background: var(--gold);
    color: var(--blue-900);
  }
  .sw-btn--ghost {
    border-color: rgb(255 255 255 / 45%);
    color: #fff;
  }
  .sw-hint { color: var(--mist); }
  .sw-topcta {
    background: var(--gold);
    color: var(--blue-900);
  }
}
@media (max-width: 420px) {
  .sw-copy__cta { flex-direction: column; }
  .sw-copy__cta .sw-btn { justify-content: center; width: 100%; text-align: center; }
}

/* 2026 refined career-city visual system */
:root {
  --cloud: #f2efe7;
  --surface: #fffdf8;
  --line: rgb(11 62 103 / 12%);
  --display: "Songti SC", "STSong", "Noto Serif CJK SC", serif;
}
body {
  background:
    radial-gradient(circle at 15% 8%, rgb(0 169 198 / 7%), transparent 28rem),
    var(--cloud);
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: inherit;
  text-decoration: none;
}
.brand-lockup__symbol {
  display: block;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  background: url("/assets/brand/logo.png") -65px -11px / 178px 123px no-repeat;
}
.brand-lockup__copy {
  display: grid;
  justify-items: center;
  gap: .2rem;
  line-height: 1;
  text-align: center;
}
.brand-lockup__copy strong {
  font-size: 1.3rem;
  font-weight: 850;
  letter-spacing: .06em;
}
.brand-lockup__copy small {
  font-size: .5rem;
  font-weight: 750;
  letter-spacing: .055em;
  opacity: .66;
  transform: scaleX(.9);
  transform-origin: center top;
  white-space: nowrap;
}
.static-hero__overlay {
  background:
    linear-gradient(90deg, rgb(4 24 42 / 92%) 0%, rgb(4 24 42 / 70%) 38%, transparent 72%),
    linear-gradient(0deg, rgb(4 24 42 / 24%), transparent 45%);
}
.static-hero__content {
  width: min(1240px, calc(100% - 3rem));
  gap: 1rem;
  color: #fff;
}
.static-hero__brand {
  width: fit-content;
  margin-bottom: 1.75rem;
}
.static-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 6.4vw, 5rem);
  letter-spacing: -.045em;
}
.static-hero__content > p:last-child {
  color: rgb(234 243 247 / 82%);
}
.content-shell {
  border-top: 1px solid rgb(242 165 26 / 42%);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgb(11 62 103 / 3%) 1px, transparent 1px),
    var(--cloud);
  background-size: 96px 100%, auto;
  box-shadow: none;
}
.content-section {
  width: min(1240px, calc(100% - 3rem));
  padding: clamp(4.75rem, 6.5vw, 6.75rem) 0;
}
.kicker {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--blue);
  font-size: .72rem;
  letter-spacing: .2em;
}
.kicker::before {
  width: 2.4rem;
  height: 2px;
  background: var(--gold);
  content: "";
}
h2 {
  max-width: 15ch;
  font-family: var(--display);
  font-size: clamp(2.45rem, 4.7vw, 4.25rem);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -.055em;
}
.service-grid {
  grid-template-columns: 1.12fr .94fr .94fr;
  gap: 1.15rem;
  margin-top: clamp(2.5rem, 4vw, 3.75rem);
}
.service-grid article {
  min-height: 17.5rem;
  padding: clamp(1.75rem, 3vw, 2.7rem);
  border-radius: .5rem;
  box-shadow: 0 20px 50px rgb(11 47 71 / 8%);
}
.service-grid article:first-child {
  background:
    radial-gradient(circle at 85% 15%, rgb(0 169 198 / 24%), transparent 13rem),
    var(--blue-900);
  color: #fff;
}
.service-grid article:first-child span,
.service-grid article:first-child h3 {
  color: #fff;
}
.service-grid article:first-child p {
  color: rgb(234 243 247 / 74%);
}
.service-grid article:nth-child(2) {
  background: var(--surface);
}
.service-grid article:nth-child(3) {
  background: #fff2d5;
}
.service-grid span {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 650;
  line-height: 1;
  opacity: .8;
}
.service-grid h3 {
  margin: auto 0 1rem;
  padding-top: 3.5rem;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}
.service-grid p {
  max-width: 29ch;
  margin-bottom: 0;
}
.certificate-explorer {
  padding-block: clamp(4.75rem, 6.5vw, 6.75rem);
}
.certificate-explorer::before {
  border-block-color: rgb(11 62 103 / 10%);
  background:
    radial-gradient(circle at 72% 12%, rgb(0 169 198 / 7%), transparent 28rem),
    #fbfaf6;
}
.certificate-explorer__layout {
  grid-template-columns: minmax(18rem, .68fr) minmax(0, 1.32fr);
  gap: clamp(3rem, 8vw, 8rem);
}
.certificate-explorer__heading h2 {
  font-size: clamp(2.65rem, 4.1vw, 3.85rem);
  line-height: 1.12;
}
.certificate-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: rgb(255 253 248 / 86%);
  box-shadow: 0 26px 70px rgb(11 47 71 / 8%);
}
.certificate-item:last-child {
  border-bottom: 0;
}
.certificate-item summary {
  min-height: 6.4rem;
  padding: 1.2rem 1.35rem;
}
.certificate-item[open] summary {
  background: rgb(255 255 255 / 74%);
}
.certificate-detail {
  margin-right: 4rem;
  padding-bottom: 1rem;
}
.process {
  position: relative;
  display: grid;
  grid-template-columns: minmax(17rem, .68fr) minmax(0, 1.32fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  isolation: isolate;
  color: #fff;
}
.process::before {
  position: absolute;
  z-index: -1;
  inset: 0 calc(50% - 50vw);
  background:
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px),
    radial-gradient(circle at 84% 20%, rgb(0 169 198 / 22%), transparent 26rem),
    linear-gradient(135deg, #061b31, var(--blue-900));
  background-size: 56px 56px, 56px 56px, auto, auto;
  content: "";
}
.process .kicker {
  color: #ffd27a;
}
.process h2 {
  max-width: 10ch;
  color: #fff;
  font-size: clamp(2.65rem, 4vw, 3.8rem);
}
.process__lead {
  max-width: 36ch;
  margin: 1.5rem 0 0;
  color: rgb(234 243 247 / 72%);
  font-size: 1rem;
  line-height: 1.75;
}
.process__cta {
  display: inline-flex;
  width: fit-content;
  margin-top: 2rem;
  padding: .9rem 1.1rem;
  align-items: center;
  gap: .7rem;
  border: 1px solid rgb(255 210 122 / 42%);
  border-radius: 999px;
  color: #ffd27a;
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.process__cta:hover {
  background: var(--gold);
  color: var(--blue-900);
  transform: translateY(-2px);
}
.process ol {
  display: grid;
  overflow: hidden;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 1.25rem;
  background: rgb(255 255 255 / 14%);
}
.process li {
  min-height: 12rem;
  padding: 2rem;
  border: 0;
  background: rgb(5 31 54 / 82%);
  transition: background-color 180ms ease;
}
.process li:hover {
  background: rgb(10 57 88 / 92%);
}
.process li::before {
  position: static;
  width: 2rem;
  height: 2rem;
  margin-bottom: 2.2rem;
  border-color: var(--blue-900);
  background: var(--gold);
  box-shadow: 0 0 0 2px rgb(255 210 122 / 40%);
  color: var(--blue-900);
}
.process strong {
  color: #fff;
  font-size: 1.12rem;
}
.process span {
  max-width: 23ch;
  color: rgb(234 243 247 / 68%);
  font-size: .9rem;
  line-height: 1.65;
}
.faq {
  display: grid;
  grid-template-columns: minmax(17rem, .7fr) minmax(0, 1.3fr);
  gap: clamp(2.5rem, 8vw, 8rem);
}
.faq > .kicker,
.faq > h2 {
  grid-column: 1;
}
.faq > h2 {
  grid-row: 2 / span 3;
}
.faq details {
  grid-column: 2;
  padding: 1.65rem 0;
}
.faq details:first-of-type {
  grid-row: 1;
}
.faq summary {
  color: var(--blue-900);
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
}
.faq p {
  max-width: 52ch;
}
.site-footer {
  border-top-width: 1px;
}
.site-footer__main {
  width: min(1240px, calc(100% - 3rem));
  grid-template-columns: minmax(0, 1.35fr) minmax(22rem, .65fr);
  gap: clamp(3rem, 7vw, 6rem);
  padding: clamp(3.25rem, 4.5vw, 4.5rem) 0;
}
.site-footer__logo {
  width: auto;
  height: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: #fff;
}
.site-footer__logo .brand-lockup__symbol {
  filter: drop-shadow(0 10px 20px rgb(0 0 0 / 22%));
}
.site-footer__slogan {
  font-family: var(--display);
  font-weight: 700;
}
.site-footer__nav h2 {
  font-family: inherit;
}

/* Scroll world: full-bleed imagery, controlled copy, no white panels. */
.sw-root {
  --sw-bg: #061b31;
  --sw-ink: #ffffff;
  --sw-ink-soft: #dceaf0;
  --sw-font-display: "PingFang SC", "Microsoft YaHei", sans-serif;
}
.sw-scene__still,
.sw-scene__video {
  filter: saturate(.88) contrast(1.03) brightness(.9);
}
.sw-copylayer::before {
  width: min(66vw, 980px);
  background:
    linear-gradient(90deg, rgb(4 24 42 / 92%) 0%, rgb(4 24 42 / 75%) 36%, rgb(4 24 42 / 34%) 63%, transparent 100%);
}
.sw-topbar {
  padding: clamp(1.1rem, 2.4vw, 1.8rem) clamp(1.5rem, 6vw, 5.5rem);
  background: linear-gradient(180deg, rgb(4 24 42 / 54%), transparent);
}
.sw-brand {
  min-width: 12rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  backdrop-filter: none;
}
.sw-brand__symbol {
  filter: drop-shadow(0 8px 18px rgb(0 0 0 / 30%));
}
.sw-brand__lockup strong {
  font-size: 1.05rem;
}
.sw-nav {
  border-color: rgb(255 255 255 / 13%);
  background: rgb(4 24 42 / 44%);
  box-shadow: 0 12px 34px rgb(0 0 0 / 15%);
}
.sw-nav__item {
  color: rgb(255 255 255 / 66%);
}
.sw-nav__item:hover {
  color: #fff;
}
.sw-nav__item.is-active {
  background: var(--gold);
  box-shadow: none;
  color: var(--blue-900);
}
.sw-topcta {
  background: var(--gold);
  box-shadow: 0 12px 30px rgb(242 165 26 / 22%);
  color: var(--blue-900);
}
.sw-copy {
  left: clamp(1.5rem, 7vw, 6.5rem);
  width: min(44vw, 560px);
  padding: 1.25rem 0 1.25rem clamp(1.1rem, 2vw, 1.7rem);
  border-left: 2px solid #ffd27a;
}
.sw-copy:first-child .sw-copy__title,
.sw-copy__title {
  max-width: 12ch;
  margin-top: .85rem;
  color: #fff;
  font-size: clamp(2.65rem, 4.7vw, 3.8rem);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -.05em;
  text-shadow: 0 4px 28px rgb(0 0 0 / 42%);
}
.sw-copy__num,
.sw-copy__eyebrow {
  color: #ffd27a;
}
.sw-copy__num {
  font-size: .7rem;
}
.sw-copy__eyebrow {
  margin-top: 1rem;
  font-size: .72rem;
}
.sw-copy__body {
  max-width: 34ch;
  margin-top: 1.25rem;
  color: rgb(234 243 247 / 82%);
  font-size: clamp(.98rem, 1.15vw, 1.08rem);
  text-shadow: 0 2px 16px rgb(0 0 0 / 52%);
}
.sw-copy__tags {
  gap: .55rem;
  margin-top: 1.5rem;
}
.sw-copy__tags li {
  border-color: rgb(255 255 255 / 22%);
  background: rgb(4 24 42 / 42%);
  color: #fff;
  backdrop-filter: blur(10px);
}
.sw-route__dot i {
  border-color: rgb(255 255 255 / 54%);
  background: rgb(4 24 42 / 48%);
}
.sw-route__dot.is-active i {
  border-color: #ffd27a;
  background: var(--gold);
}
.sw-route__label {
  border-color: rgb(255 255 255 / 15%);
  background: rgb(4 24 42 / 76%);
  color: #fff;
}
.sw-hint {
  color: rgb(255 255 255 / 66%);
}

@media (max-width: 860px) {
  .content-section {
    width: min(100% - 2rem, 42rem);
    padding: 4rem 0;
  }
  h2 {
    font-size: clamp(2.2rem, 10vw, 3.25rem);
  }
  .service-grid,
  .faq {
    grid-template-columns: 1fr;
  }
  .service-grid article {
    min-height: 13.5rem;
  }
  .service-grid h3 {
    padding-top: 2.8rem;
  }
  .certificate-list {
    border-radius: 1rem;
  }
  .certificate-item summary {
    min-height: 5.7rem;
    padding-inline: .9rem;
  }
  .certificate-detail {
    margin-right: 1.25rem;
  }
  .process {
    display: block;
  }
  .process h2 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 10vw, 3.25rem);
  }
  .process__lead {
    max-width: 34rem;
  }
  .process ol {
    margin-top: 2.75rem;
    grid-template-columns: 1fr;
    border-radius: 1rem;
  }
  .process li {
    min-height: 0;
    padding: 1.5rem;
  }
  .process li::before {
    margin-bottom: 1.35rem;
  }
  .faq > .kicker,
  .faq > h2,
  .faq details {
    grid-column: 1;
  }
  .faq > h2 {
    grid-row: auto;
    margin-bottom: 1.5rem;
  }
  .faq details:first-of-type {
    grid-row: auto;
  }
  .site-footer__main,
  .site-footer__bottom {
    width: min(100% - 2rem, 42rem);
  }
  .sw-copylayer::before {
    width: 100%;
    height: 72%;
    inset: auto 0 0;
    background: linear-gradient(0deg, rgb(4 24 42 / 97%) 0%, rgb(4 24 42 / 82%) 52%, transparent 100%);
  }
  .sw-topbar {
    padding: max(1rem, env(safe-area-inset-top)) 1rem 1rem;
  }
  .sw-brand {
    min-width: 0;
    gap: .34rem;
  }
  .sw-brand__symbol {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    background-size: 134px 93px;
    background-position: -49px -8px;
  }
  .sw-brand__lockup strong {
    font-size: .9rem;
  }
  .sw-brand__lockup small {
    display: block;
    font-size: .39rem;
    letter-spacing: .035em;
    opacity: .76;
    transform: scaleX(.88);
  }
  .sw-topcta {
    padding: .75rem 1rem;
    font-size: .8rem;
  }
  .sw-copy {
    right: 3.25rem;
    bottom: calc(clamp(4.75rem, 11dvh, 6.5rem) + env(safe-area-inset-bottom));
    width: auto;
    max-width: none;
    padding: .9rem 0 .9rem 1.15rem;
  }
  .sw-copy:first-child .sw-copy__title,
  .sw-copy__title {
    max-width: 13ch;
    font-size: clamp(2rem, 9.5vw, 2.8rem);
  }
  .sw-copy__body {
    font-size: clamp(.92rem, 3.8vw, 1.04rem);
  }
  .sw-copy__tags {
    margin-top: 1.15rem;
  }
}

/* 2026 vocational academy refinement */
html {
  scroll-padding-top: 5.5rem;
}
.content-nav {
  position: sticky;
  z-index: 95;
  top: 0;
  display: grid;
  width: min(1240px, calc(100% - 3rem));
  min-height: 4.75rem;
  margin: 0 auto;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  isolation: isolate;
  border-bottom: 1px solid rgb(11 62 103 / 10%);
}
.content-nav::before {
  position: absolute;
  z-index: -1;
  inset: 0 calc(50% - 50vw);
  background: rgb(247 244 236 / 91%);
  box-shadow: 0 12px 32px rgb(7 31 55 / 5%);
  backdrop-filter: blur(18px);
  content: "";
}
.content-nav__brand {
  display: grid;
  position: relative;
  padding-left: 1rem;
  color: var(--blue-900);
  text-decoration: none;
}
.content-nav__brand::before {
  position: absolute;
  width: 3px;
  inset: .1rem auto .1rem 0;
  background: var(--gold);
  content: "";
}
.content-nav__brand span {
  font-size: .9rem;
  font-weight: 850;
  letter-spacing: .08em;
}
.content-nav__brand small {
  margin-top: .15rem;
  color: var(--muted);
  font-size: .61rem;
  letter-spacing: .08em;
}
.content-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.3vw, 2.25rem);
}
.content-nav__links a {
  position: relative;
  padding: 1.7rem 0 1.55rem;
  color: rgb(11 47 71 / 64%);
  font-size: .78rem;
  font-weight: 750;
  text-decoration: none;
  transition: color 180ms ease;
}
.content-nav__links a::after {
  position: absolute;
  right: 50%;
  bottom: -.05rem;
  left: 50%;
  height: 2px;
  background: var(--gold);
  content: "";
  transition: right 180ms ease, left 180ms ease;
}
.content-nav__links a:hover {
  color: var(--blue-900);
}
.content-nav__links a:hover::after {
  right: 0;
  left: 0;
}
.content-nav__cta {
  padding: .75rem 1.05rem;
  border-radius: 999px;
  background: var(--blue-900);
  box-shadow: 0 10px 24px rgb(11 47 71 / 14%);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}
.content-nav__cta:hover {
  background: var(--blue);
  transform: translateY(-2px);
}
.section-lead {
  max-width: 53ch;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.8;
}
.service-grid article {
  display: flex;
  min-height: 18rem;
  flex-direction: column;
  border-radius: 1.15rem;
  transition: box-shadow 220ms ease, transform 220ms ease;
}
.service-grid article::after {
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 10rem;
  height: 10rem;
  border: 1px solid rgb(0 169 198 / 16%);
  border-radius: 50%;
  content: "";
}
.service-grid article:hover {
  box-shadow: 0 30px 70px rgb(11 47 71 / 13%);
  transform: translateY(-6px);
}
.service-grid span {
  color: inherit;
  font-family: inherit;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .18em;
  opacity: .62;
}
.service-grid__eyebrow {
  margin: auto 0 .75rem;
  color: var(--blue);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.service-grid article:first-child .service-grid__eyebrow {
  color: #ffd27a;
}
.service-grid h3 {
  margin: 0 0 .85rem;
  padding-top: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1.25;
  letter-spacing: -.03em;
}
.service-grid p:not(.service-grid__eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.75;
}
.service-grid article:first-child p:not(.service-grid__eyebrow) {
  color: rgb(234 243 247 / 72%);
}
.training-studio {
  position: relative;
  padding-top: clamp(4.5rem, 6vw, 6.25rem);
  isolation: isolate;
}
.training-studio::before {
  position: absolute;
  z-index: -1;
  inset: 0 calc(50% - 50vw);
  border-block: 1px solid rgb(11 62 103 / 9%);
  background:
    radial-gradient(circle at 12% 18%, rgb(242 165 26 / 9%), transparent 22rem),
    #fbfaf6;
  content: "";
}
.training-studio__heading {
  display: grid;
  margin-bottom: clamp(2.5rem, 4vw, 3.75rem);
  grid-template-columns: minmax(0, 1.18fr) minmax(18rem, .82fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
}
.training-studio__heading h2 {
  max-width: 14ch;
}
.training-studio__heading > p {
  max-width: 35rem;
  margin: 0 0 .35rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}
.training-studio__shell {
  display: grid;
  overflow: hidden;
  min-height: 34rem;
  grid-template-columns: minmax(15rem, .38fr) minmax(0, 1.62fr);
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 1.75rem;
  background: #061b31;
  box-shadow: 0 34px 90px rgb(7 31 55 / 18%);
}
.training-tabs {
  display: grid;
  padding: 1rem;
  align-content: center;
  gap: .4rem;
  border-right: 1px solid rgb(255 255 255 / 9%);
  background:
    linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px),
    #071f37;
  background-size: 42px 42px, 42px 42px, auto;
}
.training-tabs button {
  display: grid;
  min-height: 5.7rem;
  padding: 1rem 1.1rem;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  align-content: center;
  align-items: center;
  gap: .15rem .7rem;
  border: 0;
  border-left: 2px solid transparent;
  border-radius: .8rem;
  background: transparent;
  color: rgb(255 255 255 / 62%);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}
.training-tabs button:hover {
  background: rgb(255 255 255 / 5%);
  color: #fff;
}
.training-tabs button[aria-selected="true"] {
  border-left-color: var(--gold);
  background: linear-gradient(90deg, rgb(242 165 26 / 13%), rgb(0 169 198 / 7%));
  color: #fff;
}
.training-tabs button:focus-visible {
  outline: 2px solid #ffd27a;
  outline-offset: -2px;
}
.training-tabs button > span {
  grid-row: 1 / span 2;
  color: #ffd27a;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 750;
}
.training-tabs button strong {
  font-size: .94rem;
  letter-spacing: .04em;
}
.training-tabs button small {
  grid-column: 2;
  font-size: .67rem;
  opacity: .58;
}
.training-panels {
  position: relative;
  display: grid;
}
.training-panel {
  display: grid;
  min-width: 0;
  padding: clamp(2.5rem, 5vw, 4.75rem);
  align-content: center;
  background:
    radial-gradient(circle at 88% 12%, rgb(0 169 198 / 17%), transparent 23rem),
    linear-gradient(135deg, #0b3151, #071f37 72%);
  color: #fff;
}
.training-panel[hidden] {
  display: none;
}
.training-panel.is-active {
  animation: training-panel-in 320ms ease both;
}
.training-panel__index {
  margin: 0 0 1.25rem;
  color: #ffd27a;
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .2em;
}
.training-panel h3 {
  max-width: 17ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  line-height: 1.15;
  letter-spacing: -.045em;
}
.training-panel__intro {
  max-width: 51ch;
  margin: 1.25rem 0 0;
  color: rgb(234 243 247 / 72%);
  font-size: .98rem;
  line-height: 1.8;
}
.training-panel__content {
  display: grid;
  margin-top: clamp(2rem, 3.5vw, 3rem);
  padding-top: 1.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid rgb(255 255 255 / 13%);
}
.training-panel__content h4 {
  margin: 0 0 .9rem;
  color: #ffd27a;
  font-size: .7rem;
  letter-spacing: .14em;
}
.training-panel__content ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: .65rem;
  list-style: none;
}
.training-panel__content li {
  position: relative;
  padding-left: 1rem;
  color: rgb(255 255 255 / 86%);
  font-size: .86rem;
  line-height: 1.55;
}
.training-panel__content li::before {
  position: absolute;
  top: .55rem;
  left: 0;
  width: .35rem;
  height: .35rem;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}
.training-panel__content p {
  max-width: 32ch;
  margin: 0;
  color: rgb(234 243 247 / 66%);
  font-size: .86rem;
  line-height: 1.7;
}
.training-panel > a {
  display: inline-flex;
  width: fit-content;
  margin-top: 2rem;
  padding: .85rem 1.1rem;
  align-items: center;
  gap: .8rem;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 12px 28px rgb(242 165 26 / 15%);
  color: var(--blue-900);
  font-size: .78rem;
  font-weight: 850;
  text-decoration: none;
  transition: box-shadow 180ms ease, transform 180ms ease;
}
.training-panel > a:hover {
  box-shadow: 0 16px 32px rgb(242 165 26 / 25%);
  transform: translateY(-2px);
}
.certificate-explorer__heading > p:not(.kicker) {
  max-width: 32ch;
}
.certificate-item summary {
  transition: background-color 180ms ease, padding-left 180ms ease;
}
.certificate-item summary:hover {
  padding-left: 1.65rem;
}
.faq details {
  position: relative;
  padding-right: 2.5rem;
}
.faq details::after {
  position: absolute;
  top: 1.65rem;
  right: .15rem;
  color: var(--blue);
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform 180ms ease;
}
.faq details[open]::after {
  transform: rotate(45deg);
}
.faq details[open] summary {
  color: var(--blue);
}
.has-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.22, 1, .36, 1);
}
.has-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
.has-reveal [data-reveal-group] > * {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 480ms ease, transform 480ms ease;
}
.has-reveal .is-visible [data-reveal-group] > * {
  opacity: 1;
  transform: none;
}
.has-reveal .is-visible [data-reveal-group] > :nth-child(2) {
  transition-delay: 90ms;
}
.has-reveal .is-visible [data-reveal-group] > :nth-child(3) {
  transition-delay: 180ms;
}
@keyframes training-panel-in {
  from {
    opacity: 0;
    transform: translateX(1rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 980px) {
  .content-nav__links {
    gap: 1rem;
  }
  .content-nav__links a {
    font-size: .72rem;
  }
  .training-studio__shell {
    grid-template-columns: 1fr;
  }
  .training-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: .75rem;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 9%);
  }
  .training-tabs button {
    min-height: 5.1rem;
    padding: .8rem;
    grid-template-columns: 1fr;
    border-bottom: 2px solid transparent;
    border-left: 0;
    text-align: center;
  }
  .training-tabs button[aria-selected="true"] {
    border-bottom-color: var(--gold);
    border-left-color: transparent;
  }
  .training-tabs button > span {
    display: none;
  }
  .training-tabs button small {
    grid-column: 1;
  }
}
@media (max-width: 760px) {
  .content-nav {
    width: min(100% - 2rem, 42rem);
    min-height: 4.25rem;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
  }
  .content-nav__brand small {
    display: none;
  }
  .content-nav__links {
    display: none;
  }
  .content-nav__cta {
    padding: .7rem .9rem;
  }
  .section-lead {
    font-size: .96rem;
  }
  .service-grid article {
    min-height: 13.5rem;
  }
  .training-studio__heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.25rem;
  }
  .training-studio__heading h2 {
    max-width: 12ch;
  }
  .training-studio__heading > p {
    font-size: .94rem;
  }
  .training-studio__shell {
    min-height: 0;
    border-radius: 1.15rem;
  }
  .training-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .training-tabs button {
    min-height: 4.5rem;
  }
  .training-panel {
    padding: 2rem 1.35rem;
  }
  .training-panel h3 {
    font-size: clamp(1.8rem, 8.5vw, 2.45rem);
  }
  .training-panel__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .certificate-item summary:hover {
    padding-left: .9rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .training-panel.is-active {
    animation: none;
  }
  .service-grid article,
  .content-nav__cta,
  .training-panel > a {
    transition: none;
  }
}

/* 2026 immersive vocational journey */
:root {
  --experience-x: 50vw;
  --experience-y: 50vh;
  --content-progress: 0;
}

.experience-aura {
  position: fixed;
  z-index: 86;
  top: var(--experience-y);
  left: var(--experience-x);
  width: min(34rem, 48vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgb(0 169 198 / 13%), rgb(242 165 26 / 6%) 34%, transparent 68%);
  filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 260ms ease;
}

.experience-aura.is-visible {
  opacity: .72;
}

.experience-cursor {
  position: fixed;
  z-index: 980;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.experience-cursor.is-visible {
  opacity: 1;
}

.experience-cursor__dot {
  position: absolute;
  display: block;
  width: .55rem;
  height: .55rem;
  border: 2px solid rgb(255 255 255 / 84%);
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    0 0 0 .35rem rgb(242 165 26 / 12%),
    0 8px 24px rgb(7 31 55 / 24%);
  transform: translate(-50%, -50%);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.experience-cursor__label {
  position: absolute;
  top: .8rem;
  left: .9rem;
  display: block;
  padding: .35rem .55rem;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 999px;
  background: rgb(5 31 54 / 78%);
  box-shadow: 0 10px 30px rgb(7 31 55 / 18%);
  color: #fff;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  opacity: 0;
  white-space: nowrap;
  backdrop-filter: blur(12px);
  transform: translateY(.25rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.experience-cursor.is-contextual .experience-cursor__dot {
  box-shadow:
    0 0 0 .55rem rgb(242 165 26 / 16%),
    0 8px 28px rgb(7 31 55 / 28%);
  transform: translate(-50%, -50%) scale(1.15);
}

.experience-cursor.is-contextual .experience-cursor__label {
  opacity: 1;
  transform: none;
}

.content-nav__progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
}

.content-nav__progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan) 55%, var(--gold));
  box-shadow: 0 0 14px rgb(0 169 198 / 42%);
  transform: scaleX(var(--content-progress));
  transform-origin: 0 50%;
}

.content-nav__links a.is-active {
  color: var(--blue-900);
}

.content-nav__links a.is-active::after {
  right: 0;
  left: 0;
}

[data-magnetic] {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
  will-change: transform;
}

.content-nav__cta[data-magnetic]:hover,
.training-panel > a[data-magnetic]:hover,
.process__cta[data-magnetic]:hover {
  transform:
    translate3d(var(--magnetic-x), calc(var(--magnetic-y) - 2px), 0);
}

.immersive-ready [data-immersive-section] {
  --section-progress: 0;
  --section-shift: 0px;
}

@media (hover: hover) and (pointer: fine) {
  .immersive-ready [data-immersive-section] > .kicker,
  .immersive-ready [data-immersive-section] > h2,
  .immersive-ready [data-immersive-section] > header {
    transform: translate3d(0, var(--section-shift), 0);
    transition: transform 90ms linear;
    will-change: transform;
  }

  .immersive-ready .is-visible .service-grid [data-tilt],
  .immersive-ready .process.is-visible [data-tilt] {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --tilt-lift: 0px;
    transform:
      perspective(1100px)
      rotateX(var(--tilt-x))
      rotateY(var(--tilt-y))
      translate3d(0, var(--tilt-lift), 0);
    transform-style: preserve-3d;
    will-change: transform;
  }

  .immersive-ready .is-visible .service-grid [data-tilt]:hover,
  .immersive-ready .process.is-visible [data-tilt]:hover {
    --tilt-lift: -7px;
  }
}

.service-grid article[data-tilt] {
  isolation: isolate;
}

.service-grid article[data-tilt]::after {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  background:
    radial-gradient(
      circle at var(--tilt-glow-x, 78%) var(--tilt-glow-y, 18%),
      rgb(255 255 255 / 28%),
      transparent 32%
    );
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-grid article[data-tilt].is-tilting::after {
  opacity: 1;
}

[data-spotlight] {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  isolation: isolate;
}

[data-spotlight]::after {
  position: absolute;
  z-index: 5;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(
      32rem circle at var(--spot-x) var(--spot-y),
      rgb(255 210 122 / 10%),
      rgb(0 169 198 / 4%) 38%,
      transparent 68%
    );
  content: "";
  opacity: .3;
  pointer-events: none;
  transition: opacity 240ms ease;
}

[data-spotlight]:hover::after {
  opacity: 1;
}

.training-studio__shell {
  --studio-accent: 0 169 198;
  box-shadow:
    0 34px 90px rgb(7 31 55 / 18%),
    0 0 0 1px rgb(var(--studio-accent) / 5%);
  transition: box-shadow 420ms ease;
}

.training-studio__shell[data-active-direction="special"] {
  --studio-accent: 242 165 26;
}

.training-studio__shell[data-active-direction="care"] {
  --studio-accent: 29 190 169;
}

.training-studio__shell[data-active-direction="qualification"] {
  --studio-accent: 62 125 219;
}

.training-studio__shell:hover {
  box-shadow:
    0 42px 110px rgb(7 31 55 / 25%),
    0 0 0 1px rgb(var(--studio-accent) / 24%),
    0 0 70px rgb(var(--studio-accent) / 10%);
}

.training-panels,
.training-tabs {
  z-index: 1;
}

.training-panel {
  overflow: hidden;
  background:
    radial-gradient(
      30rem circle at var(--spot-x, 76%) var(--spot-y, 18%),
      rgb(var(--studio-accent) / 22%),
      transparent 68%
    ),
    linear-gradient(135deg, #0b3151, #071f37 72%);
  transition: background 420ms ease;
}

.training-panel::before {
  position: absolute;
  top: -8rem;
  right: -5rem;
  width: 26rem;
  height: 26rem;
  border: 1px solid rgb(var(--studio-accent) / 18%);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgb(var(--studio-accent) / 3%),
    0 0 0 8rem rgb(var(--studio-accent) / 2%);
  content: "";
  pointer-events: none;
}

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

.training-tabs button strong,
.training-tabs button small {
  transition: opacity 220ms ease, transform 220ms ease;
}

.training-tabs button[aria-selected="true"] strong {
  transform: translateX(.18rem);
}

.training-tabs button[aria-selected="true"] small {
  opacity: .84;
  transform: translateX(.18rem);
}

.training-tabs button[aria-selected="true"] > span {
  animation: studio-pulse 2.4s ease-in-out infinite;
}

.training-panel.is-active > .training-panel__index,
.training-panel.is-active > h3,
.training-panel.is-active > .training-panel__intro,
.training-panel.is-active > .training-panel__content,
.training-panel.is-active > a {
  animation: studio-content-in 520ms cubic-bezier(.22, 1, .36, 1) both;
}

.training-panel.is-active > h3 {
  animation-delay: 50ms;
}

.training-panel.is-active > .training-panel__intro {
  animation-delay: 100ms;
}

.training-panel.is-active > .training-panel__content {
  animation-delay: 150ms;
}

.training-panel.is-active > a {
  animation-delay: 210ms;
}

.certificate-list {
  isolation: isolate;
}

.certificate-list::after {
  z-index: 0;
  background:
    radial-gradient(
      24rem circle at var(--spot-x) var(--spot-y),
      rgb(0 169 198 / 9%),
      transparent 68%
    );
}

.certificate-list > * {
  position: relative;
  z-index: 1;
}

.certificate-item[open] {
  background:
    linear-gradient(90deg, rgb(255 255 255 / 82%), rgb(234 243 247 / 42%));
}

.certificate-item[open] .certificate-detail {
  animation: certificate-detail-in 360ms cubic-bezier(.22, 1, .36, 1) both;
}

.certificate-item[open] .certificate-icon {
  box-shadow:
    0 0 0 .35rem rgb(255 255 255 / 72%),
    0 12px 28px rgb(11 47 71 / 12%);
  transform: scale(1.04);
}

.certificate-icon {
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.process ol {
  --path-progress: 0;
  position: relative;
  box-shadow:
    0 30px 80px rgb(0 0 0 / 14%),
    inset 0 0 0 1px rgb(255 210 122 / 18%);
  transition: box-shadow 180ms linear;
}

.process li {
  z-index: 1;
  overflow: hidden;
}

.process li::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(255 210 122 / 0%);
  background:
    radial-gradient(circle at 85% 12%, rgb(0 169 198 / 0%), transparent 42%);
  content: "";
  pointer-events: none;
  transition: border-color 420ms ease, background 420ms ease;
}

.process li.is-path-active {
  background: rgb(10 57 88 / 94%);
}

.process li.is-path-active::after {
  border-color: rgb(255 210 122 / 28%);
  background:
    radial-gradient(circle at 85% 12%, rgb(0 169 198 / 16%), transparent 42%);
}

.process li.is-path-active::before {
  box-shadow:
    0 0 0 2px rgb(255 210 122 / 50%),
    0 0 2rem rgb(242 165 26 / 34%);
  transform: scale(1.08);
}

.process li::before {
  transition: box-shadow 360ms ease, transform 360ms ease;
}

.faq details {
  overflow: clip;
  transition: background-color 220ms ease, padding-inline 220ms ease;
}

.faq details:hover,
.faq details[open] {
  padding-inline: 1rem;
  background: rgb(255 253 248 / 64%);
}

.faq details[open] p {
  animation: faq-answer-in 320ms cubic-bezier(.22, 1, .36, 1) both;
}

.site-footer {
  background-position:
    0 var(--section-shift, 0px),
    var(--section-shift, 0px) 0,
    center,
    center;
}

@keyframes studio-pulse {
  0%,
  100% {
    text-shadow: 0 0 0 rgb(242 165 26 / 0%);
  }
  50% {
    text-shadow: 0 0 1rem rgb(242 165 26 / 55%);
  }
}

@keyframes studio-content-in {
  from {
    opacity: 0;
    transform: translate3d(1.2rem, .6rem, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes certificate-detail-in {
  from {
    opacity: 0;
    transform: translateY(-.45rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-.35rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 860px), (hover: none), (pointer: coarse) {
  .experience-aura,
  .experience-cursor {
    display: none;
  }

  [data-magnetic],
  .content-nav__cta[data-magnetic]:hover,
  .training-panel > a[data-magnetic]:hover,
  .process__cta[data-magnetic]:hover {
    transform: none;
  }

  .process li::after {
    border-width: 0 0 0 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .experience-aura,
  .experience-cursor {
    display: none;
  }

  .immersive-ready [data-immersive-section] > .kicker,
  .immersive-ready [data-immersive-section] > h2,
  .immersive-ready [data-immersive-section] > header,
  .immersive-ready .is-visible .service-grid [data-tilt],
  .immersive-ready .process.is-visible [data-tilt],
  [data-magnetic] {
    transform: none;
    transition: none;
  }

  .training-tabs button[aria-selected="true"] > span,
  .training-panel.is-active > *,
  .certificate-item[open] .certificate-detail,
  .faq details[open] p {
    animation: none;
  }
}

/* Compact immersive career terminal footer */
.site-footer {
  --footer-line: rgb(255 255 255 / 13%);
  --footer-soft: rgb(222 237 244 / 68%);
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-top: 1px solid rgb(255 204 99 / 72%);
  background:
    linear-gradient(rgb(255 255 255 / 3.5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 3.5%) 1px, transparent 1px),
    radial-gradient(circle at var(--spot-x, 78%) var(--spot-y, 18%), rgb(0 169 198 / 19%), transparent 28rem),
    radial-gradient(circle at 7% 92%, rgb(242 165 26 / 10%), transparent 22rem),
    linear-gradient(125deg, #05192d 0%, #072b46 58%, #073a4d 100%);
  background-position:
    0 var(--section-shift, 0px),
    var(--section-shift, 0px) 0,
    center,
    center,
    center;
  background-size: 56px 56px, 56px 56px, auto, auto, auto;
  color: #fff;
}

.site-footer::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(100deg, rgb(2 17 31 / 76%), transparent 54%),
    linear-gradient(0deg, rgb(2 15 28 / 48%), transparent 44%);
  content: "";
  pointer-events: none;
}

.site-footer::after {
  position: absolute;
  right: clamp(-9rem, -6vw, -4rem);
  bottom: clamp(-13rem, -9vw, -7rem);
  width: clamp(20rem, 34vw, 34rem);
  height: clamp(20rem, 34vw, 34rem);
  border: 1px solid rgb(242 165 26 / 14%);
  border-radius: 50%;
  box-shadow:
    0 0 0 3.75rem rgb(0 169 198 / 2.5%),
    0 0 0 8rem rgb(255 255 255 / 1.5%);
  content: "";
  pointer-events: none;
}

.site-footer__main,
.site-footer__utility,
.site-footer__bottom {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - clamp(2rem, 7vw, 6rem)));
  margin-inline: auto;
}

.site-footer__main {
  display: block;
  min-height: 0;
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(2.3rem, 4.5vw, 3.75rem);
}

.site-footer__masthead {
  display: flex;
  min-height: 3.8rem;
  padding-bottom: 1.25rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--footer-line);
}

.site-footer__logo {
  width: auto;
  height: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: #fff;
}

.site-footer__logo .brand-lockup__symbol {
  filter: drop-shadow(0 .65rem 1.25rem rgb(0 0 0 / 25%));
}

.site-footer__terminal {
  display: flex;
  gap: .8rem;
  margin: 0;
  align-items: center;
  color: rgb(224 238 244 / 52%);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .62rem;
  letter-spacing: .13em;
}

.site-footer__terminal span {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
}

.site-footer__terminal span::before {
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: #33d0c7;
  box-shadow: 0 0 1rem rgb(51 208 199 / 68%);
  content: "";
}

.site-footer__terminal small {
  padding: .35rem .55rem;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 999px;
  font: inherit;
}

.site-footer__station {
  display: grid;
  grid-template-columns: minmax(17rem, .66fr) minmax(0, 1.34fr);
  gap: clamp(2.4rem, 5vw, 5rem);
  padding-top: clamp(2.2rem, 4vw, 3.75rem);
  align-items: stretch;
}

.site-footer__brand {
  display: flex;
  max-width: 28rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.site-footer__eyebrow {
  display: flex;
  gap: .75rem;
  margin: 0 0 1.2rem;
  align-items: center;
  color: #ffc95e;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.site-footer__eyebrow::before {
  width: 2.25rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.site-footer__brand > h2 {
  max-width: 11ch;
  margin: 0;
  color: #fff;
  font-family: "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  font-size: clamp(2.15rem, 3.8vw, 3.7rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.055em;
}

.site-footer__intro {
  max-width: 29rem;
  margin: 1.2rem 0 0;
  color: var(--footer-soft);
  font-size: clamp(.86rem, 1vw, .96rem);
  line-height: 1.8;
}

.site-footer__actions {
  display: flex;
  gap: .75rem;
  margin-top: 1.65rem;
  flex-wrap: wrap;
  align-items: center;
}

.site-footer__primary,
.site-footer__secondary {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
}

.site-footer__primary {
  gap: 1.35rem;
  padding: .78rem 1.1rem .78rem 1.2rem;
  border: 1px solid #ffc95e;
  border-radius: .75rem;
  background: #ffc04b;
  color: #06223b;
  box-shadow: 0 .8rem 2rem rgb(0 0 0 / 16%);
}

.site-footer__primary i {
  font-size: .8rem;
  font-style: normal;
  transition: transform 260ms cubic-bezier(.22, 1, .36, 1);
}

.site-footer__primary:hover i {
  transform: translate(.15rem, -.15rem);
}

.site-footer__secondary {
  padding: .78rem 1rem;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: .75rem;
  color: rgb(239 247 250 / 76%);
}

.site-footer__secondary:hover {
  border-color: rgb(255 255 255 / 36%);
  color: #fff;
}

.site-footer__promise-note {
  max-width: 29rem;
  margin: 1rem 0 0;
  color: rgb(219 235 242 / 38%);
  font-size: .62rem;
  line-height: 1.6;
  letter-spacing: .02em;
}

.site-footer__journey {
  --footer-progress: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at var(--spot-x, 82%) var(--spot-y, 16%), rgb(255 210 122 / 9%), transparent 18rem),
    rgb(4 28 48 / 58%);
  box-shadow:
    0 1.5rem 4.5rem rgb(0 0 0 / 20%),
    inset 0 1px rgb(255 255 255 / 8%);
  backdrop-filter: blur(16px);
}

.site-footer__journey::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgb(255 255 255 / 4.5%), transparent 40%);
  content: "";
  pointer-events: none;
}

.site-footer__journey-heading {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 1.25rem;
  padding: 1.35rem clamp(1.2rem, 2vw, 1.75rem);
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--footer-line);
}

.site-footer__journey-heading p {
  margin: 0 0 .38rem;
  color: #ffc95e;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.site-footer__journey-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.3;
  letter-spacing: -.025em;
}

.site-footer__journey-heading > span {
  color: rgb(222 237 244 / 42%);
  font-size: .62rem;
  letter-spacing: .1em;
  writing-mode: vertical-rl;
}

.site-footer__journey ol {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__journey li {
  position: relative;
  min-width: 0;
  opacity: .48;
  transform: translateY(.75rem);
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(.22, 1, .36, 1),
    background-color 260ms ease;
}

.site-footer__journey li + li {
  border-left: 1px solid var(--footer-line);
}

.site-footer__journey li.is-journey-active {
  opacity: 1;
  transform: none;
}

.site-footer__journey li:hover {
  background: rgb(255 255 255 / 5%);
}

.site-footer__journey a {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 1rem .75rem;
  min-height: clamp(12.5rem, 18vw, 15rem);
  padding: clamp(1.15rem, 2vw, 1.65rem);
  color: inherit;
  text-decoration: none;
}

.site-footer__journey-index {
  align-self: start;
  color: #ffc95e;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .68rem;
  letter-spacing: .1em;
}

.site-footer__journey-index::after {
  display: block;
  width: 1.75rem;
  height: 2px;
  margin-top: .62rem;
  background: currentColor;
  box-shadow: 0 0 1rem rgb(242 165 26 / 55%);
  content: "";
  transform: scaleX(.35);
  transform-origin: left;
  transition: transform 420ms cubic-bezier(.22, 1, .36, 1);
}

.site-footer__journey li.is-journey-active .site-footer__journey-index::after,
.site-footer__journey li:hover .site-footer__journey-index::after {
  transform: scaleX(1);
}

.site-footer__journey-copy {
  display: flex;
  min-width: 0;
  grid-column: 1 / -1;
  flex-direction: column;
  align-self: end;
}

.site-footer__journey small,
.site-footer__journey strong,
.site-footer__journey em {
  display: block;
}

.site-footer__journey small {
  color: rgb(219 235 242 / 45%);
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.site-footer__journey strong {
  margin-top: .45rem;
  color: #f8fbfc;
  font-family: "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  font-size: clamp(1.6rem, 2.25vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: -.055em;
}

.site-footer__journey li:last-child strong {
  color: #ffd06f;
}

.site-footer__journey em {
  max-width: 16ch;
  margin-top: .55rem;
  color: rgb(219 235 242 / 54%);
  font-size: .69rem;
  font-style: normal;
  line-height: 1.55;
}

.site-footer__journey a > i {
  display: grid;
  width: 2rem;
  height: 2rem;
  grid-column: 2;
  grid-row: 1;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 50%;
  color: rgb(255 255 255 / 72%);
  font-size: .72rem;
  font-style: normal;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    transform 320ms cubic-bezier(.22, 1, .36, 1);
}

.site-footer__journey a:hover > i {
  border-color: #ffc95e;
  background: #ffc95e;
  color: #082844;
  transform: rotate(45deg);
}

.site-footer__journey-progress {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  overflow: hidden;
  background: rgb(255 255 255 / 7%);
}

.site-footer__journey-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #00a9c6, #ffc04b);
  box-shadow: 0 0 1.5rem rgb(0 169 198 / 72%);
  transform: scaleX(var(--footer-progress));
  transform-origin: left;
}

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

.site-footer__nav {
  display: flex;
  width: auto;
  gap: .45rem clamp(.85rem, 2vw, 1.75rem);
  padding: 0;
  flex-wrap: wrap;
  align-items: center;
}

.site-footer__nav a {
  color: rgb(231 241 246 / 58%);
  font-size: .72rem;
}

.site-footer__nav a:hover {
  color: #fff;
  transform: none;
}

.site-footer__top-link {
  display: flex;
  flex: 0 0 auto;
  gap: .7rem;
  align-items: center;
  color: #fff;
  font-size: .7rem;
  text-decoration: none;
}

.site-footer__top-link i {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid rgb(255 210 122 / 36%);
  border-radius: 50%;
  color: #ffc95e;
  font-style: normal;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    transform 320ms cubic-bezier(.22, 1, .36, 1);
}

.site-footer__top-link:hover i {
  background: #ffc95e;
  color: #082844;
  transform: translateY(-.2rem);
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.5rem;
  padding: .9rem 0 max(1.1rem, env(safe-area-inset-bottom));
  align-items: center;
  border-top: 1px solid rgb(255 255 255 / 7%);
}

@media (max-width: 980px) {
  .site-footer__station {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .site-footer__brand {
    max-width: 38rem;
  }

  .site-footer__brand > h2 {
    max-width: 14ch;
  }

  .site-footer__journey {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .site-footer {
    background-size: 42px 42px, 42px 42px, auto, auto, auto;
  }

  .site-footer__main,
  .site-footer__utility,
  .site-footer__bottom {
    width: min(100% - 2rem, 36rem);
  }

  .site-footer__main {
    padding-block: 1.5rem 2.5rem;
  }

  .site-footer__masthead {
    min-height: 3.5rem;
  }

  .site-footer__terminal span {
    display: none;
  }

  .site-footer__station {
    gap: 2.2rem;
    padding-top: 2.5rem;
  }

  .site-footer__brand > h2 {
    font-size: clamp(2.35rem, 11vw, 3.15rem);
  }

  .site-footer__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .site-footer__journey {
    border-radius: 1.15rem;
  }

  .site-footer__journey-heading {
    padding: 1.25rem 1.1rem;
  }

  .site-footer__journey ol {
    grid-template-columns: 1fr;
  }

  .site-footer__journey li + li {
    border-top: 1px solid var(--footer-line);
    border-left: 0;
  }

  .site-footer__journey a {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: 1fr;
    gap: .9rem;
    min-height: 6.8rem;
    padding: 1rem 1.1rem;
    align-items: center;
  }

  .site-footer__journey-index {
    align-self: center;
  }

  .site-footer__journey-index::after {
    width: 1.35rem;
  }

  .site-footer__journey-copy {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

  .site-footer__journey strong {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
  }

  .site-footer__journey em {
    max-width: none;
  }

  .site-footer__journey a > i {
    grid-column: 3;
    grid-row: 1;
  }

  .site-footer__utility {
    align-items: flex-end;
  }

  .site-footer__nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: .75rem 1.25rem;
  }

  .site-footer__top-link > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    gap: .5rem;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__journey li,
  .site-footer__journey-index::after,
  .site-footer__journey-progress i {
    transform: none;
    transition: none;
  }

  .site-footer__journey li {
    opacity: 1;
  }

  .site-footer__journey-progress i {
    width: 100%;
  }
}

/* Mobile adaptive layer: phone layouts are composed, not scaled-down desktop. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

img,
video,
canvas {
  max-width: 100%;
}

button,
a,
summary {
  touch-action: manipulation;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

@media (max-width: 860px) {
  .content-shell {
    overflow: clip;
  }

  .content-nav {
    width: min(100% - 1.25rem, 74rem);
    min-height: 4rem;
  }

  .content-nav__cta {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
  }

  .content-section {
    width: min(100% - 1.25rem, 74rem);
    padding-block: 3.5rem;
  }

  .certificate-explorer {
    width: min(100% - 1.25rem, 42rem);
    overflow: clip;
    padding-block: 3rem;
  }

  .certificate-explorer::before {
    background: #fbfaf6;
  }

  .certificate-explorer__layout {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .certificate-explorer__heading,
  .certificate-explorer__catalog,
  .certificate-list,
  .certificate-item {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .certificate-explorer__heading {
    position: static;
  }

  .certificate-explorer__heading .kicker {
    margin-bottom: .7rem;
    font-size: .72rem;
    letter-spacing: .12em;
  }

  .certificate-explorer__heading h2 {
    max-width: 14ch;
    font-size: clamp(2rem, 7.5vw, 2.55rem);
    line-height: 1.08;
  }

  .certificate-explorer__heading > p:not(.kicker) {
    max-width: 38rem;
    margin-top: .85rem;
    font-size: .92rem;
    line-height: 1.65;
  }

  .certificate-explorer__heading .certificate-note {
    margin-top: .85rem;
    padding-top: .8rem;
    border-top: 1px solid rgb(11 62 103 / 10%);
    color: rgb(50 76 94 / 72%);
    font-size: .76rem;
    line-height: 1.55;
  }

  .certificate-explorer__catalog {
    margin-top: 1.4rem;
  }

  .certificate-list {
    overflow: hidden;
    border: 0;
    border-block: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .service-grid {
    gap: .85rem;
  }

  .service-grid article {
    min-height: auto;
    padding: 1.35rem;
  }

  .training-studio__shell {
    border-radius: 1.1rem;
  }

  .training-tabs button {
    min-height: 3.5rem;
  }

  .training-panel {
    padding: 1.65rem 1rem;
  }

  .training-panel > a,
  .process__cta {
    display: inline-flex;
    width: 100%;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
  }

  .certificate-item summary {
    width: 100%;
    min-width: 0;
    min-height: 4.6rem;
    padding: .7rem .1rem;
    grid-template-columns: 2.3rem minmax(0, 1fr) 1rem;
    gap: .75rem;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .certificate-item[open] summary {
    background: transparent;
  }

  .certificate-icon {
    width: 2.3rem;
    height: 2.3rem;
  }

  .certificate-icon::before {
    width: 1.08rem;
    height: 1.08rem;
  }

  .certificate-copy strong {
    font-size: 1rem;
    line-height: 1.3;
  }

  .certificate-copy > span {
    margin-top: .12rem;
    font-size: .78rem;
    line-height: 1.4;
  }

  .certificate-copy,
  .certificate-copy strong,
  .certificate-copy > span {
    min-width: 0;
    max-width: 100%;
    writing-mode: horizontal-tb;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .certificate-detail {
    margin: 0 0 .85rem 3.05rem;
    padding: .2rem 0 .75rem;
    border-left: 0;
  }

  .certificate-detail p {
    font-size: .84rem;
    line-height: 1.6;
  }

  .faq summary {
    display: flex;
    min-height: 3rem;
    padding-right: 1.75rem;
    align-items: center;
  }

  .site-footer__utility {
    gap: 1rem;
  }
}

@media (max-width: 430px) {
  .sw-topbar {
    gap: .5rem;
    padding-inline: max(.75rem, env(safe-area-inset-left));
  }

  .sw-brand {
    gap: .3rem;
  }

  .sw-brand__lockup {
    gap: .12rem;
  }

  .sw-brand__lockup strong {
    font-size: .86rem;
  }

  .sw-brand__lockup small {
    font-size: .36rem;
    letter-spacing: .03em;
  }

  .sw-topcta {
    min-height: 2.75rem;
    padding: .65rem .8rem;
  }

  .sw-copy {
    right: 2.8rem;
    bottom: calc(4.1rem + env(safe-area-inset-bottom));
    left: max(1rem, env(safe-area-inset-left));
    padding-left: .8rem;
  }

  .sw-copy__eyebrow {
    margin-top: .6rem;
  }

  .sw-copy:first-child .sw-copy__title,
  .sw-copy__title {
    font-size: clamp(1.82rem, 9.4vw, 2.38rem);
    line-height: 1.04;
  }

  .sw-copy__body {
    display: -webkit-box;
    overflow: hidden;
    font-size: .88rem;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .sw-copy__tags {
    gap: .38rem;
    margin-top: .75rem;
  }

  .sw-copy__tags li {
    padding: .38rem .58rem;
    font-size: .66rem;
  }

  .sw-route {
    right: .1rem;
  }

  .content-nav {
    width: calc(100% - 1rem);
  }

  .content-nav__brand span {
    font-size: .8rem;
  }

  .content-nav__cta {
    padding-inline: .8rem;
  }

  .content-section {
    width: calc(100% - 1rem);
  }

  .certificate-explorer {
    width: calc(100% - 1.25rem);
    padding-block: 2.25rem 2.75rem;
  }

  .certificate-explorer__heading h2 {
    max-width: 12ch;
    font-size: clamp(1.8rem, 8.8vw, 2.2rem);
    line-height: 1.1;
  }

  .certificate-explorer__heading > p:not(.kicker) {
    max-width: none;
    font-size: .86rem;
    line-height: 1.6;
  }

  .certificate-explorer__heading .certificate-note {
    font-size: .7rem;
    line-height: 1.5;
  }

  .certificate-explorer__catalog {
    margin-top: 1.15rem;
  }

  .certificate-list {
    border-radius: 0;
    box-shadow: none;
  }

  .training-tabs {
    gap: .25rem;
    padding: .5rem;
  }

  .training-tabs button {
    min-height: 3.75rem;
    padding: .65rem .35rem;
  }

  .training-tabs button small {
    font-size: .58rem;
  }

  .certificate-item summary {
    min-height: 4.35rem;
    padding: .65rem 0;
    grid-template-columns: 2.1rem minmax(0, 1fr) .9rem;
    gap: .65rem;
  }

  .certificate-icon {
    width: 2.1rem;
    height: 2.1rem;
  }

  .certificate-icon::before {
    width: 1rem;
    height: 1rem;
  }

  .certificate-copy strong {
    font-size: .94rem;
    line-height: 1.35;
  }

  .certificate-copy > span {
    font-size: .72rem;
    line-height: 1.4;
  }

  .certificate-arrow {
    width: .9rem;
    height: .9rem;
  }

  .certificate-detail {
    margin: 0 0 .75rem 2.75rem;
    padding: .15rem 0 .65rem;
  }

  .certificate-detail p {
    font-size: .8rem;
    line-height: 1.55;
  }

  .site-footer__main,
  .site-footer__utility,
  .site-footer__bottom {
    width: calc(100% - 1.25rem);
  }

  .site-footer__brand > h2 {
    font-size: clamp(2.15rem, 10.6vw, 2.8rem);
  }

  .site-footer__journey a {
    gap: .6rem;
    min-height: 6.35rem;
    padding: .9rem .8rem;
  }

  .site-footer__journey-index {
    width: auto;
    height: auto;
  }

  .site-footer__journey em {
    font-size: .7rem;
  }

  .site-footer__nav {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-height: 620px) and (max-width: 860px) {
  .sw-copy__body {
    -webkit-line-clamp: 2;
  }

  .sw-copy__tags,
  .sw-hint {
    display: none;
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  .sw-topbar {
    padding-block: .5rem;
  }

  .sw-copylayer::before {
    width: 72%;
    height: 100%;
    background: linear-gradient(90deg, rgb(5 24 40 / 84%), transparent);
  }

  .sw-copy {
    top: 50%;
    right: auto;
    bottom: auto;
    width: min(52vw, 29rem);
    transform: translateY(-50%);
  }

  .sw-copy__body {
    -webkit-line-clamp: 2;
  }

  .sw-copy__tags,
  .sw-hint {
    display: none;
  }

  .site-footer__main {
    padding-block: 1.5rem 2.25rem;
  }
}
