.company-page {
  background: #0f0f10;
}

.company-purpose {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #0f0f10;
}

.company-purpose__overlay {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: clamp(94px, 10vw, 140px);
  padding-bottom: clamp(48px, 8vw, 82px);
}

.company-purpose__tag {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.28em;
  margin-bottom: 24px;
}

.company-purpose__copy {
  display: grid;
  gap: 8px;
  margin: 0;
}

.company-purpose__copy span {
  display: block;
  color: #fff;
  font-size: clamp(34px, 6.4vw, 88px);
  line-height: 1.06;
  letter-spacing: 0.04em;
}

.company-purpose__sub {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(13px, 1.4vw, 19px);
  line-height: 1.9;
}

.js-purpose-step {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}

.js-purpose-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.company-values {
  position: relative;
  z-index: 1;
  padding: 0 0 96px;
  background: linear-gradient(180deg, rgba(8, 8, 9, 0) 0%, #0b0b0d 18%, #0f0f10 100%);
}

.company-values__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 4vw, 78px);
  align-items: start;
}

.company-values__side {
  position: sticky;
  top: 120px;
  padding-top: clamp(80px, 9vw, 124px);
}

.company-values__tag {
  font-size: 12px;
  letter-spacing: 0.26em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.company-values__lead {
  color: #f3f1eb;
  font-size: clamp(20px, 2.1vw, 34px);
  line-height: 1.65;
  margin-bottom: 26px;
}

.company-values__index {
  display: grid;
  gap: 12px;
  padding-left: 0;
}

.company-values__index li {
  color: rgba(255, 255, 255, 0.44);
  font-size: 13px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.company-values__index li span {
  display: inline-block;
  min-width: 32px;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.35);
}

.company-values__index li.is-active {
  color: #fff;
  transform: translateX(6px);
}

.company-values__index li.is-active span {
  color: #ffc88e;
}

.company-values__chapters {
  position: relative;
}

.company-value-chapter {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(92px, 12vw, 140px) 0;
  opacity: 0.2;
  transform: translateY(20px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.company-value-chapter.is-active {
  opacity: 1;
  transform: translateY(0);
}

.company-value-chapter__no {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
}

.company-value-chapter h2 {
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.14;
  color: #fff;
  margin-bottom: 20px;
  text-wrap: balance;
}

.company-value-chapter p {
  max-width: 58ch;
  font-size: clamp(14px, 1.3vw, 19px);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.84);
}

.about-title {
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 0.04em;
  color: #fff;
  position: relative;
}

@keyframes company-scroll-indicator {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.2;
  }
  50% {
    transform: translate(-50%, 8px);
    opacity: 0.95;
  }
}

@media screen and (max-width: 991px) {
  .company-values__layout {
    grid-template-columns: 1fr;
  }

  .company-values__side {
    position: static;
    padding-top: 76px;
  }

  .company-values__index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
  }

  .company-value-chapter {
    min-height: 74vh;
    min-height: 74svh;
    padding: 56px 0;
  }

  .company-value-chapter p {
    max-width: none;
  }
}

@media screen and (max-width: 767px) {
  .company-purpose__overlay {
    align-items: center;
    text-align: center;
  }

  .company-purpose__copy span {
    font-size: clamp(30px, 10.5vw, 56px);
  }

  .company-purpose__sub {
    max-width: 33ch;
  }

  .company-values {
    padding-bottom: 48px;
  }

  .company-values__lead {
    font-size: 24px;
  }

  .company-values__index {
    grid-template-columns: 1fr;
  }

  .company-value-chapter h2 {
    font-size: clamp(28px, 9vw, 44px);
  }
  .about-title {
    font-size: 36px;
    line-height: 100%;
  }
}

/* ── ABOUT table: dark theme override ── */
.company-page .overview {
  background: #111;
  padding: clamp(64px, 10vw, 120px) 0;
}

.company-page .overview .inner .table {
  border-collapse: collapse;
}

.company-page .overview .inner .table th,
.company-page .overview .inner .table td {
  color: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.company-page .overview .inner .table th {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}
