:root {
  --ink: #201a3c;
  --muted: #706a86;
  --purple: #7057d9;
  --blue: #37a5e7;
  --pink: #d271ce;
  --line: rgba(69, 50, 125, 0.12);
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 24px 70px rgba(73, 57, 132, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #f8f6ff;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.lightbox-open { overflow: hidden; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
img { max-width: 100%; }
.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 4%, rgba(194, 218, 255, .57), transparent 25%),
    radial-gradient(circle at 7% 16%, rgba(235, 207, 255, .55), transparent 24%),
    linear-gradient(#fbfaff, #f5f2ff 46%, #fff);
}
.container { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: relative;
  z-index: 60;
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.site-header.sticky {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  border-color: rgba(69, 50, 125, .08);
  background: rgba(250, 249, 255, .82);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 35px rgba(73,57,132,.07);
}
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-family: "Microsoft YaHei", "PingFang SC", Inter, system-ui, sans-serif; font-weight: 900; letter-spacing: -.04em; white-space: nowrap; }
.brand-title {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Arial Black", "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.06em;
  color: #18122f;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .4);
}
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; overflow: hidden; box-shadow: 0 12px 28px rgba(102, 83, 215, .24); }
.brand-mark img { width: 100%; height: 100%; display: block; object-fit: cover; }
.brand small { display: block; margin-top: 2px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a, .nav-item-static { position: relative; color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 750; white-space: nowrap; }
.nav-links a::after, .nav-item-static::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; border-radius: 99px; background: linear-gradient(90deg, var(--purple), var(--blue)); transition: .25s ease; }
.nav-links a:hover, .nav-item-static:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-item-static:hover::after { right: 0; }
.button { min-height: 48px; padding: 0 21px; border: 1px solid transparent; border-radius: 15px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; text-decoration: none; font-size: 14px; font-weight: 800; cursor: pointer; transition: .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: linear-gradient(135deg, #6c57e5, #37a5e7); box-shadow: 0 14px 32px rgba(102, 83, 215, .23); }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.68); backdrop-filter: blur(16px); }
.menu-button { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.68); cursor: pointer; }
.mobile-menu { display: none; }

.hero { position: relative; padding: 38px 0 0; }
.hero-grid { min-height: 650px; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr); align-items: center; gap: 76px; }
.hero-copy { position: relative; z-index: 4; padding-bottom: 30px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 8px 13px; border: 1px solid rgba(255,255,255,.94); border-radius: 999px; color: var(--purple); background: rgba(255,255,255,.68); box-shadow: 0 10px 30px rgba(73,57,132,.07); backdrop-filter: blur(14px); font-size: 11px; font-weight: 850; letter-spacing: .08em; }
.eyebrow i { width: 7px; height: 7px; border-radius: 3px; background: currentColor; box-shadow: 0 0 0 5px rgba(112,87,217,.1); }
.hero h1 { margin: 25px 0 23px; max-width: 760px; font-size: clamp(40px, 4.3vw, 64px); line-height: 1.08; letter-spacing: -.07em; }
.hero h1 span { background: linear-gradient(100deg, #7057d9, #39a4df); -webkit-background-clip: text; color: transparent; }
.hero h1 .nowrap { white-space: nowrap; display: inline-block; }
.hero h1 .hero-intent {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 1em;
  letter-spacing: inherit;
}
.hero h1 .hero-outcome {
  font-size: 1em;
  letter-spacing: inherit;
}
.hero-intro { max-width: 650px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.85; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.hero-tags span { padding: 9px 12px; border: 1px solid var(--line); border-radius: 12px; color: #5f5877; background: rgba(255,255,255,.62); font-size: 12px; font-weight: 700; backdrop-filter: blur(12px); }
.hero-proof { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 28px; }
.hero-proof article { padding: 18px 18px 16px; border: 1px solid rgba(255,255,255,.95); border-radius: 22px; background: rgba(255,255,255,.72); box-shadow: 0 16px 40px rgba(73,57,132,.06); }
.hero-proof small { display: block; color: var(--purple); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.hero-proof strong { display: block; margin-top: 10px; font-size: 15px; line-height: 1.35; letter-spacing: -.03em; white-space: nowrap; }
.hero-proof p { margin: 10px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.portrait-stage { min-height: 610px; position: relative; display: grid; place-items: center; }
.stage-halo { position: absolute; width: 510px; height: 510px; border-radius: 50%; background: conic-gradient(from 40deg, rgba(107,83,222,.13), rgba(70,176,225,.24), rgba(244,168,220,.19), rgba(107,83,222,.13)); box-shadow: inset 0 0 90px rgba(255,255,255,.88); }
.portrait-frame { position: relative; z-index: 2; width: min(405px, 84%); aspect-ratio: .76; overflow: hidden; border: 1px solid rgba(255,255,255,.95); border-radius: 42px 42px 110px 42px; background: rgba(255,255,255,.58); box-shadow: 0 40px 80px rgba(74,57,132,.21); transform: rotate(2deg); }
.portrait-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 56%, rgba(31,24,62,.74)); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 16%; display: block; }
.portrait-caption { position: absolute; z-index: 2; left: 30px; right: 30px; bottom: 27px; color: white; display: flex; align-items: end; justify-content: space-between; gap: 14px; }
.portrait-caption strong { font-size: 31px; letter-spacing: -.04em; }
.floating-chip { position: absolute; z-index: 3; padding: 14px 16px; border: 1px solid rgba(255,255,255,.94); border-radius: 17px; background: rgba(255,255,255,.76); box-shadow: 0 18px 45px rgba(69,53,122,.14); backdrop-filter: blur(17px); font-size: 11px; font-weight: 800; }
.floating-chip i { display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 3px; background: var(--purple); }
.chip-one { left: -26px; top: 120px; }
.chip-two { right: -34px; top: 166px; }
.chip-three { left: -26px; bottom: 162px; }
.chip-four { right: -34px; bottom: 132px; }
.stats-strip { position: relative; z-index: 5; display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden; border: 1px solid rgba(255,255,255,.94); border-radius: 28px; background: rgba(255,255,255,.74); box-shadow: 0 24px 60px rgba(73,57,132,.1); backdrop-filter: blur(18px); }
.stats-strip article { min-height: 158px; position: relative; padding: 29px 30px; }
.stats-strip article + article { border-left: 1px solid var(--line); }
.stats-strip strong { font-size: 48px; line-height: 1; letter-spacing: -.055em; background: linear-gradient(100deg,#443397,#2c9fd4); -webkit-background-clip: text; color: transparent; }
.stats-strip em { color: var(--purple); font-size: 17px; font-weight: 800; font-style: normal; }
.stats-strip span { display: block; margin-top: 12px; color: var(--muted); font-size: 13px; font-weight: 700; }

.hero-proof strong,
.about-grid .lead {
  text-wrap: balance;
}
.about-grid h2 .nowrap-line { white-space: nowrap; display: inline-block; }

.credentials-grid {
  align-items: start;
}

.credentials-copy {
  padding-top: 4px;
}

.credentials-copy > p {
  margin: 22px 0 20px;
}

.credentials-copy li::before {
  content: "•";
  color: var(--purple);
}

.section { position: relative; padding: 84px 0; scroll-margin-top: 84px; }
.contact-section { scroll-margin-top: 84px; }
.section-heading h2, .section-head h2, .credentials-copy h2 { margin: 10px 0 0; font-size: clamp(40px,5vw,64px); line-height: 1.08; letter-spacing: -.055em; }
.section-kicker { color: var(--purple); font-size: 11px; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 28px; }
.section-head > p { max-width: 440px; margin: 0; color: var(--muted); line-height: 1.75; }
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 40px 80px; align-items: start; }
.about-content > p { margin: 0 0 18px; color: var(--muted); font-size: 16px; line-height: 1.9; }
.about-content .lead { color: #4d4664; font-size: 20px; line-height: 1.75; }
.about-title { margin: 10px 0 0; font-size: clamp(38px, 4.4vw, 58px); line-height: 1.08; letter-spacing: -.055em; }
.about-title-line { display: block; white-space: nowrap; }
.about-section .section-head h2 { max-width: 560px; line-height: 1.12; }
.about-section .section-head h2::first-line { white-space: nowrap; }
.about-section .section-head > p {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.9;
}
.about-content { display: none; }
.profile-points { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 6px; }
.profile-points article { display: grid; grid-template-columns: 52px 1fr; gap: 14px; padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.64); }
.profile-points article > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 15px; color: var(--purple); background: linear-gradient(135deg,#eee9ff,#e2f5ff); font-size: 12px; font-weight: 850; }
.profile-points h3 { margin: 1px 0 7px; font-size: 16px; line-height: 1.35; }
.profile-points p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 12px; }

.experience-section { background: linear-gradient(180deg, rgba(245,242,255,.58), rgba(255,255,255,.86)); }
.experience-layout { display: grid; grid-template-columns: 1.28fr .72fr; gap: 22px; align-items: stretch; }
.timeline { display: grid; gap: 14px; }
.timeline article { display: grid; grid-template-columns: 70px 1fr; gap: 22px; padding: 27px; border: 1px solid rgba(255,255,255,.94); border-radius: 25px; background: rgba(255,255,255,.72); box-shadow: 0 18px 48px rgba(73,57,132,.07); }
.timeline-index { color: rgba(112,87,217,.22); font-size: 40px; line-height: 1; font-weight: 900; letter-spacing: -.07em; }
.timeline small { color: var(--purple); font-size: 11px; font-weight: 850; letter-spacing: .1em; }
.timeline h3 { margin: 7px 0 8px; font-size: 21px; }
.timeline p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.method-card { min-height: 100%; position: relative; overflow: hidden; padding: 40px; border-radius: 30px; color: white; background: linear-gradient(145deg,#5d45d0,#7355df 50%,#2aa9db); box-shadow: 0 26px 70px rgba(76,55,177,.22); }
.method-orbit { position: absolute; width: 360px; height: 360px; right: -170px; top: -150px; border: 68px solid rgba(255,255,255,.09); border-radius: 50%; }
.method-card .section-kicker { color: rgba(255,255,255,.66); }
.method-card h3 { position: relative; margin: 17px 0 36px; font-size: 44px; line-height: 1.08; letter-spacing: -.05em; }
.method-card ol { position: relative; display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.method-card li { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: center; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.14); }
.method-card li b { color: rgba(255,255,255,.56); font-size: 11px; }
.method-card li span { font-size: 14px; font-weight: 750; }

.classroom-section { background: #fff; }
.classroom-section .section-head { display: grid; grid-template-columns: auto 1fr; align-items: end; gap: 34px; }
.classroom-section .section-head h2 { white-space: nowrap; font-size: clamp(34px, 4vw, 60px); }
.classroom-title span { display: inline; }
.classroom-section .section-head > p { max-width: none; margin: 0 0 8px; justify-self: end; white-space: nowrap; }
.photo-feature { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: repeat(2, 250px); gap: 16px; }
.photo { position: relative; overflow: hidden; min-height: 240px; padding: 0; border: 1px solid rgba(255,255,255,.95); border-radius: 26px; background: #ddd; box-shadow: 0 20px 55px rgba(69,53,122,.09); cursor: zoom-in; text-align: left; }
.photo-wide { grid-row: 1 / 3; }
.photo-tall { grid-column: 2; }
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s ease; }
.photo::after { content: ""; position: absolute; inset: 36% 0 0; background: linear-gradient(transparent, rgba(24,18,51,.78)); }
.photo:hover img { transform: scale(1.045); }
.photo > span { position: absolute; z-index: 2; left: 21px; right: 21px; bottom: 18px; color: rgba(255,255,255,.78); font-size: 12px; }
.photo > span b { display: block; margin-bottom: 4px; color: white; font-size: 17px; }
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.photo-grid .photo { aspect-ratio: 16/10; min-height: 0; }

.courses-section { background: linear-gradient(180deg, rgba(245,242,255,.58), rgba(255,255,255,.88)); }
.courses-section .section-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: end;
  gap: 34px;
}
.courses-section .section-head > p {
  max-width: none;
  align-self: end;
  justify-self: end;
  margin: 0 0 8px;
  padding-right: 8px;
  font-size: 15px;
  line-height: 1.8;
  text-align: right;
}
.course-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 17px; }
.course-card { min-height: 428px; position: relative; overflow: hidden; padding: 28px 26px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.74); box-shadow: 0 20px 55px rgba(69,53,122,.07); transition: .3s ease; }
.course-card:hover { transform: translateY(-6px); box-shadow: 0 28px 70px rgba(69,53,122,.13); }
.course-card::before { content: attr(data-index); position: absolute; right: 18px; top: 7px; color: rgba(103,83,204,.075); font-size: 94px; font-weight: 900; letter-spacing: -.1em; }
.course-card.featured { color: white; border-color: transparent; background: linear-gradient(145deg,#5d45d0,#7355df 50%,#2aa9db); }
.course-icon {
  width: 52px;
  height: 52px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 17px;
  color: var(--purple);
  background: linear-gradient(135deg,#eee9ff,#e2f5ff);
  font-size: 20px !important;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
  vertical-align: top;
  transform: translateY(1px);
}
.course-card .course-icon {
  margin-top: 0;
  margin-bottom: 0;
  flex: 0 0 auto;
}
.featured .course-icon { color: white; background: rgba(255,255,255,.15); }
.course-card > span:not(.course-icon) {
  display: inline-block;
  position: relative;
  top: 14px;
  margin-top: 0;
  margin-left: 8px;
  color: var(--purple);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: .03em;
  vertical-align: middle;
}
.featured > span { color: rgba(255,255,255,.68); }
.course-card h3 { position: relative; margin: 10px 0 12px; font-size: 17px; line-height: 1.2; letter-spacing: -.04em; white-space: nowrap; }
.course-card p { position: relative; margin: 0; min-height: 124px; color: var(--muted); font-size: 13px; line-height: 1.68; }
.featured p { color: rgba(255,255,255,.72); }
.course-card ul { position: relative; display: grid; gap: 7px; margin: 20px 0 0; padding: 16px 0 0; border-top: 1px solid var(--line); list-style: none; }
.featured ul { border-color: rgba(255,255,255,.16); }
.course-card li { color: #5f5877; font-size: 10.5px; font-weight: 700; white-space: nowrap; letter-spacing: -.02em; }
.featured li { color: rgba(255,255,255,.8); }
.course-card li::before { content: "•"; margin-right: 8px; color: var(--blue); font-weight: 900; }

.credentials-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 62px; align-items: center; }
.credentials-section .section-kicker {
  display: inline-block;
  margin-bottom: 12px;
}
.credentials-copy h2 {
  margin: 0;
  max-width: 460px;
}
.credentials-copy > p { margin: 22px 0 27px; color: var(--muted); line-height: 1.8; }
.credentials-copy ul { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.credentials-copy li { display: flex; gap: 11px; color: #514a68; font-size: 13px; line-height: 1.55; }
.credentials-copy li::before { content: "•"; color: var(--purple); }
.credential-gallery { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.credential-gallery button { height: 225px; overflow: hidden; padding: 0; border: 1px solid var(--line); border-radius: 23px; background: white; box-shadow: 0 18px 50px rgba(69,53,122,.08); cursor: zoom-in; }
.credential-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: .4s ease; }
.credential-gallery button:hover img { transform: scale(1.035); }

.case-studies-section { background: linear-gradient(180deg, rgba(245,242,255,.58), rgba(255,255,255,.92)); }
.case-studies-section .section-head h2 {
  white-space: nowrap !important;
  overflow: hidden;
  text-overflow: clip;
}
.case-studies-section .section-head > p {
  max-width: 720px;
  white-space: nowrap !important;
  overflow: hidden;
  text-overflow: clip;
  text-wrap: nowrap;
}
.case-study-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 16px;
  align-items: start;
}
.case-column {
  height: 520px;
  display: flex;
  flex-direction: column;
}
.case-column-left,
.case-column-right {
  justify-content: space-between;
}
.case-column-center {
  justify-content: space-between;
}
.case-card {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255,255,255,.94);
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 20px 55px rgba(69,53,122,.08);
  cursor: zoom-in;
}
.case-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}
.case-card:hover img { transform: scale(1.03); }
.case-card-left-top { height: 160px; }
.case-card-left-mid { height: 164px; }
.case-card-left-bottom { height: 164px; }
.case-card-center-top { height: 344px; }
.case-card-center-bottom { height: 160px; }
.case-card-right-top { height: 160px; }
.case-card-right-mid { height: 164px; }
.case-card-right-bottom { height: 164px; }

.news-section { background: #fff; }
.news-section .section-head > p {
  max-width: 720px;
  white-space: nowrap !important;
  overflow: hidden;
  text-overflow: clip;
  text-wrap: nowrap;
}
.news-section .section-head h2 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.news-layout > a { display: none !important; }
.news-left { grid-column: 1; grid-row: 1; }
.news-center { grid-column: 2; grid-row: 1; }
.news-right { grid-column: 3; grid-row: 1; }
.news-column {
  min-height: 620px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.94);
  border-radius: 28px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 20px 55px rgba(69,53,122,.08);
}
.news-column-head {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(31,26,54,.08);
}
.news-column-head h3,
.news-image-card h4 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-column-head h3 { font-size: 24px; }
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  flex: 1;
}
.news-list li {
  min-width: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(31,26,54,.08);
}
.news-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.news-list a {
  display: block;
  color: #3d3655;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .2s ease;
}
.news-list a:hover { color: var(--purple); }
.news-list.compact { gap: 10px; }
.news-list.compact a { font-size: 13px; }
.news-center { overflow: hidden; }
.news-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 1.18fr 1fr;
  gap: 14px;
  flex: 1;
}
.news-image-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
  padding: 20px;
  border-radius: 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(150deg, #171a35 0%, #5740c5 58%, #29a6dd 100%);
  box-shadow: 0 16px 42px rgba(69,53,122,.14);
}
.news-image-card.has-image {
  background-image: linear-gradient(180deg, rgba(13, 15, 35, .05), rgba(13, 15, 35, .76)), var(--news-image);
  background-position: center;
  background-size: cover;
}
.news-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.26), transparent 34%),
    linear-gradient(180deg, rgba(13,15,35,.02), rgba(13,15,35,.34));
}
.news-image-card.has-image::before {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 34%),
    linear-gradient(180deg, rgba(13,15,35,.06), rgba(13,15,35,.58));
}
.news-image-card > * { position: relative; z-index: 1; }
.news-image-card-large { grid-column: 1 / -1; }
.news-image-card-soft { background: linear-gradient(145deg, #1d2149 0%, #6a4df0 54%, #8cc5ff 100%); }
.news-image-card-hard { background: linear-gradient(145deg, #18263f 0%, #365fb3 48%, #20c3bd 100%); }
.news-image-tag {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}
.news-image-card h4 {
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
}
.news-image-card h4 a {
  color: inherit;
}
.news-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 22px;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}
.news-subcolumn {
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.94);
  border-radius: 28px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 20px 55px rgba(69,53,122,.08);
}

.cooperation-section { background: linear-gradient(180deg, rgba(245,242,255,.58), rgba(255,255,255,.84)); }
.cooperation-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.cooperation-grid article { min-height: 285px; padding: 28px; border: 1px solid rgba(255,255,255,.92); border-radius: 26px; background: rgba(255,255,255,.72); box-shadow: 0 19px 52px rgba(69,53,122,.07); }
.cooperation-grid article > span { color: rgba(112,87,217,.25); font-size: 42px; font-weight: 900; letter-spacing: -.06em; }
.cooperation-grid h3 { margin: 52px 0 12px; font-size: 20px; line-height: 1.35; }
.cooperation-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.delivery-bar { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; overflow: hidden; margin-top: 18px; border: 1px solid var(--line); border-radius: 22px; background: var(--line); }
.delivery-bar div { padding: 22px 25px; background: rgba(255,255,255,.78); }
.delivery-bar small { display: block; margin-bottom: 8px; color: var(--purple); font-size: 10px; font-weight: 850; letter-spacing: .09em; }
.delivery-bar strong { font-size: 13px; line-height: 1.5; }

.process-section { background: #fff; }
.process-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 22px; align-items: start; }
.process-copy > p { max-width: 720px; margin: 22px 0 0; color: var(--muted); line-height: 1.85; }
.process-steps { display: grid; gap: 14px; margin-top: 34px; }
.process-steps article { display: grid; grid-template-columns: 60px 1fr; gap: 18px; padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.8); box-shadow: 0 18px 45px rgba(69,53,122,.06); }
.process-steps span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; color: var(--purple); background: linear-gradient(135deg,#eee9ff,#e2f5ff); font-size: 12px; font-weight: 850; }
.process-steps h3 { margin: 2px 0 8px; font-size: 20px; }
.process-steps p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.fit-card { position: relative; overflow: hidden; padding: 38px; border-radius: 30px; color: white; background: linear-gradient(155deg,#1f204a,#5c43d2 55%,#2ea6dd); box-shadow: 0 28px 70px rgba(69,53,122,.18); }
.fit-card::after { content: ""; position: absolute; width: 290px; height: 290px; right: -120px; top: -110px; border-radius: 50%; border: 52px solid rgba(255,255,255,.08); }
.fit-card li::before { content: "•"; color: white; font-weight: 900; }
.fit-card h3 { position: relative; margin: 18px 0 24px; font-size: 40px; line-height: 1.08; letter-spacing: -.05em; }
.fit-card ul { position: relative; display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.fit-card li { display: flex; gap: 11px; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.7; }
.fit-card li::before { content: "•"; color: white; font-weight: 900; }

.hero-intro,
.about-section .section-head > p,
.courses-section .section-head > p,
.classroom-section .section-head > p,
.credentials-section .section-head > p,
.case-studies-section .section-head > p,
.news-section .section-head > p {
  text-wrap: balance;
}

.hero h1 .nowrap,
.hero h1 .hero-intent,
.hero h1 .hero-outcome {
  white-space: nowrap;
}

.hero h1 .hero-intent {
  font-size: .98em;
}

.hero h1 .hero-outcome {
  font-size: .98em;
}

.hero-intro {
  font-size: 16px;
}

.hero-proof strong {
  font-size: 14px;
}

.profile-points h3,
.photo > span b,
.news-column-head h3,
.news-image-card h4 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fit-note { position: relative; margin-top: 24px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: rgba(255,255,255,.08); }
.fit-note strong { display: block; margin-bottom: 8px; font-size: 14px; }
.fit-note p { margin: 0; color: rgba(255,255,255,.74); font-size: 13px; line-height: 1.7; }

.contact-section { padding: 84px 0; background: #fff; }
.contact-card { position: relative; overflow: hidden; min-height: 410px; padding: 65px 70px; border-radius: 38px; color: white; background: linear-gradient(120deg,#5d45d0,#7957e5 52%,#2aa9db); box-shadow: 0 35px 90px rgba(76,55,177,.25); display: grid; grid-template-columns: 1.25fr .75fr; gap: 50px; align-items: center; }
.contact-prism { position: absolute; right: 29%; top: -90px; width: 320px; height: 380px; display: grid; place-items: center; clip-path: polygon(50% 0,100% 26%,83% 100%,16% 92%,0 30%); color: rgba(255,255,255,.48); background: linear-gradient(135deg,rgba(255,255,255,.38),rgba(255,255,255,.06)); font-size: 70px; transform: rotate(-12deg); }
.section-kicker.light { color: rgba(255,255,255,.64); }
.contact-card h2 { position: relative; margin: 14px 0 18px; font-size: clamp(43px,5vw,67px); line-height: 1.06; letter-spacing: -.055em; }
.contact-card p { position: relative; max-width: 650px; margin: 0; color: rgba(255,255,255,.72); line-height: 1.8; }
.contact-points { position: relative; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.contact-points span { padding: 10px 13px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; color: rgba(255,255,255,.82); background: rgba(255,255,255,.08); font-size: 12px; font-weight: 700; }
.contact-actions { position: relative; display: flex; flex-direction: column; align-items: stretch; gap: 11px; }
.contact-qr-card {
  width: min(320px, 100%);
  margin-left: auto;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.contact-qr-card img {
  width: 220px;
  height: 220px;
  border-radius: 20px;
  background: white;
  object-fit: cover;
  padding: 10px;
}
.button-white { color: #5540b8; background: white; }
.button-glass { color: white; border-color: rgba(255,255,255,.23); background: rgba(255,255,255,.1); backdrop-filter: blur(14px); }
.contact-note { margin-top: 5px; color: rgba(255,255,255,.62); font-size: 11px; text-align: center; }
.site-footer { padding: 50px 0; background: #fff; }
.back-top { color: var(--muted); font-size: 12px; text-decoration: none; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 35px; border-top: 1px solid var(--line); }
.footer-brand { flex-shrink: 0; }
.footer-brand .brand-mark { font-size: 14px; }
.footer-inner p, .footer-inner > a { color: var(--muted); font-size: 12px; text-decoration: none; }
.footer-inner p { margin: 0; text-align: center; flex: 1; }

.lightbox { position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center; padding: 28px; background: rgba(25,19,50,.82); backdrop-filter: blur(16px); }
.lightbox.active { display: flex; }
.lightbox figure { width: min(1120px, 94vw); max-height: 90vh; margin: 0; display: flex; flex-direction: column; align-items: center; }
.lightbox img { max-width: 100%; max-height: 82vh; border-radius: 22px; box-shadow: 0 30px 90px rgba(0,0,0,.36); }
.lightbox figcaption { margin-top: 15px; color: rgba(255,255,255,.78); font-size: 13px; }
.lightbox-close { position: fixed; right: 25px; top: 22px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.2); border-radius: 15px; color: white; background: rgba(255,255,255,.1); font-size: 28px; cursor: pointer; }
.floating-contact { position: fixed; left: 50%; bottom: 20px; z-index: 90; width: min(560px, calc(100% - 24px)); padding: 12px; border: 1px solid rgba(255,255,255,.95); border-radius: 22px; background: rgba(255,255,255,.84); box-shadow: 0 20px 50px rgba(73,57,132,.16); backdrop-filter: blur(18px); transform: translate(-50%, calc(100% + 40px)); opacity: 0; pointer-events: none; transition: .28s ease; display: flex; gap: 10px; }
.floating-contact.visible { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.floating-contact .button { flex: 1; min-height: 50px; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .menu-button { display: block; }
  .nav-cta { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .hero-proof { grid-template-columns: 1fr; }
  .portrait-stage { transform: scale(.9); margin-right: -30px; }
  .profile-points { grid-template-columns: 1fr; }
  .course-grid { grid-template-columns: repeat(2,1fr); }
  .case-study-grid { grid-template-columns: 1fr 1fr; }
  .news-layout { grid-template-columns: 1fr 1fr; }
  .news-left { grid-column: 1 / -1; }
  .news-right { grid-column: 1 / -1; grid-template-columns: repeat(2,1fr); }
  .news-column { min-height: 0; }
  .cooperation-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .container { width: min(100% - 30px,1200px); }
  .nav-wrap { min-height: 72px; }
  .nav-cta { display: none; }
  .brand small { display: none; }
  .brand-title { font-size: 19px; }
  .mobile-menu { position: absolute; left: 15px; right: 15px; top: 68px; padding: 12px; border: 1px solid var(--line); border-radius: 20px; background: rgba(252,251,255,.96); box-shadow: var(--shadow); }
  .mobile-menu.open { display: grid; }
  .mobile-menu a, .mobile-menu .nav-item-static { padding: 13px; color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 750; display: block; }
  .hero { padding-top: 30px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero h1 { max-width: none; font-size: 44px; }
  .hero-intro { font-size: 15px; }
  .portrait-stage { min-height: 520px; transform: scale(.86); margin: -20px -40px 0; }
  .floating-chip { font-size: 10px; }
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .stats-strip article { min-height: 130px; padding: 23px; }
  .stats-strip article:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .stats-strip article:nth-child(4) { border-top: 1px solid var(--line); }
  .stats-strip strong { font-size: 39px; }
  .section { padding: 56px 0; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 18px; }
  .classroom-section .section-head { display: flex; gap: 18px; }
  .classroom-section .section-head h2,
  .classroom-section .section-head > p { white-space: normal; }
  .classroom-section .section-head {
    align-items: flex-start;
    text-align: left;
  }
  .classroom-title span { display: block; }
  .courses-section .section-head { display: flex; gap: 18px; }
  .courses-section .section-head > p { margin: 0; padding-right: 0; font-size: 14px; }
  .about-grid, .experience-layout, .credentials-grid { grid-template-columns: 1fr; gap: 45px; }
  .section-heading h2, .section-head h2, .credentials-copy h2 { font-size: 42px; }
  .about-content .lead { font-size: 17px; }
  .photo-feature { grid-template-columns: 1fr; grid-template-rows: none; }
  .photo-wide, .photo-tall { grid-row: auto; grid-column: auto; aspect-ratio: 16/10; }
  .photo-grid { grid-template-columns: repeat(2,1fr); }
  .course-grid, .cooperation-grid { grid-template-columns: 1fr; }
  .case-study-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .case-card-large,
  .case-card-tall,
  .case-card-wide { grid-row: auto; grid-column: auto; }
  .news-section .section-head > p {
    white-space: normal !important;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.7;
  }
  .news-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .news-left,
  .news-center,
  .news-right {
    grid-column: auto;
    grid-row: auto;
  }
  .news-right {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 16px;
  }
  .news-column,
  .news-subcolumn {
    min-height: 0;
    padding: 20px;
    border-radius: 22px;
  }
  .news-list {
    gap: 10px;
  }
  .news-list a {
    font-size: 14px;
    line-height: 1.55;
  }
  .news-column-head {
    margin-bottom: 14px;
    padding-bottom: 12px;
  }
  .news-column-head h3 { font-size: 21px; }
  .news-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }
  .news-image-card,
  .news-image-card-large {
    grid-column: auto;
    min-height: 188px;
    padding: 18px;
  }
  .news-image-card h4 { font-size: 18px; }
  .course-card { min-height: 340px; }
  .credential-gallery { gap: 9px; }
  .credential-gallery button { height: 170px; border-radius: 17px; }
  .delivery-bar { grid-template-columns: 1fr; }
  .fit-card { padding: 32px 24px; }
  .fit-card h3 { font-size: 34px; }
  .contact-section { padding-bottom: 44px; }
  .contact-card { min-height: 0; grid-template-columns: 1fr; padding: 48px 28px; border-radius: 28px; }
  .contact-prism { right: -150px; top: -80px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }

}

@media (max-width: 480px) {
  .hero h1 { font-size: 43px; }
  .hero h1 .hero-outcome,
  .hero-proof strong { white-space: normal; }
  .hero-actions .button { width: 100%; }
  .hero-proof article { padding: 16px; }
  .portrait-stage { min-height: 500px; transform: none; margin: 0; }
  .stage-halo { width: 400px; height: 400px; }
  .portrait-frame { width: 86%; }
  .floating-chip { display: none; }
  .stats-strip { margin-top: 35px; }
  .stats-strip article { padding: 20px 17px; }
  .profile-points article { grid-template-columns: 48px 1fr; padding: 18px; }
  .timeline article { grid-template-columns: 48px 1fr; padding: 21px; }
  .timeline-index { font-size: 31px; }
  .method-card { padding: 30px 24px; }
  .process-steps article { grid-template-columns: 48px 1fr; padding: 20px; }
  .photo-grid { grid-template-columns: 1fr; }
  .credential-gallery { grid-template-columns: 1fr; }
  .credential-gallery button { height: 220px; }
  .news-column,
  .news-subcolumn { padding: 18px; }
  .news-column-head h3 { font-size: 19px; }
  .news-image-card {
    min-height: 168px;
    padding: 16px;
    border-radius: 20px;
  }
  .news-image-card h4 { font-size: 16px; }
  .news-image-tag {
    margin-bottom: 10px;
    padding: 6px 9px;
    font-size: 10px;
  }
  .contact-card h2 { font-size: 41px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
