:root {
  --navy: #0b2540;
  --navy-2: #123b5a;
  --teal: #0f6b67;
  --teal-light: #dcecea;
  --gold: #d5ae57;
  --gold-dark: #a77b23;
  --ink: #142536;
  --muted: #607080;
  --line: #dbe2e6;
  --soft: #f3f5f4;
  --white: #ffffff;
  --danger: #9b4b3c;
  --shadow: 0 18px 48px rgba(11, 37, 64, 0.12);
  --serif: "Noto Serif SC", "Songti SC", "STSong", Georgia, serif;
  --sans: Inter, "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 64px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 226, 230, 0.9);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-right: auto;
  min-width: 270px;
}

.brand img {
  width: 98px;
  height: auto;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  position: relative;
  color: #354657;
  font-size: 14px;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition: 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--navy);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.nav-action:hover {
  background: var(--teal);
  border-color: var(--teal);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
}

.language-switcher button {
  min-width: 34px;
  height: 40px;
  padding: 0 8px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  font-size: 12px;
  cursor: pointer;
}

.language-switcher button:last-child {
  border-right: 0;
}

.language-switcher button.active {
  color: var(--white);
  background: var(--teal);
}

.nav-login {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.nav-login:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.mobile-nav-tools {
  display: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: 180ms ease;
}

.menu-open .menu-button span {
  opacity: 0;
}

.menu-open .menu-button::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-button::after {
  transform: translateY(-7px) rotate(-45deg);
}

.home-hero {
  position: relative;
  min-height: 690px;
  display: block;
  background: url("assets-v2/hero-dialogue.jpg") center / cover no-repeat;
  overflow: hidden;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 34%, rgba(255, 255, 255, 0.62) 54%, rgba(255, 255, 255, 0.08) 78%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.72) 0%, transparent 26%);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 690px);
  min-height: 690px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: max(32px, calc((100vw - var(--max)) / 2));
  padding: 64px 56px 64px 0;
}

.hero-copy h1,
.inner-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 74px);
  font-weight: 700;
  line-height: 1.24;
}

.hero-copy h1::after {
  display: block;
  width: 76px;
  height: 3px;
  margin-top: 26px;
  background: var(--gold);
  content: "";
}

.hero-copy p {
  max-width: 570px;
  margin: 26px 0 32px;
  color: #435465;
  font-size: 18px;
  line-height: 1.9;
}

.hero-media {
  display: none;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 180ms ease;
}

.btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.btn.secondary {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.btn.secondary:hover {
  color: var(--white);
  background: var(--teal);
}

.btn.gold {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

.btn.gold:hover {
  background: #e2be6c;
  border-color: #e2be6c;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-weight: 700;
}

.text-link:hover {
  color: var(--navy);
}

.stage-entry {
  padding: 54px 0 62px;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.section-title {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.3;
}

.section-heading p,
.section-copy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stage-item {
  min-height: 148px;
  padding: 26px 28px;
  border-right: 1px solid var(--line);
  transition: 180ms ease;
}

.stage-item:last-child {
  border-right: 0;
}

.stage-item:hover {
  color: var(--white);
  background: var(--teal);
}

.stage-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 22px;
}

.stage-item:hover span,
.stage-item:hover p {
  color: rgba(255, 255, 255, 0.78);
}

.stage-item strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 21px;
}

.stage-item:hover strong {
  color: var(--white);
}

.stage-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.path-overview {
  padding: 108px 0;
}

.path-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-top: 62px;
}

.path-line::before {
  position: absolute;
  top: 8px;
  right: 7%;
  left: 7%;
  height: 1px;
  background: var(--gold);
  content: "";
}

.path-step {
  position: relative;
  padding: 40px 22px 0 0;
}

.path-step::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
  content: "";
}

.path-step .number {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
}

.path-step h3 {
  margin: 12px 0 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 20px;
}

.path-step p {
  min-height: 76px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.product-band {
  padding: 94px 0 100px;
  color: var(--white);
  background: var(--navy);
}

.product-band .section-title,
.product-band .section-copy {
  color: var(--white);
}

.product-band .section-copy {
  color: rgba(255, 255, 255, 0.68);
}

.decision-paths {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.decision-path {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.45fr);
  gap: 64px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.decision-intro {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
}

.decision-number {
  color: #69d7d0;
  font-family: var(--serif);
  font-size: 24px;
}

.decision-intro small {
  display: block;
  margin: 1px 0 5px;
  color: #69d7d0;
  font-size: 13px;
}

.decision-intro h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.4;
}

.decision-intro p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.decision-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.decision-option {
  display: flex;
  min-height: 184px;
  flex-direction: column;
  padding: 25px 28px;
  background: #123451;
  transition: background 180ms ease;
}

.decision-option:hover {
  background: #17435f;
}

.decision-option > span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.decision-option strong {
  margin-top: 4px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 20px;
}

.decision-option p {
  margin: 8px 0 16px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.decision-option b {
  margin-top: auto;
  color: #69d7d0;
  font-size: 14px;
}

.learning-route {
  display: grid;
  grid-template-columns: repeat(5, auto) minmax(170px, 1fr);
  align-items: center;
  min-height: 184px;
  padding: 24px 28px;
  background: #123451;
}

.learning-route > div {
  min-width: 108px;
}

.learning-route span,
.learning-route small {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.learning-route strong {
  display: block;
  margin: 2px 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 27px;
}

.learning-route > i {
  margin: 0 18px;
  color: rgba(255, 255, 255, 0.34);
  font-style: normal;
}

.decision-route-link {
  justify-self: end;
  padding: 14px 18px;
  color: var(--navy);
  background: #69d7d0;
  font-weight: 700;
  font-size: 14px;
}

.story-section {
  padding: 112px 0;
}

.story-lead {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 74px;
  align-items: center;
}

.story-lead figure {
  margin: 0;
}

.story-lead img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line);
}

.story-flow article {
  padding: 28px 28px 0 0;
}

.story-flow article + article {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.story-flow span {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 34px;
}

.story-flow h3 {
  margin: 4px 0 10px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 19px;
}

.story-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.network-section {
  padding: 100px 0;
  background: var(--soft);
}

.mentor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.mentor {
  min-width: 0;
}

.mentor img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.mentor h3 {
  margin: 18px 0 2px;
  color: var(--teal);
  font-family: var(--serif);
  font-size: 22px;
}

.mentor strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 14px;
}

.mentor p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.team-directory-link {
  margin-top: 34px;
  text-align: right;
}

.community-strip {
  padding: 100px 0 0;
}

.photo-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  margin-top: 40px;
  overflow: hidden;
}

.photo-rail figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.photo-rail img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.photo-rail figure:hover img {
  transform: scale(1.04);
}

.photo-rail figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 18px 14px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(6, 23, 38, 0.78));
  font-size: 13px;
}

.final-cta {
  min-height: 520px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 37, 64, 0.98) 0%, rgba(11, 37, 64, 0.92) 45%, rgba(11, 37, 64, 0.2) 75%),
    url("assets-v2/about-swing.jpg") center / cover no-repeat;
}

.final-cta .cta-copy {
  width: min(560px, 100%);
  padding: 80px 0;
}

.final-cta h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.3;
}

.final-cta p {
  margin: 20px 0 30px;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer {
  padding: 54px 0 26px;
  color: #627181;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
}

.footer-brand img {
  width: 108px;
}

.footer-brand h3 {
  margin: 14px 0 4px;
  color: var(--navy);
  font-family: var(--serif);
}

.footer-brand p {
  max-width: 360px;
  margin: 8px 0 0;
  font-size: 13px;
}

.footer-col h4 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 14px;
}

.footer-col a {
  display: block;
  margin: 8px 0;
  font-size: 13px;
}

.footer-col a:hover {
  color: var(--teal);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.inner-hero {
  padding: 86px 0 74px;
  background: var(--white);
}

.inner-hero.compact {
  padding-bottom: 48px;
}

.inner-hero p {
  max-width: 740px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.inner-hero .hero-actions {
  margin-top: 30px;
}

.path-photo-hero,
.course-photo-hero {
  min-height: 560px;
  display: flex;
  align-items: center;
}

.inner-hero.compact.path-photo-hero,
.course-intro.course-photo-hero {
  padding: 0;
}

.path-photo-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.93) 42%, rgba(255, 255, 255, 0.5) 64%, rgba(255, 255, 255, 0.08) 84%),
    url("assets-v2/photo-workshop-coaches.jpg") center / cover no-repeat;
}

.course-photo-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.93) 40%, rgba(255, 255, 255, 0.48) 63%, rgba(255, 255, 255, 0.08) 84%),
    url("assets-v2/photo-foundation-hk-15.jpg") center / cover no-repeat;
}

.path-photo-hero .container,
.course-photo-hero .container {
  padding-top: 72px;
  padding-bottom: 72px;
}

.path-photo-hero h1 {
  max-width: 650px;
}

.path-photo-hero p,
.course-photo-hero > .container > p {
  max-width: 620px;
  color: #435465;
}

.crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
}

.crumb a:hover {
  color: var(--teal);
}

.path-table-section {
  padding: 24px 0 100px;
}

.path-table-head,
.path-row {
  display: grid;
  grid-template-columns: 135px 1.1fr 1.05fr 1.2fr 170px;
  gap: 26px;
  align-items: center;
}

.path-table-head {
  padding: 18px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--navy);
  font-size: 12px;
}

.path-row {
  min-height: 168px;
  border-bottom: 1px solid var(--line);
}

.path-index {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.15;
}

.path-index small {
  display: block;
  margin-top: 6px;
  color: var(--teal);
  font-family: var(--sans);
  font-size: 13px;
}

.path-question {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 22px;
}

.path-support strong {
  display: block;
  color: var(--ink);
}

.path-support span {
  color: var(--muted);
  font-size: 13px;
}

.path-visual img {
  width: 100%;
  height: 116px;
  object-fit: cover;
}

.path-action {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 20px;
  text-align: right;
}

.state-picker {
  padding: 78px 0;
  background: var(--soft);
}

.picker-grid {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 42px;
}

.picker-grid h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 30px;
}

.picker-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
}

.picker-option {
  min-height: 118px;
  padding: 22px;
  color: var(--navy);
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--white);
  text-align: left;
  cursor: pointer;
}

.picker-option:last-child {
  border-right: 0;
}

.picker-option span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.picker-option.active,
.picker-option:hover {
  color: var(--white);
  background: var(--teal);
}

.picker-option.active span,
.picker-option:hover span {
  color: rgba(255, 255, 255, 0.72);
}

.picker-result {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  min-height: 96px;
  margin-top: -18px;
  padding: 20px 26px;
  background: var(--white);
  border-left: 3px solid var(--gold);
}

.picker-result p {
  margin: 0;
}

.picker-result strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 20px;
}

.catalog-section {
  padding: 24px 0 112px;
}

.catalog-group {
  margin-top: 74px;
}

.catalog-group:first-child {
  margin-top: 0;
}

.catalog-intro {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--navy);
}

.catalog-intro span {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 20px;
}

.catalog-intro h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 36px;
}

.catalog-intro p {
  margin: 8px 0 0;
  color: var(--muted);
}

.catalog-row {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.45fr;
  gap: 38px;
  align-items: center;
  min-height: 190px;
  border-bottom: 1px solid var(--line);
}

.catalog-row h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 26px;
}

.catalog-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.catalog-meta {
  color: var(--muted);
  font-size: 13px;
}

.catalog-meta strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 15px;
}

.catalog-price {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 30px;
  text-align: right;
}

.catalog-row:hover h3,
.catalog-row:hover .catalog-price {
  color: var(--teal);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.78fr);
  min-height: 620px;
}

.detail-hero-copy {
  align-self: center;
  width: min(100%, 710px);
  margin-left: max(32px, calc((100vw - var(--max)) / 2));
  padding: 66px 64px 66px 0;
}

.detail-hero-copy h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.25;
}

.detail-hero-copy p {
  max-width: 620px;
  margin: 22px 0;
  color: var(--muted);
  font-size: 18px;
}

.detail-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-facts div {
  min-width: 130px;
  padding: 16px 22px 16px 0;
  margin-right: 22px;
}

.detail-facts span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.detail-facts strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 20px;
}

.detail-hero-media {
  min-height: 620px;
  background-position: center;
  background-size: cover;
}

.detail-hero-media.trial {
  background-image: url("assets-v2/photo-foundation-group.jpg");
}

.detail-hero-media.m1 {
  background-image: url("assets-v2/photo-workshop-beijing.jpg");
}

.detail-hero-media.acc {
  background-image: url("assets-v2/photo-acc-hk-2.jpg");
}

.detail-hero-media.dialogue {
  background-image: url("assets-v2/photo-coaching-dialogue.jpg");
  background-position: center;
}

.detail-hero-media.pcc {
  background-image: url("assets-v2/photo-enterprise-training.jpg");
}

.detail-section {
  padding: 96px 0;
}

.detail-section.soft {
  background: var(--soft);
}

.detail-split {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 92px;
}

.detail-split .section-heading {
  margin-bottom: 0;
}

.outcome-list {
  border-top: 1px solid var(--navy);
}

.outcome {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.outcome span {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 28px;
}

.outcome h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 20px;
}

.outcome p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.session-list {
  counter-reset: session;
  border-top: 1px solid var(--navy);
}

.session {
  counter-increment: session;
  display: grid;
  grid-template-columns: 70px 1fr 140px;
  gap: 24px;
  align-items: center;
  min-height: 116px;
  border-bottom: 1px solid var(--line);
}

.session::before {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 30px;
  content: counter(session, decimal-leading-zero);
}

.session h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 20px;
}

.session p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.session time {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.route-next {
  padding: 84px 0;
  color: var(--white);
  background: var(--navy);
}

.route-next-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.route-next h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 38px;
}

.route-next p {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.practice-hero {
  min-height: 650px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 27, 47, 0.97) 0%, rgba(8, 27, 47, 0.83) 48%, rgba(8, 27, 47, 0.2) 76%),
    url("assets-v2/practice-roots.jpg") center / cover no-repeat;
}

.practice-hero-copy {
  max-width: 750px;
  padding: 88px 0;
}

.practice-hero h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 70px);
  line-height: 1.24;
}

.practice-hero p {
  max-width: 650px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.plan-section {
  padding: 104px 0;
}

.plan-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 48px;
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
}

.plan {
  padding: 42px 52px 48px 0;
}

.plan + .plan {
  padding-left: 52px;
  border-left: 1px solid var(--line);
}

.plan .plan-number {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 24px;
}

.plan h2 {
  margin: 8px 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 34px;
}

.plan .price {
  color: var(--teal);
}

.plan .audience {
  min-height: 58px;
  color: var(--muted);
}

.plain-list {
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid var(--line);
}

.plain-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  content: "—";
}

.application-section {
  padding: 96px 0;
  background: var(--soft);
}

.form-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 84px;
}

.form-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-panel label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.form-panel label.full,
.form-panel .form-status,
.form-panel button {
  grid-column: 1 / -1;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cfd8dd;
  border-radius: 0;
  outline: none;
}

.form-panel textarea {
  min-height: 126px;
  resize: vertical;
}

.form-panel input:focus,
.form-panel select:focus,
.form-panel textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 107, 103, 0.12);
}

.form-status {
  display: none;
  padding: 14px;
  color: var(--teal);
  background: var(--teal-light);
  font-weight: 700;
}

.form-status.visible {
  display: block;
}

.community-hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 620px;
  background: var(--soft);
}

.community-hero-copy {
  align-self: center;
  max-width: 650px;
  margin-left: max(32px, calc((100vw - var(--max)) / 2));
  padding: 70px 70px 70px 0;
}

.community-hero-copy h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 68px);
  line-height: 1.25;
}

.community-hero-copy p {
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 18px;
}

.community-hero-media {
  background: url("assets-v2/photo-shell-game-shanghai.jpg") center / cover no-repeat;
}

.entry-choices {
  padding: 28px 0 72px;
}

.entry-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
}

.entry-choice {
  padding: 38px 48px 42px 0;
}

.entry-choice + .entry-choice {
  padding-left: 48px;
  border-left: 1px solid var(--line);
}

.entry-choice span {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 18px;
}

.entry-choice h2 {
  margin: 8px 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 30px;
}

.entry-choice p {
  min-height: 60px;
  color: var(--muted);
}

.direct-note {
  margin-top: 20px;
  padding: 14px 18px;
  color: var(--teal);
  background: var(--teal-light);
  font-size: 13px;
  font-weight: 700;
}

.events-section,
.articles-section {
  padding: 100px 0;
}

.events-section {
  background: var(--soft);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.event-card {
  background: var(--white);
  border: 1px solid var(--line);
}

.event-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.event-card-body {
  padding: 24px;
}

.event-card-body > span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
}

.event-card h3 {
  margin: 8px 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 24px;
}

.event-card p {
  min-height: 72px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.article-list {
  margin-top: 40px;
  border-top: 1px solid var(--navy);
}

.article-preview {
  display: grid;
  grid-template-columns: 200px 180px 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 170px;
  border-bottom: 1px solid var(--line);
}

.article-preview img {
  width: 200px;
  height: 128px;
  object-fit: cover;
}

.article-preview > span {
  color: var(--teal);
  font-size: 13px;
}

.article-preview h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 23px;
}

.article-preview p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.article-preview .text-link {
  white-space: nowrap;
}

.pcc-hours {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 36px;
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
}

.pcc-hours article {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.pcc-hours article:last-child {
  border-right: 0;
}

.pcc-hours strong {
  display: block;
  color: var(--teal);
  font-family: var(--serif);
  font-size: 34px;
}

.pcc-hours span {
  color: var(--muted);
  font-size: 13px;
}

.course-intro {
  padding: 56px 0 48px;
}

.course-kicker {
  margin: 28px 0 12px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.course-kicker::before {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin-right: 12px;
  background: var(--gold);
  vertical-align: middle;
  content: "";
}

.course-intro h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 68px);
  line-height: 1.16;
}

.course-intro > .container > p {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.course-pathway {
  padding: 62px 0 68px;
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.course-pathway-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 58px;
  align-items: start;
}

.course-pathway h2,
.course-section-head h2,
.course-entry h2,
.course-incubator h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.3;
}

.course-pathway-grid > div:first-child > p {
  margin: 18px 0 24px;
  color: var(--muted);
}

.course-trust {
  max-width: 310px;
  padding-left: 14px;
  color: #718077;
  border-left: 2px solid var(--teal);
  font-size: 13px;
}

.course-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.course-steps::before {
  position: absolute;
  top: 23px;
  right: 16.5%;
  left: 16.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--teal) 52%, var(--gold));
  content: "";
}

.course-step {
  position: relative;
  text-align: center;
}

.course-step-number {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--gold-dark);
  background: var(--soft);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.course-step.current .course-step-number {
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--teal);
  box-shadow: 0 0 0 6px rgba(15, 107, 103, 0.08);
}

.course-step h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 19px;
}

.course-step p {
  min-height: 90px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.course-step .btn {
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
}

.course-entry {
  padding: 34px 0 0;
}

.course-entry-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.72fr 1.25fr auto;
  gap: 28px;
  align-items: center;
  padding: 26px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  box-shadow: 0 10px 28px rgba(30, 43, 51, 0.06);
}

.course-entry h2 {
  font-size: 28px;
}

.course-entry-inner > div {
  padding-left: 24px;
  color: var(--muted);
  border-left: 1px solid var(--line);
  font-size: 14px;
}

.course-entry-inner strong {
  display: block;
  color: var(--gold-dark);
  font-size: 19px;
}

.course-catalog,
.course-teachers {
  padding: 78px 0 86px;
}

.course-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.course-section-head p {
  margin: 10px 0 0;
  color: var(--muted);
}

.course-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.course-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(11, 37, 64, 0.15);
}

.course-card > span {
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.course-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.4;
}

.course-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.course-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: auto;
  padding-top: 24px;
  color: #66757c;
  font-size: 12px;
}

.course-card-price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  color: var(--gold-dark);
}

.course-card-price strong {
  font-family: var(--serif);
  font-size: 28px;
}

.course-card-price span {
  font-size: 22px;
}

.course-teachers {
  background: var(--soft);
}

.course-teacher-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.course-teacher-grid article {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 260px;
  background: var(--white);
  border: 1px solid var(--line);
}

.course-teacher-grid img {
  width: 190px;
  height: 100%;
  object-fit: cover;
}

.course-teacher-grid article > div {
  padding: 30px 28px;
}

.course-teacher-grid span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.course-teacher-grid h3 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 26px;
}

.course-teacher-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.course-incubator {
  padding: 0 0 90px;
  background: var(--soft);
}

.course-incubator-inner {
  min-height: 430px;
  display: flex;
  align-items: center;
  padding: 56px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 37, 64, 0.97) 0%, rgba(11, 37, 64, 0.88) 52%, rgba(11, 37, 64, 0.16) 100%),
    url("assets-v2/practice-roots.jpg") center / cover no-repeat;
}

.course-incubator-inner > div {
  max-width: 660px;
}

.course-incubator-inner > div > span {
  color: #77dbd4;
  font-size: 12px;
  font-weight: 800;
}

.course-incubator h2 {
  margin-top: 10px;
  color: var(--white);
}

.course-incubator p {
  color: rgba(255, 255, 255, 0.75);
}

.course-incubator-options {
  display: flex;
  gap: 12px;
  margin: 28px 0;
}

.course-incubator-options div {
  min-width: 190px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.course-incubator-options strong,
.course-incubator-options span {
  display: block;
}

.course-incubator-options span {
  color: #ecd894;
  font-size: 13px;
}

.values-section {
  padding: 100px 0;
}

.value-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
}

.value-list article {
  padding: 34px;
  border-right: 1px solid var(--line);
}

.value-list article:last-child {
  border-right: 0;
}

.value-list span {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 32px;
}

.value-list h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 24px;
}

.value-list p {
  color: var(--muted);
  font-size: 14px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 260px;
  gap: 12px;
  padding-bottom: 110px;
}

.gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.gallery figure:first-child {
  grid-row: span 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery figure:hover img {
  transform: scale(1.035);
}

.gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 42px 18px 14px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(8, 24, 39, 0.78));
}

.stories-section {
  padding: 30px 0 110px;
}

.story-case {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.story-case img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story-case h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 32px;
}

.case-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--navy);
}

.case-flow div {
  padding: 22px 18px 0 0;
}

.case-flow div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.case-flow strong {
  display: block;
  color: var(--teal);
  font-family: var(--serif);
  font-size: 18px;
}

.case-flow p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.about-brand-hero {
  padding: 38px 0 96px;
  text-align: center;
  background: linear-gradient(180deg, var(--soft) 0%, var(--white) 100%);
}

.about-brand-hero .crumb {
  text-align: left;
}

.about-brand-hero img {
  width: 240px;
  margin: 58px auto 26px;
}

.about-brand-hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.28;
}

.about-brand-hero p {
  max-width: 820px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.about-vision {
  padding: 100px 0;
}

.about-vision-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 88px;
}

.about-vision-grid > div:first-child > span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
}

.about-vision h2 {
  margin: 12px 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 48px;
}

.about-vision-grid > div:last-child > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
}

.about-signals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
}

.about-signals div {
  padding: 24px 20px;
  border-right: 1px solid var(--line);
}

.about-signals div:last-child {
  border-right: 0;
}

.about-signals strong,
.about-signals span {
  display: block;
}

.about-signals strong {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 20px;
}

.about-signals span {
  color: var(--muted);
  font-size: 12px;
}

.founder-section {
  padding: 100px 0;
  background: var(--navy);
}

.founder-section .section-heading h2,
.founder-section .section-heading p {
  color: var(--white);
}

.founder-section .section-heading p {
  color: rgba(255, 255, 255, 0.62);
}

.founder-profile {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 64px;
  align-items: center;
}

.founder-profile > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.founder-profile > div > span {
  color: #78dcd5;
  font-size: 12px;
  font-weight: 800;
}

.founder-profile h2 {
  margin: 10px 0 6px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 42px;
}

.founder-profile strong {
  color: var(--gold);
}

.founder-profile p {
  color: rgba(255, 255, 255, 0.72);
}

.founder-profile blockquote {
  margin: 28px 0 0;
  padding: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.9;
}

.culture-section,
.coach-team-section {
  padding: 100px 0;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
}

.culture-grid article {
  padding: 38px 34px;
  border-right: 1px solid var(--line);
}

.culture-grid article:last-child {
  border-right: 0;
}

.culture-grid span {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 34px;
}

.culture-grid h3 {
  margin: 12px 0 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 24px;
}

.culture-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.coach-team-section {
  background: var(--soft);
}

.team-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.directory-coach {
  min-width: 0;
  padding: 26px 20px 24px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.directory-coach img {
  width: 126px;
  height: 126px;
  margin: 0 auto 18px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}

.directory-coach h3 {
  margin: 0 0 5px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 19px;
}

.directory-coach strong {
  display: block;
  min-height: 48px;
  color: #425466;
  font-size: 12px;
  line-height: 1.7;
}

.directory-coach p {
  margin: 12px 0 0;
  padding-top: 12px;
  color: var(--teal);
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.65;
}

.enterprise-hero {
  min-height: 690px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 39%, rgba(255, 255, 255, 0.5) 61%, rgba(255, 255, 255, 0.08) 83%),
    url("assets-v2/企业分享.jpg") center / cover no-repeat;
}

.enterprise-hero-copy {
  max-width: 690px;
  padding: 90px 0;
}

.enterprise-hero-copy > span,
.enterprise-coach-grid > div > span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
}

.enterprise-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--soft);
}

.enterprise-teaser-media {
  min-height: 560px;
  background: url("assets-v2/企业分享.jpg") center / cover no-repeat;
}

.enterprise-teaser-copy {
  align-self: center;
  max-width: 680px;
  padding: 72px;
}

.enterprise-teaser-copy > span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
}

.enterprise-teaser-copy h2 {
  margin: 12px 0 18px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.3;
}

.enterprise-teaser-copy p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
}

.enterprise-hero h1 {
  margin: 14px 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(50px, 5vw, 74px);
  line-height: 1.24;
}

.enterprise-hero p {
  max-width: 610px;
  margin: 26px 0 32px;
  color: #435465;
  font-size: 18px;
}

.enterprise-challenges,
.enterprise-solutions,
.enterprise-process,
.enterprise-coach {
  padding: 100px 0;
}

.enterprise-challenges {
  background: var(--soft);
}

.challenge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--navy);
  border-left: 1px solid var(--line);
}

.challenge-grid article {
  padding: 34px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.challenge-grid span,
.enterprise-solution-list article > div:first-child > span {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 22px;
}

.challenge-grid h3 {
  margin: 10px 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 22px;
}

.challenge-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.enterprise-solution-list {
  border-top: 1px solid var(--navy);
}

.enterprise-solution-list article {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 64px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.enterprise-solution-list h3 {
  margin: 8px 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 28px;
}

.enterprise-solution-list strong {
  color: var(--teal);
  font-size: 13px;
}

.enterprise-solution-list p {
  margin-top: 0;
  color: var(--muted);
}

.enterprise-process {
  color: var(--white);
  background: var(--navy);
}

.enterprise-process .section-heading h2,
.enterprise-process .section-heading p,
.enterprise-process .story-flow h3 {
  color: var(--white);
}

.enterprise-process .section-heading p,
.enterprise-process .story-flow p {
  color: rgba(255, 255, 255, 0.65);
}

.enterprise-process .story-flow {
  border-color: rgba(255, 255, 255, 0.3);
}

.enterprise-process .story-flow article + article {
  border-color: rgba(255, 255, 255, 0.2);
}

.enterprise-coach {
  background: var(--soft);
}

.enterprise-coach-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
}

.enterprise-coach-grid > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.enterprise-coach-grid h2 {
  margin: 10px 0 4px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 44px;
}

.enterprise-coach-grid strong {
  color: var(--teal);
}

.enterprise-coach-grid p {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
}

.about-hero {
  min-height: 700px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 44%, rgba(255, 255, 255, 0.1) 73%),
    url("assets-v2/about-carmen.jpg") right center / cover no-repeat;
}

.about-hero-copy {
  max-width: 720px;
  padding: 90px 0;
}

.about-hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.25;
}

.about-hero p {
  max-width: 620px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 18px;
}

.assessment-shell {
  min-height: calc(100vh - 78px);
  padding: 70px 0 90px;
  background: var(--soft);
}

.assessment {
  max-width: 940px;
  margin: 0 auto;
  padding: 54px 64px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.assessment h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1.3;
}

.assessment > p {
  margin: 14px 0 28px;
  color: var(--muted);
}

.progress {
  height: 4px;
  margin: 28px 0 34px;
  background: var(--line);
}

.progress span {
  display: block;
  width: 12.5%;
  height: 100%;
  background: var(--teal);
  transition: width 240ms ease;
}

.question {
  display: none;
}

.question.active {
  display: block;
}

.question h2 {
  margin: 0 0 24px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 28px;
}

.answer-option {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  align-items: center;
  width: 100%;
  margin: 12px 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.answer-option::before {
  width: 16px;
  height: 16px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  content: "";
}

.answer-option:hover,
.answer-option.selected {
  border-color: var(--teal);
  background: #f3fbfa;
}

.answer-option.selected::before {
  background: var(--teal);
  box-shadow: inset 0 0 0 4px var(--white);
}

.assessment-controls {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
}

.assessment-result {
  display: none;
}

.assessment-result.visible {
  display: block;
}

.result-score {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 58px;
}

.result-route {
  margin: 24px 0;
  padding: 22px 24px;
  border-left: 3px solid var(--gold);
  background: var(--soft);
}

.result-route h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-family: var(--serif);
}

.result-route p {
  margin: 0;
  color: var(--muted);
}

.reveal,
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 14px;
  }

  .brand-copy {
    display: none;
  }

  .brand {
    min-width: 110px;
  }

  .home-hero {
    grid-template-columns: 1fr 1fr;
  }

  .path-line {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 46px;
  }

  .path-line::before {
    display: none;
  }

  .product-columns {
    grid-template-columns: 1fr 1fr;
  }

  .product-column:first-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .path-table-head {
    display: none;
  }

  .path-row {
    grid-template-columns: 90px 1fr 1fr 140px;
    padding: 22px 0;
  }

  .path-visual {
    display: none;
  }

  .picker-grid {
    grid-template-columns: 1fr;
  }

  .picker-result {
    grid-column: 1;
    margin-top: 0;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 40px), var(--max));
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand img {
    width: 84px;
  }

  .menu-button {
    display: block;
  }

  .nav-action {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: calc(100vh - 68px);
    padding: 26px 20px;
    background: var(--white);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 180ms ease;
  }

  .menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav a {
    padding: 18px 8px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 22px;
  }

  .main-nav a::after {
    display: none;
  }

  .home-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: auto;
    margin: 0;
    padding: 52px 20px 34px;
  }

  .hero-copy h1,
  .inner-hero h1 {
    font-size: 44px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-media {
    min-height: 40vw;
  }

  .stage-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stage-item:nth-child(2) {
    border-right: 0;
  }

  .stage-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .path-line {
    grid-template-columns: 1fr 1fr;
  }

  .product-columns {
    display: block;
  }

  .product-column,
  .product-column:first-child {
    padding: 32px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .story-lead,
  .detail-split,
  .form-layout,
  .community-hero,
  .story-case,
  .entry-choice-grid {
    grid-template-columns: 1fr;
  }

  .entry-choice,
  .entry-choice + .entry-choice {
    padding: 32px 0;
    border-left: 0;
  }

  .entry-choice + .entry-choice {
    border-top: 1px solid var(--line);
  }

  .story-lead figure {
    order: -1;
  }

  .story-flow,
  .case-flow {
    grid-template-columns: 1fr 1fr;
  }

  .story-flow article:nth-child(3),
  .case-flow div:nth-child(3) {
    border-left: 0;
  }

  .mentor-grid {
    grid-template-columns: 1fr 1fr;
  }

  .photo-rail {
    grid-template-columns: repeat(5, 70vw);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .photo-rail figure {
    scroll-snap-align: start;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .path-row {
    grid-template-columns: 70px 1fr;
    gap: 18px;
  }

  .path-support {
    grid-column: 2;
  }

  .path-action {
    grid-column: 2;
    text-align: left;
  }

  .picker-options {
    grid-template-columns: 1fr 1fr;
  }

  .picker-option:nth-child(2) {
    border-right: 0;
  }

  .picker-option:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .catalog-intro,
  .catalog-row {
    grid-template-columns: 1fr;
  }

  .catalog-row {
    gap: 16px;
    padding: 30px 0;
  }

  .catalog-price {
    text-align: left;
  }

  .detail-hero {
    grid-template-columns: 1fr;
  }

  .detail-hero-copy {
    width: auto;
    margin: 0;
    padding: 62px 20px 48px;
  }

  .detail-hero-copy h1 {
    font-size: 44px;
  }

  .detail-hero-media {
    min-height: 58vw;
  }

  .route-next-grid {
    grid-template-columns: 1fr;
  }

  .plan-comparison {
    grid-template-columns: 1fr;
  }

  .plan,
  .plan + .plan {
    padding: 36px 0;
    border-left: 0;
  }

  .plan + .plan {
    border-top: 1px solid var(--line);
  }

  .community-hero-copy {
    margin: 0;
    padding: 62px 20px 48px;
  }

  .community-hero-media {
    min-height: 58vw;
  }

  .value-list {
    grid-template-columns: 1fr;
  }

  .value-list article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .event-grid {
    grid-template-columns: 1fr 1fr;
  }

  .article-preview {
    grid-template-columns: 150px 1fr auto;
  }

  .article-preview img {
    width: 150px;
    height: 108px;
  }

  .article-preview > span {
    display: none;
  }

  .pcc-hours {
    grid-template-columns: 1fr 1fr;
  }

  .pcc-hours article:nth-child(2) {
    border-right: 0;
  }

  .pcc-hours article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .gallery figure:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .about-hero {
    min-height: 760px;
    align-items: flex-start;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 47%, rgba(255, 255, 255, 0.18) 70%),
      url("assets-v2/about-carmen.jpg") 66% bottom / cover no-repeat;
  }

  .assessment {
    padding: 42px 30px;
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 32px);
  }

  .hero-copy h1,
  .inner-hero h1,
  .detail-hero-copy h1,
  .community-hero-copy h1,
  .about-hero h1,
  .practice-hero h1 {
    font-size: 38px;
  }

  .section-heading h2,
  .section-title {
    font-size: 34px;
  }

  .actions .btn {
    width: 100%;
  }

  .stage-grid,
  .path-line,
  .story-flow,
  .case-flow,
  .mentor-grid,
  .footer-top,
  .picker-options,
  .form-panel {
    grid-template-columns: 1fr;
  }

  .stage-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-flow article + article,
  .case-flow div + div {
    padding-left: 0;
    border-left: 0;
  }

  .mentor img {
    aspect-ratio: 4 / 4.5;
  }

  .photo-rail {
    grid-template-columns: repeat(5, 86vw);
  }

  .footer-bottom {
    flex-direction: column;
  }

  .picker-option {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .picker-result {
    align-items: flex-start;
    flex-direction: column;
  }

  .session {
    grid-template-columns: 54px 1fr;
    padding: 20px 0;
  }

  .session time {
    grid-column: 2;
    text-align: left;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery figure:first-child {
    grid-column: auto;
  }

  .assessment-shell {
    padding: 24px 0;
  }

  .assessment {
    padding: 32px 20px;
  }

  .assessment h1 {
    font-size: 34px;
  }

  .event-grid,
  .article-preview,
  .pcc-hours {
    grid-template-columns: 1fr;
  }

  .article-preview {
    gap: 16px;
    padding: 24px 0;
  }

  .article-preview img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .article-preview .text-link {
    justify-self: start;
  }

  .pcc-hours article,
  .pcc-hours article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 980px) {
  .course-pathway-grid {
    grid-template-columns: 1fr;
  }

  .course-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .course-card:last-child {
    grid-column: 1 / -1;
    min-height: 290px;
  }
}

@media (max-width: 820px) {
  .header-tools {
    display: none;
  }

  .mobile-nav-tools {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    margin-top: 24px;
    padding: 24px 8px 0;
    border-top: 1px solid var(--line);
  }

  .mobile-nav-tools .language-switcher {
    justify-self: start;
  }

  .mobile-nav-tools .nav-login {
    min-height: 42px;
    padding: 0 18px;
    color: var(--white);
    background: var(--navy);
    border: 1px solid var(--navy);
    font-family: var(--sans);
    font-size: 14px;
  }

  .path-photo-hero,
  .course-photo-hero {
    min-height: 660px;
    align-items: flex-start;
  }

  .path-photo-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.25) 76%, rgba(255, 255, 255, 0.08) 100%),
      url("assets-v2/photo-workshop-coaches.jpg") 64% center / cover no-repeat;
  }

  .course-photo-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.98) 42%, rgba(255, 255, 255, 0.76) 52%, rgba(255, 255, 255, 0.14) 70%, rgba(255, 255, 255, 0.02) 100%),
      url("assets-v2/photo-foundation-hk-15.jpg") center bottom / auto 380px no-repeat;
  }

  .path-photo-hero .container,
  .course-photo-hero .container {
    padding-top: 48px;
    padding-bottom: 330px;
  }

  .home-hero {
    min-height: 720px;
    background-position: 66% center;
  }

  .home-hero::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.94) 49%, rgba(255, 255, 255, 0.3) 72%, rgba(255, 255, 255, 0.08) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.74) 0%, transparent 72%);
  }

  .hero-copy {
    min-height: 720px;
    justify-content: flex-start;
    margin: 0;
    padding: 58px 20px 340px;
  }

  .course-entry-inner {
    grid-template-columns: 1fr 1fr;
  }

  .course-entry-inner > div {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 14px 0 0;
  }

  .course-card-grid,
  .course-teacher-grid {
    grid-template-columns: 1fr;
  }

  .course-card:last-child {
    grid-column: auto;
  }

  .course-incubator-inner {
    padding: 42px 30px;
  }

  .stage-item:nth-child(even) {
    border-right: 0;
  }

  .stage-item:nth-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .enterprise-teaser {
    grid-template-columns: 1fr;
  }

  .enterprise-teaser-media {
    min-height: 56vw;
  }

  .enterprise-teaser-copy {
    padding: 56px 20px 64px;
  }

  .about-vision-grid,
  .founder-profile {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .founder-profile > img {
    max-width: 520px;
  }

  .culture-grid {
    grid-template-columns: 1fr;
  }

  .culture-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .culture-grid article:last-child {
    border-bottom: 0;
  }

  .enterprise-solution-list article,
  .enterprise-coach-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .enterprise-coach-grid > img {
    max-width: 440px;
  }
}

@media (max-width: 600px) {
  .course-intro {
    padding: 40px 0 34px;
  }

  .course-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .course-steps::before {
    top: 23px;
    bottom: 23px;
    left: 23px;
    width: 1px;
    height: auto;
  }

  .course-step {
    min-height: 100px;
    padding-left: 68px;
    text-align: left;
  }

  .course-step-number {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }

  .course-step p {
    min-height: 0;
  }

  .course-entry-inner {
    grid-template-columns: 1fr;
  }

  .course-entry-inner .btn {
    width: 100%;
  }

  .course-teacher-grid article {
    grid-template-columns: 1fr;
  }

  .course-teacher-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-position: center 22%;
  }

  .course-incubator-inner {
    min-height: 520px;
    align-items: flex-end;
    padding: 34px 24px;
    background:
      linear-gradient(180deg, rgba(11, 37, 64, 0.24) 0%, rgba(11, 37, 64, 0.94) 50%, rgba(11, 37, 64, 0.98) 100%),
      url("assets-v2/practice-roots.jpg") center / cover no-repeat;
  }

  .course-incubator-options {
    flex-direction: column;
  }

  .about-brand-hero {
    padding-bottom: 70px;
  }

  .about-brand-hero img {
    width: 190px;
    margin-top: 42px;
  }

  .about-brand-hero h1 {
    font-size: 40px;
  }

  .about-signals {
    grid-template-columns: 1fr;
  }

  .about-signals div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-signals div:last-child {
    border-bottom: 0;
  }

  .founder-profile h2 {
    font-size: 34px;
  }

  .enterprise-hero {
    min-height: 720px;
    align-items: flex-start;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.92) 52%, rgba(255, 255, 255, 0.22) 78%, rgba(255, 255, 255, 0.08) 100%),
      url("assets-v2/企业分享.jpg") 58% center / cover no-repeat;
  }

  .enterprise-hero-copy {
    padding: 58px 0 330px;
  }

  .enterprise-hero h1 {
    font-size: 42px;
  }

  .challenge-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .decision-path {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 36px;
  }

  .learning-route {
    grid-template-columns: repeat(5, auto);
  }

  .decision-route-link {
    grid-column: 1 / -1;
    justify-self: stretch;
    margin-top: 20px;
    text-align: center;
  }

  .team-directory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .decision-path {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .decision-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .decision-intro {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .decision-options,
  .team-directory-grid {
    grid-template-columns: 1fr;
  }

  .learning-route {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .learning-route > div {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .learning-route > i {
    display: none;
  }

  .decision-route-link {
    grid-column: auto;
  }

  .directory-coach strong {
    min-height: 0;
  }
}

/* 探索课 hero 双步动作 */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 6px;
}

.hero-actions .step-num {
  font-size: 12px;
  font-weight: 800;
  opacity: 0.7;
  letter-spacing: 0.05em;
}

.hero-hint {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}

.inline-link {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 动态文章详情页 */
.article-page {
  max-width: 820px;
}

.article-cat {
  display: inline-block;
  padding: 4px 12px;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  margin: 18px 0 14px;
}

.article-page h1 {
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.35;
  color: var(--navy);
  margin: 0 0 14px;
}

.article-meta {
  color: var(--muted);
  font-size: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
}

.article-cover {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin-bottom: 28px;
}

.rich-content {
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
}

.rich-content h2 {
  font-size: 22px;
  color: var(--navy);
  margin: 34px 0 14px;
}

.rich-content h3 {
  font-size: 18px;
  color: var(--navy);
  margin: 26px 0 12px;
}

.rich-content p {
  margin: 0 0 16px;
}

.rich-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
}

.rich-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 8px 18px;
  margin: 20px 0;
  background: var(--soft);
  color: var(--navy-2);
}

.rich-content ul, .rich-content ol {
  padding-left: 22px;
  margin: 0 0 16px;
}

.article-tags {
  margin-top: 30px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.article-tags span {
  padding: 4px 12px;
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

.article-back {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* 课程系列视觉区分: 入门=青 进阶=蓝 深化=金 */
.series-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-right: 10px;
  vertical-align: 2px;
  color: #fff;
}

.series-tag-m1 { background: var(--teal); }
.series-tag-acc { background: var(--navy); }
.series-tag-pcc { background: var(--gold-dark); }

.course-card-series {
  display: inline-block;
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  margin-bottom: 8px;
  color: #fff;
}

.course-card-m1 .course-card-series { background: var(--teal); }
.course-card-acc .course-card-series { background: var(--navy); }
.course-card-pcc .course-card-series { background: var(--gold-dark); }

.course-card-m1 { border-top: 3px solid var(--teal); }
.course-card-acc { border-top: 3px solid var(--navy); }
.course-card-pcc { border-top: 3px solid var(--gold); }

.course-card-inc .course-card-series { background: var(--gold-dark); }
.course-card-inc { border-top: 3px solid var(--gold); }
