@charset "utf-8";

#ctt {
  margin: 0;
  padding: 0;
  background: var(--color-bg, #F7F4EE);
}

#ctt_con {
  padding: 0 0 90px;
  color: var(--color-text, #1f2a2a);
  line-height: 1.7;
  word-break: keep-all;
}

#ctt_con .or-wrap {
  width: min(100%, var(--layout-width, 1200px));
  margin: 0 auto;
  padding: 0 var(--layout-padding, 20px);
}

#ctt_con .ui-eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--color-sub-2, #00827d);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#ctt_con .ui-title {
  margin: 0 0 16px;
  color: var(--color-text, #1f2a2a);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.28;
}

#ctt_con .ui-desc {
  max-width: 760px;
  margin: 0;
  color: var(--color-muted, #7b8b8b);
  font-size: 16px;
  line-height: 1.7;
}

#ctt_con .or-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 11vw, 140px) clamp(32px, 5vw, 72px) clamp(54px, 7vw, 86px);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(1, 188, 181, 0.16), transparent 34%),
    linear-gradient(180deg, #f6fbfb 0%, #ffffff 100%);
}

#ctt_con .or-hero .or-wrap {
  padding-left: 0;
  padding-right: 0;
}

#ctt_con .or-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -34% auto;
  width: min(48vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(214, 243, 241, 0.72);
  filter: blur(8px);
}

#ctt_con .or-statGrid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

#ctt_con .or-statCard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 74px;
  padding: 14px 18px;
  border: 1px solid var(--color-table-border, #b9e4e1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 34px rgba(0, 102, 98, 0.08);
}

#ctt_con .or-statCard > span {
  display: block;
  color: var(--color-sub-2, #00827d);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

#ctt_con .or-statCard__value {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  margin: 0;
  color: var(--color-sub-1, #006662);
  font-size: clamp(25px, 3.8vw, 30px);
  font-weight: 900;
}

#ctt_con .or-statCard__value.odometer,
#ctt_con .or-statCard__value .odometer-value {
  font-size: clamp(25px, 3.8vw, 30px);
  font-weight: 900;
}

#ctt_con .or-counter {
  display: inline-block;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

#ctt_con .or-statusNav {
  position: sticky;
  top: calc(var(--header-height, 90px) + 12px);
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 34px 0 8px;
  padding: 12px;
  border: 1px solid var(--color-table-border, #b9e4e1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(0, 102, 98, 0.07);
}

#ctt_con .or-statusNav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--color-table-border, #b9e4e1);
  border-radius: 999px;
  background: #fff;
  color: var(--color-sub-1, #006662);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

#ctt_con .or-statusNav a:hover {
  border-color: var(--color-main, #01bcb5);
  background: var(--color-table-accent, #eefafa);
}

#ctt_con .or-statusNav em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--color-main, #01bcb5);
  color: #fff;
  font-size: 12px;
  font-style: normal;
}

#ctt_con .or-section {
  padding: clamp(42px, 6vw, 72px) 0;
  border-bottom: 1px solid rgba(185, 228, 225, 0.58);
}

#ctt_con .or-section:last-child {
  border-bottom: 0;
}

#ctt_con .or-sectionHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

#ctt_con .or-sectionHead strong {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--color-sub-1, #006662);
  color: #fff;
  font-size: 14px;
}

#ctt_con .or-slider {
  position: relative;
  overflow: hidden;
  margin: -10px;
  padding: 10px 10px 68px;
}

#ctt_con .or-slider .swiper-wrapper {
  align-items: stretch;
}

#ctt_con .or-slider .swiper-slide {
  height: auto;
}

#ctt_con .or-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 290px;
  padding: 24px;
  border: 1px solid var(--color-table-border, #b9e4e1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 102, 98, 0.07);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

#ctt_con .or-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-main, #01bcb5);
  box-shadow: 0 20px 40px rgba(0, 102, 98, 0.11);
}

#ctt_con .or-slider__nav {
  position: absolute;
  right: 2px;
  bottom: 0;
  left: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 38px;
}

#ctt_con .or-slider .swiper-pagination {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 82px;
}

#ctt_con .or-slider .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 4px;
  background: var(--color-table-border, #b9e4e1);
  opacity: 1;
}

#ctt_con .or-slider .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 999px;
  background: var(--color-main, #01bcb5);
}

#ctt_con .or-slider .swiper-button-prev,
#ctt_con .or-slider .swiper-button-next {
  position: static;
  width: 36px;
  height: 36px;
  margin: 0;
  border: 1px solid var(--color-table-border, #b9e4e1);
  border-radius: 50%;
  background: #fff;
  color: var(--color-sub-1, #006662);
  box-shadow: 0 10px 24px rgba(0, 102, 98, 0.08);
}

#ctt_con .or-slider .swiper-button-prev::after,
#ctt_con .or-slider .swiper-button-next::after {
  font-size: 13px;
  font-weight: 900;
}

#ctt_con .or-slider .swiper-button-disabled {
  opacity: .35;
}

#ctt_con .or-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 18px;
}

#ctt_con .or-chip,
#ctt_con .or-state {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

#ctt_con .or-chip {
  background: var(--color-table-main, #d6f3f1);
  color: var(--color-sub-1, #006662);
}

#ctt_con .or-state {
  background: #f4f8f8;
  color: var(--color-muted, #7b8b8b);
}

#ctt_con .or-card__title {
  margin: 0;
  color: #132322;
  font-size: 21px;
  font-weight: 850;
  letter-spacing: -0.03em;
  line-height: 1.42;
}

#ctt_con .or-card__title a {
  color: inherit;
  text-decoration: none;
}

#ctt_con .or-card__title a:hover {
  color: var(--color-sub-2, #00827d);
}

#ctt_con .or-card__meta {
  display: grid;
  gap: 8px;
  margin: 22px 0;
}

#ctt_con .or-card__meta div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
}

#ctt_con .or-card__meta dt,
#ctt_con .or-card__meta dd {
  margin: 0;
  font-size: 14px;
}

#ctt_con .or-card__meta dt {
  color: var(--color-muted, #7b8b8b);
  font-weight: 800;
}

#ctt_con .or-card__meta dd {
  color: var(--color-text, #1f2a2a);
  font-weight: 700;
}

#ctt_con .or-progress {
  display: grid;
  gap: 9px;
  margin-top: auto;
}

#ctt_con .or-progress__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-muted, #7b8b8b);
  font-size: 13px;
  font-weight: 800;
}

#ctt_con .or-progress__top strong {
  display: inline-flex;
  align-items: baseline;
  color: var(--color-sub-1, #006662);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

#ctt_con .or-progress__track {
  overflow: hidden;
  height: 9px;
  border-radius: 999px;
  background: var(--color-table-main, #d6f3f1);
}

#ctt_con .or-progress__track span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-main, #01bcb5), var(--color-sub-1, #006662));
  transition: width 2.6s cubic-bezier(0.25, 1, 0.3, 1);
}

#ctt_con .or-progress em {
  color: var(--color-muted, #7b8b8b);
  font-size: 12px;
  font-style: normal;
}

#ctt_con .or-empty {
  margin: 0;
  padding: 28px;
  border: 1px dashed var(--color-table-border, #b9e4e1);
  border-radius: 20px;
  background: #fff;
  color: var(--color-muted, #7b8b8b);
  text-align: center;
}

@media (max-width: 1100px) {
  #ctt_con .or-statGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  #ctt_con .or-hero {
    padding: 74px 24px 48px;
    border-radius: 20px;
  }

  #ctt_con .or-statusNav {
    position: static;
  }

  #ctt_con .or-sectionHead {
    align-items: flex-start;
    flex-direction: column;
  }

  #ctt_con .or-statGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  #ctt_con .or-statCard {
    min-height: 68px;
    padding: 12px 16px;
  }

  #ctt_con .or-card {
    min-height: auto;
    padding: 20px;
    border-radius: 20px;
  }
}

@media (max-width: 380px) {
  #ctt_con .or-statGrid {
    grid-template-columns: 1fr;
  }
}
