@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid #e4e7ec;
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}
.site-header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #1f2933;
}
.site-header__logo span {
  color: #6b8cff;
}
.site-header__nav {
  display: flex;
  gap: 40px;
}
.site-header__nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  padding: 4px 0;
  transition: color 0.3s ease;
}
.site-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #6b8cff;
  transition: width 0.3s ease;
}
.site-header__nav a:hover {
  color: #1f2933;
}
.site-header__nav a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  width: 32px;
  height: 22px;
  position: relative;
}
.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1f2933;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger span:nth-child(1) {
  top: 0;
}
.burger span:nth-child(2) {
  top: 10px;
}
.burger span:nth-child(3) {
  bottom: 0;
}
.burger.is-active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.burger.is-active span:nth-child(2) {
  opacity: 0;
}
.burger.is-active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 900px) {
  .site-header__nav {
    position: fixed;
    top: 72px;
    right: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background-color: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.45s ease;
  }
  .site-header__nav.is-open {
    transform: translateX(0);
  }
  .burger {
    display: block;
  }
}
.hero {
  position: relative;
  padding: 120px 0 140px;
  overflow: hidden;
  background-color: #f6f8fb;
}
.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  left: -220px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(107, 140, 255, 0.18), transparent 70%);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -260px;
  right: -260px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(127, 209, 174, 0.22), transparent 70%);
  z-index: 0;
}
.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 90px;
}
.hero__content {
  position: relative;
  padding-left: 28px;
}
.hero__content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 4px;
  height: 140px;
  border-radius: 4px;
  background: linear-gradient(to bottom, #6b8cff, #7fd1ae);
}
.hero__label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b8cff;
  margin-bottom: 22px;
  font-weight: 600;
}
.hero__title {
  font-size: 3.3rem;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 26px;
  max-width: 580px;
  background: linear-gradient(90deg, #1f2933, #6b8cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__text {
  font-size: 1.08rem;
  line-height: 1.65;
  color: #6b7280;
  max-width: 540px;
  margin-bottom: 44px;
}
.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 38px;
  background-color: #6b8cff;
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(107, 140, 255, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(107, 140, 255, 0.45);
}
.hero__media {
  position: relative;
  z-index: 1;
}
.hero__media img {
  width: 100%;
  border-radius: 28px;
  position: relative;
  z-index: 2;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.15);
}
.hero__media::before {
  content: "";
  position: absolute;
  inset: -36px;
  background: linear-gradient(135deg, rgba(107, 140, 255, 0.22), rgba(127, 209, 174, 0.22));
  border-radius: 42px;
  z-index: 1;
  filter: blur(14px);
}
.hero__media::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  background-color: #6b8cff;
  border-radius: 50%;
  opacity: 0.16;
  z-index: 0;
}

@media (max-width: 900px) {
  .hero {
    padding: 90px 0 110px;
  }
  .hero__container {
    grid-template-columns: 1fr;
    gap: 70px;
  }
  .hero__content {
    padding-left: 0;
  }
  .hero__content::before {
    display: none;
  }
  .hero__title {
    font-size: 2.4rem;
  }
  .hero__media {
    order: -1;
  }
  .hero__media::after {
    display: none;
  }
}
.topics {
  position: relative;
  padding: 40px 0;
  background-color: #ffffff;
  overflow: hidden;
}
.topics::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107, 140, 255, 0.18), transparent 70%);
  z-index: 0;
}
.topics::after {
  content: "";
  position: absolute;
  bottom: -260px;
  right: -260px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(127, 209, 174, 0.22), transparent 70%);
  z-index: 0;
}
.topics__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.topics__header {
  max-width: 640px;
  margin-bottom: 90px;
}
.topics__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b8cff;
  margin-bottom: 16px;
  font-weight: 600;
}
.topics__title {
  font-size: 2.7rem;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.topics__subtitle {
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.6;
}
.topics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.topic-card {
  position: relative;
  padding: 56px 42px 48px;
  background-color: #ffffff;
  border-radius: 28px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.topic-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #6b8cff, #7fd1ae);
}
.topic-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.12);
}
.topic-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(107, 140, 255, 0.18), rgba(127, 209, 174, 0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 26px;
}
.topic-card__title {
  font-size: 1.4rem;
  margin-bottom: 18px;
  line-height: 1.3;
}
.topic-card__text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #6b7280;
  margin-bottom: 34px;
}
.topic-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6b8cff;
  position: relative;
}
.topic-card__link::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.topic-card__link:hover::after {
  transform: translateX(6px);
}

@media (max-width: 900px) {
  .topics {
    padding: 100px 0;
  }
  .topics__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .topics__title {
    font-size: 2.2rem;
  }
}
.deep-dive {
  position: relative;
  padding: 160px 0;
  background-color: #0f1115;
  color: #ffffff;
  overflow: hidden;
}
.deep-dive::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(107, 140, 255, 0.25), transparent 40%), radial-gradient(circle at 80% 80%, rgba(127, 209, 174, 0.18), transparent 45%);
  z-index: 0;
}
.deep-dive__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: start;
}
.deep-dive__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b8cff;
  margin-bottom: 24px;
  font-weight: 600;
}
.deep-dive__title {
  font-size: 3.4rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.deep-dive__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-bottom: 56px;
}
.deep-dive__image {
  position: relative;
  max-width: 520px;
}
.deep-dive__image img {
  width: 100%;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  filter: grayscale(1) contrast(1.1);
}
.deep-dive__image::before {
  content: "";
  position: absolute;
  inset: -24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 1;
}
.deep-dive__image::after {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  border-left: 6px solid #6b8cff;
  border-top: 6px solid #6b8cff;
  z-index: 3;
}
.deep-dive__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
}
.deep-dive__text.muted {
  color: rgba(255, 255, 255, 0.55);
}
.deep-dive__highlight {
  position: relative;
  padding: 36px 40px;
  background-color: rgba(255, 255, 255, 0.08);
  border-left: 4px solid #6b8cff;
  margin: 56px 0;
}
.deep-dive__highlight h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.deep-dive__highlight p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}
.deep-dive__highlight::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 40px;
  width: 80px;
  height: 4px;
  background-color: #7fd1ae;
}

@media (max-width: 900px) {
  .deep-dive {
    padding: 120px 0;
  }
  .deep-dive__container {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .deep-dive__title {
    font-size: 2.4rem;
  }
  .deep-dive__image {
    max-width: 100%;
  }
}
.services {
  padding: 100px 0;
  background-color: #ffffff;
}
.services__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.services__header {
  max-width: 620px;
  margin-bottom: 64px;
}
.services__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b8cff;
  margin-bottom: 14px;
}
.services__title {
  font-size: 2.4rem;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #1f2933;
}
.services__subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #6b7280;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.services__footer {
  margin-top: 64px;
  max-width: 720px;
}
.services__footer p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #6b7280;
}

.service-card {
  position: relative;
  background-color: #f6f8fb;
  border-radius: 22px;
  border: 1px solid #e4e7ec;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.06);
}
.service-card.is-featured {
  border-color: rgba(107, 140, 255, 0.35);
  box-shadow: 0 30px 60px rgba(107, 140, 255, 0.15);
}
.service-card__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: rgba(107, 140, 255, 0.15);
  color: #6b8cff;
}
.service-card__tag.premium {
  background-color: #6b8cff;
  color: #ffffff;
}
.service-card__image {
  position: relative;
}
.service-card__image img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.service-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.25));
}
.service-card__title {
  font-size: 1.3rem;
  margin: 22px 24px 12px;
  line-height: 1.3;
  color: #1f2933;
}
.service-card__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0 24px 22px;
}
.service-card__link {
  display: inline-block;
  margin: 0 24px 26px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b8cff;
  position: relative;
}
.service-card__link::after {
  content: "→";
  margin-left: 6px;
  transition: transform 0.25s ease;
}
.service-card__link:hover::after {
  transform: translateX(6px);
}

@media (max-width: 900px) {
  .services {
    padding: 80px 0;
  }
  .services__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .services__title {
    font-size: 2rem;
  }
}
.site-footer {
  background-color: rgb(231.8769230769, 237.0153846154, 244.7230769231);
  color: #1f2933;
  padding: 90px 0 40px;
  font-size: 0.9rem;
}
.site-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.site-footer__top {
  display: flex;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid #e4e7ec;
}
.site-footer .footer-brand {
  flex: 1.4;
}
.site-footer .footer-brand__logo {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  color: #1f2933;
}
.site-footer .footer-brand__logo span {
  color: #6b8cff;
}
.site-footer .footer-brand__desc {
  line-height: 1.7;
  color: #6b7280;
  max-width: 360px;
}
.site-footer .footer-nav {
  flex: 1;
}
.site-footer .footer-nav h4 {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #1f2933;
}
.site-footer .footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-nav ul li {
  margin-bottom: 12px;
}
.site-footer .footer-nav ul li a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer .footer-nav ul li a:hover {
  color: #6b8cff;
}
.site-footer .footer-contact {
  flex: 1.2;
}
.site-footer .footer-contact h4 {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #1f2933;
}
.site-footer .footer-contact p {
  margin-bottom: 12px;
  color: #6b7280;
}
.site-footer .footer-contact p strong {
  color: #6b8cff;
  font-weight: 500;
}
.site-footer__bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #6b7280;
}
.site-footer .footer-social {
  display: flex;
  gap: 14px;
}
.site-footer .footer-social span {
  width: 28px;
  height: 28px;
  background-color: rgba(31, 41, 51, 0.06);
  border-radius: 6px;
  transition: background-color 0.25s ease;
}
.site-footer .footer-social span:hover {
  background-color: rgba(107, 140, 255, 0.25);
}
@media (max-width: 900px) {
  .site-footer {
    padding: 70px 0 32px;
  }
  .site-footer__top {
    flex-direction: column;
    gap: 48px;
  }
  .site-footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.about-page {
  background-color: #f6f8fb;
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}
.section-head__label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b8cff;
  font-weight: 600;
  opacity: 0.9;
}
.section-head__title {
  font-size: 2.1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: #1f2933;
}
.section-head__text {
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.75;
  color: #6b7280;
}
.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head--center .section-head__text {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .section-head__title {
    font-size: 1.85rem;
  }
}

.about-hero {
  position: relative;
  padding: 110px 0 80px;
  overflow: hidden;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(700px 320px at 12% 20%, rgba(107, 140, 255, 0.18), transparent 60%), radial-gradient(700px 320px at 88% 10%, rgba(127, 209, 174, 0.16), transparent 58%);
  pointer-events: none;
  z-index: 0;
}
.about-hero__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 64px;
  align-items: flex-start;
  justify-content: space-between;
}
.about-hero__left {
  flex: 1;
  max-width: 620px;
}
.about-hero__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b8cff;
  font-weight: 600;
  opacity: 0.95;
}
.about-hero__title {
  font-size: 3.1rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: #1f2933;
}
.about-hero__lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 28px;
  max-width: 560px;
}
.about-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}
.about-hero .hero-pill {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background-color: rgba(31, 41, 51, 0.04);
  border: 1px solid rgba(228, 231, 236, 0.9);
}
.about-hero .hero-pill__label {
  font-size: 0.72rem;
  color: #6b7280;
}
.about-hero .hero-pill__value {
  font-size: 0.85rem;
  color: #1f2933;
  font-weight: 600;
}
.about-hero__cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.about-hero__right {
  flex: 1;
  max-width: 520px;
}
.about-hero .hero-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-hero .hero-card {
  border-radius: 18px;
  background-color: rgba(31, 41, 51, 0.035);
  border: 1px solid #e4e7ec;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.about-hero .hero-card__top {
  padding: 18px 18px 14px;
}
.about-hero .hero-card__top h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #1f2933;
}
.about-hero .hero-card__top p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #6b7280;
}
.about-hero .hero-card__media {
  padding: 0 18px 18px;
}
.about-hero .hero-card__media img {
  width: 100%;
  display: block;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.about-hero .hero-card--stats {
  padding: 18px;
}
.about-hero .hero-card--stats .hero-stat {
  padding: 12px 12px;
  border-radius: 14px;
  background-color: rgba(31, 41, 51, 0.03);
  border: 1px solid rgba(228, 231, 236, 0.85);
}
.about-hero .hero-card--stats .hero-stat:not(:last-child) {
  margin-bottom: 10px;
}
.about-hero .hero-card--stats .hero-stat__label {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 6px;
}
.about-hero .hero-card--stats .hero-stat__value {
  display: block;
  font-size: 0.95rem;
  color: #1f2933;
  font-weight: 700;
}
@media (max-width: 900px) {
  .about-hero {
    padding: 85px 0 60px;
  }
  .about-hero__container {
    flex-direction: column;
    gap: 32px;
  }
  .about-hero__title {
    font-size: 2.35rem;
  }
  .about-hero__right {
    max-width: 100%;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background-color: #6b8cff;
  color: #f6f8fb;
  border-color: #6b8cff;
}
.btn--primary:hover {
  background-color: rgb(76.4, 116.222972973, 255);
  border-color: rgb(76.4, 116.222972973, 255);
}
.btn--ghost {
  background-color: transparent;
  color: #1f2933;
  border-color: #e4e7ec;
}
.btn--ghost:hover {
  background-color: rgba(31, 41, 51, 0.04);
}
.btn--small {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
}
.btn--full {
  width: 100%;
}

.about-principles {
  padding: 80px 0;
}
.about-principles__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-principles .principles-row {
  display: flex;
  gap: 18px;
  align-items: stretch;
  flex-wrap: wrap;
}
.about-principles .principle-card {
  flex: 1;
  min-width: 260px;
  border-radius: 18px;
  background-color: rgba(31, 41, 51, 0.03);
  border: 1px solid #e4e7ec;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.about-principles .principle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.09);
}
.about-principles .principle-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #1f2933;
}
.about-principles .principle-card p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.about-principles .principle-card ul {
  margin: 0;
  padding-left: 18px;
  color: #6b7280;
}
.about-principles .principle-card ul li {
  margin-bottom: 8px;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .about-principles {
    padding: 70px 0;
  }
}

.about-lab {
  padding: 90px 0;
  background-color: rgba(31, 41, 51, 0.02);
}
.about-lab__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-lab .lab-steps {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
  margin-bottom: 34px;
}
.about-lab .lab-step {
  flex: 1;
  min-width: 280px;
  border-radius: 18px;
  border: 1px solid #e4e7ec;
  background-color: rgba(246, 248, 251, 0.65);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-lab .lab-step__num {
  min-width: 54px;
  height: 54px;
  border-radius: 14px;
  background-color: rgba(107, 140, 255, 0.14);
  border: 1px solid rgba(107, 140, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #6b8cff;
  letter-spacing: 0.04em;
}
.about-lab .lab-step__body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #1f2933;
}
.about-lab .lab-step__body p {
  font-size: 0.93rem;
  line-height: 1.65;
  color: #6b7280;
  margin-bottom: 12px;
}
.about-lab .lab-step__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-lab .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  background-color: rgba(31, 41, 51, 0.035);
  border: 1px solid rgba(228, 231, 236, 0.85);
  color: #6b7280;
  font-size: 0.78rem;
  font-weight: 600;
}
.about-lab .lab-media {
  display: flex;
  gap: 34px;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 28px;
}
.about-lab .lab-media__left {
  flex: 1;
  max-width: 520px;
}
.about-lab .lab-media__left h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: #1f2933;
}
.about-lab .lab-media__left p {
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 14px;
}
.about-lab .lab-media__left ul {
  margin: 0;
  padding-left: 18px;
  color: #6b7280;
}
.about-lab .lab-media__left ul li {
  margin-bottom: 8px;
  line-height: 1.55;
}
.about-lab .lab-media__right {
  flex: 1;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-lab .lab-media__image {
  border-radius: 18px;
  border: 1px solid #e4e7ec;
  background-color: rgba(246, 248, 251, 0.65);
  padding: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}
.about-lab .lab-media__image img {
  width: 100%;
  display: block;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}
.about-lab .code-card {
  border-radius: 18px;
  border: 1px solid #e4e7ec;
  background-color: rgb(224.8153846154, 231.5230769231, 241.5846153846);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.about-lab .code-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(228, 231, 236, 0.9);
  color: rgba(31, 41, 51, 0.8);
  font-size: 0.8rem;
}
.about-lab .code-card__body {
  margin: 0;
  padding: 16px 14px 18px;
  color: rgba(31, 41, 51, 0.9);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.88rem;
  line-height: 1.6;
  overflow-x: auto;
}
@media (max-width: 900px) {
  .about-lab {
    padding: 75px 0;
  }
  .about-lab .lab-media {
    flex-direction: column;
  }
  .about-lab .lab-media__left,
  .about-lab .lab-media__right {
    max-width: 100%;
  }
}

.about-integrity {
  padding: 85px 0;
}
.about-integrity__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-integrity .integrity-row {
  display: flex;
  gap: 16px;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 18px;
}
.about-integrity .integrity-box {
  flex: 1;
  min-width: 290px;
  border-radius: 18px;
  border: 1px solid #e4e7ec;
  background-color: rgba(31, 41, 51, 0.03);
  padding: 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}
.about-integrity .integrity-box h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #1f2933;
}
.about-integrity .integrity-box p {
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 14px;
}
.about-integrity .integrity-box ol {
  margin: 0;
  padding-left: 18px;
  color: #6b7280;
}
.about-integrity .integrity-box ol li {
  margin-bottom: 10px;
  line-height: 1.55;
}
.about-integrity .integrity-box ul {
  margin: 0 0 16px;
  padding-left: 18px;
  color: #6b7280;
}
.about-integrity .integrity-box ul li {
  margin-bottom: 10px;
  line-height: 1.55;
}
.about-integrity .integrity-box--compact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .about-integrity {
    padding: 70px 0;
  }
}

.about-faq {
  padding: 85px 0;
  background-color: rgba(31, 41, 51, 0.02);
}
.about-faq__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.about-faq .faq-item {
  border-radius: 16px;
  border: 1px solid #e4e7ec;
  background-color: rgba(246, 248, 251, 0.7);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.about-faq .faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 700;
  color: #1f2933;
  position: relative;
}
.about-faq .faq-item summary::-webkit-details-marker {
  display: none;
}
.about-faq .faq-item summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b8cff;
  font-weight: 800;
}
.about-faq .faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: #6b7280;
  line-height: 1.75;
}
.about-faq .faq-item[open] summary::after {
  content: "—";
}
@media (max-width: 900px) {
  .about-faq {
    padding: 70px 0;
  }
}

.about-cta {
  padding: 90px 0;
}
.about-cta__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-cta .cta-card {
  border-radius: 22px;
  border: 1px solid #e4e7ec;
  background: radial-gradient(700px 300px at 10% 0%, rgba(107, 140, 255, 0.14), transparent 55%), radial-gradient(700px 300px at 90% 40%, rgba(127, 209, 174, 0.12), transparent 55%), rgba(31, 41, 51, 0.03);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  padding: 26px;
  display: flex;
  gap: 22px;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about-cta .cta-card__left {
  flex: 1;
  min-width: 280px;
}
.about-cta .cta-card__left h2 {
  font-size: 1.7rem;
  margin-bottom: 12px;
  color: #1f2933;
  letter-spacing: -0.02em;
}
.about-cta .cta-card__left p {
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 620px;
}
.about-cta .cta-card__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.about-cta .cta-card__meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background-color: rgba(246, 248, 251, 0.7);
  border: 1px solid rgba(228, 231, 236, 0.9);
  color: #6b7280;
  font-size: 0.82rem;
  font-weight: 600;
}
.about-cta .cta-card__right {
  flex: 0 0 320px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.about-cta .cta-mini {
  border-radius: 16px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(246, 248, 251, 0.75);
  padding: 14px;
}
.about-cta .cta-mini__label {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 6px;
}
.about-cta .cta-mini__value {
  display: block;
  font-weight: 800;
  color: #1f2933;
  font-size: 0.98rem;
}
.about-cta .standards {
  margin-top: 26px;
  text-align: center;
}
.about-cta .standards__label {
  display: block;
  margin-bottom: 12px;
  color: #6b7280;
  font-size: 0.85rem;
}
.about-cta .standards__list {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.about-cta .badge {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(31, 41, 51, 0.03);
  color: #6b7280;
  font-weight: 700;
  font-size: 0.82rem;
  transition: transform 0.18s ease, background-color 0.18s ease;
}
.about-cta .badge:hover {
  transform: translateY(-2px);
  background-color: rgba(107, 140, 255, 0.12);
}
@media (max-width: 900px) {
  .about-cta {
    padding: 70px 0;
  }
  .about-cta .cta-card {
    padding: 20px;
  }
  .about-cta .cta-card__right {
    flex: 1;
  }
}

.news-page {
  background-color: #f6f8fb;
}
.news-page .section-head {
  max-width: 780px;
  margin-bottom: 42px;
}
.news-page .section-head__label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b8cff;
  font-weight: 600;
  opacity: 0.9;
}
.news-page .section-head__title {
  font-size: 2.1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: #1f2933;
}
.news-page .section-head__text {
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.75;
  color: #6b7280;
}
.news-page .section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.news-page .section-head--center .section-head__text {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .news-page .section-head__title {
    font-size: 1.85rem;
  }
}

.news-hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
}
.news-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(700px 340px at 10% 20%, rgba(107, 140, 255, 0.16), transparent 60%), radial-gradient(700px 340px at 90% 5%, rgba(127, 209, 174, 0.14), transparent 58%);
  pointer-events: none;
  z-index: 0;
}
.news-hero__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.news-hero__split {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news-hero__story {
  flex: 1;
  min-width: 320px;
  max-width: 720px;
  border-radius: 22px;
  border: 1px solid #e4e7ec;
  background-color: rgba(31, 41, 51, 0.02);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.06);
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.news-hero__story::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background-color: rgba(107, 140, 255, 0.1);
  filter: blur(1px);
  pointer-events: none;
}
.news-hero__story::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background-color: rgba(127, 209, 174, 0.09);
  filter: blur(1px);
  pointer-events: none;
}
.news-hero .story-head {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.news-hero .story-head__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(31, 41, 51, 0.03);
  color: #1f2933;
  font-weight: 700;
  font-size: 0.82rem;
}
.news-hero .story-head__meta {
  color: #6b7280;
  font-size: 0.88rem;
}
.news-hero__title {
  font-size: 2.4rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: #1f2933;
  position: relative;
  z-index: 1;
}
.news-hero__lead {
  font-size: 1.03rem;
  line-height: 1.85;
  color: #6b7280;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  max-width: 660px;
}
.news-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.news-hero .story-foot {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.news-hero .story-foot__item {
  flex: 1;
  min-width: 180px;
  border-radius: 16px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(246, 248, 251, 0.65);
  padding: 14px;
}
.news-hero .story-foot__item span {
  display: block;
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 6px;
}
.news-hero .story-foot__item strong {
  display: block;
  font-size: 0.95rem;
  color: #1f2933;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.news-hero__side {
  flex: 0 0 360px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.news-hero .side-card {
  border-radius: 22px;
  border: 1px solid #e4e7ec;
  background-color: rgba(31, 41, 51, 0.02);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.06);
  padding: 18px;
}
.news-hero .side-card--media {
  overflow: hidden;
  padding: 0;
}
.news-hero .side-card--media .side-card__top {
  padding: 18px 18px 14px;
}
.news-hero .side-card--media .side-card__top h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #1f2933;
}
.news-hero .side-card--media .side-card__top p {
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.92rem;
}
.news-hero .side-card--media .side-card__media {
  padding: 0 18px 18px;
}
.news-hero .side-card--media .side-card__media img {
  width: 100%;
  display: block;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
}
.news-hero .side-card--media .side-card__stats {
  padding: 0 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-hero .side-card--note h4 {
  margin-bottom: 10px;
  color: #1f2933;
  font-size: 1rem;
}
.news-hero .side-card--note p {
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 10px;
}
.news-hero .mini-stat {
  border-radius: 16px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(246, 248, 251, 0.7);
  padding: 12px;
}
.news-hero .mini-stat__label {
  display: block;
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 6px;
}
.news-hero .mini-stat__value {
  display: block;
  font-weight: 800;
  color: #1f2933;
  letter-spacing: -0.01em;
}
@media (max-width: 900px) {
  .news-hero__title {
    font-size: 2rem;
  }
  .news-hero__side {
    flex: 1;
  }
}

.news-market {
  padding: 70px 0;
}
.news-market__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.news-market .market-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: stretch;
}
.news-market .market-card {
  flex: 1;
  min-width: 260px;
  border-radius: 20px;
  border: 1px solid #e4e7ec;
  background-color: rgba(31, 41, 51, 0.02);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.06);
  padding: 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.news-market .market-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.08);
}
.news-market .market-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.news-market .market-card__chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(246, 248, 251, 0.7);
  color: #1f2933;
  font-weight: 800;
  font-size: 0.78rem;
}
.news-market .market-card__status {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(31, 41, 51, 0.02);
  color: #6b7280;
  font-weight: 800;
  font-size: 0.78rem;
}
.news-market .market-card__status--primary {
  color: #6b8cff;
  border-color: rgba(107, 140, 255, 0.3);
  background-color: rgba(107, 140, 255, 0.1);
}
.news-market .market-card__status--accent {
  color: #7fd1ae;
  border-color: rgba(127, 209, 174, 0.3);
  background-color: rgba(127, 209, 174, 0.1);
}
.news-market .market-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #1f2933;
}
.news-market .market-card p {
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.news-market .market-card__link {
  color: #6b8cff;
  font-weight: 800;
  text-decoration: none;
}
.news-market .market-card__link:hover {
  text-decoration: underline;
}

.news-wire {
  padding: 80px 0;
  background-color: rgba(31, 41, 51, 0.02);
}
.news-wire__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.news-wire .wire-wrap {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news-wire .wire-list {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news-wire .wire-item {
  border-radius: 20px;
  border: 1px solid #e4e7ec;
  background-color: rgba(246, 248, 251, 0.75);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.06);
  padding: 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.news-wire .wire-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.08);
}
.news-wire .wire-item__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.news-wire .wire-item h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #1f2933;
}
.news-wire .wire-item p {
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 10px;
}
.news-wire .wire-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #6b8cff;
  box-shadow: 0 0 0 6px rgba(107, 140, 255, 0.14);
}
.news-wire .wire-date {
  color: #6b7280;
  font-weight: 700;
  font-size: 0.86rem;
}
.news-wire .wire-tag {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(31, 41, 51, 0.02);
  color: #1f2933;
  font-weight: 800;
  font-size: 0.78rem;
}
.news-wire .wire-link {
  color: #6b8cff;
  font-weight: 900;
  text-decoration: none;
}
.news-wire .wire-link:hover {
  text-decoration: underline;
}
.news-wire .wire-side {
  flex: 0 0 360px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news-wire .wire-side__card {
  border-radius: 20px;
  border: 1px solid #e4e7ec;
  background-color: rgba(246, 248, 251, 0.75);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.06);
  padding: 18px;
}
.news-wire .wire-side__card h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: #1f2933;
}
.news-wire .topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.news-wire .topic-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(31, 41, 51, 0.02);
  color: #6b7280;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.82rem;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}
.news-wire .topic-chip:hover {
  transform: translateY(-2px);
  background-color: rgba(107, 140, 255, 0.12);
  color: #1f2933;
}
.news-wire .topic-chip--active {
  color: #1f2933;
  border-color: rgba(107, 140, 255, 0.35);
  background-color: rgba(107, 140, 255, 0.14);
}
.news-wire .wire-side__hint {
  border-radius: 16px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(31, 41, 51, 0.02);
  padding: 12px;
  color: #6b7280;
  line-height: 1.7;
  font-size: 0.9rem;
}
.news-wire .checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-wire .check-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.news-wire .check-item p {
  margin: 0;
  color: #6b7280;
  line-height: 1.65;
}
.news-wire .check-mark {
  width: 12px;
  height: 12px;
  margin-top: 4px;
  border-radius: 4px;
  background-color: rgba(107, 140, 255, 0.28);
  border: 1px solid rgba(107, 140, 255, 0.35);
  box-shadow: 0 0 0 6px rgba(107, 140, 255, 0.1);
}

.news-focus {
  padding: 80px 0;
}
.news-focus__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.news-focus .focus-card {
  display: flex;
  gap: 18px;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: 22px;
  border: 1px solid #e4e7ec;
  background: radial-gradient(700px 300px at 10% 0%, rgba(107, 140, 255, 0.14), transparent 55%), radial-gradient(700px 300px at 90% 40%, rgba(127, 209, 174, 0.12), transparent 55%), rgba(31, 41, 51, 0.03);
  box-shadow: 0 26px 78px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 18px;
}
.news-focus .focus-card__media {
  flex: 1;
  min-width: 300px;
}
.news-focus .focus-card__media img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.12);
}
.news-focus .focus-card__content {
  flex: 1;
  min-width: 320px;
  padding: 10px 10px 10px 6px;
}
.news-focus .focus-card__content h2 {
  margin: 10px 0 12px;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  color: #1f2933;
  line-height: 1.15;
}
.news-focus .focus-card__content p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 12px;
}
.news-focus .focus-card__head {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.news-focus .focus-chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(246, 248, 251, 0.7);
  color: #1f2933;
  font-weight: 900;
  font-size: 0.78rem;
}
.news-focus .focus-chip--ghost {
  color: #6b7280;
  background-color: rgba(31, 41, 51, 0.02);
}
.news-focus .focus-metrics {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 14px;
}
.news-focus .focus-metric {
  flex: 1;
  min-width: 220px;
  border-radius: 16px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(246, 248, 251, 0.7);
  padding: 12px;
}
.news-focus .focus-metric__label {
  display: block;
  color: #6b7280;
  font-size: 0.78rem;
  margin-bottom: 6px;
}
.news-focus .focus-metric__value {
  display: block;
  color: #1f2933;
  font-weight: 900;
}

.news-drivers {
  padding: 80px 0;
  background-color: rgba(31, 41, 51, 0.02);
}
.news-drivers__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.news-drivers .drivers-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: stretch;
}
.news-drivers .driver-card {
  flex: 1;
  min-width: 280px;
  border-radius: 22px;
  border: 1px solid #e4e7ec;
  background-color: rgba(246, 248, 251, 0.75);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.06);
  padding: 18px;
}
.news-drivers .driver-card--primary {
  border-color: rgba(107, 140, 255, 0.32);
}
.news-drivers .driver-card--accent {
  border-color: rgba(127, 209, 174, 0.32);
}
.news-drivers .driver-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.news-drivers .driver-card__top h3 {
  margin: 0;
  font-size: 1.15rem;
  color: #1f2933;
}
.news-drivers .driver-badge {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(31, 41, 51, 0.02);
  color: #6b7280;
  font-weight: 900;
  font-size: 0.78rem;
}
.news-drivers .driver-list {
  margin: 0 0 14px;
  padding-left: 18px;
  color: #6b7280;
}
.news-drivers .driver-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.news-rumors {
  padding: 80px 0;
}
.news-rumors__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.news-rumors .rumor-box {
  border-radius: 22px;
  border: 2px dashed rgba(228, 231, 236, 0.9);
  background-color: rgba(31, 41, 51, 0.02);
  padding: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}
.news-rumors .rumor-box::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background-color: rgba(107, 140, 255, 0.1);
  pointer-events: none;
}
.news-rumors .rumor-box__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(246, 248, 251, 0.7);
  color: #6b8cff;
  font-weight: 900;
  font-size: 0.78rem;
  margin-bottom: 12px;
}
.news-rumors .rumor-box h2 {
  margin-bottom: 10px;
  color: #1f2933;
  letter-spacing: -0.02em;
}
.news-rumors .rumor-box p {
  max-width: 760px;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 16px;
}
.news-rumors .rumor-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.news-rumors .rumor-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-radius: 18px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(246, 248, 251, 0.75);
  padding: 16px;
}
.news-rumors .rumor-num {
  min-width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(107, 140, 255, 0.28);
  background-color: rgba(107, 140, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b8cff;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.news-rumors .rumor-body h3 {
  margin-bottom: 8px;
  color: #1f2933;
  font-size: 1.05rem;
}
.news-rumors .rumor-body p {
  margin: 0;
  color: #6b7280;
  line-height: 1.7;
}

.news-events {
  padding: 80px 0;
  background-color: rgba(31, 41, 51, 0.02);
}
.news-events__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.news-events .events-split {
  display: flex;
  gap: 16px;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news-events .event-feature {
  flex: 1;
  min-width: 320px;
  border-radius: 22px;
  border: 1px solid #e4e7ec;
  background-color: rgba(246, 248, 251, 0.75);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.news-events .event-feature__media {
  padding: 16px 16px 0;
}
.news-events .event-feature__media img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}
.news-events .event-feature__content {
  padding: 16px;
}
.news-events .event-feature__content h3 {
  margin-bottom: 10px;
  color: #1f2933;
  font-size: 1.25rem;
}
.news-events .event-feature__content p {
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 12px;
}
.news-events .event-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.news-events .event-meta span {
  color: #6b7280;
  font-size: 0.85rem;
}
.news-events .event-meta strong {
  color: #1f2933;
  font-weight: 900;
}
.news-events .events-side {
  flex: 0 0 360px;
  min-width: 320px;
  display: flex;
}
.news-events .events-side__card {
  width: 100%;
  border-radius: 22px;
  border: 1px solid #e4e7ec;
  background-color: rgba(246, 248, 251, 0.75);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.06);
  padding: 18px;
}
.news-events .events-side__card h3 {
  margin-bottom: 12px;
  color: #1f2933;
  font-size: 1.05rem;
}
.news-events .event-mini {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
}
.news-events .event-mini:not(:last-child) {
  border-bottom: 1px solid rgba(228, 231, 236, 0.9);
}
.news-events .event-mini__date {
  min-width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(127, 209, 174, 0.3);
  background-color: rgba(127, 209, 174, 0.1);
  color: #7fd1ae;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.news-events .event-mini__body strong {
  display: block;
  color: #1f2933;
  margin-bottom: 6px;
}
.news-events .event-mini__body p {
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
}

.news-letter {
  padding: 80px 0;
}
.news-letter__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.news-letter .letter-card {
  border-radius: 22px;
  border: 1px solid #e4e7ec;
  background: radial-gradient(700px 300px at 10% 0%, rgba(107, 140, 255, 0.14), transparent 55%), radial-gradient(700px 300px at 90% 40%, rgba(127, 209, 174, 0.12), transparent 55%), rgba(31, 41, 51, 0.03);
  box-shadow: 0 26px 78px rgba(0, 0, 0, 0.08);
  padding: 22px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news-letter .letter-card__left {
  flex: 1;
  min-width: 280px;
}
.news-letter .letter-card__left__label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b8cff;
  font-weight: 600;
}
.news-letter .letter-card__left h2 {
  margin-bottom: 10px;
  color: #1f2933;
  letter-spacing: -0.02em;
}
.news-letter .letter-card__left p {
  margin: 0;
  color: #6b7280;
  line-height: 1.75;
  max-width: 620px;
}
.news-letter .letter-card__label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b8cff;
  font-weight: 600;
}
.news-letter .letter-card__form {
  flex: 0 0 420px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-letter .letter-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.news-letter .letter-field span {
  color: #6b7280;
  font-weight: 700;
  font-size: 0.88rem;
}
.news-letter .letter-field input {
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(246, 248, 251, 0.75);
  color: #1f2933;
  outline: none;
}
.news-letter .letter-field input:focus {
  border-color: rgba(107, 140, 255, 0.55);
  box-shadow: 0 0 0 6px rgba(107, 140, 255, 0.14);
}
.news-letter .letter-card__hint {
  margin: 0;
  color: #6b7280;
  font-size: 0.85rem;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .news-letter .letter-card__form {
    flex: 1;
  }
}

.side-link {
  color: #6b8cff;
  font-weight: 900;
  text-decoration: none;
}
.side-link:hover {
  text-decoration: underline;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  width: min(360px, 100% - 44px);
  border-radius: 16px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background: radial-gradient(420px 160px at 15% 0%, rgba(107, 140, 255, 0.14), transparent 60%), rgba(246, 248, 251, 0.92);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px 14px 14px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.toast__icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(107, 140, 255, 0.14);
  border: 1px solid rgba(107, 140, 255, 0.28);
  color: #6b8cff;
  font-weight: 900;
  flex: 0 0 34px;
  margin-top: 2px;
}
.toast__content {
  flex: 1;
  min-width: 0;
}
.toast__title {
  display: block;
  font-size: 0.95rem;
  font-weight: 900;
  color: #1f2933;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.toast__text {
  margin: 0;
  color: #6b7280;
  font-size: 0.88rem;
  line-height: 1.55;
}
.toast__close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  color: #6b7280;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.toast__close:hover {
  background-color: rgba(31, 41, 51, 0.06);
  color: #1f2933;
}
@media (max-width: 520px) {
  .toast {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }
}

.blog-page {
  background-color: #f6f8fb;
}

.blog-hero {
  position: relative;
  padding: 90px 0 100px;
  background-color: #f6f8fb;
  overflow: hidden;
}
.blog-hero::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(900px 420px at 12% 12%, rgba(107, 140, 255, 0.18), transparent 60%), radial-gradient(800px 420px at 88% 18%, rgba(127, 209, 174, 0.14), transparent 58%), radial-gradient(720px 360px at 50% 90%, rgba(107, 140, 255, 0.08), transparent 62%);
  pointer-events: none;
  z-index: 0;
}
.blog-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.blog-hero__card {
  position: relative;
  border-radius: 30px;
  border: 1px solid #e4e7ec;
  background: radial-gradient(900px 420px at 10% 0%, rgba(107, 140, 255, 0.1), transparent 60%), radial-gradient(900px 420px at 95% 30%, rgba(127, 209, 174, 0.08), transparent 58%), rgba(31, 41, 51, 0.025);
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.08);
  padding: 46px 48px 42px;
  overflow: hidden;
}
.blog-hero__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(228, 231, 236, 0.18) 1px, transparent 1px), linear-gradient(90deg, rgba(228, 231, 236, 0.14) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.blog-hero__card > * {
  position: relative;
  z-index: 1;
}
.blog-hero__header {
  max-width: 820px;
  margin-bottom: 42px;
}
.blog-hero__label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(246, 248, 251, 0.75);
  color: #6b8cff;
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.blog-hero__title {
  font-size: 2.9rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #1f2933;
  margin-bottom: 16px;
  max-width: 760px;
}
.blog-hero__lead {
  font-size: 1.08rem;
  line-height: 1.9;
  color: #6b7280;
  margin-bottom: 22px;
  max-width: 720px;
}
.blog-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.blog-hero__content {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin: 46px 0 44px;
}
.blog-hero .hero-block {
  flex: 1;
  min-width: 260px;
  border-radius: 22px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(246, 248, 251, 0.72);
  padding: 26px 24px 28px;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.blog-hero .hero-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.08);
}
.blog-hero .hero-block h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #1f2933;
  letter-spacing: -0.01em;
}
.blog-hero .hero-block p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #6b7280;
}
.blog-hero .hero-block p strong {
  color: #1f2933;
  font-weight: 900;
}
.blog-hero__footer {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid #e4e7ec;
}
.blog-hero__stat {
  flex: 1;
  min-width: 220px;
  border-radius: 18px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(246, 248, 251, 0.72);
  padding: 18px 20px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
}
.blog-hero__stat span {
  display: block;
  font-size: 0.78rem;
  color: #6b7280;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 700;
}
.blog-hero__stat strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  color: #1f2933;
  letter-spacing: -0.01em;
}
@media (max-width: 1024px) {
  .blog-hero {
    padding: 70px 0 80px;
  }
  .blog-hero__title {
    font-size: 2.4rem;
  }
}
@media (max-width: 640px) {
  .blog-hero__card {
    padding: 32px 24px 30px;
  }
  .blog-hero__title {
    font-size: 2rem;
  }
  .blog-hero__lead {
    font-size: 1rem;
  }
  .blog-hero__content {
    margin: 36px 0 36px;
  }
}

.blog-topics {
  padding: 80px 0 100px;
}
.blog-topics__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.blog-topics__head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 42px;
}
.blog-topics__label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b8cff;
  font-weight: 700;
}
.blog-topics__title {
  font-size: 2.05rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: #1f2933;
}
.blog-topics__text {
  color: #6b7280;
  line-height: 1.8;
  font-size: 1rem;
}
.blog-topics .topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: stretch;
}
.blog-topics .topic-card {
  flex: 1;
  min-width: 280px;
  border-radius: 22px;
  border: 1px solid #e4e7ec;
  background-color: rgba(31, 41, 51, 0.02);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.06);
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.blog-topics .topic-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(107, 140, 255, 0.22), rgba(107, 140, 255, 0.05) 60%, transparent 70%);
  filter: blur(2px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}
.blog-topics .topic-card::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -140px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(127, 209, 174, 0.18), rgba(127, 209, 174, 0.05) 60%, transparent 72%);
  filter: blur(2px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}
.blog-topics .topic-card > * {
  position: relative;
  z-index: 1;
}
.blog-topics .topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.08);
}
.blog-topics .topic-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.blog-topics .topic-card h3 {
  margin-bottom: 10px;
  color: #1f2933;
  letter-spacing: -0.01em;
  font-size: 1.18rem;
}
.blog-topics .topic-card p {
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 12px;
}
.blog-topics .topic-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 12px;
}
.blog-topics .topic-card__meta span {
  color: #6b7280;
  font-size: 0.85rem;
}
.blog-topics .topic-card__meta strong {
  color: #1f2933;
  font-weight: 900;
}
.blog-topics .topic-card__link {
  color: #6b8cff;
  font-weight: 900;
  text-decoration: none;
}
.blog-topics .topic-card__link:hover {
  text-decoration: underline;
}
.blog-topics .topic-card--wide {
  flex: 1 1 560px;
}
.blog-topics .topic-card--wide::before {
  background-color: rgba(127, 209, 174, 0.1);
}
.blog-topics .topic-pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(246, 248, 251, 0.7);
  color: #1f2933;
  font-weight: 900;
  font-size: 0.78rem;
}
.blog-topics .topic-pill--primary {
  color: #6b8cff;
  border-color: rgba(107, 140, 255, 0.3);
  background-color: rgba(107, 140, 255, 0.12);
}
.blog-topics .topic-pill--accent {
  color: #7fd1ae;
  border-color: rgba(127, 209, 174, 0.3);
  background-color: rgba(127, 209, 174, 0.12);
}
.blog-topics .topic-mini {
  color: #6b7280;
  font-size: 0.85rem;
  font-weight: 700;
}
@media (max-width: 900px) {
  .blog-topics {
    padding: 70px 0 80px;
  }
  .blog-topics__title {
    font-size: 1.85rem;
  }
}

.topic-page {
  background-color: #f6f8fb;
}

.topic-hero {
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.topic-hero::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(920px 440px at 12% 10%, rgba(107, 140, 255, 0.18), transparent 62%), radial-gradient(820px 420px at 90% 12%, rgba(127, 209, 174, 0.14), transparent 58%), radial-gradient(720px 360px at 55% 92%, rgba(107, 140, 255, 0.08), transparent 62%);
  pointer-events: none;
  z-index: 0;
}
.topic-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.topic-hero__card {
  border-radius: 30px;
  border: 1px solid #e4e7ec;
  background: radial-gradient(900px 420px at 10% 0%, rgba(107, 140, 255, 0.1), transparent 60%), radial-gradient(900px 420px at 95% 30%, rgba(127, 209, 174, 0.08), transparent 58%), rgba(31, 41, 51, 0.02);
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 46px 48px 40px;
  position: relative;
}
.topic-hero__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(228, 231, 236, 0.18) 1px, transparent 1px), linear-gradient(90deg, rgba(228, 231, 236, 0.14) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.topic-hero__card > * {
  position: relative;
  z-index: 1;
}
.topic-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.topic-hero__crumb {
  color: #6b7280;
  text-decoration: none;
  font-weight: 800;
}
.topic-hero__crumb:hover {
  color: #6b8cff;
}
.topic-hero__sep {
  color: #6b7280;
  opacity: 0.7;
}
.topic-hero__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(107, 140, 255, 0.28);
  background-color: rgba(107, 140, 255, 0.12);
  color: #6b8cff;
  font-weight: 900;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.topic-hero__title {
  font-size: 2.7rem;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #1f2933;
  margin-bottom: 14px;
  max-width: 820px;
}
.topic-hero__lead {
  color: #6b7280;
  font-size: 1.06rem;
  line-height: 1.9;
  max-width: 820px;
  margin-bottom: 20px;
}
.topic-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.topic-hero__highlights {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: stretch;
}
.topic-hero .topic-highlight {
  flex: 1;
  min-width: 240px;
  border-radius: 22px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(246, 248, 251, 0.72);
  padding: 18px 18px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}
.topic-hero .topic-highlight span {
  display: block;
  color: #6b7280;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 8px;
}
.topic-hero .topic-highlight strong {
  display: block;
  color: #1f2933;
  font-weight: 900;
  font-size: 1.06rem;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.topic-hero .topic-highlight p {
  margin: 0;
  color: #6b7280;
  line-height: 1.7;
}
@media (max-width: 760px) {
  .topic-hero {
    padding: 70px 0 60px;
  }
  .topic-hero__card {
    padding: 32px 24px 26px;
  }
  .topic-hero__title {
    font-size: 2.05rem;
  }
}

.topic-context {
  padding: 60px 0 70px;
}
.topic-context__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.topic-context .context-wrap {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: stretch;
}
.topic-context .context-card {
  flex: 1;
  min-width: 320px;
  border-radius: 26px;
  border: 1px solid #e4e7ec;
  background-color: rgba(31, 41, 51, 0.02);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.06);
  padding: 26px 24px;
}
.topic-context .context-card h2 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.topic-context .context-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.topic-context .context-card p {
  color: #6b7280;
  line-height: 1.85;
  margin-bottom: 0;
}
.topic-context .context-card--note {
  position: relative;
  overflow: hidden;
}
.topic-context .context-card--note::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(107, 140, 255, 0.2), transparent 65%);
  pointer-events: none;
}
.topic-context .context-points {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.topic-context .context-point {
  flex: 1;
  min-width: 220px;
  border-radius: 18px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(246, 248, 251, 0.72);
  padding: 14px 14px 16px;
}
.topic-context .context-point strong {
  display: block;
  color: #1f2933;
  font-weight: 900;
  margin-bottom: 6px;
}
.topic-context .context-point span {
  display: block;
  color: #6b7280;
  line-height: 1.6;
}
.topic-context .note-lines {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0.85;
}
.topic-context .note-lines .note-line {
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(31, 41, 51, 0.03);
}
.topic-context .note-lines .note-line:nth-child(1) {
  width: 94%;
}
.topic-context .note-lines .note-line:nth-child(2) {
  width: 82%;
}
.topic-context .note-lines .note-line:nth-child(3) {
  width: 68%;
}

.topic-section {
  padding: 80px 0 90px;
}
.topic-section--alt {
  background-color: rgba(31, 41, 51, 0.015);
}
.topic-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.topic-section__head {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}
.topic-section__label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b8cff;
  font-weight: 800;
}
.topic-section__title {
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.topic-section__text {
  color: #6b7280;
  line-height: 1.85;
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 760px) {
  .topic-section {
    padding: 70px 0 75px;
  }
  .topic-section__title {
    font-size: 1.7rem;
  }
}

.topic-one {
  background-color: #f6f8fb;
}

.topic-one-hero {
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.topic-one-hero::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(900px 420px at 12% 12%, rgba(107, 140, 255, 0.16), transparent 62%), radial-gradient(820px 420px at 88% 10%, rgba(127, 209, 174, 0.12), transparent 58%);
  pointer-events: none;
}
.topic-one-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.topic-one-hero__card {
  border-radius: 28px;
  border: 1px solid #e4e7ec;
  background-color: rgba(31, 41, 51, 0.02);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.08);
  padding: 40px 44px;
}
.topic-one-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.topic-one-hero__crumb {
  color: #6b7280;
  text-decoration: none;
  font-weight: 800;
}
.topic-one-hero__crumb:hover {
  color: #6b8cff;
}
.topic-one-hero__sep {
  color: #6b7280;
  opacity: 0.7;
}
.topic-one-hero__pill {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(107, 140, 255, 0.28);
  background-color: rgba(107, 140, 255, 0.12);
  color: #6b8cff;
  font-weight: 900;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.topic-one-hero__title {
  font-size: 2.5rem;
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.topic-one-hero__lead {
  color: #6b7280;
  line-height: 1.85;
  font-size: 1.05rem;
  max-width: 900px;
  margin-bottom: 18px;
}
.topic-one-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.topic-one-hero__highlights {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.topic-one-hero .highlight {
  flex: 1;
  min-width: 220px;
  border-radius: 18px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(246, 248, 251, 0.72);
  padding: 14px 14px 16px;
}
.topic-one-hero .highlight span {
  display: block;
  color: #6b7280;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 6px;
}
.topic-one-hero .highlight strong {
  display: block;
  font-weight: 900;
  letter-spacing: -0.01em;
}
@media (max-width: 720px) {
  .topic-one-hero__card {
    padding: 28px 22px;
  }
  .topic-one-hero__title {
    font-size: 2.05rem;
  }
  .topic-one-hero__lead {
    font-size: 1rem;
  }
}

.topic-one-body {
  padding: 60px 0 90px;
}
.topic-one-body__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.topic-layout {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.topic-article {
  flex: 1;
  min-width: 320px;
  border-radius: 26px;
  border: 1px solid #e4e7ec;
  background-color: rgba(31, 41, 51, 0.02);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.06);
  padding: 26px 24px;
}

.topic-side {
  flex: 0 0 320px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-card {
  border-radius: 22px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(246, 248, 251, 0.72);
  padding: 18px 16px;
}
.side-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.side-card ul {
  margin: 0;
  padding-left: 18px;
  color: #6b7280;
  line-height: 1.75;
}

.side-link {
  display: block;
  color: #6b8cff;
  font-weight: 900;
  text-decoration: none;
  padding: 10px 0;
}
.side-link:hover {
  text-decoration: underline;
}

.topic-block {
  margin-bottom: 22px;
}
.topic-block h2 {
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.topic-block h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.topic-block p {
  color: #6b7280;
  line-height: 1.85;
  margin-bottom: 10px;
}

.mini-cards {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.mini-card {
  flex: 1;
  min-width: 240px;
  border-radius: 18px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(246, 248, 251, 0.72);
  padding: 16px 14px;
}
.mini-card h3 {
  margin-bottom: 8px;
}
.mini-card p {
  margin: 0;
  color: #6b7280;
  line-height: 1.75;
}

.callout {
  border-radius: 18px;
  border: 1px solid rgba(107, 140, 255, 0.22);
  background-color: rgba(107, 140, 255, 0.08);
  padding: 14px 14px;
  margin: 14px 0;
  line-height: 1.7;
  color: #1f2933;
}
.callout strong {
  font-weight: 900;
}
.callout--quote {
  border-color: rgba(127, 209, 174, 0.22);
  background-color: rgba(127, 209, 174, 0.08);
  font-weight: 900;
}

.topic-list {
  margin: 0;
  padding-left: 18px;
  color: #6b7280;
  line-height: 1.8;
}
.topic-list strong {
  color: #1f2933;
}

.check {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.check__col {
  flex: 1;
  min-width: 260px;
  border-radius: 18px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(246, 248, 251, 0.72);
  padding: 16px 14px;
}
.check__item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.check__item span {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 4px;
  border: 1px solid rgba(107, 140, 255, 0.28);
  background-color: rgba(107, 140, 255, 0.12);
  flex: 0 0 12px;
}
.check__item p {
  margin: 0;
  color: #6b7280;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .topic-side {
    flex: 1;
    min-width: 320px;
  }
}
.faq-hero {
  padding: 70px 0 50px;
}
.faq-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq-hero__card {
  border: 1px solid #e4e7ec;
  border-radius: 26px;
  background-color: rgba(31, 41, 51, 0.02);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.06);
  padding: 36px 38px;
}
.faq-hero__label {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(107, 140, 255, 0.28);
  background-color: rgba(107, 140, 255, 0.12);
  color: #6b8cff;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
  margin-bottom: 14px;
}
.faq-hero__title {
  font-size: 2.3rem;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.faq-hero__text {
  color: #6b7280;
  line-height: 1.85;
  max-width: 900px;
  margin-bottom: 18px;
}
.faq-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  .faq-hero__card {
    padding: 26px 22px;
  }
  .faq-hero__title {
    font-size: 1.9rem;
  }
}

.faq {
  padding: 40px 0 90px;
}
.faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq__layout {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.faq__side {
  flex: 0 0 320px;
  min-width: 280px;
}
.faq__main {
  flex: 1;
  min-width: 320px;
}

.faq-side {
  border: 1px solid #e4e7ec;
  border-radius: 22px;
  background-color: rgba(31, 41, 51, 0.02);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.06);
  padding: 16px;
}
.faq-side h3 {
  margin-bottom: 10px;
}
.faq-side__note {
  margin-top: 12px;
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.faq-chip {
  border: 1px solid rgba(228, 231, 236, 0.9);
  background-color: rgba(246, 248, 251, 0.72);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 900;
  cursor: pointer;
}
.faq-chip.is-active {
  border-color: rgba(107, 140, 255, 0.35);
  background-color: rgba(107, 140, 255, 0.12);
  color: #6b8cff;
}

.faq-search__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.faq-search__field span {
  color: #6b7280;
  font-weight: 800;
  font-size: 0.9rem;
}
.faq-search__field input {
  border: 1px solid #e4e7ec;
  border-radius: 16px;
  padding: 14px 14px;
  background-color: rgba(31, 41, 51, 0.02);
  color: #1f2933;
  outline: none;
}
.faq-search__field input:focus {
  border-color: rgba(107, 140, 255, 0.5);
  box-shadow: 0 0 0 6px rgba(107, 140, 255, 0.12);
}

.faq-accordion {
  border: 1px solid #e4e7ec;
  border-radius: 22px;
  background-color: rgba(31, 41, 51, 0.02);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(228, 231, 236, 0.9);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 16px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.faq-q span {
  font-weight: 900;
}
.faq-q:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px rgba(107, 140, 255, 0.35);
}

.faq-ico {
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(31, 41, 51, 0.6);
  border-bottom: 2px solid rgba(31, 41, 51, 0.6);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.faq-item.is-open .faq-ico {
  transform: rotate(-135deg);
}

.faq-a {
  padding: 0 16px 16px;
}
.faq-a p {
  margin: 0;
  color: #6b7280;
  line-height: 1.75;
}

@media (max-width: 980px) {
  .faq__side {
    flex: 1;
  }
}
.policy-hero {
  padding: 70px 0 50px;
}
.policy-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.policy-hero__card {
  border: 1px solid #e4e7ec;
  border-radius: 26px;
  background-color: rgba(31, 41, 51, 0.02);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.06);
  padding: 36px 38px;
}
.policy-hero__label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b8cff;
  font-weight: 900;
}
.policy-hero__title {
  font-size: 2.3rem;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.policy-hero__text {
  color: #6b7280;
  line-height: 1.85;
  max-width: 900px;
  margin-bottom: 14px;
}
.policy-hero__meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: #6b7280;
  font-size: 0.9rem;
}

.policy-content {
  padding: 40px 0 90px;
}
.policy-content__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.policy-article {
  line-height: 1.9;
}
.policy-article h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}
.policy-article h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.policy-article p {
  margin-bottom: 14px;
  color: #6b7280;
}
.policy-article ul {
  margin-bottom: 14px;
  padding-left: 20px;
  color: #6b7280;
}/*# sourceMappingURL=style.css.map */