/* Verbatim from Vue AboutView + about components */

/* ===== src/views/about/AboutView.vue ===== */
.about-page .timeline-nav{
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  pointer-events: none;
}

.about-page .timeline-nav ol{
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: relative;
  display: grid;
  gap: 0;
  pointer-events: auto;
}

.about-page .timeline-nav ol::before{
  content: '';
  position: absolute;
  top: 18px;
  bottom: 18px;
  right: 11px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(15, 52, 91, 0.08),
    rgba(15, 52, 91, 0.22) 20%,
    rgba(15, 52, 91, 0.22) 80%,
    rgba(15, 52, 91, 0.08)
  );
}

.about-page .timeline-nav .node{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: 100%;
  min-height: 36px;
  padding: 6px 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #666;
  font: inherit;
  transition: min-height 0.28s ease;
}

.about-page .timeline-nav .node.active{
  min-height: 44px;
}

.about-page .timeline-nav .dot{
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #fff;
  border: 2px solid #0f345b;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.85);
  transition:
    width 0.3s ease,
    height 0.3s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    border-radius 0.3s ease;
}

.about-page .timeline-nav .label{
  order: -1;
  white-space: nowrap;
  font-size: 13px;
  line-height: 1;
  padding: 7px 12px;
  border-radius: 4px;
  color: #666;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 10px rgba(15, 52, 91, 0.08);
  transition:
    color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    font-weight 0.22s ease,
    font-size 0.28s ease,
    padding 0.28s ease,
    letter-spacing 0.28s ease;
}

.about-page .timeline-nav .node:hover .label{
  color: #0f345b;
  box-shadow: 0 4px 14px rgba(15, 52, 91, 0.12);
}

.about-page .timeline-nav .node.active .label{
  color: #d93751;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 9px 16px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(217, 55, 81, 0.18);
}

.about-page .timeline-nav .node:hover .dot{
  border-color: #d93751;
}

.about-page .timeline-nav .node.active .dot{
  width: 8px;
  height: 28px;
  border-radius: 10px;
  background: #d93751;
  border-color: #d93751;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.92),
    0 0 0 6px rgba(217, 55, 81, 0.14);
}

.about-page .timeline-nav[hidden]{
  display: none !important;
}

.about-page .page-banner{
  padding: calc(var(--header-h, 90px) + 64px) 0 64px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.about-page .page-banner::before{
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent);
  pointer-events: none;
}

.about-page .page-banner .section-title{
  margin-bottom: 12px;
}

.about-page .sec-head{
  margin-bottom: 36px;
}

.about-page .sec-head .section-title{
  margin-bottom: 10px;
}

.about-page .intro-sec{
  background: #fff;
}

.about-page .intro-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  gap: 36px;
  align-items: start;
}

.about-page .intro-copy{
  display: grid;
  gap: 18px;
}

.about-page .intro-copy p{
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-secondary);
}

.about-page .highlights{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-page .hl{
  padding: 22px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
}

.about-page .hl strong{
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: #d4364f;
  margin-bottom: 10px;
}

.about-page .hl h3{
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--text-primary);
}

.about-page .hl p{
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
}

.about-page .history-sec{
  background: var(--bg-secondary);
}

.about-page .honors-sec{
  background: #fff;
}

.about-page .distribution-sec{
  background: var(--bg-secondary);
}

@media (max-width: 1100px) {
  .about-page .timeline-nav{
    right: 10px;
  }

  .about-page .timeline-nav .label{
    font-size: 12px;
    padding: 6px 10px;
  }
}

@media (max-width: 720px) {
  .about-page .timeline-nav{
    display: none;
  }
}

@media (max-width: 960px) {
  .about-page .intro-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-page .highlights{
    grid-template-columns: 1fr;
  }
}

/* ===== src/components/about/HistoryTimeline.vue ===== */
.history-carousel{
  cursor: grab;
  user-select: none;
  touch-action: pan-x;
}

.history-carousel:active{
  cursor: grabbing;
}

.history-carousel .viewport{
  overflow: hidden;
}

.history-carousel .timeline{
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 2px solid rgba(212, 54, 79, 0.25);
  will-change: transform;
}

.history-carousel .node{
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 20px;
  padding: 0 0 0 28px;
  box-sizing: border-box;
  align-content: start;
}

.history-carousel .node::before{
  content: '';
  position: absolute;
  left: -6px;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d4364f;
  box-shadow: 0 0 0 4px rgba(212, 54, 79, 0.12);
}

.history-carousel .node time{
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #d4364f;
  line-height: 1.2;
  padding-top: 4px;
}

.history-carousel .node-body{
  padding: 16px 20px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.05);
}

.history-carousel .node-body h3{
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--text-primary);
}

.history-carousel .node-body p{
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 640px) {
  .history-carousel .node{
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ===== src/components/about/HonorsCarousel.vue ===== */
.honors-sec .carousel{
  position: relative;
  padding: 0 44px;
}

.honors-sec .viewport{
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.honors-sec .viewport.is-dragging{
  cursor: grabbing;
}

.honors-sec .viewport.is-dragging img{
  pointer-events: none;
}

.honors-sec .track{
  display: flex;
  will-change: transform;
}

.honors-sec .slide{
  flex: 0 0 auto;
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.honors-sec .frame{
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  overflow: hidden;
  padding: 14px;
  box-sizing: border-box;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
}

.honors-sec .frame img{
  position: absolute;
  inset: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #fff;
}

.honors-sec figcaption{
  margin-top: 14px;
  display: grid;
  gap: 6px;
  flex: 1;
}

.honors-sec figcaption strong{
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.4;
}

.honors-sec figcaption span,
.honors-sec figcaption .desc{
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.honors-sec figcaption .desc p{
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.honors-sec .nav{
  position: absolute;
  top: 36%;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-subtle);
  background: #fff;
  color: #d4364f;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    border-color var(--transition),
    background var(--transition);
}

.honors-sec .nav:hover{
  border-color: rgba(212, 54, 79, 0.4);
  background: #fff5f6;
}

.honors-sec .nav.prev{
  left: 0;
}

.honors-sec .nav.next{
  right: 0;
}

.honors-sec .dots{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.honors-sec .dot{
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.15);
  cursor: pointer;
}

.honors-sec .dot.active{
  background: #d4364f;
}

@media (max-width: 640px) {
  .honors-sec .carousel{
    padding: 0 36px;
  }

  .honors-sec .nav{
    top: 30%;
  }
}

/* ===== src/components/about/CustomerMapSection.vue ===== */
.map-wrap{
  position: relative;
  width: 100%;
  background: transparent;
  pointer-events: none;
}

.map-wrap .chart{
  position: relative;
  width: 100%;
  height: 580px;
  background: transparent;
}

.map-wrap .chart.is-loading{
  background:
    radial-gradient(ellipse 70% 55% at 50% 48%, #eef1f4 0%, transparent 70%),
    linear-gradient(180deg, #f7f8fa 0%, #fff 100%);
}

.map-wrap .map-status,
.map-wrap .error{
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-size: 14px;
  pointer-events: none;
}

.map-wrap .map-status.error,
.map-wrap .error{
  pointer-events: auto;
  color: var(--text-secondary, #666);
}

@media (max-width: 768px) {
  .map-wrap .chart{
    height: 420px;
  }
}

