.logo__link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  letter-spacing: 0;
  text-transform: none;
}

.logo__image {
  max-height: 36px;
  width: auto;
  margin-right: 0;
}

.logo__text {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  margin-left: 0;
  margin-top: 0;
  transform: translateY(0);
  white-space: nowrap;
  color: #111827;
}

@media only screen and (max-width: 576px) {
  .logo__image {
    max-height: 30px;
  }
  .logo__text {
    font-size: 20px;
  }
}

:root {
  --brand-blue: #2563eb;
  --brand-blue-dark: #1d4ed8;
  --brand-blue-light: #eff6ff;
  --font-sans: "Noto Sans SC", "Noto Sans", "Inter", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "STSong",
    "Noto Serif", "Times New Roman", serif;
}

body {
  font-family: var(--font-sans);
}

.container {
  max-width: 1280px;
}

@media only screen and (max-width: 1024px) {
  .container {
    max-width: 100%;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.section__title,
.c-hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0;
}

.c-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 15, 20, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.c-header.header--home.is-top {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.c-header__inner {
  padding: 14px 0;
  min-height: unset;
  align-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

.c-header .logo__text,
.c-header .nav__link,
.c-header .nav-button {
  color: #fff;
}

.c-header .logo__image {
  filter: brightness(0) invert(1);
}

.c-header .nav__link.active-link::after {
  background-color: #fff;
  bottom: -10px;
}

.c-header .logo {
  display: flex;
  align-items: center;
}

.c-header .main-nav {
  margin-left: auto;
}

.c-header .nav__item {
  margin: 0 16px;
  display: flex;
  align-items: center;
}

.c-header .nav__list {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 1024px) {
  .c-header .main-nav {
    height: 100vh;
    width: 100vw;
    bottom: auto;
  }

  .c-header .nav__list {
    display: block;
    padding-right: 0;
  }

  .c-header .nav__item {
    display: block;
    margin: 0 0 18px;
  }

  .c-header .nav__link {
    display: block;
    padding: 0;
    transform: none;
  }

  .c-header .nav__link--pill {
    display: inline-flex;
    padding: 7px 14px;
    background: var(--brand-blue);
    border-color: transparent;
    color: #fff;
  }

  .c-header .main-nav.is-open .nav__link.active-link {
    color: var(--brand-blue);
  }

  .c-header .nav__icon-close {
    background: var(--brand-blue);
  }

  .c-header .main-nav.is-open .nav__list .nav__item .nav__link--pill {
    display: inline-flex;
    width: auto;
    background: var(--brand-blue);
    border-color: transparent;
    color: #fff;
    border-radius: 8px;
    padding: 8px 14px;
    line-height: 1.2;
  }
}

@media only screen and (min-width: 1025px) {
  .c-header .main-nav {
    justify-content: flex-end;
  }

  .c-header .main-nav__box {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
  }

  .c-header .nav__list {
    justify-content: flex-end;
    margin-left: auto;
    padding-right: 36px;
  }
}

.c-header .nav__link {
  padding-bottom: 0;
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
  transform: translateY(2px);
  color: #fff;
}

.c-header .nav__link:hover {
  color: #fff;
}

.c-header .nav__link--pill {
  padding: 7px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.c-header .nav__link--pill:hover {
  background: rgba(255, 255, 255, 0.26);
  color: #fff !important;
}

.c-header .main-nav.is-open .nav__link--pill {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.2);
  color: var(--brand-blue);
}

.c-header .main-nav.is-open .nav__link,
.c-header .main-nav.is-open .nav__title {
  color: #111827;
}

.c-hero {
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  background-size: 24px 24px, cover;
  background-position: 0 0, center;
  color: #fff;
  padding-top: 72px;
  padding-bottom: 56px;
}

@media only screen and (min-width: 1025px) {
  .c-hero .c-hero__left {
    width: 56%;
    max-width: 640px;
  }

  .c-hero .c-hero__right {
    width: 44%;
  }

  .c-hero .c-hero__title {
    white-space: nowrap;
  }

  .c-hero .c-hero__description {
    max-width: 560px;
  }
}

@media only screen and (max-width: 1024px) {
  .c-hero {
    padding-top: 56px;
    padding-bottom: 44px;
  }
}

@media only screen and (max-width: 768px) {
  .c-hero {
    padding-top: 44px;
    padding-bottom: 36px;
  }

  .c-hero .c-hero__right {
    display: none;
  }
}

.c-hero .c-hero__title {
  color: #fff;
  font-size: 54px;
}

@media only screen and (max-width: 1130px) {
  .c-hero .c-hero__title {
    font-size: 44px;
  }
}

@media only screen and (max-width: 1024px) {
  .c-hero .c-hero__title {
    font-size: 38px;
  }
}

@media only screen and (max-width: 768px) {
  .c-hero .c-hero__title {
    font-size: 32px;
  }
}

.c-hero .c-hero__description p {
  color: rgba(255, 255, 255, 0.88);
}

.c-hero .c-hero__image::before {
  display: none;
}

.c-hero .c-hero__image {
  backdrop-filter: none;
}

.c-hero .c-hero__image img {
  opacity: 0;
}

.c-hero .c-hero__image::after {
  display: none;
}

.c-hero .hero-metrics {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.c-hero .hero-metrics__card {
  position: absolute;
  padding: 13px 16px;
  min-width: 154px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
  color: #0f172a;
}

.c-hero .hero-metrics__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.6);
}

.c-hero .hero-metrics__value {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.c-hero .hero-metrics__sub {
  margin-top: 4px;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.6);
}

.c-hero .hero-metrics__trend {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--brand-blue);
  font-size: 12px;
}

.c-hero .hero-metrics__card--visibility {
  top: 10%;
  left: calc(56% - 100px);
  transform: rotate(-8deg);
}

.c-hero .hero-metrics__card--citation {
  top: 38%;
  left: calc(64% - 100px);
  transform: rotate(7deg);
}

.c-hero .hero-metrics__card--trust {
  top: 66%;
  left: calc(60% - 100px);
  transform: rotate(-6deg);
}

.c-hero .hero-metrics__card--sources {
  top: 22%;
  left: calc(80% - 100px);
  transform: rotate(10deg);
}

@media only screen and (max-width: 768px) {
  .c-hero .hero-metrics {
    display: none;
  }
}

.c-button--primary {
  background: var(--brand-blue);
  color: #fff;
}

.c-button--primary::before {
  background: var(--brand-blue-dark);
}

.c-button--secondary {
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  border: 1px solid #bfdbfe;
}

.c-hero .c-button--primary {
  background: #fff;
  color: var(--brand-blue);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.c-hero .c-button--secondary {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.c-hero .works-button {
  color: #fff;
}

.c-hero .works-button .circle-bg {
  background: rgba(255, 255, 255, 0.9);
}

.c-hero .works-button .button-arrow {
  color: var(--brand-blue);
}

.feature-slab {
  position: relative;
  width: 100vw;
  margin: 0 0 24px;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 38px 0 60px;
  background: #fff;
  overflow: hidden;
}

.feature-slab__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 10px;
}

.feature-slab__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.feature-slab__copy h2 {
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.feature-slab__copy p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 18px;
}

.feature-cta {
  border-radius: 10px;
  padding: 14px 26px;
}

.feature-slab__art {
  width: 100%;
  min-height: 260px;
  background: url("globe-wire.svg") right center / contain no-repeat;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px 20px 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.feature-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.12);
  color: var(--brand-blue);
  margin-bottom: 14px;
  font-size: 18px;
}

.feature-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 0;
}

@media only screen and (max-width: 1024px) {
  .feature-slab__header {
    grid-template-columns: 1fr;
  }

  .feature-slab__art {
    min-height: 220px;
  }

  .feature-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 576px) {
  .feature-slab {
    padding: 34px 0 52px;
  }

  .feature-slab__inner {
    padding: 0 20px;
  }

  .feature-slab__copy h2 {
    font-size: 28px;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .feature-slab__art {
    display: none;
  }
}

.insights-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
}

.section.blog {
  padding: 30px 0 74px;
}

.section.blog .section__title {
  margin-top: 0;
}

.section.blog .section__info {
  margin-bottom: 24px;
}

.section.blog .section__description {
  margin-top: 18px;
}

.post-insights-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 36px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.post-top--insights {
  padding: 0 0 24px;
}

.post--insights {
  margin-bottom: 0;
}

.post--insights .post__content {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.insights-feature__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  text-decoration: none;
}

.insights-feature__label {
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-blue);
  background: rgba(37, 99, 235, 0.12);
  margin-bottom: 16px;
}

.insights-feature__title {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.4;
  color: #0f172a;
}

.insights-feature__excerpt {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

.insights-feature__meta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #64748b;
}

.insights-feature__tag {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
  font-weight: 600;
  font-size: 11px;
}

.insights-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.insights-list__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  text-decoration: none;
}

.insights-list__title {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}

.insights-list__excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
}

.insights-list__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #94a3b8;
}

.insights-list__tag {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.2);
  color: #475569;
  font-weight: 600;
  font-size: 11px;
}

.case-section {
  padding: 64px 0 80px;
  background: #fff;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.case-section .section__info {
  margin-bottom: 28px;
}

.case-section .section__description {
  max-width: 560px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.case-card {
  display: flex;
  flex-direction: column;
  min-height: 180px;
  padding: 22px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  border-color: rgba(37, 99, 235, 0.35);
}

.case-card__name {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}

.case-card__desc {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
}

.case-card__logo {
  display: flex;
  align-items: center;
  height: 52px;
  margin-bottom: 14px;
}

.case-card__logo img {
  max-height: 100%;
  max-width: 220px;
  width: auto;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.85;
}

.case-card:hover .case-card__logo img {
  filter: grayscale(0%);
  opacity: 1;
}

.case-card__tag {
  margin-top: auto;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--brand-blue);
  font-weight: 600;
  font-size: 12px;
}

.footer--mega .footer__link--text {
  color: rgba(255, 255, 255, 0.68);
}

.footer--mega .footer__qr {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer--mega .footer__qr img {
  width: 96px;
  height: auto;
  border-radius: 10px;
  background: #fff;
  padding: 6px;
}

.footer--mega .footer__qr-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
}

@media only screen and (max-width: 1024px) {
  .insights-layout {
    grid-template-columns: 1fr;
  }

  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (min-width: 1025px) {
  .case-section .section__description {
    max-width: none;
    white-space: nowrap;
  }
}

@media only screen and (max-width: 768px) {
  .section.blog {
    padding: 22px 0 58px;
  }

  .post-insights-card {
    padding: 24px;
  }

  .post-top--insights {
    padding-bottom: 18px;
  }
}

@media only screen and (max-width: 640px) {
  .case-section {
    padding: 48px 0 60px;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 576px) {
  .post-insights-card {
    padding: 20px;
    border-radius: 12px;
  }
}

.footer.footer--mega {
  margin-top: 0;
  padding: 104px 0 44px;
  background: #0b0f14;
  color: rgba(255, 255, 255, 0.8);
}

.footer--kimi .footer__main {
  display: flex;
  align-items: flex-start;
  gap: 56px;
}

.footer--kimi .footer__brand-block {
  min-width: 220px;
}

.footer--kimi .footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.footer--kimi .footer__logo {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
}

.footer--kimi .footer__brand-text {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer--kimi .social {
  margin-top: 16px;
}

.footer--kimi .social__list {
  display: flex;
  gap: 10px;
}

.footer--kimi .social__link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.footer--kimi .footer__columns {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, max-content));
  justify-content: end;
  margin-left: auto;
  margin-right: 30px;
  gap: 12px 24px;
}

.footer--kimi .footer__title {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.footer--kimi .footer__list {
  margin: 0;
  padding: 0;
}

.footer--kimi .footer__item + .footer__item {
  margin-top: 4px;
}

.footer--kimi .footer__link {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.4;
}

.footer--kimi .footer__link:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer--kimi .footer__legal {
  margin-top: 32px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

@media only screen and (max-width: 1024px) {
  .footer--kimi .footer__main {
    flex-direction: column;
    gap: 40px;
  }
}

@media only screen and (max-width: 768px) {
  .footer.footer--mega {
    padding: 72px 0 40px;
  }
}
