/* =========================================
   Company 公司信息页 — PC only
   ========================================= */

.page--company {
  background: var(--color-black);
  color: var(--color-white);
}

.page--company .header {
  background: transparent;
}

/* =========================================
   Hero — Figma Banner 131:377 / 131:554
   ========================================= */
.cp-hero {
  position: relative;
  width: 100%;
  height: 800px;
  background: var(--color-black);
  overflow: hidden;
}

.cp-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 800px;
  object-position: center top;
  pointer-events: none;
}

.cp-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 246px;
}

/* Hero — top 246px, gap 13px */
.cp-hero__heading {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.cp-hero__title {
  font-family: var(--font-en);
  font-size: 200px;
  font-weight: 800;
  line-height: normal;
  color: var(--color-white);
}

.cp-hero__subtitle {
  font-family: var(--font-zh);
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
  color: var(--color-white);
  opacity: 0.4;
}

/* =========================================
   Intro + Diagram — Figma 134:587 / 423:3759
   ========================================= */
.cp-intro {
  position: relative;
  width: 100%;
  background: var(--color-black);
  margin-top: -84px;
  z-index: 3;
}

.cp-intro__inner {
  position: relative;
  min-height: 1424px;
}

.cp-intro__text {
  max-width: 978px;
}

.cp-intro__headline {
  font-family: var(--font-en);
  font-size: 96px;
  font-weight: 800;
  line-height: 100px;
  color: var(--color-white);
  overflow-wrap: break-word;
  word-break: normal;
}

.cp-intro__body {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 64px;
  max-width: 978px;
  font-family: var(--font-zh);
  font-size: 20px;
  font-weight: 500;
  line-height: 40px;
  color: var(--color-white);
  overflow-wrap: break-word;
  word-break: normal;
}

.cp-intro__body p {
  margin: 0;
}

.cp-intro__diagram {
  position: absolute;
  top: 264px;
  right: 100px;
  width: 1182px;
}

.cp-intro__diagram-img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================================
   Vision — Figma 131:386
   ========================================= */
.cp-vision {
  position: relative;
  width: 100%;
  min-height: 810px;
  background: var(--color-black);
  overflow: hidden;
}

.cp-vision__bg {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 1791px;
  max-width: calc(100% - 40px);
  height: auto;
  max-height: 755px;
  object-fit: contain;
  object-position: center bottom;
  opacity: 0.8;
  pointer-events: none;
}

.cp-vision__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 810px;
  padding-top: 188px;
  padding-bottom: 80px;
  box-sizing: border-box;
}

.cp-vision__title {
  font-family: var(--font-en);
  font-size: 48px;
  line-height: normal;
  color: var(--color-white);
  text-align: center;
  font-weight: 800;
}

.cp-vision__desc {
  margin: 58px 0 0;
  max-width: 1350px;
  width: 100%;
  font-size: 28px;
  font-weight: 500;
  line-height: 50px;
  text-align: center;
  color: var(--color-white);
  overflow-wrap: break-word;
  word-break: normal;
}

.cp-vision__grid {
  display: grid;
  grid-template-columns: repeat(2, 624px);
  column-gap: 80px;
  row-gap: 64px;
  justify-content: center;
  align-items: stretch;
  margin-top: 80px;
  width: 100%;
}

.cp-vision__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 100%;
  width: 100%;
}

.cp-vision__item-row {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  min-height: 0;
}

.cp-vision__item-dot {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  background: transparent;
  box-sizing: border-box;
}

.cp-vision__item-text {
  font-size: 24px;
  font-weight: 400;
  line-height: 40px;
  color: var(--color-white);
  overflow-wrap: break-word;
  word-break: normal;
}

.cp-vision__divider {
  display: block;
  flex-shrink: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

/* =========================================
   Office Photo
   ========================================= */
.cp-office {
  width: 100%;
  background: var(--color-black);
}

.cp-office__img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center;
}

/* =========================================
   1440px 笔记本适配
   ========================================= */
@media (max-width: 1440px) {
  .cp-hero__title {
    font-size: 160px;
  }

  .cp-hero__subtitle {
    font-size: 40px;
  }

  .cp-intro__inner {
    min-height: 1068px;
  }

  .cp-intro__headline {
    font-size: 72px;
    line-height: 80px;
  }

  .cp-intro__body {
    font-size: 18px;
    line-height: 36px;
  }

  .cp-intro__diagram {
    top: 300px;
    width: 700px;
    right: -40px;
  }

  .cp-vision__grid {
    grid-template-columns: repeat(2, 480px);
    column-gap: 48px;
  }
}
