@charset "UTF-8";

#Wapper.investors {
  padding: 6rem 0 4rem;
}

.investors .section-block {
  margin: 0 auto 4rem;
  max-width: 1080px;
  padding: 0 1.5rem;
}

.investors #revenue-trends {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.04), rgba(230, 0, 54, 0.03));
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(12, 34, 47, 0.08);
  padding: 3rem 3rem 2.5rem;
}

.investors #revenue-trends .titleB .line {
  margin-top: 1.5rem;
}

.investors #revenue-trends .revenue-chart-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.investors .chart-range-btn {
  appearance: none;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 79, 108, 0.22);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b4f6c;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.65rem 1.6rem;
  transition: all 0.3s ease;
}

.investors .chart-range-btn span {
  display: inline;
}

.investors .chart-range-btn.is-active {
  background: #e60036;
  border-color: #e60036;
  box-shadow: 0 12px 24px rgba(230, 0, 54, 0.35);
  color: #fff;
}

.investors .chart-range-btn:focus-visible {
  outline: 2px solid rgba(11, 79, 108, 0.3);
  outline-offset: 2px;
}

.investors .chart-range-btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  pointer-events: none;
}

.investors .revenue-chart-wrapper {
  position: relative;
  margin-top: 1.75rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(12, 34, 47, 0.08);
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9);
  overflow: hidden;
  padding: 2rem;
  min-height: 360px;
}

.investors .revenue-chart-scroll {
  min-width: 100%;
}

.investors .revenue-chart-wrapper canvas {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.investors .revenue-chart-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  color: #0b4f6c;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.investors .revenue-chart-placeholder.has-error {
  background: rgba(255, 240, 241, 0.95);
  color: #c7002d;
}

.investors .revenue-chart-placeholder.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.investors .chartjs-external-tooltip {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(17, 25, 40, 0.92);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.16);
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.12s ease, transform 0.12s ease;
  z-index: 5;
}

.investors .chartjs-external-tooltip .tooltip-title {
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.investors .chartjs-external-tooltip .tooltip-body {
  font-weight: 500;
}

.investors .revenue-chart-note {
  color: #4a5862;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  margin-top: 1rem;
}

.investors .financial-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.investors .board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.investors .board-card {
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 12px 28px rgba(12, 34, 47, 0.08);
}

.investors .board-role {
  color: #e60036;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.investors .board-name {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.investors .board-org {
  color: #5f6b75;
  line-height: 1.6;
}

.investors .download-card {
  background: linear-gradient(135deg, rgba(230, 0, 54, 0.08), rgba(230, 0, 54, 0.02));
  border: 1px solid rgba(230, 0, 54, 0.18);
  border-radius: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  padding: 2rem 2.25rem;
}

.investors #orgchart .orgchart-wrapper {
  margin-top: 2.5rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 18px;
  background: #edf5f3;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 18px 32px rgba(12, 34, 47, 0.08);
}

.investors #orgchart .orgchart-wrapper img {
  display: inline-block;
  height: auto;
  max-width: initial;
}

.investors #orgchart .orgchart-note {
  color: #e60036;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin-top: 0.75rem;
}

.investors #orgchart .orgchart-note span {
  display: block;
}

@media (max-width: 768px) {
  .investors #revenue-trends {
    border-radius: 18px;
    padding: 2.25rem 1.75rem 1.9rem;
  }

  .investors .chart-range-btn {
    flex: 1 1 calc(50% - 0.75rem);
    justify-content: center;
    text-align: center;
  }

  .investors .revenue-chart-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 1.5rem 1.25rem;
    min-height: 320px;
  }

  .investors .revenue-chart-scroll {
    min-width: 720px;
  }

  .investors .revenue-chart-wrapper canvas {
    min-height: 280px;
  }

  .investors #orgchart .orgchart-wrapper {
    height: calc(100vh - 70px);
    padding: 2rem;
  }
  .investors #orgchart .orgchart-wrapper img {
    height: 100%;
  }
}

.investors .download-card p {
  color: #2e3338;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

.investors .download-card a {
  background: #e60036;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.investors .download-card a:hover,
.investors .download-card a:focus {
  background: #c7002d;
  transform: translateY(-1px);
}

.investors .financial-table {
  border-collapse: collapse;
  margin-top: 2rem;
  width: 100%;
  min-width: 660px;
}

.investors .financial-table th,
.investors .financial-table td {
  border-bottom: 1px solid #e1e4e8;
  padding: 1.2rem 1rem;
  vertical-align: top;
}

.investors .financial-table thead th {
  background: #f8f9fb;
  color: #1f272f;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.investors .financial-table tbody th {
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
}

.investors .financial-table tbody td a {
  color: #e60036;
  font-weight: 600;
}

.investors .financial-table td {
  text-align: center;
}

.investors .quarter-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.investors .quarter-links a {
  border: 1px solid rgba(230, 0, 54, 0.4);
  border-radius: 999px;
  color: #e60036;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.45rem 1.1rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.investors .quarter-links a:hover,
.investors .quarter-links a:focus {
  background: #e60036;
  color: #fff;
}

.investors .info-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 1024px) {
  .investors .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.investors .info-card {
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 18px 28px rgba(12, 34, 47, 0.06);
}

.investors .info-card h3 {
  color: #1f272f;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.investors .info-card p,
.investors .info-card li {
  color: #49535a;
  font-size: 0.97rem;
  line-height: 1.7;
}

.investors .info-card a {
  color: #e60036;
  font-weight: 600;
  text-decoration: underline;
}

.investors .info-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.investors .info-card li + li {
  margin-top: 0.4rem;
}

.investors .contact-list {
  display: grid;
  gap: 0.6rem;
}

.investors .contact-list span {
  color: #1f272f;
  font-weight: 600;
}

.investors .contact-list p {
  margin: 0;
}

@media (max-width: 768px) {
  #Wapper.investors {
    padding: 4rem 0 3rem;
  }

  .investors .financial-table {
    min-width: 540px;
  }

  .investors .download-card {
    padding: 1.75rem;
  }

  .investors .board-card {
    padding: 1.5rem;
  }

}
