@import "https://fonts.googleapis.com/css2?family=Karla:wght@400;700&display=swap";

*,
::before,
::after {
  box-sizing: border-box
}

body {
  margin: 0;
  min-height: 100dvh;
  overflow-x: hidden;
  font-family: 'Karla', sans-serif
}

.pg-header {
  position: relative;
  background: linear-gradient(135deg, #3A4E69 0%, #607792 60%, #A4ADCB 100%);
  padding: 0;
  z-index: 100
}

.pg-header::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none
}

.hd-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 120px
}

.hd-brand-col {
  display: flex;
  align-items: center;
  padding: 32px 48px 32px 32px;
  border-right: 1px solid #a4adcb59;
  gap: 16px
}

.hd-logo-box {
  width: 68px;
  height: 68px;
  background: #f5f4f0;
  border: 2px solid #ffffffe6;
  box-shadow: -1px 1px 4px -2px #3a4e6912 -1px 5px 20px -2px #3a4e691c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.hd-logo-box img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block
}

.hd-brand-name {
  font-size: 37px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  letter-spacing: 0;
  text-shadow: 0 2px 8px #3a4e6940
}

.hd-brand-tag {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: #ffffffc7;
  margin-top: 8px
}

.hd-nav-col {
  display: flex;
  align-items: center;
  padding: 32px 32px 32px 48px
}

.hd-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center
}

.hd-nav-list li a {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  color: #ffffffe6;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: color .38s cubic-bezier(0.34, 1.2, 0.64, 1), background .38s cubic-bezier(0.34, 1.2, 0.64, 1), border-color .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.hd-nav-list li a:hover,
.hd-nav-list li a:focus {
  color: #fff;
  background: #ffffff26;
  border-color: #ffffff4d;
  outline: none;
  box-shadow: 0 0 0 3px #a4adcb66
}

.hd-nav-list li a:focus-visible {
  box-shadow: 0 0 0 3px #a4adcb99
}

.hd-nav-list li.active-lnk a {
  background: #ffffff38;
  border-color: #ffffff73;
  color: #fff
}

.pg-footer {
  position: relative;
  background: #3A4E69;
  overflow: hidden;
  padding: 48px 32px 32px
}

.ft-geo-shape-a {
  position: absolute;
  top: -32px;
  right: 96px;
  width: 160px;
  height: 160px;
  background: #60779238;
  border-radius: 4px;
  transform: rotate(28deg);
  pointer-events: none
}

.ft-geo-shape-b {
  position: absolute;
  bottom: -48px;
  left: 48px;
  width: 200px;
  height: 200px;
  background: #a4adcb1a;
  border-radius: 16px;
  transform: rotate(-15deg);
  pointer-events: none
}

.ft-geo-shape-c {
  position: absolute;
  top: 16px;
  left: 32%;
  width: 80px;
  height: 80px;
  border: 2px solid #a4adcb26;
  border-radius: 4px;
  transform: rotate(45deg);
  pointer-events: none
}

.ft-rule {
  max-width: 1500px;
  margin: 0 auto 32px;
  border: none;
  border-top: 1px solid #a4adcb40
}

.ft-logo-wrap {
  max-width: 1500px;
  margin: 0 auto 16px;
  display: flex;
  justify-content: center
}

.ft-logo-box {
  width: 64px;
  height: 64px;
  background: #f5f4f0;
  border: 2px solid #a4adcb66;
  box-shadow: -1px 1px 4px -2px #3a4e6912 -1px 5px 20px -2px #3a4e691c;
  display: flex;
  align-items: center;
  justify-content: center
}

.ft-logo-box img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block
}

.ft-single-row {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px
}

.ft-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: #ffffffb8
}

.ft-links-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.ft-links-group a {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: #a4adcbe6;
  text-decoration: none;
  transition: color .42s ease-in-out
}

.ft-links-group a:hover,
.ft-links-group a:focus {
  color: #fff;
  outline: none;
  box-shadow: none
}

.ft-links-group a:focus-visible {
  box-shadow: 0 0 0 3px #a4adcb80;
  border-radius: 4px
}

.ft-sep {
  width: 4px;
  height: 4px;
  background: #a4adcb66;
  border-radius: 44px;
  display: inline-block
}

.ft-copy {
  font-size: 15px;
  color: #a4adcb8c;
  line-height: 1.55
}

.cookie-strip {
  position: fixed;
  bottom: 32px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90%;
  max-width: 860px;
  background: #fff;
  border-radius: 16px;
  box-shadow: -1px 9px 36px -2px #3a4e691a -1px 5px 20px -2px #3a4e691c;
  border: 1px solid #6077922e;
  z-index: 1500;
  padding: 32px;
  display: none
}

.cookie-strip-head {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: #3A4E69;
  margin-bottom: 8px
}

.cookie-strip-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: #607792;
  margin-bottom: 16px
}

.cookie-strip-text a {
  color: #3A4E69;
  font-weight: 700;
  text-decoration: underline
}

.cookie-opt-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap
}

.cookie-opt-label {
  font-size: 15px;
  color: #607792;
  line-height: 1.55;
  display: flex;
  align-items: center;
  gap: 8px
}

.cookie-opt-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #3A4E69;
  cursor: pointer
}

.cookie-btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.cookie-btn-accept,
.cookie-btn-decline {
  flex: 1;
  min-width: 120px;
  padding: 16px 32px;
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid #3A4E69;
  transition: background .35s cubic-bezier(0.34, 1.2, 0.64, 1), color .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.cookie-btn-accept {
  background: #3A4E69;
  color: #fff
}

.cookie-btn-decline {
  background: #fff;
  color: #3A4E69
}

.cookie-btn-accept:hover,
.cookie-btn-accept:focus {
  background: #607792;
  border-color: #607792;
  outline: none;
  box-shadow: 0 0 0 3px #60779259
}

.cookie-btn-decline:hover,
.cookie-btn-decline:focus {
  background: #f5f4f0;
  outline: none;
  box-shadow: 0 0 0 3px #60779240
}

.rules-text {
  max-width: 1500px;
  margin: 0 auto;
  padding: 96px 48px;
  color: #2c3a4a
}

.rules-text h1 {
  font-size: 51px;
  line-height: 1.1;
  color: #3A4E69;
  margin-bottom: 32px;
  margin-top: 0
}

.rules-text h2 {
  font-size: 37px;
  line-height: 1.3;
  color: #3A4E69;
  margin-top: 48px;
  margin-bottom: 16px
}

.rules-text h3 {
  font-size: 21px;
  line-height: 1.3;
  color: #3A4E69;
  margin-top: 32px;
  margin-bottom: 16px
}

.rules-text h4 {
  font-size: 17px;
  line-height: 1.55;
  color: #607792;
  margin-top: 32px;
  margin-bottom: 8px
}

.rules-text h5 {
  font-size: 15px;
  line-height: 1.55;
  color: #607792;
  margin-top: 16px;
  margin-bottom: 8px
}

.rules-text h6 {
  font-size: 15px;
  line-height: 1.55;
  color: #A4ADCB;
  margin-top: 16px;
  margin-bottom: 8px
}

.rules-text p {
  font-size: 17px;
  line-height: 1.75;
  color: #2c3a4a;
  margin-top: 0;
  margin-bottom: 16px;
  max-width: 72ch
}

.rules-text ul {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 32px;
  list-style-type: disc
}

.rules-text ol {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 32px;
  list-style-type: decimal
}

.rules-text li {
  font-size: 17px;
  line-height: 1.75;
  color: #2c3a4a;
  margin-bottom: 8px;
  max-width: 72ch
}

.rules-text li::marker {
  color: #607792
}

.rules-text em,
.rules-text i {
  color: #607792;
  font-style: italic
}

.rules-text a {
  color: #3A4E69;
  text-decoration: underline;
  text-decoration-color: #A4ADCB;
  text-underline-offset: 3px;
  transition: color .38s cubic-bezier(0.34, 1.2, 0.64, 1), text-decoration-color .38s ease-in-out
}

.rules-text a:hover {
  color: #607792;
  text-decoration-color: #607792
}

.rules-text hr {
  border: none;
  border-top: 1px solid #A4ADCB;
  margin-top: 48px;
  margin-bottom: 48px;
  opacity: .5
}

.rules-text div {
  font-size: 17px;
  line-height: 1.75
}

@media (max-width: 768px) {
  .rules-text {
    padding: 48px 16px
  }

  .rules-text h1 {
    font-size: 37px
  }

  .rules-text h2 {
    font-size: 21px
  }

  .rules-text h3 {
    font-size: 17px
  }
}

.bld {
  background: #f5f4f1;
  overflow-x: clip
}

.bld * {
  box-sizing: border-box
}

.bld a {
  color: #607792;
  text-decoration: underline
}

.bld a:hover {
  color: #3A4E69
}

@keyframes bld-reveal {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0)
  }
}

.bld-anim {
  animation: bld-reveal .42s cubic-bezier(0.34, 1.2, 0.64, 1) both
}

.bld-anim-2 {
  animation: bld-reveal .38s cubic-bezier(0.34, 1.2, 0.64, 1) .1s both
}

.bld-anim-3 {
  animation: bld-reveal .44s cubic-bezier(0.34, 1.2, 0.64, 1) .2s both
}

.bld-top {
  position: relative;
  padding: 96px 32px;
  text-align: center;
  overflow: hidden;
  background: #fff
}

.bld-top-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none
}

.bld-top-circles span {
  position: absolute;
  border-radius: 44px;
  border: 2px solid #A4ADCB;
  opacity: .13
}

.bld-top-circles span:nth-child(1) {
  width: 320px;
  height: 320px;
  top: -80px;
  left: -80px;
  border-radius: 44px
}

.bld-top-circles span:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 40px;
  right: 60px;
  border-radius: 44px;
  opacity: .09
}

.bld-top-circles span:nth-child(3) {
  width: 480px;
  height: 480px;
  bottom: -200px;
  right: -120px;
  border-radius: 44px;
  opacity: .07
}

.bld-img-wrap {
  display: inline-block;
  margin-bottom: 48px;
  clip-path: polygon(0 8%, 8% 0, 92% 0, 100% 8%, 100% 92%, 92% 100%, 8% 100%, 0 92%);
  box-shadow: -1px 9px 36px -2px #3a4e691a;
  max-width: 720px;
  width: 100%
}

.bld-img-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover
}

.bld-tag-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px
}

.bld-tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.3;
  background: #3A4E69;
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700
}

.bld-cat-tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.3;
  background: transparent;
  color: #607792;
  border: 1.5px solid #A4ADCB
}

.bld-h1 {
  font-size: 51px;
  line-height: 1.1;
  color: #3A4E69;
  text-transform: uppercase;
  margin: 0 auto 16px;
  max-width: 900px
}

.bld-h1 .bld-h1-accent {
  color: #607792;
  font-style: italic;
  text-transform: none
}

.bld-caption-line {
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(277deg, #3A4E69 0%, #607792 60%, #A4ADCB 100%);
  margin: 0 auto 48px
}

.bld-article {
  max-width: 1500px;
  margin: 0 auto;
  padding: 96px 32px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start
}

.bld-prose {
  background: #fff;
  border-radius: 16px;
  padding: 48px;
  box-shadow: -1px 5px 20px -2px #6077921c;
  position: relative
}

.bld-prose::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid #A4ADCB;
  border-radius: 16px;
  pointer-events: none;
  z-index: 0
}

.bld-prose::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  right: -4px;
  bottom: -4px;
  border: 1.5px solid #3A4E69;
  border-radius: 16px;
  pointer-events: none;
  z-index: 0;
  opacity: .18
}

.bld-prose-inner {
  position: relative;
  z-index: 1
}

.bld-prose-inner p {
  font-size: 17px;
  line-height: 1.75;
  color: #2a3444;
  margin-bottom: 16px
}

.bld-prose-inner h2 {
  font-size: 37px;
  line-height: 1.3;
  color: #3A4E69;
  margin-top: 48px;
  margin-bottom: 16px
}

.bld-prose-inner ins {
  color: #3A4E69;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(277deg, #3a4e691a 0%, #a4adcb2e 100%);
  border-radius: 4px;
  padding: 0 4px
}

.bld-prose-inner ul {
  list-style: none;
  margin: 16px 0;
  padding: 0
}

.bld-prose-inner ul li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 17px;
  line-height: 1.55;
  color: #2a3444;
  padding: 8px 0;
  border-bottom: 1px solid #e8eaf0
}

.bld-prose-inner ul li::after {
  content: "→";
  color: #607792;
  margin-left: 16px;
  flex-shrink: 0
}

.bld-prose-inner ol {
  list-style: none;
  counter-reset: bld-ol;
  margin: 16px 0;
  padding: 0
}

.bld-prose-inner ol li {
  counter-increment: bld-ol;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 17px;
  line-height: 1.55;
  color: #2a3444;
  padding: 8px 0;
  border-bottom: 1px solid #e8eaf0
}

.bld-prose-inner ol li::after {
  content: counter(bld-ol);
  color: #3A4E69;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.1;
  margin-left: 16px;
  flex-shrink: 0
}

.bld-prose-inner table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 15px;
  line-height: 1.55
}

.bld-prose-inner thead tr {
  background: #3A4E69;
  color: #fff
}

.bld-prose-inner thead td {
  padding: 8px 16px;
  font-weight: 700
}

.bld-prose-inner tbody tr:nth-child(even) {
  background: #f0f2f7
}

.bld-prose-inner tbody td {
  padding: 8px 16px;
  color: #2a3444;
  border-bottom: 1px solid #dde1ec
}

.bld-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.bld-reaction-box {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: -1px 5px 20px -2px #3a4e691c;
  position: relative
}

.bld-reaction-box::before {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 6px;
  right: -6px;
  bottom: -6px;
  border: 2px solid #A4ADCB;
  border-radius: 16px;
  pointer-events: none
}

.bld-reaction-label {
  font-size: 15px;
  line-height: 1.3;
  color: #607792;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
  display: block
}

.bld-reactions {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.bld-reactions input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none
}

.bld-reactions label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1.5px solid #dde1ec;
  cursor: pointer;
  font-size: 17px;
  line-height: 1.3;
  color: #2a3444;
  transition: background .35s ease-in-out, border-color .35s ease-in-out, color .38s ease-in-out;
  user-select: none
}

.bld-reactions label:hover {
  background: #f0f2f7;
  border-color: #607792
}

.bld-reactions input[type="radio"]:checked+label {
  background: #3A4E69;
  border-color: #3A4E69;
  color: #fff;
  box-shadow: -1px 5px 20px -2px #3a4e691c
}

.bld-reaction-emoji {
  font-size: 21px;
  line-height: 1.1
}

.bld-like-box {
  background: linear-gradient(277deg, #3A4E69 0%, #607792 55%, #A4ADCB 100%);
  border-radius: 16px;
  padding: 32px;
  color: #fff;
  box-shadow: -1px 9px 36px -2px #3a4e691a
}

.bld-like-num {
  font-size: 51px;
  line-height: 1.1;
  font-weight: 700;
  display: block;
  margin-bottom: 8px
}

.bld-like-text {
  font-size: 15px;
  line-height: 1.55;
  opacity: .85
}

.bld-divider {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0
}

.bld-divider-line {
  flex: 1;
  height: 1.5px;
  background: #dde1ec
}

.bld-divider-accent {
  width: 48px;
  height: 3px;
  background: #3A4E69;
  border-radius: 4px;
  margin: 0 8px
}

.bld-steps {
  background: #f0f2f7;
  padding: 96px 32px
}

.bld-steps-inner {
  max-width: 1500px;
  margin: 0 auto
}

.bld-steps-head {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 32px
}

.bld-steps-h2 {
  font-size: 37px;
  line-height: 1.3;
  color: #3A4E69;
  text-transform: uppercase;
  margin: 0
}

.bld-steps-sub {
  font-size: 17px;
  line-height: 1.55;
  color: #607792;
  max-width: 400px;
  text-align: right
}

.bld-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.bld-step-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: -1px 1px 4px -2px #3a4e6912;
  position: relative;
  transition: box-shadow .41s cubic-bezier(0.34, 1.2, 0.64, 1), transform .41s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.bld-step-card:hover {
  box-shadow: -1px 9px 36px -2px #3a4e691a;
  transform: translateY(-4px)
}

.bld-step-num {
  font-size: 68px;
  line-height: 1.1;
  font-weight: 700;
  color: #A4ADCB;
  display: block;
  margin-bottom: 8px
}

.bld-step-title {
  font-size: 21px;
  line-height: 1.3;
  color: #3A4E69;
  margin: 0 0 16px
}

.bld-step-text {
  font-size: 17px;
  line-height: 1.55;
  color: #2a3444;
  margin: 0
}

.bld-step-badge {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 16px;
  border-radius: 44px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  background: #3A4E69;
  color: #fff;
  letter-spacing: .06em
}

.bld-step-card:nth-child(2) .bld-step-badge {
  background: #607792
}

.bld-step-card:nth-child(3) .bld-step-badge {
  background: linear-gradient(277deg, #3A4E69 0%, #607792 100%)
}

.bld-step-card:nth-child(1) {
  border-top: 4px solid #3A4E69
}

.bld-step-card:nth-child(2) {
  border-top: 4px solid #607792
}

.bld-step-card:nth-child(3) {
  border-top: 4px solid #A4ADCB
}

.bld-cta-strip {
  max-width: 1500px;
  margin: 0 auto;
  padding: 96px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch
}

.bld-cta-left {
  background: #3A4E69;
  border-radius: 16px 0 0 16px;
  padding: 48px;
  color: #fff;
  position: relative;
  overflow: hidden
}

.bld-cta-left::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -48px;
  right: -48px;
  width: 200px;
  height: 200px;
  border: 32px solid #a4adcb26;
  border-radius: 44px;
  pointer-events: none
}

.bld-cta-right {
  background: #fff;
  border-radius: 0 16px 16px 0;
  padding: 48px;
  box-shadow: -1px 9px 36px -2px #3a4e691a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px
}

.bld-divider-v {
  width: 2px;
  background: linear-gradient(to bottom, #A4ADCB, #3A4E69, #A4ADCB);
  align-self: stretch
}

.bld-cta-h3 {
  font-size: 37px;
  line-height: 1.3;
  margin: 0 0 16px;
  color: #fff
}

.bld-cta-p {
  font-size: 17px;
  line-height: 1.75;
  color: #ffffffe0;
  margin: 0
}

.bld-cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.bld-input {
  padding: 16px;
  border-radius: 4px;
  border: 1.5px solid #dde1ec;
  font-size: 17px;
  line-height: 1.3;
  color: #2a3444;
  background: #f5f4f1;
  outline: none;
  transition: border-color .35s ease-in-out, box-shadow .35s ease-in-out
}

.bld-input::placeholder {
  color: #2a344461
}

.bld-input:focus {
  border-color: #3A4E69;
  box-shadow: -1px 1px 4px -2px #3a4e6912
}

@keyframes bld-shake {

  0%,
  100% {
    transform: translateX(0)
  }

  20% {
    transform: translateX(-6px)
  }

  40% {
    transform: translateX(6px)
  }

  60% {
    transform: translateX(-4px)
  }

  80% {
    transform: translateX(4px)
  }
}

.bld-btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 4px;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
  background: #3A4E69;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background .38s ease-in-out, box-shadow .38s ease-in-out;
  box-shadow: -1px 5px 20px -2px #3a4e691c
}

.bld-btn:hover {
  background: #607792;
  box-shadow: -1px 9px 36px -2px #3a4e691a
}

.bld-btn:active {
  background: #2a3a52
}

.bld-btn:focus-visible {
  outline: 2.5px solid #A4ADCB;
  outline-offset: 3px
}

.bld-btn.invalid {
  animation: bld-shake .4s cubic-bezier(0.34, 1.2, 0.64, 1)
}

@media (max-width: 1024px) {
  .bld-article {
    grid-template-columns: 1fr
  }

  .bld-steps-grid {
    grid-template-columns: 1fr 1fr
  }

  .bld-cta-strip {
    grid-template-columns: 1fr
  }

  .bld-cta-left {
    border-radius: 16px 16px 0 0
  }

  .bld-cta-right {
    border-radius: 0 0 16px 16px
  }

  .bld-divider-v {
    display: none
  }
}

@media (max-width: 700px) {
  .bld-h1 {
    font-size: 37px
  }

  .bld-steps-grid {
    grid-template-columns: 1fr
  }

  .bld-steps-head {
    flex-direction: column;
    align-items: flex-start
  }

  .bld-steps-sub {
    text-align: left
  }

  .bld-prose {
    padding: 32px 16px
  }
}

.abt-auth {
  background: #f4f2ee;
  overflow-x: clip
}

.abt-auth .reveal {
  opacity: 0;
  transform: translateY(40px);
  animation: riseUp .42s cubic-bezier(0.34, 1.2, 0.64, 1) forwards
}

.abt-auth .reveal-d1 {
  animation-delay: .08s
}

.abt-auth .reveal-d2 {
  animation-delay: .18s
}

.abt-auth .reveal-d3 {
  animation-delay: .28s
}

.abt-auth .reveal-d4 {
  animation-delay: .38s
}

.abt-auth .reveal-d5 {
  animation-delay: .48s
}

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

.abt-auth ::selection {
  background: #3A4E69;
  color: #fff;
  font-weight: 700
}

.abt-auth .pg-cap {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px
}

.abt-auth .num-badge {
  font-size: 15px;
  color: #607792;
  font-weight: 700;
  display: inline-block
}

.abt-auth .accent-stripe {
  display: inline-block;
  width: 48px;
  height: 4px;
  background: linear-gradient(277deg, #3A4E69 0%, #607792 55%, #A4ADCB 100%);
  border-radius: 4px;
  vertical-align: middle;
  margin-right: 8px
}

.abt-auth .title-blk {
  position: relative;
  padding-top: 96px;
  padding-bottom: 96px;
  background: #fff;
  overflow: hidden
}

.abt-auth .title-blk-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 60% 50%, #a4adcb2e 0%, #60779212 55%, transparent 100%);
  pointer-events: none
}

.abt-auth .title-faded-num {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 280px;
  font-weight: 900;
  color: #3a4e690d;
  line-height: 1.1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap
}

.abt-auth .title-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center
}

.abt-auth .title-label {
  font-size: 15px;
  color: #607792;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px
}

.abt-auth .title-h1 {
  font-size: 51px;
  line-height: 1.1;
  color: #3A4E69;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 16px
}

.abt-auth .title-sub {
  font-size: 21px;
  line-height: 1.55;
  color: #3A4E69;
  font-weight: 400;
  margin-bottom: 32px
}

.abt-auth .title-desc {
  font-size: 17px;
  line-height: 1.75;
  color: #4a5f78;
  margin-bottom: 32px;
  max-width: 520px
}

.abt-auth .title-link {
  display: inline-block;
  padding: 16px 32px;
  background: #3A4E69;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: -1px 5px 20px -2px #3a4e691c;
  transition: background .38s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .38s ease-in-out
}

.abt-auth .title-link:hover {
  background: #607792;
  box-shadow: -1px 9px 36px -2px #3a4e691a
}

.abt-auth .title-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: -1px 9px 36px -2px #3a4e691a
}

.abt-auth .title-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) contrast(1.15);
  transition: filter .42s ease-in-out
}

.abt-auth .title-img-wrap:hover img {
  filter: grayscale(0%) contrast(1)
}

.abt-auth .title-img-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  overflow: hidden;
  pointer-events: none
}

.abt-auth .title-img-corner::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 80px;
  height: 80px;
  background: linear-gradient(277deg, #3A4E69 0%, #607792 55%, #A4ADCB 100%);
  transform: rotate(45deg)
}

.abt-auth .divider-curve {
  width: 100%;
  line-height: 0;
  overflow: hidden
}

.abt-auth .divider-curve svg {
  display: block;
  width: 100%
}

.abt-auth .profile-blk {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #fff;
  position: relative
}

.abt-auth .profile-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 48px;
  align-items: start
}

.abt-auth .portrait-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px
}

.abt-auth .portrait-ring {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: -1px 5px 20px -2px #3a4e691c;
  border: 4px solid #A4ADCB;
  flex-shrink: 0
}

.abt-auth .portrait-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: filter .4s ease-in-out
}

.abt-auth .portrait-ring:hover img {
  filter: saturate(0)
}

.abt-auth .portrait-name {
  font-size: 21px;
  font-weight: 700;
  color: #3A4E69;
  text-align: center;
  line-height: 1.3
}

.abt-auth .portrait-role {
  font-size: 15px;
  color: #607792;
  text-align: center;
  line-height: 1.55
}

.abt-auth .bio-col h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #3A4E69;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase
}

.abt-auth .bio-col p {
  font-size: 17px;
  line-height: 1.75;
  color: #4a5f78;
  margin-bottom: 16px
}

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

.abt-auth .skills-col h3 {
  font-size: 21px;
  line-height: 1.3;
  color: #3A4E69;
  font-weight: 700;
  margin-bottom: 8px
}

.abt-auth .skill-item {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.abt-auth .skill-label {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 15px;
  color: #3A4E69;
  font-weight: 600
}

.abt-auth .skill-bar-bg {
  width: 100%;
  height: 8px;
  background: #e8ecf2;
  border-radius: 4px;
  overflow: hidden
}

.abt-auth .skill-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(277deg, #3A4E69 0%, #607792 55%, #A4ADCB 100%);
  animation: barGrow .45s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
  transform-origin: left
}

@keyframes barGrow {
  from {
    transform: scaleX(0)
  }

  to {
    transform: scaleX(1)
  }
}

.abt-auth .line-divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  max-width: 1500px;
  margin: 0 auto
}

.abt-auth .line-divider .ld-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #A4ADCB, transparent)
}

.abt-auth .line-divider .ld-center {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #A4ADCB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.abt-auth .line-divider .ld-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(277deg, #3A4E69 0%, #607792 100%)
}

.abt-auth .diag-blk {
  position: relative;
  padding-top: 96px;
  padding-bottom: 96px;
  overflow: hidden
}

.abt-auth .diag-bg-left {
  position: absolute;
  inset: 0;
  background: #3A4E69;
  clip-path: polygon(0 0, 62% 0, 52% 100%, 0 100%);
  pointer-events: none
}

.abt-auth .diag-bg-right {
  position: absolute;
  inset: 0;
  background: #f4f2ee;
  clip-path: polygon(62% 0, 100% 0, 100% 100%, 52% 100%);
  pointer-events: none
}

.abt-auth .diag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  position: relative
}

.abt-auth .diag-text h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #fff;
  font-weight: 800;
  margin-bottom: 16px
}

.abt-auth .diag-text p {
  font-size: 17px;
  line-height: 1.75;
  color: #ffffffd1;
  margin-bottom: 16px
}

.abt-auth .diag-text .diag-link {
  display: inline-block;
  padding: 16px 32px;
  background: #fff;
  color: #3A4E69;
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 8px;
  box-shadow: -1px 5px 20px -2px #3a4e691c;
  transition: background .35s cubic-bezier(0.34, 1.2, 0.64, 1), color .35s ease-in-out
}

.abt-auth .diag-text .diag-link:hover {
  background: #A4ADCB;
  color: #fff
}

.abt-auth .chart-panel {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: -1px 9px 36px -2px #3a4e691a
}

.abt-auth .chart-panel h3 {
  font-size: 21px;
  line-height: 1.3;
  color: #3A4E69;
  font-weight: 700;
  margin-bottom: 32px
}

.abt-auth .stacked-chart {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.abt-auth .sc-row {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.abt-auth .sc-label-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 15px;
  color: #3A4E69;
  font-weight: 600
}

.abt-auth .sc-bar-track {
  width: 100%;
  height: 24px;
  background: #e8ecf2;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: row
}

.abt-auth .sc-seg {
  height: 100%;
  transition: opacity .38s ease-in-out
}

.abt-auth .sc-seg:hover {
  opacity: .75
}

.abt-auth .sc-seg-a {
  background: #3A4E69
}

.abt-auth .sc-seg-b {
  background: #607792
}

.abt-auth .sc-seg-c {
  background: #A4ADCB
}

.abt-auth .sc-legend {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap
}

.abt-auth .sc-leg-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #607792
}

.abt-auth .sc-leg-dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  flex-shrink: 0
}

.abt-auth .four-col-blk {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #fff;
  position: relative;
  overflow: hidden
}

.abt-auth .fib-bg {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 500px;
  height: 500px;
  opacity: .04;
  pointer-events: none
}

.abt-auth .four-col-head {
  margin-bottom: 48px
}

.abt-auth .four-col-head h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #3A4E69;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px
}

.abt-auth .four-col-head p {
  font-size: 17px;
  line-height: 1.75;
  color: #4a5f78;
  max-width: 640px
}

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

.abt-auth .col-card {
  background: #f4f2ee;
  border-radius: 16px;
  padding: 32px;
  box-shadow: -1px 1px 4px -2px #3a4e6912;
  transition: box-shadow .4s cubic-bezier(0.34, 1.2, 0.64, 1), transform .4s cubic-bezier(0.34, 1.2, 0.64, 1);
  position: relative
}

.abt-auth .col-card:hover {
  box-shadow: -1px 9px 36px -2px #3a4e691a;
  transform: translateY(-4px)
}

.abt-auth .col-card-num {
  font-size: 37px;
  font-weight: 900;
  color: #A4ADCB;
  line-height: 1.1;
  margin-bottom: 8px
}

.abt-auth .col-card h4 {
  font-size: 17px;
  line-height: 1.3;
  color: #3A4E69;
  font-weight: 700;
  margin-bottom: 8px
}

.abt-auth .col-card p {
  font-size: 15px;
  line-height: 1.75;
  color: #4a5f78
}

.abt-auth .col-card-accent {
  background: linear-gradient(277deg, #3A4E69 0%, #607792 55%, #A4ADCB 100%);
  color: #fff;
  position: relative;
  overflow: hidden
}

.abt-auth .col-card-accent .col-card-num {
  color: #ffffff59
}

.abt-auth .col-card-accent h4 {
  color: #fff
}

.abt-auth .col-card-accent p {
  color: #ffffffd9
}

.abt-auth .accent-img-wrap {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 16px;
  box-shadow: -1px 1px 4px -2px #3a4e6912
}

.abt-auth .accent-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: filter .43s ease-in-out
}

.abt-auth .col-card-accent:hover .accent-img-wrap img {
  filter: saturate(0)
}

.abt-auth .portrait2-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #ffffff40
}

.abt-auth .portrait2-ring {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #fff6
}

.abt-auth .portrait2-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.abt-auth .portrait2-info {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.abt-auth .portrait2-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3
}

.abt-auth .portrait2-role {
  font-size: 15px;
  color: #ffffffb8;
  line-height: 1.3
}

@media (max-width: 1024px) {
  .abt-auth .title-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .abt-auth .title-h1 {
    font-size: 37px
  }

  .abt-auth .profile-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .abt-auth .portrait-col {
    flex-direction: row;
    align-items: center;
    gap: 32px
  }

  .abt-auth .diag-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .abt-auth .diag-bg-left {
    clip-path: polygon(0 0, 100% 0, 100% 48%, 0 48%)
  }

  .abt-auth .diag-bg-right {
    clip-path: polygon(0 48%, 100% 48%, 100% 100%, 0 100%)
  }

  .abt-auth .diag-text h2,
  .abt-auth .diag-text p {
    color: #fff
  }

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

  .abt-auth .title-faded-num {
    font-size: 140px
  }
}

@media (max-width: 640px) {
  .abt-auth .four-grid {
    grid-template-columns: 1fr
  }

  .abt-auth .title-h1 {
    font-size: 37px
  }

  .abt-auth .pg-cap {
    padding-left: 16px;
    padding-right: 16px
  }

  .abt-auth .portrait-col {
    flex-direction: column
  }
}

.subsc-pg {
  overflow-x: hidden
}

.subsc-pg .reveal-clip {
  animation: clipReveal .42s cubic-bezier(0.34, 1.2, 0.64, 1) both
}

.subsc-pg .reveal-clip-2 {
  animation: clipReveal .42s cubic-bezier(0.34, 1.2, 0.64, 1) .12s both
}

.subsc-pg .reveal-clip-3 {
  animation: clipReveal .42s cubic-bezier(0.34, 1.2, 0.64, 1) .22s both
}

@keyframes clipReveal {
  from {
    clip-path: inset(0 50% 0 50%);
    opacity: 0
  }

  to {
    clip-path: inset(0 0% 0 0%);
    opacity: 1
  }
}

.subsc-pg .slide-left {
  animation: slideLeft .38s cubic-bezier(0.34, 1.2, 0.64, 1) both
}

.subsc-pg .slide-left-2 {
  animation: slideLeft .38s cubic-bezier(0.34, 1.2, 0.64, 1) .1s both
}

.subsc-pg .slide-left-3 {
  animation: slideLeft .4s ease-in-out .18s both
}

.subsc-pg .slide-left-4 {
  animation: slideLeft .44s ease-in-out .26s both
}

@keyframes slideLeft {
  from {
    transform: translateX(-48px);
    opacity: 0
  }

  to {
    transform: translateX(0);
    opacity: 1
  }
}

.subsc-pg .band-top {
  background: linear-gradient(277deg, #3A4E69 0%, #607792 55%, #A4ADCB 100%);
  background-size: 300% 300%;
  animation: gradShift 8s ease-in-out infinite alternate;
  position: relative;
  padding: 48px 32px;
  overflow: hidden
}

@keyframes gradShift {
  0% {
    background-position: 0 50%
  }

  100% {
    background-position: 100% 50%
  }
}

.subsc-pg .band-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M0 0h80v80H0z' fill='none'/%3E%3Cpath d='M0 20h80M0 40h80M0 60h80M20 0v80M40 0v80M60 0v80' stroke='#ffffff0f' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none
}

.subsc-pg .band-top-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1
}

.subsc-pg .band-text {
  flex: 1 1 0;
  min-width: 0
}

.subsc-pg .band-label {
  display: inline-block;
  font-size: 15px;
  line-height: 1.3;
  color: #ffffffb8;
  background: #ffffff1a;
  border-radius: 44px;
  padding: 8px 16px;
  margin-bottom: 16px
}

.subsc-pg .band-h1 {
  font-size: 51px;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 16px
}

.subsc-pg .band-desc {
  font-size: 17px;
  line-height: 1.55;
  color: #ffffffd9;
  max-width: 520px
}

.subsc-pg .band-img-col {
  flex: 0 0 340px;
  width: 340px;
  position: relative
}

.subsc-pg .band-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  width: 100%;
  box-shadow: -1px 9px 36px -2px #3a4e691a
}

.subsc-pg .band-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.subsc-pg .band-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #3a4e698c 0%, transparent 60%);
  pointer-events: none
}

.subsc-pg .band-img-wrap {
  position: relative
}

.subsc-pg .corner-rects {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 64px;
  height: 64px;
  pointer-events: none
}

.subsc-pg .corner-rects span {
  position: absolute;
  border: 1px solid #ffffff40;
  border-radius: 4px
}

.subsc-pg .corner-rects span:nth-child(1) {
  inset: 0
}

.subsc-pg .corner-rects span:nth-child(2) {
  inset: 10px
}

.subsc-pg .corner-rects span:nth-child(3) {
  inset: 20px
}

.subsc-pg .divider-tri {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 0;
  background: #f2f4f7
}

.subsc-pg .divider-tri svg {
  display: block
}

.subsc-pg .info-section {
  background: #f2f4f7;
  padding: 96px 32px
}

.subsc-pg .info-inner {
  max-width: 1500px;
  margin: 0 auto
}

.subsc-pg .info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr;
  gap: 32px;
  align-items: start
}

.subsc-pg .info-main-card {
  background: #fff;
  border-radius: 16px;
  padding: 48px;
  box-shadow: -1px 5px 20px -2px #6077921c;
  position: relative
}

.subsc-pg .info-main-card-label {
  font-size: 15px;
  line-height: 1.3;
  color: #607792;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block
}

.subsc-pg .info-main-card h2 {
  font-size: 37px;
  line-height: 1.3;
  color: #3A4E69;
  margin-bottom: 16px
}

.subsc-pg .info-main-card p {
  font-size: 17px;
  line-height: 1.55;
  color: #3c4a5a;
  margin-bottom: 16px
}

.subsc-pg .info-main-card p:last-of-type {
  margin-bottom: 0
}

.subsc-pg .corner-rects-dark {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  pointer-events: none
}

.subsc-pg .corner-rects-dark span {
  position: absolute;
  border: 1px solid #3a4e6924;
  border-radius: 4px
}

.subsc-pg .corner-rects-dark span:nth-child(1) {
  inset: 0
}

.subsc-pg .corner-rects-dark span:nth-child(2) {
  inset: 8px
}

.subsc-pg .corner-rects-dark span:nth-child(3) {
  inset: 16px
}

.subsc-pg .side-col {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.subsc-pg .topic-card {
  background: #3A4E69;
  border-radius: 16px;
  padding: 32px;
  box-shadow: -1px 5px 20px -2px #3a4e691c
}

.subsc-pg .topic-card h3 {
  font-size: 21px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 16px
}

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

.subsc-pg .topic-list li {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
  font-size: 15px;
  line-height: 1.55;
  color: #ffffffd1;
  padding: 8px 0;
  border-bottom: 1px solid #ffffff1a
}

.subsc-pg .topic-list li:last-child {
  border-bottom: none
}

.subsc-pg .topic-num {
  font-size: 15px;
  color: #A4ADCB;
  font-weight: 700;
  flex-shrink: 0;
  margin-left: 16px
}

.subsc-pg .icon-chain-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: -1px 1px 4px -2px #3a4e6912
}

.subsc-pg .icon-chain-card h4 {
  font-size: 17px;
  line-height: 1.3;
  color: #3A4E69;
  margin-bottom: 16px
}

.subsc-pg .icon-chain {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0
}

.subsc-pg .icon-node {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  width: 100%
}

.subsc-pg .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 44px;
  background: linear-gradient(277deg, #3A4E69 0%, #607792 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: -1px 5px 20px -2px #3a4e691c
}

.subsc-pg .icon-circle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.subsc-pg .icon-label {
  font-size: 15px;
  line-height: 1.3;
  color: #3c4a5a
}

.subsc-pg .icon-dash {
  width: 2px;
  height: 24px;
  border-left: 2px dashed #A4ADCB;
  margin-left: 21px
}

.subsc-pg .wide-card {
  background: #fff;
  border-radius: 16px;
  padding: 48px;
  box-shadow: -1px 5px 20px -2px #6077921c;
  position: relative
}

.subsc-pg .wide-card h3 {
  font-size: 21px;
  line-height: 1.3;
  color: #3A4E69;
  margin-bottom: 16px
}

.subsc-pg .wide-card p {
  font-size: 17px;
  line-height: 1.55;
  color: #3c4a5a;
  margin-bottom: 16px
}

.subsc-pg .wide-card p:last-of-type {
  margin-bottom: 0
}

.subsc-pg .keyword-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px
}

.subsc-pg .kw-tag {
  font-size: 15px;
  line-height: 1.3;
  color: #3A4E69;
  background: #a4adcb2e;
  border-radius: 44px;
  padding: 8px 16px;
  transition: background .35s cubic-bezier(0.34, 1.2, 0.64, 1), color .35s cubic-bezier(0.34, 1.2, 0.64, 1);
  cursor: default
}

.subsc-pg .kw-tag:hover {
  background: #3A4E69;
  color: #fff
}

.subsc-pg .contact-link {
  color: #607792;
  text-decoration: underline;
  transition: color .38s ease-in-out
}

.subsc-pg .contact-link:hover {
  color: #3A4E69
}

@media (max-width: 1024px) {
  .subsc-pg .info-grid {
    grid-template-columns: 1fr 1fr
  }

  .subsc-pg .info-main-card {
    grid-column: 1 / -1
  }
}

@media (max-width: 720px) {
  .subsc-pg .band-top-inner {
    flex-direction: column;
    gap: 32px
  }

  .subsc-pg .band-img-col {
    flex: none;
    width: 100%
  }

  .subsc-pg .band-h1 {
    font-size: 37px
  }

  .subsc-pg .info-grid {
    grid-template-columns: 1fr
  }

  .subsc-pg .info-main-card {
    grid-column: auto;
    padding: 32px
  }

  .subsc-pg .wide-card {
    padding: 32px
  }

  .subsc-pg .info-section {
    padding: 48px 16px
  }

  .subsc-pg .band-top {
    padding: 48px 16px
  }
}

.frnt {
  background: #fff;
  overflow-x: clip
}

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

.frnt .title-area {
  position: relative;
  padding: 96px 32px;
  background: linear-gradient(277deg, #3A4E69 0%, #607792 55%, #A4ADCB 100%);
  background-size: 300% 300%;
  animation: gradshift 8s ease-in-out infinite;
  overflow: hidden
}

@keyframes gradshift {
  0% {
    background-position: 0 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0 50%
  }
}

.frnt .title-blob {
  position: absolute;
  border-radius: 44px;
  filter: blur(48px);
  pointer-events: none;
  opacity: .22
}

.frnt .title-blob.b1 {
  width: 320px;
  height: 320px;
  background: #A4ADCB;
  top: -80px;
  left: -60px
}

.frnt .title-blob.b2 {
  width: 240px;
  height: 240px;
  background: #3A4E69;
  bottom: -60px;
  right: 80px
}

.frnt .title-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1
}

.frnt .title-text {
  flex: 1 1 0;
  min-width: 0
}

.frnt .title-label {
  display: inline-block;
  font-size: 15px;
  line-height: 1.3;
  color: #A4ADCB;
  background: #3a4e6961;
  border-radius: 4px;
  padding: 8px 16px;
  margin-bottom: 16px
}

.frnt .title-h1 {
  font-size: 51px;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 16px
}

.frnt .title-desc {
  font-size: 17px;
  line-height: 1.55;
  color: #ffffffe0;
  margin-bottom: 32px;
  max-width: 520px
}

.frnt .title-link {
  display: inline-block;
  font-size: 15px;
  line-height: 1.3;
  color: #fff;
  background: #3a4e698c;
  border-radius: 44px;
  padding: 16px 32px;
  text-decoration: none;
  border: 2px solid #ffffff59;
  transition: background .38s cubic-bezier(0.34, 1.2, 0.64, 1), border-color .38s ease-in-out
}

.frnt .title-link:hover {
  background: #3a4e69d9;
  border-color: #ffffffb3
}

.frnt .title-img-wrap {
  flex: 0 0 420px;
  width: 420px;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: -1px 9px 36px -2px #3a4e691a
}

.frnt .title-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.frnt .title-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(277deg, #3a4e699e 0%, #60779247 60%, transparent 100%)
}

.frnt .arrow-deco {
  position: absolute;
  right: 32px;
  bottom: 32px;
  width: 32px;
  height: 32px;
  opacity: .35;
  pointer-events: none
}

.frnt .arrow-deco svg {
  width: 32px;
  height: 32px
}

.frnt .post-strip {
  padding: 96px 32px;
  background: #f4f5f8
}

.frnt .post-strip-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start
}

.frnt .post-strip-label {
  flex: 0 0 200px;
  padding-top: 8px
}

.frnt .post-strip-label h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #3A4E69;
  text-transform: uppercase;
  margin-bottom: 16px
}

.frnt .post-strip-label p {
  font-size: 15px;
  line-height: 1.55;
  color: #607792
}

.frnt .post-card-area {
  flex: 1 1 0;
  min-width: 0
}

.frnt .post-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: -1px 5px 20px -2px #3a4e691c;
  display: flex;
  flex-direction: row;
  gap: 0;
  overflow: hidden;
  transition: box-shadow .41s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.frnt .post-card:hover {
  box-shadow: -1px 9px 36px -2px #3a4e691a
}

.frnt .post-card-img {
  flex: 0 0 280px;
  width: 280px;
  aspect-ratio: 4/3;
  overflow: hidden
}

.frnt .post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .44s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.frnt .post-card:hover .post-card-img img {
  transform: scale(1.04)
}

.frnt .post-card-body {
  flex: 1 1 0;
  min-width: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.frnt .post-tag {
  display: inline-block;
  font-size: 15px;
  line-height: 1.3;
  color: #607792;
  background: #a4adcb2e;
  border-radius: 4px;
  padding: 8px 16px;
  align-self: flex-start
}

.frnt .post-card-body h3 {
  font-size: 21px;
  line-height: 1.3;
  color: #3A4E69;
  margin: 0
}

.frnt .post-card-body p {
  font-size: 15px;
  line-height: 1.55;
  color: #607792;
  margin: 0
}

.frnt .post-read-link {
  display: inline-block;
  font-size: 15px;
  line-height: 1.3;
  color: #3A4E69;
  text-decoration: underline;
  align-self: flex-start;
  transition: color .35s ease-in-out
}

.frnt .post-read-link:hover {
  color: #607792
}

.frnt .post-likes {
  font-size: 15px;
  line-height: 1.3;
  color: #A4ADCB;
  margin-top: auto
}

.frnt .nums-band {
  padding: 48px 32px;
  background: #fff;
  border-top: 1px solid #a4adcb40;
  border-bottom: 1px solid #a4adcb40
}

.frnt .nums-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
  justify-content: space-between
}

.frnt .num-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start
}

.frnt .num-val {
  font-size: 51px;
  line-height: 1.1;
  color: #3A4E69
}

.frnt .num-desc {
  font-size: 15px;
  line-height: 1.3;
  color: #607792
}

.frnt .num-dot {
  width: 8px;
  height: 8px;
  border-radius: 44px;
  background: #A4ADCB;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle
}

.frnt .author-block {
  padding: 96px 32px;
  background: linear-gradient(277deg, #a4adcb21 0%, #60779212 60%, #fff 100%)
}

.frnt .author-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start
}

.frnt .author-portrait {
  flex: 0 0 220px;
  width: 220px;
  height: 220px;
  overflow: hidden;
  box-shadow: -1px 5px 20px -2px #3a4e691c
}

.frnt .author-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.frnt .author-text {
  flex: 1 1 0;
  min-width: 0
}

.frnt .author-eyebrow {
  font-size: 15px;
  line-height: 1.3;
  color: #A4ADCB;
  margin-bottom: 16px
}

.frnt .author-text h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #3A4E69;
  margin-bottom: 16px
}

.frnt .author-text p {
  font-size: 17px;
  line-height: 1.55;
  color: #607792;
  margin-bottom: 16px;
  max-width: 600px
}

.frnt .author-link {
  font-size: 15px;
  line-height: 1.3;
  color: #3A4E69;
  text-decoration: underline;
  transition: color .37s ease-in-out
}

.frnt .author-link:hover {
  color: #607792
}

.frnt .topic-map {
  padding: 96px 32px;
  background: #3A4E69
}

.frnt .topic-map-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start
}

.frnt .topic-left {
  flex: 0 0 260px
}

.frnt .topic-left h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 16px
}

.frnt .topic-left p {
  font-size: 15px;
  line-height: 1.55;
  color: #ffffffb3
}

.frnt .topic-tags {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px
}

.frnt .topic-tag {
  display: inline-block;
  font-size: 15px;
  line-height: 1.3;
  color: #fff;
  background: #ffffff1a;
  border-radius: 4px;
  padding: 16px 32px;
  text-decoration: none;
  border: 1px solid #ffffff2e;
  transition: background .39s cubic-bezier(0.34, 1.2, 0.64, 1), border-color .39s ease-in-out
}

.frnt .topic-tag:hover {
  background: #ffffff38;
  border-color: #ffffff73
}

.frnt .ed-pick {
  padding: 96px 32px;
  background: #fff
}

.frnt .ed-pick-inner {
  max-width: 1500px;
  margin: 0 auto
}

.frnt .ed-pick-head {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-end;
  margin-bottom: 48px
}

.frnt .ed-pick-head h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #3A4E69;
  flex: 1 1 0
}

.frnt .ed-pick-head p {
  font-size: 15px;
  line-height: 1.55;
  color: #607792;
  flex: 0 0 340px;
  max-width: 340px
}

.frnt .ed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px
}

.frnt .ed-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: -1px 1px 4px -2px #3a4e6912;
  display: flex;
  flex-direction: column;
  background: #f4f5f8;
  transition: box-shadow .42s cubic-bezier(0.34, 1.2, 0.64, 1), background .42s ease-in-out
}

.frnt .ed-item:hover {
  box-shadow: -1px 9px 36px -2px #3a4e691a;
  background: #edf0f5
}

.frnt .ed-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden
}

.frnt .ed-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .45s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.frnt .ed-item:hover .ed-img img {
  transform: scale(1.05)
}

.frnt .ed-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto
}

.frnt .ed-body h4 {
  font-size: 17px;
  line-height: 1.3;
  color: #3A4E69;
  margin: 0
}

.frnt .ed-body p {
  font-size: 15px;
  line-height: 1.55;
  color: #607792;
  margin: 0
}

.frnt .ed-body a {
  font-size: 15px;
  line-height: 1.3;
  color: #3A4E69;
  text-decoration: underline;
  margin-top: 8px;
  align-self: flex-start;
  transition: color .35s ease-in-out
}

.frnt .ed-body a:hover {
  color: #607792
}

.frnt .adj-topics {
  padding: 96px 32px;
  background: linear-gradient(277deg, #3a4e690f 0%, #a4adcb17 55%, #6077920a 100%)
}

.frnt .adj-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 48px
}

.frnt .adj-text {
  flex: 0 0 300px
}

.frnt .adj-text h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #3A4E69;
  margin-bottom: 16px
}

.frnt .adj-text p {
  font-size: 17px;
  line-height: 1.55;
  color: #607792
}

.frnt .adj-list {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.frnt .adj-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  background: #fff;
  border-radius: 16px;
  box-shadow: -1px 1px 4px -2px #3a4e6912;
  transition: box-shadow .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.frnt .adj-row:hover {
  box-shadow: -1px 5px 20px -2px #3a4e691c
}

.frnt .adj-num {
  font-size: 21px;
  line-height: 1.1;
  color: #A4ADCB;
  flex: 0 0 32px;
  text-align: right
}

.frnt .adj-row-text {
  flex: 1 1 0;
  min-width: 0
}

.frnt .adj-row-text h5 {
  font-size: 17px;
  line-height: 1.3;
  color: #3A4E69;
  margin: 0 0 8px
}

.frnt .adj-row-text p {
  font-size: 15px;
  line-height: 1.55;
  color: #607792;
  margin: 0
}

.frnt .adj-arrow {
  flex: 0 0 24px;
  display: flex;
  align-items: center;
  justify-content: center
}

.frnt .adj-arrow svg {
  width: 20px;
  height: 20px;
  stroke: #A4ADCB
}

.frnt .process-band {
  padding: 96px 32px;
  background: #fff
}

.frnt .process-inner {
  max-width: 1500px;
  margin: 0 auto
}

.frnt .process-inner h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #3A4E69;
  margin-bottom: 8px
}

.frnt .process-sub {
  font-size: 17px;
  line-height: 1.55;
  color: #607792;
  margin-bottom: 48px;
  max-width: 560px
}

.frnt .process-steps {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: stretch
}

.frnt .proc-step {
  flex: 1 1 0;
  padding: 32px;
  background: #f4f5f8;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.frnt .proc-step:first-child {
  border-radius: 16px 0 0 16px
}

.frnt .proc-step:last-child {
  border-radius: 0 16px 16px 0
}

.frnt .proc-arrow {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 32px;
  height: 32px;
  background: #3A4E69;
  border-radius: 44px;
  display: flex;
  align-items: center;
  justify-content: center
}

.frnt .proc-arrow svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  flex-shrink: 0
}

.frnt .proc-num {
  font-size: 37px;
  line-height: 1.1;
  color: #A4ADCB
}

.frnt .proc-step h5 {
  font-size: 17px;
  line-height: 1.3;
  color: #3A4E69;
  margin: 0
}

.frnt .proc-step p {
  font-size: 15px;
  line-height: 1.55;
  color: #607792;
  margin: 0
}

.frnt .conv-block {
  padding: 96px 32px;
  background: #3A4E69
}

.frnt .conv-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center
}

.frnt .conv-img-wrap {
  flex: 0 0 360px;
  width: 360px;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: -1px 9px 36px -2px #3a4e691a
}

.frnt .conv-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.frnt .conv-text {
  flex: 1 1 0;
  min-width: 0
}

.frnt .conv-text h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px
}

.frnt .conv-text p {
  font-size: 17px;
  line-height: 1.55;
  color: #fffc;
  margin-bottom: 32px;
  max-width: 520px
}

.frnt .conv-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px
}

.frnt .conv-input {
  font-size: 15px;
  line-height: 1.55;
  color: #3A4E69;
  background: #fff;
  border: 2px solid transparent !important;
  border-radius: 4px;
  padding: 16px;
  width: 100%;
  outline: none;
  transition: border-color .36s ease-in-out;
  box-shadow: inset 0 1px 2px #3a4e6912
}

.frnt .conv-input::placeholder {
  color: #3a4e6961
}

.frnt .conv-input:focus {
  border-color: #A4ADCB !important
}

.frnt .conv-textarea {
  min-height: 96px;
  resize: vertical
}

.frnt .conv-btn {
  font-size: 15px;
  line-height: 1.3;
  color: #3A4E69;
  background: #fff;
  border: none;
  border-radius: 44px;
  padding: 16px 32px;
  cursor: pointer;
  align-self: flex-start;
  transition: background .37s cubic-bezier(0.34, 1.2, 0.64, 1), color .37s ease-in-out
}

.frnt .conv-btn:hover {
  background: #A4ADCB;
  color: #fff
}

.frnt .conv-btn.shake {
  animation: btnshake .4s cubic-bezier(0.34, 1.2, 0.64, 1)
}

@keyframes btnshake {
  0% {
    transform: translateX(0)
  }

  20% {
    transform: translateX(-6px)
  }

  40% {
    transform: translateX(6px)
  }

  60% {
    transform: translateX(-4px)
  }

  80% {
    transform: translateX(4px)
  }

  100% {
    transform: translateX(0)
  }
}

.frnt .sub-block {
  padding: 96px 32px;
  background: #fff
}

.frnt .sub-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start
}

.frnt .sub-img {
  flex: 0 0 340px;
  width: 340px;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: -1px 5px 20px -2px #3a4e691c
}

.frnt .sub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.frnt .sub-text {
  flex: 1 1 0;
  min-width: 0
}

.frnt .sub-text h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #3A4E69;
  margin-bottom: 16px
}

.frnt .sub-text p {
  font-size: 17px;
  line-height: 1.55;
  color: #607792;
  margin-bottom: 32px;
  max-width: 520px
}

.frnt .sub-form {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  max-width: 480px
}

.frnt .sub-email {
  flex: 1 1 0;
  font-size: 15px;
  line-height: 1.55;
  color: #3A4E69;
  background: #f4f5f8;
  border: 2px solid #a4adcb4d;
  border-radius: 4px;
  padding: 16px;
  outline: none;
  transition: border-color .36s ease-in-out
}

.frnt .sub-email::placeholder {
  color: #3a4e6959
}

.frnt .sub-email:focus {
  border-color: #607792
}

.frnt .sub-btn {
  font-size: 15px;
  line-height: 1.3;
  color: #fff;
  background: #3A4E69;
  border: none;
  border-radius: 44px;
  padding: 16px 32px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .39s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.frnt .sub-btn:hover {
  background: #607792
}

.frnt .sub-btn.shake {
  animation: btnshake .4s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.frnt .sub-note {
  font-size: 15px;
  line-height: 1.3;
  color: #A4ADCB;
  margin-top: 16px
}

.frnt .settle-el {
  animation: settlerot .45s cubic-bezier(0.34, 1.2, 0.64, 1) both;
  animation-delay: .15s
}

@keyframes settlerot {
  0% {
    transform: rotate(-4deg) translateY(12px);
    opacity: 0
  }

  100% {
    transform: rotate(0deg) translateY(0);
    opacity: 1
  }
}

@media (max-width: 900px) {

  .frnt .title-inner,
  .frnt .post-strip-inner,
  .frnt .author-inner,
  .frnt .topic-map-inner,
  .frnt .adj-inner,
  .frnt .conv-inner,
  .frnt .sub-inner {
    flex-direction: column
  }

  .frnt .title-img-wrap,
  .frnt .conv-img-wrap,
  .frnt .sub-img {
    flex: none;
    width: 100%
  }

  .frnt .ed-grid {
    grid-template-columns: 1fr
  }

  .frnt .process-steps {
    flex-direction: column
  }

  .frnt .proc-step:first-child {
    border-radius: 16px 16px 0 0
  }

  .frnt .proc-step:last-child {
    border-radius: 0 0 16px 16px
  }

  .frnt .proc-arrow {
    right: auto;
    bottom: -16px;
    top: auto;
    transform: none;
    left: 50%;
    margin-left: -16px;
    rotate: 90deg
  }

  .frnt .nums-inner {
    flex-wrap: wrap;
    gap: 32px
  }

  .frnt .sub-form {
    flex-direction: column;
    align-items: stretch
  }

  .frnt .topic-left {
    flex: none;
    width: 100%
  }

  .frnt .adj-text {
    flex: none;
    width: 100%
  }

  .frnt .post-card {
    flex-direction: column
  }

  .frnt .post-card-img {
    flex: none;
    width: 100%
  }

  .frnt .post-strip-label {
    flex: none;
    width: 100%
  }

  .frnt .ed-pick-head {
    flex-direction: column;
    align-items: flex-start
  }

  .frnt .ed-pick-head p {
    flex: none;
    max-width: 100%
  }
}

.blg-root {
  background: #f4f6f9;
  overflow-x: hidden
}

.blg-root .page-top {
  background: #3A4E69;
  padding: 96px 32px;
  position: relative
}

.blg-root .page-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(277deg, #3A4E69 0%, #607792 55%, #A4ADCB 100%);
  opacity: .18;
  pointer-events: none
}

.blg-root .page-top-geo {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 220px;
  height: 220px;
  border: 2px solid #a4adcb2e;
  border-radius: 16px;
  transform: translateY(-50%) rotate(18deg);
  animation: blg-geo-spin 22s linear infinite;
  pointer-events: none
}

@keyframes blg-geo-spin {
  from {
    transform: translateY(-50%) rotate(18deg)
  }

  to {
    transform: translateY(-50%) rotate(378deg)
  }
}

.blg-root .page-top-inner {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.blg-root .page-top-label {
  font-size: 15px;
  line-height: 1.55;
  color: #A4ADCB;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px
}

.blg-root .page-top-h1 {
  font-size: 51px;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  max-width: 680px;
  margin-bottom: 16px
}

.blg-root .page-top-sub {
  font-size: 17px;
  line-height: 1.55;
  color: #d0d8e8;
  max-width: 520px
}

.blg-root .divider-curve {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px
}

.blg-root .divider-curve svg {
  display: block;
  width: 100%
}

.blg-root .posts-band {
  background: #fff;
  padding: 96px 32px
}

.blg-root .posts-inner {
  max-width: 1500px;
  margin: 0 auto
}

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

@media (max-width: 1024px) {
  .blg-root .posts-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 640px) {
  .blg-root .posts-grid {
    grid-template-columns: 1fr
  }

  .blg-root .page-top-h1 {
    font-size: 37px
  }
}

.blg-root .post-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: -1px 5px 20px -2px #3a4e691c;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .38s cubic-bezier(0.34, 1.2, 0.64, 1), transform .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.blg-root .post-card:hover {
  box-shadow: -1px 9px 36px -2px #3a4e692e;
  transform: translateY(-4px)
}

.blg-root .post-card:nth-child(1) {
  animation: blg-cascade .42s cubic-bezier(0.34, 1.2, 0.64, 1) both;
  animation-delay: .05s
}

.blg-root .post-card:nth-child(2) {
  animation: blg-cascade .42s cubic-bezier(0.34, 1.2, 0.64, 1) both;
  animation-delay: .13s
}

.blg-root .post-card:nth-child(3) {
  animation: blg-cascade .42s cubic-bezier(0.34, 1.2, 0.64, 1) both;
  animation-delay: .21s
}

.blg-root .post-card:nth-child(4) {
  animation: blg-cascade .42s cubic-bezier(0.34, 1.2, 0.64, 1) both;
  animation-delay: .29s
}

.blg-root .post-card:nth-child(5) {
  animation: blg-cascade .42s cubic-bezier(0.34, 1.2, 0.64, 1) both;
  animation-delay: .37s
}

@keyframes blg-cascade {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

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

.blg-root .post-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  width: 100%;
  flex-shrink: 0
}

.blg-root .post-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease-in-out
}

.blg-root .post-card:hover .post-img-wrap img {
  transform: scale(1.04)
}

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

.blg-root .post-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px
}

.blg-root .post-tag {
  font-size: 15px;
  line-height: 1.3;
  padding: 4px 16px;
  border-radius: 44px;
  background: #6077921a;
  color: #3A4E69;
  font-weight: 600;
  text-decoration: none;
  display: inline-block
}

.blg-root .post-tag.theme {
  background: #3a4e6912;
  color: #607792;
  font-weight: 400
}

.blg-root .post-h {
  font-size: 21px;
  line-height: 1.3;
  color: #2a3848;
  font-weight: 700;
  margin-bottom: 16px;
  text-decoration: none;
  display: block
}

.blg-root .post-h:hover {
  color: #3A4E69;
  text-decoration: underline
}

.blg-root .post-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #4a5a6e;
  margin-bottom: 16px;
  flex: 1
}

.blg-root .post-foot {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid #6077921f
}

.blg-root .post-likes {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #607792
}

.blg-root .post-likes-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex-shrink: 0
}

.blg-root .post-read-btn {
  font-size: 15px;
  line-height: 1.3;
  padding: 8px 16px;
  border-radius: 4px;
  background: #3A4E69;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background .35s cubic-bezier(0.34, 1.2, 0.64, 1);
  display: inline-block
}

.blg-root .post-read-btn:hover {
  background: #607792
}

.blg-root .divider-wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0
}

.blg-root .divider-wave svg {
  display: block;
  width: 100%
}

.blg-root .info-band {
  background: linear-gradient(277deg, #3A4E69 0%, #607792 62%, #A4ADCB 100%);
  padding: 96px 32px;
  position: relative
}

.blg-root .info-band-texture {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(0deg, #ffffff08 0px, #ffffff08 1px, transparent 1px, transparent 32px), repeating-linear-gradient(90deg, #ffffff08 0px, #ffffff08 1px, transparent 1px, transparent 32px);
  pointer-events: none
}

.blg-root .info-inner {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center
}

@media (max-width: 860px) {
  .blg-root .info-inner {
    grid-template-columns: 1fr
  }
}

.blg-root .info-text-col {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.blg-root .info-kicker {
  font-size: 15px;
  line-height: 1.55;
  color: #A4ADCB;
  text-transform: uppercase;
  letter-spacing: .07em
}

.blg-root .info-h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700
}

.blg-root .info-p {
  font-size: 17px;
  line-height: 1.75;
  color: #d0d8e8;
  max-width: 480px
}

.blg-root .info-p a {
  color: #A4ADCB;
  text-decoration: underline
}

.blg-root .info-chart-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px
}

.blg-root .donut-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  flex-shrink: 0
}

.blg-root .donut-wrap svg {
  width: 220px;
  height: 220px;
  transform: rotate(-90deg)
}

.blg-root .donut-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center
}

.blg-root .donut-num {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
  display: block
}

.blg-root .donut-label {
  font-size: 15px;
  line-height: 1.3;
  color: #A4ADCB;
  display: block
}

.blg-root .donut-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 280px
}

.blg-root .legend-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  line-height: 1.55;
  color: #d0d8e8
}

.blg-root .legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  flex-shrink: 0
}

.blg-root .divider-slope {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0
}

.blg-root .divider-slope svg {
  display: block;
  width: 100%
}

.blg-root .compare-band {
  background: #f4f6f9;
  padding: 96px 32px
}

.blg-root .compare-inner {
  max-width: 1500px;
  margin: 0 auto
}

.blg-root .compare-head {
  margin-bottom: 48px
}

.blg-root .compare-h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #2a3848;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px
}

.blg-root .compare-sub {
  font-size: 17px;
  line-height: 1.55;
  color: #4a5a6e;
  max-width: 560px
}

.blg-root .compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px
}

@media (max-width: 720px) {
  .blg-root .compare-grid {
    grid-template-columns: 1fr
  }
}

.blg-root .compare-card {
  border-radius: 16px;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: -1px 5px 20px -2px #3a4e691c;
  position: relative
}

.blg-root .compare-card.opt-a {
  background: #fff;
  box-shadow: -1px 5px 20px -2px #3a4e691c inset 0 1px 2px #3a4e690f
}

.blg-root .compare-card.opt-b {
  background: #3A4E69;
  box-shadow: -1px 9px 36px -2px #3a4e692e
}

.blg-root .compare-card-badge {
  font-size: 15px;
  line-height: 1.3;
  padding: 4px 16px;
  border-radius: 44px;
  display: inline-block;
  align-self: flex-start;
  font-weight: 600
}

.blg-root .compare-card.opt-a .compare-card-badge {
  background: #6077921a;
  color: #607792
}

.blg-root .compare-card.opt-b .compare-card-badge {
  background: #a4adcb2e;
  color: #A4ADCB
}

.blg-root .compare-card-h {
  font-size: 21px;
  line-height: 1.3;
  font-weight: 700
}

.blg-root .compare-card.opt-a .compare-card-h {
  color: #2a3848
}

.blg-root .compare-card.opt-b .compare-card-h {
  color: #fff
}

.blg-root .compare-card-p {
  font-size: 15px;
  line-height: 1.75
}

.blg-root .compare-card.opt-a .compare-card-p {
  color: #4a5a6e
}

.blg-root .compare-card.opt-b .compare-card-p {
  color: #c8d4e4
}

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

.blg-root .compare-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  line-height: 1.55;
  padding-bottom: 8px;
  border-bottom: 1px solid #6077921a
}

.blg-root .compare-card.opt-b .compare-list li {
  border-bottom-color: #a4adcb1f
}

.blg-root .compare-list li span.li-label {
  flex: 1
}

.blg-root .compare-card.opt-a .compare-list li {
  color: #3a4a5e
}

.blg-root .compare-card.opt-b .compare-list li {
  color: #c8d4e4
}

.blg-root .compare-list li span.li-val {
  font-weight: 700;
  color: #3A4E69;
  flex-shrink: 0
}

.blg-root .compare-card.opt-b .compare-list li span.li-val {
  color: #A4ADCB
}

.blg-root .compare-img-row {
  margin-top: 48px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  max-height: 380px;
  box-shadow: -1px 9px 36px -2px #3a4e6921
}

.blg-root .compare-img-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.blg-root .newsletter-band {
  background: #fff;
  padding: 96px 32px
}

.blg-root .newsletter-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center
}

@media (max-width: 860px) {
  .blg-root .newsletter-inner {
    grid-template-columns: 1fr
  }
}

.blg-root .nl-text {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.blg-root .nl-kicker {
  font-size: 15px;
  line-height: 1.55;
  color: #607792;
  text-transform: uppercase;
  letter-spacing: .07em
}

.blg-root .nl-h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #2a3848;
  font-weight: 700
}

.blg-root .nl-p {
  font-size: 17px;
  line-height: 1.75;
  color: #4a5a6e
}

.blg-root .nl-form-col {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.blg-root .nl-form {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.blg-root .nl-input {
  font-size: 17px;
  line-height: 1.55;
  padding: 16px;
  border-radius: 4px;
  border: 1.5px solid #60779240;
  background: #f4f6f9;
  color: #2a3848;
  outline: none;
  transition: border-color .35s ease-in-out;
  box-shadow: inset 0 1px 2px #3a4e690f
}

.blg-root .nl-input::placeholder {
  color: #4a5a6e73
}

.blg-root .nl-input:focus {
  border-color: #3A4E69;
  background: #fff
}

.blg-root .nl-btn {
  font-size: 17px;
  line-height: 1.3;
  padding: 16px 32px;
  border-radius: 4px;
  background: #3A4E69;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: background .38s cubic-bezier(0.34, 1.2, 0.64, 1);
  align-self: flex-start
}

.blg-root .nl-btn:hover {
  background: #607792
}

.blg-root .nl-btn:active {
  background: #2a3848
}

@keyframes blg-shake {

  0%,
  100% {
    transform: translateX(0)
  }

  20% {
    transform: translateX(-6px)
  }

  40% {
    transform: translateX(6px)
  }

  60% {
    transform: translateX(-4px)
  }

  80% {
    transform: translateX(4px)
  }
}

.blg-root .nl-btn.shake {
  animation: blg-shake .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.blg-root .nl-note {
  font-size: 15px;
  line-height: 1.55;
  color: #8a9aae
}

@keyframes blg-angle-shift {
  0% {
    background-position: 0 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0 50%
  }
}

.success-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 32px;
  background: #f5f6f8
}

.success-page .success-card {
  max-width: 560px;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 48px;
  box-shadow: -1px 5px 20px -2px #3a4e691c;
  text-align: center
}

.success-page .success-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 44px;
  background: linear-gradient(277deg, #A4ADCB 0%, #607792 45%, #3A4E69 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px
}

.success-page .success-icon-wrap svg {
  display: block
}

.success-page .success-heading {
  font-size: 37px;
  line-height: 1.1;
  color: #3A4E69;
  margin: 0 0 16px;
  text-transform: uppercase
}

.success-page .success-text {
  font-size: 17px;
  line-height: 1.55;
  color: #607792;
  margin: 0 0 32px
}

.success-page .success-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(277deg, #A4ADCB 0%, #3A4E69 100%);
  border-radius: 4px;
  margin: 0 auto 32px
}

.success-page .success-note {
  font-size: 15px;
  line-height: 1.55;
  color: #607792;
  margin: 0 0 32px;
  padding: 16px;
  background: #f5f6f8;
  border-radius: 4px
}

.success-page .success-back-btn {
  display: inline-block;
  padding: 16px 32px;
  background: #3A4E69;
  color: #fff;
  font-size: 15px;
  line-height: 1.3;
  border-radius: 4px;
  text-decoration: none;
  transition: background .38s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .42s ease-in-out;
  box-shadow: -1px 1px 4px -2px #3a4e6912
}

.success-page .success-back-btn:hover {
  background: #607792;
  box-shadow: -1px 5px 20px -2px #3a4e691c
}

.success-page .success-back-btn:focus {
  outline: 2px solid #3A4E69;
  outline-offset: 3px
}

.intrvw-pg {
  background: #f4f2ee;
  overflow-x: clip
}

.intrvw-pg .dot-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #3a4e6921 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0
}

.intrvw-pg .title-row {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  padding: 96px 48px 48px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center
}

.intrvw-pg .title-left {
  position: relative;
  z-index: 1
}

.intrvw-pg .eyebrow {
  display: inline-block;
  font-size: 15px;
  line-height: 1.3;
  color: #607792;
  background: #6077921a;
  padding: 8px 16px;
  border-radius: 44px;
  margin-bottom: 32px
}

.intrvw-pg .main-heading {
  font-size: 68px;
  line-height: 1.1;
  color: #3A4E69;
  text-transform: uppercase;
  margin-bottom: 32px;
  max-width: 680px
}

.intrvw-pg .sub-text {
  font-size: 21px;
  line-height: 1.55;
  color: #3A4E69;
  max-width: 520px;
  margin-bottom: 32px
}

.intrvw-pg .tag-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap
}

.intrvw-pg .tag {
  font-size: 15px;
  line-height: 1.3;
  color: #3A4E69;
  border: 1.5px solid #3a4e6940;
  border-radius: 44px;
  padding: 8px 16px
}

.intrvw-pg .title-img-col {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: -1px 9px 36px -2px #3a4e691a
}

.intrvw-pg .title-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.intrvw-pg .title-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(277deg, #3a4e69b8 0%, #60779261 55%, transparent 100%)
}

.intrvw-pg .img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  font-size: 15px;
  line-height: 1.3;
  color: #fff;
  background: #3a4e69d1;
  transform: translateY(100%);
  transition: transform .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.intrvw-pg .title-img-col:hover .img-caption {
  transform: translateY(0)
}

.intrvw-pg .divider-a {
  height: 3px;
  background: linear-gradient(277deg, #A4ADCB 0%, #3A4E69 60%, #607792 100%);
  border: none;
  margin: 0
}

.intrvw-pg .person-band {
  background: #fff;
  padding: 48px 0
}

.intrvw-pg .person-band-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start
}

.intrvw-pg .person-card {
  background: #f4f2ee;
  border-radius: 16px;
  padding: 32px;
  box-shadow: -1px 5px 20px -2px #6077921c;
  position: relative
}

.intrvw-pg .person-card::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 0;
  bottom: 16px;
  width: 3px;
  background: linear-gradient(277deg, #A4ADCB 0%, #3A4E69 100%);
  border-radius: 4px
}

.intrvw-pg .person-avatar {
  width: 80px;
  height: 80px;
  border-radius: 44px;
  background: linear-gradient(277deg, #3A4E69 0%, #A4ADCB 100%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px
}

.intrvw-pg .avatar-initials {
  font-size: 21px;
  line-height: 1.1;
  color: #fff;
  font-weight: 700
}

.intrvw-pg .person-name {
  font-size: 21px;
  line-height: 1.3;
  color: #3A4E69;
  margin-bottom: 8px
}

.intrvw-pg .person-role {
  font-size: 15px;
  line-height: 1.55;
  color: #607792;
  margin-bottom: 16px
}

.intrvw-pg .person-fact {
  font-size: 15px;
  line-height: 1.55;
  color: #3A4E69
}

.intrvw-pg .interview-meta {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.intrvw-pg .meta-heading {
  font-size: 37px;
  line-height: 1.3;
  color: #3A4E69;
  margin-bottom: 16px
}

.intrvw-pg .meta-body {
  font-size: 17px;
  line-height: 1.75;
  color: #3A4E69
}

.intrvw-pg .meta-body+.meta-body {
  margin-top: -16px
}

.intrvw-pg .divider-b {
  height: 1px;
  background: linear-gradient(277deg, transparent 0%, #A4ADCB 40%, #607792 100%);
  border: none;
  margin: 0
}

.intrvw-pg .qa-section {
  background: linear-gradient(277deg, #f4f2ee 0%, #a4adcb2e 55%, #f4f2ee 100%);
  padding: 96px 0
}

.intrvw-pg .qa-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 48px
}

.intrvw-pg .qa-label {
  font-size: 15px;
  line-height: 1.3;
  color: #607792;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 48px
}

.intrvw-pg .qa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start
}

.intrvw-pg .qa-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: -1px 1px 4px -2px #3a4e6912;
  transition: box-shadow .42s cubic-bezier(0.34, 1.2, 0.64, 1), transform .42s cubic-bezier(0.34, 1.2, 0.64, 1);
  position: relative
}

.intrvw-pg .qa-card:hover {
  box-shadow: -1px 9px 36px -2px #3a4e691a;
  transform: translateY(-4px)
}

.intrvw-pg .qa-card.tall {
  padding-top: 48px;
  padding-bottom: 48px
}

.intrvw-pg .qa-num {
  font-size: 51px;
  line-height: 1.1;
  color: #a4adcb66;
  font-weight: 700;
  position: absolute;
  top: 16px;
  right: 16px
}

.intrvw-pg .qa-q {
  font-size: 17px;
  line-height: 1.55;
  color: #607792;
  margin-bottom: 16px;
  font-style: italic
}

.intrvw-pg .qa-a {
  font-size: 17px;
  line-height: 1.75;
  color: #3A4E69
}

.intrvw-pg .divider-c {
  height: 2px;
  background: linear-gradient(277deg, #607792 0%, #A4ADCB 50%, transparent 100%);
  border: none;
  margin: 0
}

.intrvw-pg .closing-band {
  background: #3A4E69;
  padding: 96px 0
}

.intrvw-pg .closing-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start
}

.intrvw-pg .closing-left {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.intrvw-pg .closing-heading {
  font-size: 51px;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase
}

.intrvw-pg .closing-body {
  font-size: 17px;
  line-height: 1.75;
  color: #A4ADCB
}

.intrvw-pg .closing-link {
  display: inline-block;
  font-size: 17px;
  line-height: 1.3;
  color: #fff;
  background: #a4adcb2e;
  border-radius: 4px;
  padding: 16px 32px;
  text-decoration: none;
  border: 1.5px solid #a4adcb66;
  transition: background .35s ease-in-out, border-color .35s ease-in-out;
  align-self: flex-start
}

.intrvw-pg .closing-link:hover {
  background: #a4adcb52;
  border-color: #A4ADCB
}

.intrvw-pg .closing-right {
  display: flex;
  flex-direction: column;
  gap: 32px
}

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

.intrvw-pg .keyword-list li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  line-height: 1.55;
  color: #A4ADCB;
  padding: 8px 0;
  border-bottom: 1px solid #a4adcb26
}

.intrvw-pg .keyword-list li span.kw-num {
  font-size: 21px;
  line-height: 1.1;
  color: #607792;
  font-weight: 700;
  min-width: 32px;
  text-align: right
}

.intrvw-pg .closing-sub {
  font-size: 21px;
  line-height: 1.3;
  color: #fff
}

@media (max-width: 1024px) {
  .intrvw-pg .title-row {
    grid-template-columns: 1fr;
    padding: 48px 32px
  }

  .intrvw-pg .title-img-col {
    max-width: 480px
  }

  .intrvw-pg .person-band-inner {
    grid-template-columns: 1fr;
    padding: 0 32px
  }

  .intrvw-pg .qa-grid {
    grid-template-columns: 1fr 1fr
  }

  .intrvw-pg .closing-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 32px
  }

  .intrvw-pg .qa-inner {
    padding: 0 32px
  }

  .intrvw-pg .main-heading {
    font-size: 51px
  }
}

@media (max-width: 640px) {
  .intrvw-pg .qa-grid {
    grid-template-columns: 1fr
  }

  .intrvw-pg .main-heading {
    font-size: 37px
  }

  .intrvw-pg .title-row {
    padding: 48px 16px 32px
  }

  .intrvw-pg .qa-inner,
  .intrvw-pg .person-band-inner,
  .intrvw-pg .closing-inner {
    padding: 0 16px
  }

  .intrvw-pg .closing-heading {
    font-size: 37px
  }
}