html {
  font-size: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  overflow-x: hidden;
}

.brand-bar {
  background: #240e0f;
  border-bottom: 1px solid #81173a61;
  padding: 32px 48px 24px;
}

.brand-bar__inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-zone {
  display: flex;
  align-items: center;
  gap: 0;
  border-right: 3px solid #ff2761;
  padding-right: 32px;
  flex-shrink: 0;
}

.brand-zone__img {
  width: 60px;
  height: 58px;
  object-fit: contain;
  display: block;
  background: #fcecf60f;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 1px 4px 0 #ff276f12 0 6px 18px 0 #ff274b1c;
}

.brand-tagline {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 14px;
  font-style: italic;
  color: #ecf8fc9e;
  letter-spacing: 0.02em;
  line-height: 1.5;
  max-width: 320px;
}

.site-menu-bar {
  background: linear-gradient(135deg, #200b12 0%, #35111a 100%);
  border-bottom: 2px solid #ff274b2e;
  padding: 0 48px;
}

.site-menu-bar__inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.site-menu-bar__inner a {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #ecf8fcd1;
  text-decoration: none;
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.52s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.45s ease-in-out;
  min-height: 44px;
  position: relative;
}

.site-menu-bar__inner a:focus {
  outline: none;
}

.site-menu-bar__inner a:focus::before {
  content: "fokus";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 14px;
  color: #ff2759;
  background: #0b1220;
  padding: 4px 8px;
  border-radius: 7px;
  white-space: nowrap;
  box-shadow: 0 1px 4px 0 #ff276b12;
  pointer-events: none;
  z-index: 10;
}

.site-menu-bar__inner a:hover {
  color: #ff276b;
  border-bottom-color: #ff276b;
}

.site-menu-bar__inner a.active {
  color: #ff276b;
  border-bottom-color: #ff276b;
  font-weight: 700;
}

.site-menu-bar__inner a i {
  font-size: 14px;
  opacity: 0.7;
}

.page-header {
  background: #0e1624;
}

.page-footer {
  background: linear-gradient(180deg, #0b1220 0%, #080f1a 100%);
  border-top: 1px solid #81173566;
  padding: 48px 48px 32px;
}

.page-footer__top {
  max-width: 1024px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
}

.page-footer__logo-row {
  max-width: 1024px;
  margin: 0 auto 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #8117394d;
  display: flex;
  align-items: center;
  gap: 16px;
}

.page-footer__logo-img {
  width: 58px;
  height: 56px;
  object-fit: contain;
  display: block;
  background: #fcecf00d;
  border-radius: 12px;
  padding: 8px;
  border: 1px solid #ff276b38;
  box-shadow: 0 1px 4px 0 #81173912;
}

.page-footer__brand-name {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #ecf8fc;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.page-footer__brand-sub {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 14px;
  font-style: italic;
  color: #ecf8fc73;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-top: 4px;
}

.foot-col__label {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  color: #ff276b;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.foot-col__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.foot-col__links li a {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 14px;
  color: #ecf8fca6;
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1.5;
  transition: color 0.48s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  position: relative;
}

.foot-col__links li a:focus {
  outline: none;
}

.foot-col__links li a:focus::before {
  content: "fokus";
  position: absolute;
  top: -18px;
  left: 0;
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 14px;
  color: #ff276b;
  background: #080f1a;
  padding: 4px 8px;
  border-radius: 7px;
  white-space: nowrap;
  box-shadow: 0 1px 4px 0 #ff276b12;
  pointer-events: none;
  z-index: 10;
}

.foot-col__links li a:hover {
  color: #ecf8fc;
}

.foot-col__links li a i {
  font-size: 12px;
  opacity: 0.5;
}

.foot-col__contact-item {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 14px;
  color: #ecf8fca6;
  letter-spacing: 0.01em;
  line-height: 1.9;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.foot-col__contact-item i {
  font-size: 12px;
  opacity: 0.5;
  margin-top: 4px;
  flex-shrink: 0;
}

.foot-col__contact-item a {
  color: #ecf8fca6;
  text-decoration: none;
  transition: color 0.48s ease-in-out;
}

.foot-col__contact-item a:hover {
  color: #ecf8fc;
}

.page-footer__bottom {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.foot-copy {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 14px;
  color: #ecf8fc59;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.foot-copy strong {
  color: #ecf8fc8c;
  font-weight: 700;
}

.foot-accent-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #ff276b 0%, #ff276b1a 100%);
  border-radius: 7px;
  flex-shrink: 0;
}

@media (max-width: 1366px) {
  .brand-bar {
    padding: 32px 32px 24px;
  }

  .site-menu-bar {
    padding: 0 32px;
  }

  .page-footer {
    padding: 48px 32px 32px;
  }
}

@media (max-width: 768px) {
  .brand-bar {
    padding: 24px 16px 16px;
  }

  .brand-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .brand-zone {
    border-right: none;
    padding-right: 0;
    border-bottom: 2px solid #ff276b;
    padding-bottom: 16px;
    width: 100%;
  }

  .site-menu-bar {
    padding: 0 16px;
  }

  .site-menu-bar__inner {
    gap: 0;
  }

  .site-menu-bar__inner a {
    padding: 16px;
    font-size: 14px;
  }

  .page-footer {
    padding: 32px 16px 24px;
  }

  .page-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
  }

  .page-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 375px) {
  .brand-tagline {
    font-size: 14px;
    max-width: 100%;
  }

  .site-menu-bar__inner {
    flex-direction: column;
  }

  .site-menu-bar__inner a {
    padding: 12px 8px;
    border-bottom: 1px solid #81173933;
    margin-bottom: 0;
    border-left: none;
  }

  .site-menu-bar__inner a:hover {
    border-bottom-color: #81173933;
    border-left: none;
  }

  .page-footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.cookie-tray {
  position: fixed;
  top: 32px;
  right: 32px;
  width: 360px;
  max-width: calc(100vw - 48px);
  background: #0e1624;
  border: 1px solid #ff276b47;
  border-radius: 20px;
  box-shadow: 0 9px 52px 0 #8117391c 0 6px 18px 0 #8117391c;
  z-index: 1200;
  overflow: hidden;
  transform: translateX(calc(100% + 48px));
  transition: transform 0.52s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-tray--visible {
  transform: translateX(0);
}

.cookie-tray__head {
  padding: 24px 24px 16px;
  border-bottom: 1px solid #81173940;
}

.cookie-tray__headline {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: #ecf8fc;
  letter-spacing: 0.01em;
  line-height: 1.5;
  margin-bottom: 8px;
}

.cookie-tray__desc {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 14px;
  color: #ecf8fca6;
  letter-spacing: 0.01em;
  line-height: 1.9;
}

.cookie-tray__uses {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cookie-tray__uses li {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 14px;
  color: #ecf8fc8c;
  letter-spacing: 0.01em;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-tray__uses li i {
  font-size: 12px;
  color: #ff276b;
  opacity: 0.7;
  flex-shrink: 0;
}

.cookie-tray__panel {
  padding: 16px 24px;
  border-bottom: 1px solid #81173940;
  display: none;
}

.cookie-tray__panel--open {
  display: block;
}

.cookie-tray__toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-tray__toggle-label {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 14px;
  color: #ecf8fcbf;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.cookie-tray__switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.cookie-tray__switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-tray__switch-track {
  position: absolute;
  inset: 0;
  background: #81173566;
  border-radius: 48px;
  border: 1px solid #ff276b40;
  cursor: pointer;
  transition: background 0.48s ease-in-out;
}

.cookie-tray__switch-track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: #ecf8fc80;
  border-radius: 48px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background 0.45s ease-in-out;
}

.cookie-tray__switch input:checked + .cookie-tray__switch-track {
  background: #ff276b40;
  border-color: #ff276b80;
}

.cookie-tray__switch input:checked + .cookie-tray__switch-track::after {
  transform: translateX(18px);
  background: #ff276b;
}

.cookie-tray__switch input:focus + .cookie-tray__switch-track {
  box-shadow: 0 0 0 2px #ff276b66;
}

.cookie-tray__actions {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-tray__btn {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  min-height: 44px;
  transition: color 0.52s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background 0.52s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.45s ease-in-out;
  display: block;
  width: 100%;
}

.cookie-tray__btn--accept {
  background: transparent;
  color: #ff276b;
  border: 2px solid #ff276b;
}

.cookie-tray__btn--accept:hover {
  background: #ff276b1f;
  color: #ff276b;
  border-color: #ff276b;
}

.cookie-tray__btn--accept:focus {
  outline: none;
  box-shadow: 0 0 0 2px #ff276b66;
}

.cookie-tray__btn--reject {
  background: transparent;
  color: #ecf8fca6;
  border: 2px solid #ecf8fc33;
}

.cookie-tray__btn--reject:hover {
  background: #ecf8fc0f;
  color: #ecf8fcd9;
  border-color: #ecf8fc59;
}

.cookie-tray__btn--reject:focus {
  outline: none;
  box-shadow: 0 0 0 2px #ecf8fc33;
}

.cookie-tray__btn--settings {
  background: transparent;
  color: #ecf8fc73;
  border: 2px solid transparent;
  font-weight: 400;
  font-style: italic;
}

.cookie-tray__btn--settings:hover {
  color: #ecf8fcbf;
  border-color: transparent;
}

.cookie-tray__btn--settings:focus {
  outline: none;
  color: #ecf8fcbf;
}

.terms-info {
  max-width: 1024px;
  margin: 0 auto;
  padding: 96px 48px;
  color: #d4dce8;
  line-height: 1.9;
  font-size: 16px;
  letter-spacing: 0.015em;
}

.terms-info strong,
.terms-info b {
  color: #ecf8fc;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.terms-info em,
.terms-info i {
  color: #b8c8d8;
  font-style: italic;
}

.terms-info a {
  color: #ff276b;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.55s ease-in-out, text-decoration-color 0.5s ease-in-out;
}

.terms-info a:hover {
  color: #ecf8fc;
  text-decoration-color: #ecf8fc66;
}

.terms-info a:visited {
  color: #ff276bb8;
}

.terms-info table {
  width: 100%;
  border-collapse: collapse;
  margin: 48px 0;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px 0 #8117391c;
}

.terms-info thead {
  background: linear-gradient(135deg, #811739 0%, #0e2455 100%);
}

.terms-info thead tr {
  border-bottom: 2px solid #ff276b59;
}

.terms-info th {
  padding: 16px 32px;
  color: #ecf8fc;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: left;
}

.terms-info tbody tr {
  border-bottom: 1px solid #ecf8fc12;
  transition: background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.terms-info tbody tr:last-child {
  border-bottom: none;
}

.terms-info tbody tr:nth-child(odd) {
  background: #81173914;
}

.terms-info tbody tr:nth-child(even) {
  background: #8117390a;
}

.terms-info tbody tr:hover {
  background: #ff276b0f;
}

.terms-info td {
  padding: 16px 32px;
  color: #c8d4e0;
  vertical-align: top;
  line-height: 1.9;
}

.terms-info hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #ff276b4d 30%,
    #81173980 70%,
    transparent 100%
  );
  margin: 48px 0;
}

.terms-info div {
  margin: 8px 0;
}

@media (max-width: 768px) {
  .terms-info {
    padding: 48px 32px;
    font-size: 16px;
  }

  .terms-info table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .terms-info th,
  .terms-info td {
    padding: 16px;
    min-width: 140px;
  }
}

@media (max-width: 375px) {
  .terms-info {
    padding: 32px 16px;
  }

  .terms-info th,
  .terms-info td {
    padding: 8px 16px;
    font-size: 14px;
  }

  .terms-info hr {
    margin: 32px 0;
  }
}

.bd {
  background: #0e1420;
  color: #d8e4f0;
  overflow-x: clip;
  container-type: inline-size;
}

.bd .drop-anim {
  opacity: 0;
  transform: translateY(-32px);
  animation: dropIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.bd .drop-anim:nth-child(1) {
  animation-delay: 0.05s;
}

.bd .drop-anim:nth-child(2) {
  animation-delay: 0.18s;
}

.bd .drop-anim:nth-child(3) {
  animation-delay: 0.31s;
}

.bd .drop-anim:nth-child(4) {
  animation-delay: 0.44s;
}

.bd .drop-anim:nth-child(5) {
  animation-delay: 0.57s;
}

@keyframes dropIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bd .scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bd .scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.bd .pg-wrap {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 32px;
}

.bd .dash-divider {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.bd .dash-divider span {
  display: inline-block;
  background: #ff276b;
  opacity: 0.35;
}

.bd .dash-divider span.dot {
  width: 3px;
  height: 3px;
  border-radius: 48px;
}

.bd .dash-divider span.dash {
  width: 10px;
  height: 2px;
  border-radius: 7px;
}

.bd .post-hero {
  position: relative;
  padding: 48px 0 32px;
  background: #0e1420;
  overflow: hidden;
}

.bd .post-hero__blob {
  position: absolute;
  border-radius: 48px;
  filter: blur(72px);
  pointer-events: none;
  z-index: 0;
}

.bd .post-hero__blob--a {
  width: 340px;
  height: 220px;
  background: #81173961;
  top: -48px;
  left: -80px;
}

.bd .post-hero__blob--b {
  width: 260px;
  height: 180px;
  background: #ff276b21;
  top: 32px;
  right: -60px;
}

.bd .post-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.bd .post-hero__inner {
  position: relative;
  z-index: 1;
}

.bd .post-hero__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.bd .post-hero__counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid #ff276b;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  color: #ff276b;
  letter-spacing: 0.01em;
  box-shadow: 0 1px 4px 0 #ff276b12 0 6px 18px 0 #ff276b1c;
  flex-shrink: 0;
}

.bd .post-hero__stats {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.bd .post-hero__stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #8aa4c0;
  letter-spacing: 0.02em;
}

.bd .post-hero__stat svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.bd .post-hero__h1 {
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #eaf2fb;
  margin: 0 0 16px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: #ff276b66;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.bd .post-hero__img-wrap {
  margin-top: 32px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 9px 52px 0 #8117391c;
  position: relative;
}

.bd .post-hero__img {
  width: 100%;
  display: block;
  filter: saturate(0.82) contrast(1.08);
}

.bd .post-hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0e14208c 0%, transparent 60%);
  pointer-events: none;
}

.bd .divider-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  padding: 16px 0;
  overflow: hidden;
}

.bd .article-body {
  padding: 48px 0;
  background: #111828;
  position: relative;
}

.bd .article-body__graph-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(#8117390f 1px, transparent 1px),
    linear-gradient(90deg, #8117390f 1px, transparent 1px),
    linear-gradient(#81173908 1px, transparent 1px),
    linear-gradient(90deg, #81173908 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px, 16px 16px, 16px 16px;
  background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
}

.bd .article-body__abbr {
  position: absolute;
  top: 16px;
  right: -16px;
  font-size: 66px;
  font-weight: 900;
  color: #ff276b0a;
  letter-spacing: -0.02em;
  pointer-events: none;
  z-index: 0;
  line-height: 1.1;
  user-select: none;
}

.bd .article-body__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.bd .article-body__sidebar {
  position: sticky;
  top: 32px;
}

.bd .sidebar-label {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #ff276b;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}

.bd .sidebar-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.bd .sidebar-checklist__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #ff276b17;
  font-size: 14px;
  color: #9ab3cc;
  line-height: 1.5;
}

.bd .sidebar-checklist__item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.bd .sidebar-progress {
  background: #81173938;
  border-radius: 48px;
  height: 6px;
  margin-top: 8px;
  overflow: hidden;
}

.bd .sidebar-progress__bar {
  height: 6px;
  border-radius: 48px;
  background: linear-gradient(to right, #811739, #ff276b);
  width: 60%;
  transition: width 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bd .sidebar-progress__label {
  font-size: 14px;
  color: #6e8ba8;
  margin-top: 8px;
  letter-spacing: 0.01em;
}

.bd .sidebar-stat-box {
  margin-top: 32px;
  border: 2px solid #811739;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 1px 4px 0 #81173912 0 6px 18px 0 #8117391c;
  background: #81173921;
}

.bd .sidebar-stat-box__shape {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 3px solid #ff276b;
  border-radius: 12px;
  margin: 0 auto 8px;
  box-shadow: 0 1px 4px 0 #ff276b12 0 6px 18px 0 #ff276b1c;
}

.bd .sidebar-stat-box__num {
  font-size: 26px;
  font-weight: 800;
  color: #ff276b;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-align: center;
}

.bd .sidebar-stat-box__desc {
  font-size: 14px;
  color: #8aa4c0;
  text-align: center;
  margin-top: 8px;
  line-height: 1.5;
}

.bd .article-body__text {
  font-size: 16px;
  line-height: 1.9;
  color: #c8daea;
  letter-spacing: 0.01em;
}

.bd .article-body__text p {
  margin: 0 0 16px;
  padding-left: 32px;
  position: relative;
}

.bd .article-body__text p .para-num {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  font-weight: 700;
  color: #ff276b;
  opacity: 0.7;
  line-height: 1.9;
}

.bd .article-body__text h2 {
  font-size: 26px;
  line-height: 1.1;
  color: #eaf2fb;
  margin: 32px 0 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: underline;
  text-decoration-color: #81173980;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

.bd .article-body__text h3 {
  font-size: 20px;
  line-height: 1.5;
  color: #c8daea;
  margin: 24px 0 8px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: underline;
  text-decoration-color: #ff276b4d;
  text-underline-offset: 4px;
}

.bd .article-body__text cite {
  display: block;
  border: 2px solid #811739;
  border-radius: 12px;
  padding: 16px 16px 16px 32px;
  color: #ff276b;
  font-style: italic;
  font-size: 16px;
  line-height: 1.9;
  margin: 16px 0;
  background: #8117391f;
  box-shadow: 0 1px 4px 0 #81173912;
}

.bd .article-body__text abbr {
  color: #ff276b;
  text-decoration: underline dotted #ff276b66;
  cursor: help;
  letter-spacing: 0.02em;
}

.bd .article-body__text ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: grid;
  gap: 8px;
}

.bd .article-body__text ul li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  line-height: 1.5;
  color: #c8daea;
}

.bd .article-body__text ul li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 48px;
  background: #ff276b;
  margin-top: 8px;
  flex-shrink: 0;
}

.bd .article-body__text time {
  font-size: 14px;
  color: #6e8ba8;
  letter-spacing: 0.02em;
}

.bd .engage-strip {
  padding: 48px 0;
  background: #ecf8fc;
}

.bd .engage-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.bd .poll-block {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 1px 4px 0 #81173912 0 6px 18px 0 #8117391c;
}

.bd .poll-block__heading {
  font-size: 20px;
  font-weight: 700;
  color: #0e1420;
  margin: 0 0 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-decoration: underline;
  text-decoration-color: #8117394d;
  text-underline-offset: 4px;
}

.bd .poll-block__question {
  font-size: 16px;
  color: #1e2d45;
  margin: 0 0 16px;
  line-height: 1.5;
}

.bd .poll-opt {
  display: block;
  margin-bottom: 8px;
  cursor: pointer;
}

.bd .poll-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.bd .poll-opt__label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 2px solid #811739;
  border-radius: 12px;
  font-size: 16px;
  color: #811739;
  transition: background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.bd .poll-opt__dot {
  width: 16px;
  height: 16px;
  border: 2px solid #811739;
  border-radius: 48px;
  flex-shrink: 0;
  transition: background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bd .poll-opt input[type="radio"]:checked + .poll-opt__label {
  background: #811739;
  color: #fff;
  border-color: #811739;
}

.bd .poll-opt input[type="radio"]:checked + .poll-opt__label .poll-opt__dot {
  background: #ff276b;
  border-color: #ff276b;
}

.bd .poll-opt input[type="radio"]:focus-visible + .poll-opt__label {
  outline: 2px solid #ff276b;
  outline-offset: 2px;
}

.bd .poll-block__submit {
  margin-top: 16px;
  padding: 12px 32px;
  border: 2px solid #811739;
  border-radius: 12px;
  background: transparent;
  color: #811739;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bd .poll-block__submit:hover {
  background: #811739;
  color: #ff276b;
}

.bd .poll-block__submit:focus-visible {
  outline: 2px solid #ff276b;
  outline-offset: 2px;
}

.bd .poll-block__submit:active {
  background: #0f2560;
  color: #ff276b;
}

.bd .reaction-block {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 1px 4px 0 #81173912 0 6px 18px 0 #8117391c;
}

.bd .reaction-block__heading {
  font-size: 20px;
  font-weight: 700;
  color: #0e1420;
  margin: 0 0 8px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-decoration: underline;
  text-decoration-color: #ff276b80;
  text-underline-offset: 4px;
}

.bd .reaction-block__sub {
  font-size: 14px;
  color: #4a6278;
  margin: 0 0 16px;
  line-height: 1.5;
}

.bd .reactions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.bd .react-opt {
  display: block;
  cursor: pointer;
}

.bd .react-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.bd .react-opt__face {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 8px;
  border: 2px solid #81173933;
  border-radius: 12px;
  transition: border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.bd .react-opt__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bd .react-opt__text {
  font-size: 14px;
  color: #4a6278;
  letter-spacing: 0.01em;
  transition: color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bd .react-opt input[type="radio"]:checked + .react-opt__face {
  border-color: #ff276b;
  background: #ff276b1f;
}

.bd .react-opt input[type="radio"]:checked + .react-opt__face .react-opt__text {
  color: #811739;
  font-weight: 700;
}

.bd .react-opt input[type="radio"]:focus-visible + .react-opt__face {
  outline: 2px solid #811739;
  outline-offset: 2px;
}

.bd .cta-strip {
  padding: 96px 0;
  background: linear-gradient(to top, #0e1420 0%, #111828 100%);
  position: relative;
}

.bd .cta-strip__abbr {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 66px;
  font-weight: 900;
  color: #81173912;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
  line-height: 1.1;
  white-space: nowrap;
}

.bd .cta-strip__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.bd .cta-strip__eyebrow {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #ff276b;
  text-transform: uppercase;
  font-weight: 700;
}

.bd .cta-strip__heading {
  font-size: 36px;
  line-height: 1.1;
  color: #eaf2fb;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin: 0;
}

.bd .cta-strip__body {
  font-size: 16px;
  line-height: 1.9;
  color: #8aa4c0;
  max-width: 560px;
  letter-spacing: 0.01em;
  margin: 0;
}

.bd .cta-strip__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.bd .btn-primary {
  padding: 12px 32px;
  border: 2px solid #ff276b;
  border-radius: 12px;
  background: transparent;
  color: #ff276b;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    color 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bd .btn-primary:hover {
  background: #ff276b;
  color: #0e1420;
}

.bd .btn-primary:focus-visible {
  outline: 2px solid #ecf8fc;
  outline-offset: 3px;
}

.bd .btn-primary:active {
  background: #e6bc00;
  color: #0e1420;
}

.bd .btn-secondary {
  padding: 12px 32px;
  border: 2px solid #ecf8fc33;
  border-radius: 12px;
  background: transparent;
  color: #c8daea;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    color 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bd .btn-secondary:hover {
  border-color: #ecf8fc80;
  color: #eaf2fb;
}

.bd .btn-secondary:focus-visible {
  outline: 2px solid #ff276b;
  outline-offset: 3px;
}

.bd .tooltip-wrap {
  position: relative;
  display: inline-block;
}

.bd .tooltip-wrap .tip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #811739;
  color: #ecf8fc;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 7px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease-in-out;
  box-shadow: 0 6px 18px 0 #8117391c;
  z-index: 10;
}

.bd .tooltip-wrap:focus-within .tip {
  opacity: 1;
}

@container (max-width: 768px) {
  .bd .article-body__layout {
    grid-template-columns: 1fr;
  }

  .bd .article-body__sidebar {
    position: static;
  }

  .bd .engage-strip__inner {
    grid-template-columns: 1fr;
  }

  .bd .reactions-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .bd .post-hero__h1 {
    font-size: 26px;
  }
}

@container (max-width: 375px) {
  .bd .pg-wrap {
    padding: 0 16px;
  }

  .bd .post-hero__h1 {
    font-size: 20px;
  }

  .bd .cta-strip__heading {
    font-size: 26px;
  }

  .bd .reactions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bd .cta-strip__actions {
    flex-direction: column;
    align-items: center;
  }
}

.svc {
  background: #0e1420;
  overflow-x: clip;
  position: relative;
}

.svc__load-reveal {
  animation: svcAppear 0.55s ease-in-out both;
}

.svc__load-reveal--late {
  animation: svcAppear 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.18s both;
}

@keyframes svcAppear {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.svc__split {
  display: flex;
  flex-direction: row;
  min-height: 220px;
}

.svc__split-left {
  background: #811739;
  flex: 0 0 48%;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.svc__split-right {
  background: #ff276b;
  flex: 1;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.svc__split-eyebrow {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #ecf8fc;
  opacity: 0.72;
  line-height: 1.5;
  margin-bottom: 16px;
}

.svc__split-h1 {
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #ecf8fc;
  margin: 0 0 16px;
  border-bottom: 2px solid #ff276b;
  padding-bottom: 16px;
}

.svc__split-sub {
  font-size: 16px;
  line-height: 1.5;
  color: #ecf8fc;
  opacity: 0.85;
  margin: 0;
}

.svc__split-img-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.svc__split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.38) contrast(0.88) brightness(0.82) saturate(0.7);
  display: block;
}

.svc__split-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #8117398c 0%, #0e1420b8 100%);
}

.svc__split-right-text {
  position: relative;
  z-index: 2;
}

.svc__split-quote {
  font-size: 20px;
  line-height: 1.5;
  color: #811739;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0 0 16px;
}

.svc__split-detail {
  font-size: 14px;
  line-height: 1.9;
  color: #811739;
  opacity: 0.82;
  margin: 0;
}

.svc__split-dots {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-end;
  pointer-events: none;
}

.svc__dot {
  background: #811739;
  border-radius: 48px;
  opacity: 0.18;
}

.svc__dot--sm {
  width: 6px;
  height: 6px;
}

.svc__dot--md {
  width: 10px;
  height: 10px;
}

.svc__dot--lg {
  width: 16px;
  height: 16px;
}

.svc__wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: #0e1420;
}

.svc__wave-divider svg {
  display: block;
  width: 100%;
}

.svc__analysis {
  background: #111827;
  padding: 96px 0 48px;
  position: relative;
}

.svc__analysis-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 32px;
}

.svc__analysis-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.svc__analysis-h2 {
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #ecf8fc;
  margin: 0 0 8px;
  border-bottom: 2px solid #ff276b;
  padding-bottom: 8px;
  display: inline-block;
}

.svc__analysis-lead {
  font-size: 16px;
  line-height: 1.9;
  color: #b8cfe8;
  margin: 16px 0 32px;
}

.svc__para-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc__para-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
}

.svc__para-num {
  font-size: 14px;
  font-weight: 700;
  color: #ff276b;
  letter-spacing: 0.02em;
  min-width: 24px;
  padding-top: 2px;
  line-height: 1.5;
}

.svc__para-text {
  font-size: 16px;
  line-height: 1.9;
  color: #b8cfe8;
  margin: 0;
}

.svc__sidebar {
  background: #811739;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 9px 52px 0 #8117391c;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc__sidebar-label {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #ff276b;
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1.5;
}

.svc__sidebar-h3 {
  font-size: 20px;
  line-height: 1.5;
  color: #ecf8fc;
  margin: 0 0 8px;
  border-bottom: 1px solid #ecf8fc2e;
  padding-bottom: 8px;
}

.svc__icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc__icon-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #ecf8fc;
  opacity: 0.88;
}

.svc__icon-item .icon {
  color: #ff276b;
  font-size: 14px;
  flex-shrink: 0;
}

.svc__wave-divider2 {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: #111827;
}

.svc__wave-divider2 svg {
  display: block;
  width: 100%;
}

.svc__metrics {
  background: linear-gradient(to top, #ff276b 0%, #ecf8fc 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.svc__metrics-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 28px,
      #81173912 28px,
      #81173912 29px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 28px,
      #81173912 28px,
      #81173912 29px
    );
  background-size: 29px 29px;
  border-image: none;
}

.svc__metrics-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.svc__metrics-h2 {
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #111827;
  margin: 0 0 8px;
  border-bottom: 2px solid #811739;
  padding-bottom: 8px;
  display: inline-block;
}

.svc__metrics-intro {
  font-size: 16px;
  line-height: 1.9;
  color: #811739;
  margin: 16px 0 48px;
  max-width: 640px;
}

.svc__dash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.svc__stat {
  background: #811739;
  border-radius: 12px;
  padding: 32px 16px;
  text-align: center;
  box-shadow: 0 6px 18px 0 #8117391c;
  border: 2px solid transparent;
  transition: border-color 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  cursor: default;
}

.svc__stat:hover {
  border-color: #ff276b;
  box-shadow: 0 9px 52px 0 #81173938;
}

.svc__stat-val {
  font-size: 36px;
  line-height: 1.1;
  color: #ff276b;
  letter-spacing: 0.01em;
  display: block;
  margin-bottom: 8px;
}

.svc__stat-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #ecf8fc;
  opacity: 0.82;
}

.svc__bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.svc__accent-quote {
  font-size: 20px;
  line-height: 1.5;
  color: #ff276b;
  font-style: italic;
  letter-spacing: 0.01em;
  border: 2px solid #811739;
  border-radius: 12px;
  padding: 32px;
  background: #811739;
  margin: 0;
}

.svc__accent-quote span {
  color: #ecf8fc;
}

.svc__cta-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.svc__cta-h4 {
  font-size: 20px;
  line-height: 1.5;
  color: #111827;
  margin: 0;
  letter-spacing: 0.01em;
}

.svc__cta-body {
  font-size: 16px;
  line-height: 1.9;
  color: #811739;
  margin: 0;
}

.svc__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #811739;
  background: transparent;
  border: 3px solid #811739;
  border-radius: 7px;
  padding: 16px 32px;
  cursor: pointer;
  transition: background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  align-self: flex-start;
  text-decoration: none;
}

.svc__cta-btn:hover,
.svc__cta-btn:focus {
  background: #811739;
  color: #ecf8fc;
  outline: none;
}

.svc__cta-btn:focus-visible {
  outline: 3px solid #ff276b;
  outline-offset: 4px;
}

.svc__dots-corner {
  position: absolute;
  top: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  pointer-events: none;
}

.svc__dots-corner-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.svc__cdot {
  border-radius: 48px;
  background: #811739;
  opacity: 0.13;
}

.svc__cdot--xs {
  width: 5px;
  height: 5px;
}

.svc__cdot--sm {
  width: 8px;
  height: 8px;
}

.svc__cdot--md {
  width: 13px;
  height: 13px;
}

.svc__cdot--lg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1366px) {
  .svc__split-h1 {
    font-size: 26px;
  }

  .svc__split-left {
    padding: 48px 32px;
  }
}

@media (max-width: 768px) {
  .svc__split {
    flex-direction: column;
  }

  .svc__split-left {
    flex: none;
    padding: 48px 32px;
  }

  .svc__split-right {
    padding: 32px;
  }

  .svc__split-h1 {
    font-size: 26px;
  }

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

  .svc__sidebar {
    order: -1;
  }

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

  .svc__bottom-row {
    grid-template-columns: 1fr;
  }

  .svc__metrics {
    padding: 48px 0;
  }
}

@media (max-width: 375px) {
  .svc__split-left {
    padding: 32px 16px;
  }

  .svc__split-right {
    padding: 32px 16px;
  }

  .svc__split-h1 {
    font-size: 20px;
  }

  .svc__analysis-inner {
    padding: 0 16px;
  }

  .svc__metrics-inner {
    padding: 0 16px;
  }

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

  .svc__stat-val {
    font-size: 26px;
  }

  .svc__metrics-h2 {
    font-size: 20px;
  }

  .svc__analysis-h2 {
    font-size: 20px;
  }
}

.abt-auth {
  background: #0e1320;
  overflow-x: clip;
  position: relative;
}

.abt-auth .profile-strip {
  padding: 96px 16px 48px;
  position: relative;
}

.abt-auth .profile-strip__bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.abt-auth .profile-strip__bg-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#81173912 1px, transparent 1px),
    linear-gradient(90deg, #81173912 1px, transparent 1px);
  background-size: 48px 48px;
}

.abt-auth .profile-strip__bg-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, #0e1320 100%);
}

.abt-auth .profile-strip__inner {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.abt-auth .profile-strip__img-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-auth .img-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.abt-auth .img-frame__photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: sepia(0.18) contrast(1.08) brightness(0.92) saturate(0.85);
  border-radius: 12px;
  transition: filter 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt-auth .img-frame:hover .img-frame__photo {
  filter: sepia(0.08) contrast(1.04) brightness(0.97) saturate(1);
}

.abt-auth .img-frame__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #81173947 0%, transparent 60%);
  border-radius: 12px;
  pointer-events: none;
}

.abt-auth .img-badge {
  background: #81173938;
  border: 1.5px solid #ff276b2e;
  border-radius: 7px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.abt-auth .img-badge__label {
  font-size: 14px;
  color: #ecf8fc8c;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.abt-auth .img-badge__val {
  font-size: 16px;
  color: #ff276b;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.abt-auth .profile-strip__text-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.abt-auth .author-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #ecf8fc8c;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.abt-auth .author-tag__dot {
  width: 6px;
  height: 6px;
  border-radius: 48px;
  background: #ff276b;
  flex-shrink: 0;
  animation: dotpulse 2.8s ease-in-out infinite;
}

@keyframes dotpulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

.abt-auth .author-name {
  font-size: 50px;
  color: #ecf8fc;
  line-height: 1.1;
  letter-spacing: 0.01em;
  border-bottom: 2px solid #ff276b38;
  padding-bottom: 16px;
}

.abt-auth .author-desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-auth .author-desc__para {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: baseline;
}

.abt-auth .para-num {
  font-size: 14px;
  color: #ff276b80;
  letter-spacing: 0.02em;
  line-height: 1.9;
  flex-shrink: 0;
  width: 20px;
  text-align: right;
}

.abt-auth .para-text {
  font-size: 16px;
  color: #ecf8fcc7;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.abt-auth .accent-quote {
  border-radius: 7px;
  border: 1.5px dashed #ff276b47;
  padding: 16px 32px;
  position: relative;
}

.abt-auth .accent-quote__text {
  font-size: 20px;
  color: #ff276b;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-style: italic;
}

.abt-auth .profile-strip__deco-path {
  position: absolute;
  top: 48px;
  right: 0;
  width: 180px;
  height: 320px;
  pointer-events: none;
  opacity: 0.13;
}

.abt-auth .expertise-panel {
  padding: 48px 16px 96px;
  position: relative;
  background: linear-gradient(to bottom, #8117391f 0%, #0e1320 100%);
}

.abt-auth .expertise-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 3px;
  background: linear-gradient(to right, #ff276b, transparent);
}

.abt-auth .expertise-panel__inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.abt-auth .exp-head {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 32px;
}

.abt-auth .exp-head__label {
  font-size: 36px;
  color: #ecf8fc;
  line-height: 1.1;
  letter-spacing: 0.01em;
  border-bottom: 2px solid #ecf8fc26;
  padding-bottom: 8px;
  flex: 1;
}

.abt-auth .exp-head__sub {
  font-size: 14px;
  color: #ecf8fc73;
  letter-spacing: 0.02em;
  line-height: 1.5;
  max-width: 240px;
  text-align: right;
}

.abt-auth .four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.abt-auth .skill-card {
  background: #81173921;
  border: 1.5px solid #81173947;
  border-radius: 12px;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.5s ease-in-out, background 0.5s ease-in-out;
  cursor: default;
}

.abt-auth .skill-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-conic-gradient(
    #ff276b0a 0% 25%,
    transparent 0% 50%
  );
  background-size: 12px 12px;
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 12px;
  pointer-events: none;
}

.abt-auth .skill-card:hover::after {
  opacity: 1;
}

.abt-auth .skill-card:hover {
  border-color: #ff276b61;
  background: #81173938;
}

.abt-auth .skill-card__icon {
  width: 36px;
  height: 36px;
  position: relative;
}

.abt-auth .skill-card__icon-svg {
  width: 36px;
  height: 36px;
  stroke: #ff276b;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 120;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt-auth .skill-card:hover .skill-card__icon-svg {
  stroke-dashoffset: 120;
}

.abt-auth .skill-card__title {
  font-size: 16px;
  color: #ecf8fc;
  line-height: 1.5;
  letter-spacing: 0.01em;
  border-bottom: 1px solid #ecf8fc1a;
  padding-bottom: 8px;
}

.abt-auth .skill-card__body {
  font-size: 14px;
  color: #ecf8fc9e;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.abt-auth .dual-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.abt-auth .code-block {
  background: #0b1019;
  border-radius: 12px;
  border: 1.5px solid #81173959;
  overflow: hidden;
  box-shadow: 0 6px 18px 0 #8117391c;
}

.abt-auth .code-block__bar {
  background: #81173947;
  padding: 8px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.abt-auth .code-block__dot {
  width: 8px;
  height: 8px;
  border-radius: 48px;
  background: #ff276b59;
}

.abt-auth .code-block__dot--act {
  background: #ff276b;
}

.abt-auth .code-block__filename {
  font-size: 14px;
  color: #ecf8fc73;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-left: 8px;
}

.abt-auth .code-block__body {
  padding: 16px;
}

.abt-auth .code-line {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 4px;
}

.abt-auth .code-line__num {
  font-size: 14px;
  color: #ecf8fc38;
  line-height: 1.9;
  letter-spacing: 0.01em;
  min-width: 16px;
  text-align: right;
  flex-shrink: 0;
}

.abt-auth .code-line__txt {
  font-size: 14px;
  color: #ecf8fcbf;
  line-height: 1.9;
  letter-spacing: 0.01em;
  font-family: monospace;
}

.abt-auth .code-line__txt--key {
  color: #ff276b;
}

.abt-auth .code-line__txt--val {
  color: #ecf8fc8c;
}

.abt-auth .output-panel {
  background: #ecf8fc0a;
  border: 1.5px solid #ecf8fc1a;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  box-shadow: 0 1px 4px 0 #81173912;
}

.abt-auth .output-panel__label {
  font-size: 14px;
  color: #ecf8fc66;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-transform: uppercase;
}

.abt-auth .metric-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-auth .metric-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.abt-auth .metric-item__name {
  font-size: 14px;
  color: #ecf8fc9e;
  letter-spacing: 0.01em;
  line-height: 1.5;
  min-width: 120px;
}

.abt-auth .metric-item__bar-track {
  flex: 1;
  height: 6px;
  background: #81173938;
  border-radius: 48px;
  overflow: hidden;
}

.abt-auth .metric-item__bar-fill {
  height: 100%;
  border-radius: 48px;
  background: linear-gradient(to right, #811739, #ff276b);
  transition: width 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt-auth .metric-item__pct {
  font-size: 14px;
  color: #ff276b;
  letter-spacing: 0.01em;
  line-height: 1.5;
  min-width: 36px;
  text-align: right;
}

.abt-auth .img-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.abt-auth .img-pair__item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.abt-auth .img-pair__photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: sepia(0.12) brightness(0.88) saturate(0.8);
  transition: filter 0.55s ease-in-out;
}

.abt-auth .img-pair__item:hover .img-pair__photo {
  filter: sepia(0.04) brightness(0.96) saturate(1);
}

.abt-auth .img-single {
  border-radius: 12px;
  overflow: hidden;
}

.abt-auth .img-single__photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: sepia(0.15) brightness(0.87) saturate(0.78);
  transition: filter 0.6s ease-in-out;
}

.abt-auth .img-single:hover .img-single__photo {
  filter: sepia(0.05) brightness(0.95) saturate(1);
}

.abt-auth .topic-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.abt-auth .topic-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #8117391a;
  border-radius: 7px;
  border: 1px solid #81173938;
  transition: background 0.5s ease-in-out, border-color 0.5s ease-in-out;
}

.abt-auth .topic-item:hover {
  background: #81173938;
  border-color: #ff276b47;
}

.abt-auth .topic-item__icon {
  color: #ff276b;
  font-size: 14px;
  flex-shrink: 0;
}

.abt-auth .topic-item__text {
  font-size: 14px;
  color: #ecf8fcbf;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.abt-auth .divider-tri {
  position: relative;
  height: 32px;
  overflow: hidden;
}

.abt-auth .divider-tri svg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 32px;
}

@media (max-width: 1366px) {
  .abt-auth .four-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .abt-auth .profile-strip__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .abt-auth .img-frame__photo {
    max-height: 320px;
    width: 100%;
    object-fit: cover;
  }

  .abt-auth .author-name {
    font-size: 36px;
  }

  .abt-auth .four-grid {
    grid-template-columns: 1fr 1fr;
  }

  .abt-auth .dual-panel {
    grid-template-columns: 1fr;
  }

  .abt-auth .exp-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .abt-auth .exp-head__sub {
    text-align: left;
    max-width: 100%;
  }

  .abt-auth .img-pair {
    grid-template-columns: 1fr;
  }

  .abt-auth .topic-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 375px) {
  .abt-auth .profile-strip {
    padding: 48px 16px 32px;
  }

  .abt-auth .author-name {
    font-size: 26px;
  }

  .abt-auth .four-grid {
    grid-template-columns: 1fr;
  }

  .abt-auth .expertise-panel {
    padding: 32px 16px 48px;
  }

  .abt-auth .accent-quote {
    padding: 16px;
  }
}

.fst {
  background: #0e1420;
  color: #d4dbe8;
  overflow-x: hidden;
  position: relative;
}

.fst .phil {
  padding: 96px 32px 48px;
  position: relative;
  overflow: hidden;
}

.fst .phil__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0e1420 0%, #811739 60%, #0e1420 100%);
  opacity: 0.18;
  pointer-events: none;
}

.fst .phil__geo {
  position: absolute;
  top: 32px;
  right: 48px;
  width: 180px;
  height: 180px;
  border: 1px solid #ff276b14;
  border-radius: 48px;
  transform: rotate(18deg);
  pointer-events: none;
}

.fst .phil__geo--sm {
  width: 80px;
  height: 80px;
  top: 96px;
  right: 96px;
  border-color: #8117392e;
  border-radius: 20px;
  transform: rotate(35deg);
}

.fst .phil__geo--xs {
  width: 40px;
  height: 40px;
  top: 48px;
  right: 160px;
  border-color: #ecf8fc12;
  border-radius: 12px;
  transform: rotate(55deg);
}

.fst .phil__inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.fst .phil__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #ff276b;
  border: 2px solid #ff276b47;
  border-radius: 7px;
  padding: 4px 16px;
  width: fit-content;
}

.fst .phil__h1 {
  font-size: 50px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #ecf8fc;
  max-width: 720px;
  margin: 0;
}

.fst .phil__h1 span {
  color: #ff276b;
}

.fst .phil__body {
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fst .phil__p {
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  margin: 0;
}

.fst .phil__p--num {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
}

.fst .phil__num {
  font-size: 14px;
  color: #ff276b;
  font-weight: 700;
  min-width: 20px;
  padding-top: 4px;
}

.fst .phil__wave {
  width: 100%;
  height: 32px;
  position: relative;
  overflow: hidden;
  margin-top: 48px;
}

.fst .phil__wave svg {
  width: 100%;
  height: 100%;
}

.fst .approach {
  padding: 48px 32px;
  background: #111827;
  position: relative;
}

.fst .approach__inner {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.fst .approach__visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.fst .approach__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fst .approach__visual:hover .approach__img {
  transform: scale(1.04);
}

.fst .approach__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0e1420e0 0%, #81173938 100%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.55s ease-in-out;
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.fst .approach__visual:hover .approach__overlay {
  opacity: 1;
}

.fst .approach__overlay-txt {
  font-size: 16px;
  line-height: 1.5;
  color: #ecf8fc;
  letter-spacing: 0.01em;
}

.fst .approach__txt {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.fst .approach__h2 {
  font-size: 36px;
  line-height: 1.1;
  color: #ecf8fc;
  margin: 0;
  letter-spacing: 0.01em;
  padding-bottom: 12px;
  border-bottom: 2px solid #ff276b59;
}

.fst .approach__compare {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fst .approach__row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
}

.fst .approach__icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fst .approach__icon--a {
  background: #ff276b1f;
  color: #ff276b;
}

.fst .approach__icon--b {
  background: #81173938;
  color: #8aa4d4;
}

.fst .approach__row-txt {
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.fst .approach__row-label {
  font-size: 14px;
  color: #ff276b;
  letter-spacing: 0.02em;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.fst .approach__row-label--b {
  color: #8aa4d4;
}

.fst .usecases {
  padding: 96px 32px 48px;
  position: relative;
}

.fst .usecases__bg {
  position: absolute;
  inset: 0;
  background-image: url(visual_archive/newsj-2026_05.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}

.fst .usecases__inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
}

.fst .usecases__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
}

.fst .usecases__h2 {
  font-size: 36px;
  line-height: 1.1;
  color: #ecf8fc;
  margin: 0;
  letter-spacing: 0.01em;
  padding-bottom: 12px;
  border-bottom: 2px solid #ecf8fc26;
}

.fst .usecases__sub {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.fst .usecases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.fst .usecase {
  background: #8117391f;
  border: 2px solid #81173947;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.5s ease-in-out, background 0.5s ease-in-out;
}

.fst .usecase:hover {
  border-color: #ff276b66;
  background: #ff276b0d;
}

.fst .usecase__num {
  font-size: 26px;
  font-weight: 700;
  color: #ff276b;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.fst .usecase__h3 {
  font-size: 16px;
  line-height: 1.5;
  color: #ecf8fc;
  margin: 0;
  letter-spacing: 0.01em;
}

.fst .usecase__p {
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  margin: 0;
}

.fst .usecase__take {
  font-size: 14px;
  color: #ff276b;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border-radius: 7px;
  background: #ff276b14;
  border: 1px solid #ff276b2e;
  margin-top: auto;
}

.fst .path {
  padding: 48px 32px;
  background: #ecf8fc;
}

.fst .path__inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.fst .path__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}

.fst .path__h2 {
  font-size: 36px;
  line-height: 1.1;
  color: #811739;
  margin: 0;
  letter-spacing: 0.01em;
  padding-bottom: 12px;
  border-bottom: 2px solid #81173940;
}

.fst .path__sub {
  font-size: 16px;
  line-height: 1.5;
  color: #2a3a5c;
  letter-spacing: 0.01em;
}

.fst .path__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.fst .step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.fst .step__num {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #811739;
  color: #ff276b;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px 0 #8117391c;
}

.fst .step__h4 {
  font-size: 16px;
  line-height: 1.5;
  color: #811739;
  margin: 0;
  letter-spacing: 0.01em;
}

.fst .step__p {
  font-size: 14px;
  line-height: 1.9;
  color: #2a3a5c;
  letter-spacing: 0.01em;
  margin: 0;
}

.fst .step__link {
  font-size: 14px;
  color: #811739;
  text-decoration: none;
  border: 2px solid #811739;
  border-radius: 7px;
  padding: 4px 16px;
  width: fit-content;
  letter-spacing: 0.02em;
  transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
  margin-top: auto;
}

.fst .step__link:hover {
  background: #811739;
  color: #ecf8fc;
}

.fst .step__link:focus {
  outline: 2px solid #811739;
  outline-offset: 3px;
}

.fst .path__wave {
  width: 100%;
  height: 24px;
  overflow: hidden;
}

.fst .path__wave svg {
  width: 100%;
  height: 100%;
}

.fst .subscribe {
  padding: 96px 32px;
  position: relative;
  overflow: hidden;
}

.fst .subscribe__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0e1420 0%, #811739 100%);
  opacity: 0.22;
  pointer-events: none;
}

.fst .subscribe__inner {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  position: relative;
}

.fst .subscribe__txt {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.fst .subscribe__h2 {
  font-size: 36px;
  line-height: 1.1;
  color: #ecf8fc;
  margin: 0;
  letter-spacing: 0.01em;
  padding-bottom: 12px;
  border-bottom: 2px solid #ff276b4d;
}

.fst .subscribe__quote {
  font-size: 20px;
  line-height: 1.5;
  color: #ff276b;
  letter-spacing: 0.01em;
  font-style: italic;
  padding: 16px;
  border-radius: 12px;
  background: #ff276b0f;
}

.fst .subscribe__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fst .subscribe__item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.fst .subscribe__dot {
  width: 8px;
  height: 8px;
  border-radius: 48px;
  background: #ff276b;
  flex-shrink: 0;
  margin-top: 8px;
}

.fst .subscribe__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ecf8fc0a;
  border: 2px solid #ecf8fc1a;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 9px 52px 0 #8117391c;
}

.fst .subscribe__form-h3 {
  font-size: 20px;
  line-height: 1.5;
  color: #ecf8fc;
  margin: 0;
  letter-spacing: 0.01em;
}

.fst .subscribe__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fst .subscribe__label {
  font-size: 14px;
  color: #8aa4d4;
  letter-spacing: 0.02em;
}

.fst .subscribe__input {
  background: #0e142099;
  border: 2px solid #ecf8fc1f;
  border-radius: 12px;
  padding: 16px;
  color: #ecf8fc;
  font-size: 16px;
  letter-spacing: 0.01em;
  outline: none;
  transition: border-color 0.5s ease-in-out;
}

.fst .subscribe__input::placeholder {
  color: #8aa4d4;
  opacity: 0.55;
  font-style: italic;
}

.fst .subscribe__input:focus {
  border-color: #ff276b80;
}

.fst .subscribe__btn {
  background: transparent;
  border: 3px solid #ff276b;
  border-radius: 12px;
  padding: 16px 32px;
  color: #ff276b;
  font-size: 16px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    color 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fst .subscribe__btn:hover {
  background: #ff276b;
  color: #0e1420;
}

.fst .subscribe__btn:focus {
  outline: 2px solid #ff276b;
  outline-offset: 3px;
}

.fst .subscribe__note {
  font-size: 14px;
  color: #8aa4d4;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.fst .sources {
  padding: 48px 32px 96px;
  background: #111827;
}

.fst .sources__inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.fst .sources__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}

.fst .sources__h2 {
  font-size: 36px;
  line-height: 1.1;
  color: #ecf8fc;
  margin: 0;
  letter-spacing: 0.01em;
  padding-bottom: 12px;
  border-bottom: 2px solid #ff276b40;
}

.fst .sources__sub {
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.fst .sources__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.fst .source-card {
  border: 2px solid #ecf8fc14;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 0;
  transition: border-color 0.6s ease-in-out;
}

.fst .source-card:hover {
  border-color: #ff276b4d;
}

.fst .source-card__img-wrap {
  width: 160px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.fst .source-card__img {
  width: 160px;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease-in-out;
}

.fst .source-card:hover .source-card__img {
  transform: scale(1.06);
}

.fst .source-card__overlay {
  position: absolute;
  inset: 0;
  background: #0e1420b8;
  opacity: 0;
  transition: opacity 0.55s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.fst .source-card:hover .source-card__overlay {
  opacity: 1;
}

.fst .source-card__overlay-txt {
  font-size: 14px;
  line-height: 1.9;
  color: #ecf8fc;
  text-align: center;
  letter-spacing: 0.01em;
}

.fst .source-card__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fst .source-card__tag {
  font-size: 14px;
  color: #ff276b;
  letter-spacing: 0.02em;
}

.fst .source-card__h4 {
  font-size: 16px;
  line-height: 1.5;
  color: #ecf8fc;
  margin: 0;
  letter-spacing: 0.01em;
}

.fst .source-card__p {
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  margin: 0;
}

.fst .sources__wave {
  width: 100%;
  height: 24px;
  overflow: hidden;
  margin-top: 32px;
}

.fst .sources__wave svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 1366px) {
  .fst .phil__h1 {
    font-size: 50px;
  }

  .fst .usecases__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .fst .phil__h1 {
    font-size: 36px;
  }

  .fst .phil__geo {
    display: none;
  }

  .fst .approach__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .fst .approach__img {
    height: 260px;
  }

  .fst .usecases__grid {
    grid-template-columns: 1fr;
  }

  .fst .path__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .fst .subscribe__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .fst .sources__grid {
    grid-template-columns: 1fr;
  }

  .fst .source-card {
    flex-direction: column;
  }

  .fst .source-card__img-wrap {
    width: 100%;
    height: 160px;
  }

  .fst .source-card__img {
    width: 100%;
    height: 160px;
  }
}

@media (max-width: 375px) {
  .fst .phil {
    padding: 48px 16px 32px;
  }

  .fst .phil__h1 {
    font-size: 26px;
  }

  .fst .approach,
  .fst .usecases,
  .fst .subscribe,
  .fst .sources {
    padding-left: 16px;
    padding-right: 16px;
  }

  .fst .path {
    padding-left: 16px;
    padding-right: 16px;
  }

  .fst .path__steps {
    grid-template-columns: 1fr;
  }

  .fst .subscribe__form {
    padding: 16px;
  }
}

.blg {
  background: #0e1420;
  color: #d4dbe8;
  overflow-x: hidden;
  position: relative;
}

.blg .pg-top {
  position: relative;
  padding: 96px 32px 48px;
  background: linear-gradient(to top, #200e14 0%, #3a121c 60%, #811739 100%);
  overflow: hidden;
}

.blg .pg-top__stripe {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.blg .pg-top__stripe::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -60px;
  width: 200%;
  height: 200%;
  background-image: repeating-linear-gradient(
    -52deg,
    transparent,
    transparent 28px,
    #ff276b0a 28px,
    #ff276b0a 30px
  );
}

.blg .pg-top__body {
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
}

.blg .pg-top__label {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #ff276b;
  border: 2px solid #ff276b;
  border-radius: 7px;
  padding: 4px 16px;
  margin-bottom: 32px;
  font-weight: 600;
}

.blg .pg-top__h1 {
  font-size: 50px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #eaf1ff;
  max-width: 680px;
  margin: 0 0 16px;
  font-weight: 800;
}

.blg .pg-top__h1 .acc {
  color: #ff276b;
}

.blg .pg-top__sub {
  font-size: 16px;
  line-height: 1.9;
  color: #8fa3c8;
  max-width: 520px;
  margin: 0;
}

.blg .pg-top__deco {
  position: absolute;
  right: 0;
  bottom: -16px;
  width: 280px;
  height: 280px;
  border-radius: 48px;
  overflow: hidden;
  opacity: 0.18;
  pointer-events: none;
}

.blg .pg-top__deco img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
}

.blg .posts-band {
  max-width: 1024px;
  margin: 0 auto;
  padding: 96px 32px 48px;
}

.blg .posts-band__ttl {
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #eaf1ff;
  margin: 0 0 8px;
  text-decoration: underline;
  text-decoration-color: #ff276b;
  text-underline-offset: 6px;
}

.blg .posts-band__sub {
  font-size: 14px;
  line-height: 1.5;
  color: #6b82a8;
  margin: 0 0 48px;
}

.blg .posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.blg .post-card {
  background: #131c30;
  border-radius: 20px;
  border: 2px solid #1e2d4a;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: border-color 0.55s ease-in-out, box-shadow 0.55s ease-in-out;
  box-shadow: 0 1px 4px 0 #81173912;
}

.blg .post-card:hover {
  border-color: #ff276b;
  box-shadow: 0 6px 18px 0 #8117391c 0 9px 52px 0 #8117391c;
}

.blg .post-card__img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blg .post-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blg .post-card:hover .post-card__img-wrap img {
  transform: scale(1.05);
}

.blg .post-card__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blg .post-card__ttl {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #eaf1ff;
  margin: 0 0 16px;
  text-decoration: none;
  display: block;
  transition: color 0.45s ease-in-out;
}

.blg .post-card__ttl:hover {
  color: #ff276b;
}

.blg .post-card__desc {
  font-size: 14px;
  line-height: 1.9;
  color: #7a93ba;
  margin: 0 0 32px;
  flex: 1;
}

.blg .post-card__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #1e2d4a;
  padding-top: 16px;
}

.blg .post-card__stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #506080;
}

.blg .post-card__stat i {
  font-size: 14px;
  color: #ff276b;
}

.blg .post-card__link {
  margin-left: auto;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #ff276b;
  text-decoration: none;
  border: 2px solid #ff276b;
  border-radius: 7px;
  padding: 4px 16px;
  transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
  font-weight: 600;
}

.blg .post-card__link:hover {
  background: #ff276b;
  color: #0e1420;
}

.blg .post-card--trace {
  position: relative;
}

.blg .post-card--trace::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  border: 2px solid transparent;
  pointer-events: none;
  transition: border-color 0.55s ease-in-out;
}

.blg .post-card--trace:hover::after {
  border-color: #ff276b4d;
}

.blg .analysis-strip {
  background: #ecf8fc;
  position: relative;
  overflow: hidden;
}

.blg .analysis-strip__diag {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.blg .analysis-strip__diag::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: #811739;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
}

.blg .analysis-strip__body {
  max-width: 1024px;
  margin: 0 auto;
  padding: 96px 32px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: center;
  position: relative;
}

.blg .analysis-strip__tag {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #811739;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.blg .analysis-strip__h2 {
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #0e1420;
  margin: 0 0 32px;
}

.blg .analysis-strip__h2 .acc {
  color: #811739;
}

.blg .analysis-strip__nums {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blg .analysis-strip__row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.blg .analysis-strip__num {
  font-size: 26px;
  line-height: 1.1;
  font-weight: 800;
  color: #811739;
  min-width: 32px;
}

.blg .analysis-strip__rowtext {
  font-size: 14px;
  line-height: 1.9;
  color: #2a3550;
}

.blg .analysis-strip__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.blg .analysis-strip__quote {
  font-size: 20px;
  line-height: 1.5;
  color: #ecf8fc;
  font-style: italic;
  letter-spacing: 0.01em;
}

.blg .analysis-strip__quote .acc {
  color: #ff276b;
}

.blg .analysis-strip__note {
  font-size: 14px;
  line-height: 1.9;
  color: #ecf8fcb3;
}

.blg .topics-panel {
  max-width: 1024px;
  margin: 0 auto;
  padding: 96px 32px 48px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

.blg .topics-panel__aside {
  background: #131c30;
  border-radius: 20px;
  border: 2px solid #1e2d4a;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.blg .topics-panel__aside-ttl {
  font-size: 16px;
  line-height: 1.5;
  color: #ff276b;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  text-decoration: underline;
  text-decoration-color: #ff276b66;
  text-underline-offset: 4px;
}

.blg .topics-panel__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #7a93ba;
  padding: 8px 0;
  border-bottom: 1px solid #1e2d4a;
}

.blg .topics-panel__item:last-child {
  border-bottom: none;
}

.blg .topics-panel__item i {
  color: #ff276b;
  font-size: 12px;
  flex-shrink: 0;
}

.blg .topics-panel__ttl {
  font-size: 26px;
  line-height: 1.1;
  color: #eaf1ff;
  margin: 0 0 8px;
  letter-spacing: 0.01em;
  text-decoration: underline;
  text-decoration-color: #ff276b;
  text-underline-offset: 6px;
}

.blg .topics-panel__intro {
  font-size: 14px;
  line-height: 1.9;
  color: #6b82a8;
  margin: 0 0 32px;
}

.blg .topics-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.blg .topic-tile {
  background: #131c30;
  border-radius: 12px;
  border: 2px solid #1e2d4a;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
}

.blg .topic-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to top, #ff276b 0%, #811739 100%);
  border-radius: 0 0 0 12px;
}

.blg .topic-tile:hover {
  border-color: #ff276b66;
}

.blg .topic-tile__num {
  font-size: 26px;
  line-height: 1.1;
  font-weight: 800;
  color: #ff276b33;
  letter-spacing: 0.01em;
}

.blg .topic-tile__name {
  font-size: 16px;
  line-height: 1.5;
  color: #c2d0e8;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.blg .topic-tile__desc {
  font-size: 14px;
  line-height: 1.9;
  color: #506080;
}

.blg .wave-div {
  width: 100%;
  height: 48px;
  overflow: hidden;
  position: relative;
}

.blg .wave-div svg {
  width: 100%;
  height: 100%;
}

.blg .wave-div--dark {
  background: #ecf8fc;
}

.blg .wave-div--light {
  background: #0e1420;
}

@media (max-width: 1366px) {
  .blg .pg-top__h1 {
    font-size: 36px;
  }

  .blg .pg-top__deco {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .blg .pg-top {
    padding: 48px 16px 32px;
  }

  .blg .pg-top__h1 {
    font-size: 26px;
  }

  .blg .pg-top__deco {
    display: none;
  }

  .blg .posts-band {
    padding: 48px 16px 32px;
  }

  .blg .posts-grid {
    grid-template-columns: 1fr;
  }

  .blg .analysis-strip__body {
    grid-template-columns: 1fr;
    padding: 48px 16px;
    gap: 32px;
  }

  .blg .analysis-strip__diag::before {
    display: none;
  }

  .blg .analysis-strip__quote {
    color: #811739;
  }

  .blg .analysis-strip__note {
    color: #811739b3;
  }

  .blg .topics-panel {
    grid-template-columns: 1fr;
    padding: 48px 16px 32px;
    gap: 32px;
  }

  .blg .topics-panel__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 375px) {
  .blg .pg-top__h1 {
    font-size: 20px;
  }

  .blg .posts-band {
    padding: 32px 8px;
  }

  .blg .post-card__body {
    padding: 16px;
  }

  .blg .topics-panel {
    padding: 32px 8px;
  }
}

.success-pg {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 32px;
  background: #0d1520;
}

.success-pg .success-pg__wrap {
  max-width: 1024px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.success-pg .success-pg__icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.success-pg .success-pg__icon circle {
  fill: none;
  stroke: #ff276b;
  stroke-width: 2.5;
}

.success-pg .success-pg__icon polyline {
  fill: none;
  stroke: #ff276b;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-pg .success-pg__card {
  background: #111c2d;
  border: 2px solid #1e3060;
  border-radius: 20px;
  padding: 48px;
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  box-shadow: 0 9px 52px 0 #8117391c;
}

.success-pg .success-pg__heading {
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #ecf8fc;
  text-align: center;
  margin: 0;
}

.success-pg .success-pg__heading span {
  color: #ff276b;
}

.success-pg .success-pg__text {
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: #8faac4;
  text-align: center;
  margin: 0;
}

.success-pg .success-pg__divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(to top, #ff276b, #ecf8fc);
  border-radius: 7px;
  flex-shrink: 0;
}

.success-pg .success-pg__link {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #ecf8fc;
  text-decoration: none;
  border: 2px solid #ff276b;
  border-radius: 12px;
  padding: 16px 32px;
  background: transparent;
  transition: color 0.5s ease-in-out,
    background 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.5s ease-in-out;
}

.success-pg .success-pg__link:hover {
  background: #ff276b;
  color: #0d1520;
  border-color: #ff276b;
}

.success-pg .success-pg__link:focus {
  outline: 2px solid #ff276b;
  outline-offset: 4px;
}

.success-pg .success-pg__link:active {
  background: #e0b800;
  border-color: #e0b800;
  color: #0d1520;
}

@media (max-width: 768px) {
  .success-pg {
    padding: 48px 16px;
  }

  .success-pg .success-pg__card {
    padding: 32px 16px;
    gap: 16px;
  }

  .success-pg .success-pg__heading {
    font-size: 26px;
  }
}

@media (max-width: 375px) {
  .success-pg .success-pg__heading {
    font-size: 20px;
  }

  .success-pg .success-pg__text {
    font-size: 14px;
  }
}
