:root {
  --blue: #1768ed;
  --ink: #11274c;
  --text: #26354b;
  --muted: #718096;
  --line: #e7ecf3;
  --sky: #eef5ff;
  --white: #fff;
  font-family:
    -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei",
    sans-serif;
  color: var(--text);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
  opacity: 0.4;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #58a6ff;
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -80px;
  background: white;
  color: var(--blue);
  padding: 16px;
  z-index: 200;
}
.skip-link:focus {
  top: 8px;
}
.site-header {
  height: 88px;
  padding: 0 4.5%;
  display: flex;
  align-items: center;
  gap: 40px;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  z-index: 30;
  border-bottom: 1px solid var(--line);
}
.home .site-header {
  position: absolute;
  width: 100%;
  color: white;
  background: transparent;
  border-bottom: 1px solid #ffffff26;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.brand strong {
  font-size: 24px;
  letter-spacing: 0.3px;
  font-weight: 780;
}
.brand-label {
  font-size: 16px;
  padding-left: 13px;
  margin-left: 2px;
  border-left: 1px solid currentColor;
  opacity: 0.85;
}
.brand > img {
  max-width: 120px;
  max-height: 40px;
}
.brand-symbol {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  width: 28px;
  height: 27px;
  transform: skewY(-12deg);
}
.brand-symbol i {
  background: currentColor;
  width: 5px;
  height: 17px;
}
.brand-symbol i:nth-child(2) {
  height: 27px;
}
.brand-symbol i:nth-child(3) {
  height: 20px;
}
.brand-symbol i:nth-child(4) {
  height: 30px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: 25px;
  font-size: 15px;
  align-self: stretch;
}
.site-header nav a {
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.site-header nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 3px;
  transform: scaleX(0);
  background: currentColor;
  transition: transform 0.2s;
}
.site-header nav a:hover:after,
.site-header nav a[aria-current="page"]:after {
  transform: scaleX(1);
}
.header-action {
  margin-left: auto;
  font-size: 14px;
  white-space: nowrap;
}
.header-action span {
  font-size: 23px;
  margin-left: 9px;
}
.menu-toggle {
  display: none;
}
.hero {
  min-height: 740px;
  height: 88vh;
  max-height: 1060px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}
.hero-shade {
  background: linear-gradient(
    180deg,
    rgba(13, 40, 68, 0.45),
    rgba(17, 54, 83, 0.24) 48%,
    rgba(12, 36, 60, 0.49)
  );
}
.hero-content {
  position: relative;
  text-align: center;
  margin-top: 32px;
  width: min(1050px, 90%);
}
.hero-intro {
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 24px;
  color: #fffffff0;
}
.hero h1 {
  font-weight: 650;
  font-size: clamp(36px, 4.1vw, 64px);
  letter-spacing: 3px;
  line-height: 1.35;
  text-shadow: 0 2px 25px #142c4a24;
}
.hero-subtitle {
  font-size: 20px;
  letter-spacing: 2px;
  margin: 22px 0 47px;
  color: #fffffff0;
}
.hero-search {
  display: flex;
  align-items: center;
  margin: auto;
  background: white;
  box-shadow: 0 8px 40px #11274c1c;
  width: min(740px, 100%);
  height: 68px;
  padding: 7px;
  border-radius: 6px;
  text-align: left;
}
.hero-search svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: #8993a3;
  stroke-width: 1.7;
  margin: 0 17px;
}
.hero-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  height: 100%;
  font-size: 16px;
  color: var(--text);
}
.hero-search input::placeholder {
  color: #8491a2;
}
.hero-search button,
.list-search button {
  border: 0;
  background: var(--blue);
  color: white;
  align-self: stretch;
  padding: 0 32px;
  border-radius: 4px;
  white-space: nowrap;
}
.hero-search button:hover,
.primary-button:hover {
  background: #0c55cf;
}
.popular {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 13px;
  margin-top: 22px;
}
.popular span {
  opacity: 0.65;
}
.popular a:hover {
  text-decoration: underline;
}
.explore {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  gap: 8px;
  justify-items: center;
  font-size: 12px;
  letter-spacing: 2px;
}
.explore span {
  font-size: 24px;
}
.hero-caption {
  position: absolute;
  bottom: 39px;
  right: 4.5%;
  font-size: 11px;
  letter-spacing: 2px;
  opacity: 0.7;
}
.entry-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
  margin-bottom: 116px;
}
.recruit-entry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  padding: 36px 40px;
  background: #edf5ff;
  overflow: hidden;
  position: relative;
  min-height: 246px;
}
.recruit-entry.campus {
  background: #edf8f8;
}
.entry-label {
  font-size: 13px;
  color: #5a7697;
}
.recruit-entry h2 {
  font-size: 30px;
  margin: 12px 0 12px;
  color: var(--ink);
  font-weight: 600;
}
.recruit-entry p {
  font-size: 14px;
  line-height: 1.8;
  color: #63768e;
  max-width: 290px;
}
.text-link {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 38px;
  font-size: 14px;
  color: var(--blue);
}
.text-link b {
  font-size: 21px;
  font-weight: 400;
}
.entry-art {
  font-size: 145px;
  line-height: 1;
  color: #83b9f2;
  transform: rotate(-5deg);
  font-family: Arial;
  font-weight: 200;
  margin-left: 20px;
}
.campus .entry-art {
  font-size: 138px;
  color: #79c9c9;
}
.recruit-entry:hover .entry-art {
  transform: translate(3px, -5px) rotate(2deg);
  transition: transform 0.3s;
}
.about-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
  margin-bottom: 115px;
}
.about-photo {
  position: relative;
  padding-bottom: 24px;
}
.about-photo img {
  height: 380px;
  width: 100%;
  object-fit: cover;
  border-radius: 7px;
}
.photo-note {
  position: absolute;
  bottom: 0;
  right: -20px;
  background: var(--blue);
  color: white;
  padding: 23px 32px;
  font-size: 15px;
  letter-spacing: 1px;
  border-radius: 4px;
}
.section-kicker {
  color: var(--blue);
  font-size: 14px;
  margin-bottom: 22px;
}
.about-copy h2,
.section-heading h2,
.closing h2 {
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--ink);
}
.about-copy > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 16px;
  line-height: 2.1;
  margin: 25px 0 32px;
}
.outline-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  padding: 15px 25px;
  border: 1px solid #ccd8e6;
  background: transparent;
  color: var(--ink);
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.5;
}
.outline-button:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.primary-button {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.values-section {
  background: #f7f9fc;
  padding: 85px 0 90px;
}
.section-heading {
  text-align: center;
}
.section-heading > p,
.section-heading > div > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-top: 17px;
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 76px;
  margin-top: 56px;
}
.values article {
  text-align: center;
}
.value-icon {
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 50px;
  color: var(--blue);
  height: 65px;
  line-height: 1;
}
.values h3 {
  font-size: 21px;
  font-weight: 600;
  margin: 19px 0 14px;
  color: var(--ink);
}
.values p {
  font-size: 14px;
  line-height: 1.95;
  color: var(--muted);
}
.stories-section {
  padding-top: 90px;
  padding-bottom: 100px;
}
.section-heading.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
.simple-link {
  font-size: 14px;
  color: var(--blue);
  white-space: nowrap;
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 38px;
}
.story-card {
  min-width: 0;
}
.story-image {
  height: 240px;
  overflow: hidden;
  border-radius: 7px;
  background: var(--sky);
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.story-card:hover img {
  transform: scale(1.035);
}
.story-card > span {
  font-size: 12px;
  color: var(--blue);
  display: block;
  margin: 24px 0 12px;
}
.story-card h3 {
  font-size: 21px;
  color: var(--ink);
  font-weight: 550;
  line-height: 1.5;
}
.story-card > p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.closing {
  text-align: center;
  padding: 76px 0;
  background: #eef5ff;
}
.closing p {
  margin: 18px 0 30px;
  color: var(--muted);
}
.footer {
  background: #fff;
  padding: 55px 4.5% 24px;
  font-size: 13px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 35px;
  padding-bottom: 38px;
}
.footer-top .brand {
  color: var(--ink);
}
.footer-top > p {
  color: var(--muted);
}
.footer-top > div {
  margin-left: auto;
  display: flex;
  gap: 28px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 23px;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  color: #8a95a4;
  font-size: 12px;
}
.page-hero {
  background: #eff5ff;
  padding: 68px 0 65px;
  background-image: radial-gradient(
    ellipse at 90% 5%,
    #d9eaff 0,
    transparent 60%
  );
}
.page-hero p {
  font-size: 15px;
  color: #657e9c;
  margin-bottom: 17px;
}
.page-hero h1 {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--ink);
}
.page-hero.compact {
  padding: 58px 0;
}
.list-search {
  display: flex;
  height: 58px;
  max-width: 760px;
  margin-top: 32px;
  background: white;
  border: 1px solid #dce5f1;
  border-radius: 5px;
  padding: 5px;
}
.list-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0 18px;
  outline: none;
}
.jobs-layout {
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  gap: 56px;
  padding: 55px 0 88px;
  min-height: 600px;
}
.filters {
  padding-right: 28px;
  border-right: 1px solid var(--line);
}
.filter-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
.filter-heading h2 {
  font-size: 18px;
}
.filter-heading button {
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 13px;
  padding: 4px;
}
.filters > label:not(.saved-filter) {
  display: block;
  font-size: 14px;
  font-weight: 550;
  margin: 26px 0 12px;
}
.filters select {
  width: 100%;
  height: 43px;
  padding: 0 10px;
  border: 1px solid #dce3eb;
  background: white;
  border-radius: 4px;
  color: #4c5e76;
  font-size: 14px;
}
.saved-filter {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 28px 0;
  font-size: 13px;
}
.saved-filter input {
  width: 17px;
  height: 17px;
  accent-color: var(--blue);
}
.filter-note {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.results-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.results-heading h2 {
  font-size: 21px;
  font-weight: 600;
}
.results-heading h2 span {
  color: var(--blue);
  font-size: 17px;
  margin-left: 10px;
}
.results-heading > span {
  font-size: 13px;
  color: var(--muted);
}
.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 6px;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.job-card:hover h3 {
  color: var(--blue);
}
.job-card h3 {
  font-size: 21px;
  font-weight: 550;
  line-height: 1.5;
}
.job-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 13px;
  color: #708098;
}
.job-meta span + span:before {
  content: "";
  display: inline-block;
  height: 11px;
  width: 1px;
  background: #cdd5df;
  margin-right: 10px;
}
.job-card p {
  font-size: 13px;
  line-height: 1.8;
  margin-top: 15px;
  color: #8190a2;
  max-width: 630px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.job-arrow {
  color: #8fa8c6;
  font-size: 26px;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  margin-top: 32px;
  font-size: 13px;
  color: var(--muted);
}
.pagination button {
  border: 1px solid #dce3ec;
  padding: 10px 14px;
  background: white;
  border-radius: 4px;
  color: var(--ink);
}
.empty {
  text-align: center;
  padding: 55px 20px;
  color: var(--muted);
  grid-column: 1/-1;
}
.empty h3 {
  color: var(--ink);
  margin-bottom: 15px;
}
.empty p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 22px;
}
.detail-hero {
  padding: 44px 0 48px;
  background: #f1f6fe;
}
.breadcrumb {
  color: #6a7f9a;
  font-size: 14px;
}
.detail-hero h1 {
  font-size: 38px;
  line-height: 1.5;
  font-weight: 600;
  margin-top: 25px;
  color: var(--ink);
}
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 100px;
  padding-top: 55px;
  padding-bottom: 90px;
}
.prose {
  font-size: 16px;
  line-height: 2;
  color: #4a5b70;
  overflow-wrap: anywhere;
}
.prose h2 {
  font-size: 24px;
  color: var(--ink);
  margin: 32px 0 18px;
  font-weight: 600;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose h3 {
  font-size: 20px;
  color: var(--ink);
  margin: 25px 0 12px;
}
.prose p {
  margin: 0 0 20px;
}
.prose ul,
.prose ol {
  padding-left: 24px;
  margin: 15px 0 26px;
}
.prose li {
  padding-left: 4px;
  margin: 8px 0;
}
.prose a {
  color: var(--blue);
  text-decoration: underline;
}
.prose img {
  border-radius: 6px;
  margin: 30px 0;
  width: 100%;
  height: auto;
}
.prose blockquote {
  border-left: 3px solid var(--blue);
  background: var(--sky);
  margin: 24px 0;
  padding: 20px;
  color: #526f94;
}
.prose blockquote p:last-child {
  margin-bottom: 0;
}
.apply-panel {
  align-self: start;
  position: sticky;
  top: 120px;
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 6px;
  background: white;
}
.apply-panel h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}
.apply-panel > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  margin: 18px 0 24px;
}
.apply-panel .primary-button,
.apply-panel .outline-button {
  display: flex;
  width: 100%;
  margin-top: 14px;
}
.apply-panel .apply-unavailable {
  background: #f1f5fa;
  padding: 12px;
  font-size: 13px;
  color: #718096;
}
.share-button {
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 13px;
  display: block;
  margin: 20px auto 0;
}
.apply-panel .small-note {
  font-size: 11px;
  margin-bottom: 0;
  line-height: 1.7;
}
.small-note a {
  color: var(--blue);
}
.page-prose {
  max-width: 840px;
  margin: 60px auto 80px;
  min-height: 250px;
}
.article-heading {
  max-width: 900px;
  margin-top: 55px;
  margin-bottom: 36px;
}
.article-heading h1 {
  font-size: 42px;
  line-height: 1.45;
  color: var(--ink);
  margin: 25px 0 20px;
}
.article-heading p {
  color: var(--muted);
  font-size: 14px;
}
.article-cover {
  width: min(1100px, calc(100% - 96px));
  max-height: 530px;
  object-fit: cover;
  border-radius: 8px;
  margin: auto;
}
.article-end {
  max-width: 840px;
  margin-bottom: 70px;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  background: #17365c;
  color: white;
  padding: 14px 24px;
  border-radius: 5px;
  font-size: 14px;
  z-index: 100;
  transition: 0.2s;
  max-width: 90vw;
}
.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.error-page {
  text-align: center;
  padding: 120px 24px;
}
.error-page h1 {
  font-size: 70px;
  color: var(--blue);
}
.error-page p {
  margin: 20px 0 30px;
  color: var(--muted);
}
@media (min-width: 1600px) {
  .hero h1 {
    font-size: 68px;
  }
  .hero-content {
    margin-top: 0;
  }
}
@media (max-width: 1150px) {
  .site-header {
    gap: 24px;
    padding: 0 30px;
  }
  .site-header nav {
    gap: 22px;
    margin-left: 5px;
  }
  .header-action {
    font-size: 0;
  }
  .header-action span {
    font-size: 25px;
  }
  .wrap {
    width: calc(100% - 64px);
  }
  .entry-art {
    font-size: 110px;
  }
  .campus .entry-art {
    font-size: 100px;
  }
  .recruit-entry {
    padding: 30px;
  }
  .about-section {
    gap: 55px;
  }
  .footer-top {
    flex-wrap: wrap;
  }
  .footer-top > p {
    display: none;
  }
  .detail-layout {
    gap: 50px;
  }
  .values {
    gap: 35px;
  }
  .about-copy h2,
  .section-heading h2,
  .closing h2 {
    font-size: 31px;
  }
  .story-image {
    height: 205px;
  }
}
@media (max-width: 800px) {
  .site-header {
    height: 72px;
    padding: 0 24px;
    gap: 18px;
  }
  .brand strong {
    font-size: 21px;
  }
  .brand-label {
    font-size: 14px;
  }
  .site-header nav {
    gap: 16px;
    font-size: 13px;
  }
  .site-header nav a:nth-child(5) {
    display: none;
  }
  .brand-symbol {
    display: none;
  }
  .header-action {
    display: none;
  }
  .wrap {
    width: calc(100% - 48px);
  }
  .hero {
    min-height: 650px;
    height: 85vh;
  }
  .hero h1 {
    font-size: 38px;
    letter-spacing: 1px;
  }
  .hero-subtitle {
    font-size: 17px;
    letter-spacing: 1px;
  }
  .hero-caption {
    display: none;
  }
  .entry-section {
    gap: 18px;
    margin-bottom: 75px;
  }
  .recruit-entry {
    padding: 26px;
  }
  .entry-art {
    display: none;
  }
  .about-section {
    gap: 32px;
    margin-bottom: 75px;
  }
  .about-photo img {
    height: 335px;
  }
  .about-copy h2 {
    font-size: 28px;
  }
  .photo-note {
    font-size: 12px;
    padding: 18px;
    right: -10px;
  }
  .values-section {
    padding: 64px 0;
  }
  .stories-section {
    padding: 65px 0;
  }
  .story-grid {
    gap: 20px;
  }
  .story-image {
    height: 170px;
  }
  .story-card h3 {
    font-size: 18px;
  }
  .section-heading.row {
    align-items: flex-start;
    gap: 20px;
  }
  .simple-link {
    margin-top: 10px;
  }
  .jobs-layout {
    grid-template-columns: 195px minmax(0, 1fr);
    gap: 25px;
  }
  .filters {
    padding-right: 20px;
  }
  .results-heading > span {
    display: none;
  }
  .detail-layout {
    grid-template-columns: minmax(0, 1fr) 255px;
    gap: 32px;
  }
  .apply-panel {
    padding: 21px;
  }
  .detail-hero h1 {
    font-size: 32px;
  }
  .page-hero h1 {
    font-size: 36px;
  }
  .footer-top > div {
    gap: 18px;
  }
  .footer-top .brand strong {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    padding: 0 20px;
    height: 68px;
  }
  .brand strong {
    font-size: 21px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: none;
    color: inherit;
    border: 0;
    margin-left: auto;
  }
  .menu-toggle span {
    display: block;
    height: 2px;
    width: 23px;
    background: currentColor;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: white;
    color: var(--ink);
    padding: 15px 24px 24px;
    box-shadow: 0 12px 18px #11274c0a;
    margin: 0;
    font-size: 16px;
  }
  .site-header nav.open {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }
  .site-header nav a {
    padding: 14px 5px;
  }
  .site-header nav a:nth-child(5) {
    display: block;
  }
  .site-header nav a:after {
    display: none;
  }
  .site-header nav a[aria-current="page"] {
    color: var(--blue);
  }
  .hero {
    min-height: 650px;
    max-height: 850px;
    height: 90svh;
  }
  .hero-content {
    margin-top: 0;
    width: calc(100% - 40px);
  }
  .hero-image {
    object-position: 57% center;
  }
  .hero-intro {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: 38px;
    line-height: 1.55;
    max-width: 340px;
    margin: auto;
    letter-spacing: 1px;
    text-wrap: balance;
  }
  .hero-subtitle {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.9;
    margin: 20px auto 34px;
    max-width: 270px;
  }
  .hero-search {
    height: 58px;
    padding: 5px;
  }
  .hero-search svg {
    width: 19px;
    margin: 0 10px;
  }
  .hero-search input {
    font-size: 13px;
  }
  .hero-search button {
    padding: 0 15px;
    font-size: 13px;
  }
  .popular {
    font-size: 11px;
    gap: 17px;
  }
  .popular span {
    display: none;
  }
  .explore {
    bottom: 24px;
  }
  .entry-section {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
    margin-bottom: 62px;
  }
  .recruit-entry {
    padding: 27px;
    min-height: 208px;
  }
  .recruit-entry h2 {
    font-size: 27px;
  }
  .recruit-entry p {
    font-size: 13px;
  }
  .entry-art {
    display: block;
    font-size: 100px;
    margin-left: 10px;
  }
  .campus .entry-art {
    font-size: 92px;
  }
  .text-link {
    margin-top: 20px;
  }
  .about-section {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 58px;
  }
  .about-photo img {
    height: 270px;
  }
  .photo-note {
    right: 0;
    padding: 17px 24px;
  }
  .about-copy h2,
  .section-heading h2,
  .closing h2 {
    font-size: 28px;
    letter-spacing: 0;
  }
  .about-copy > p:not(.section-kicker) {
    font-size: 14px;
    margin: 19px 0 25px;
  }
  .section-kicker {
    margin-bottom: 13px;
  }
  .values-section {
    padding: 52px 0;
  }
  .section-heading p,
  .section-heading > div > p {
    font-size: 14px;
  }
  .values {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 37px;
  }
  .values article {
    display: grid;
    grid-template-columns: 62px 1fr;
    text-align: left;
    column-gap: 16px;
  }
  .value-icon {
    grid-row: 1/3;
    font-size: 43px;
    padding-top: 10px;
  }
  .values h3 {
    font-size: 19px;
    margin: 0 0 10px;
  }
  .values p {
    font-size: 13px;
  }
  .section-heading.row {
    display: block;
  }
  .simple-link {
    display: inline-block;
    margin-top: 20px;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 28px;
  }
  .story-image {
    height: 235px;
  }
  .story-card > span {
    margin: 18px 0 9px;
  }
  .story-card h3 {
    font-size: 21px;
  }
  .closing {
    padding: 52px 0;
  }
  .closing p {
    font-size: 14px;
    line-height: 1.8;
  }
  .footer {
    padding: 36px 20px 24px;
  }
  .footer-top {
    display: block;
    padding-bottom: 27px;
  }
  .footer-top > div {
    margin-top: 25px;
    gap: 28px;
    font-size: 12px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    font-size: 11px;
  }
  .page-hero {
    padding: 42px 0;
  }
  .page-hero h1 {
    font-size: 31px;
    line-height: 1.5;
  }
  .page-hero p {
    font-size: 13px;
  }
  .list-search {
    height: 54px;
    margin-top: 25px;
  }
  .list-search input {
    padding: 0 10px;
    font-size: 13px;
  }
  .list-search button {
    padding: 0 18px;
    font-size: 13px;
  }
  .jobs-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 30px;
  }
  .filters {
    padding: 0 0 25px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .filter-heading {
    grid-column: 1/-1;
    margin-bottom: 2px;
  }
  .filters > label:not(.saved-filter) {
    margin: 10px 0 0;
    font-size: 12px;
    grid-row: 2;
  }
  .filters select {
    grid-row: 3;
    font-size: 12px;
    padding: 0 6px;
  }
  .saved-filter {
    grid-column: 1/-1;
    margin: 10px 0 0;
  }
  .filter-note {
    display: none;
  }
  .job-card {
    padding: 25px 0;
  }
  .job-card h3 {
    font-size: 18px;
  }
  .job-meta {
    font-size: 12px;
    gap: 8px;
  }
  .job-card p {
    font-size: 12px;
  }
  .results-heading h2 {
    font-size: 20px;
  }
  .detail-hero {
    padding: 28px 0 36px;
  }
  .detail-hero h1 {
    font-size: 28px;
    line-height: 1.6;
    margin-top: 20px;
  }
  .detail-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 35px;
    padding-bottom: 50px;
  }
  .apply-panel {
    position: static;
  }
  .prose {
    font-size: 15px;
  }
  .prose h2 {
    font-size: 22px;
  }
  .page-prose {
    margin: 38px auto 55px;
  }
  .article-heading {
    margin-top: 35px;
    margin-bottom: 28px;
  }
  .article-heading h1 {
    font-size: 29px;
  }
  .article-cover {
    width: calc(100% - 40px);
  }
  .article-end {
    margin-bottom: 45px;
  }
  .stories-section {
    padding: 50px 0;
  }
  .story-grid > .empty {
    padding: 20px 0;
  }
  .page-hero.compact {
    padding: 40px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
/* Qianqi product content, using the existing theme palette and spacing. */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
}
.hero-actions .outline-button {
  color: white;
  border-color: #ffffffa8;
  background: #15355420;
}
.hero-actions .outline-button:hover {
  background: #ffffff20;
}
.hero-subtitle {
  line-height: 1.8;
}
.products-section {
  padding-top: 85px;
  padding-bottom: 100px;
}
.section-heading .section-kicker {
  color: var(--blue);
  margin: 0 0 15px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.product-card {
  align-items: flex-start;
  min-height: 300px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  gap: 22px;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px #11274c0a;
}
.product-card h3 {
  font-size: 27px;
  margin: 16px 0;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 600;
}
.product-card p {
  max-width: 370px;
}
.product-symbol {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--blue);
  opacity: 0.55;
  line-height: 1.2;
}
.knowledge-visual {
  min-height: 430px;
  padding: 42px 32px;
  background: var(--sky);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}
.knowledge-core {
  margin: 34px auto;
  width: 136px;
  height: 136px;
  border: 1px solid #1768ed30;
  border-radius: 50%;
  background: white;
  box-shadow:
    0 0 0 14px #1768ed05,
    0 0 0 28px #1768ed03;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.knowledge-core span {
  font-size: 32px;
  color: var(--blue);
  font-weight: 650;
}
.knowledge-core small {
  color: var(--muted);
}
.knowledge-nodes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 40px;
}
.knowledge-nodes span {
  padding: 12px 4px;
  border-radius: 4px;
  background: white;
  color: var(--ink);
  font-size: 13px;
}
.visual-caption {
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 5px;
}
.values .simple-link {
  display: inline-block;
  margin-top: 22px;
}
.product-intro {
  max-width: 840px;
}
@media (max-width: 800px) {
  .product-card {
    padding: 28px;
  }
  .product-card h3 {
    font-size: 23px;
  }
  .product-symbol {
    font-size: 32px;
  }
  .knowledge-visual {
    min-height: 400px;
  }
  .products-section {
    padding-top: 60px;
    padding-bottom: 65px;
  }
}
@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
  }
  .product-card {
    min-height: auto;
  }
  .hero h1 {
    font-size: 36px;
    max-width: 340px;
    margin-inline: auto;
    text-wrap: balance;
  }
  .hero-intro {
    letter-spacing: 2px;
    font-size: 13px;
  }
  .hero-subtitle {
    font-size: 15px;
    letter-spacing: 0.5px;
    max-width: 290px;
    margin: 24px auto 32px;
  }
  .hero-actions {
    gap: 12px;
  }
  .hero-actions a {
    padding: 14px 18px;
    font-size: 13px;
  }
  .popular {
    flex-wrap: wrap;
    gap: 12px 20px;
    max-width: 300px;
    margin: 24px auto 0;
  }
  .knowledge-visual {
    padding: 32px 18px;
  }
  .knowledge-nodes {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    line-height: 1.8;
  }
  .values .simple-link {
    grid-column: 2;
    margin-top: 12px;
  }
}
