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

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

body {
  margin: 0;
  padding: 0;
  overscroll-behavior: contain;
  overflow-x: hidden;
  font-family: 'Archivo', sans-serif
}

.sitehead {
  background-color: #132436;
  position: relative
}

.sitehead-accent {
  height: 4px;
  background: linear-gradient(90deg, #D895CC 0%, #c47ab5 60%, #132436 100%)
}

.sitehead-upper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px 48px;
  gap: 24px
}

.sitehead-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0
}

.sitehead-brand-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  background-color: #fff;
  border-radius: 4px;
  padding: 6px;
  box-shadow: 0 3px 5px -1px #d895cc0f 0 6px 28px -1px #d895cc1c
}

.sitehead-brandname {
  font-family: 'Archivo', sans-serif;
  font-size: 23px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .01em;
  line-height: 1.2
}

.sitehead-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px
}

.sitehead-contact a {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  color: #D895CC;
  text-decoration: none;
  line-height: 1.6;
  transition: color .2s ease-out
}

.sitehead-contact a:focus {
  outline: none;
  box-shadow: 0 0 0 3px #d895cc73;
  border-radius: 4px
}

.sitehead-contact a:hover {
  color: #fff
}

.sitehead-contact .contactlabel {
  font-size: 16px;
  color: #8eaabf;
  display: flex;
  align-items: center;
  gap: 6px
}

.sitehead-lower {
  border-top: 1px solid #d895cc2e;
  background-color: #0e1c2a
}

.sitehead-nav {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap
}

.sitehead-nav a {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #c9dae6;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  line-height: 1.6;
  letter-spacing: .02em;
  display: inline-block;
  transition: color .2s ease-out, background-color .25s ease-out;
  min-height: 44px;
  display: flex;
  align-items: center
}

.sitehead-nav a:hover {
  color: #fff;
  background-color: #d895cc1f
}

.sitehead-nav a:focus {
  outline: none;
  box-shadow: 0 0 0 3px #d895cc73
}

.sitehead-nav a.active {
  color: #D895CC;
  font-weight: 700
}

.sitehead-nav-divider {
  width: 1px;
  height: 20px;
  background-color: #d895cc33;
  flex-shrink: 0
}

@media (max-width: 992px) {
  .sitehead-upper {
    padding: 24px
  }

  .sitehead-nav {
    padding: 0 24px
  }

  .sitehead-contact {
    display: none
  }
}

@media (max-width: 576px) {
  .sitehead-upper {
    padding: 12px
  }

  .sitehead-nav {
    padding: 0 12px;
    gap: 0
  }

  .sitehead-nav a {
    padding: 12px;
    font-size: 16px
  }

  .sitehead-nav-divider {
    display: none
  }
}

.sitefooter {
  background-color: #132436;
  border-top: 3px solid #D895CC
}

.sitefooter-body {
  max-width: 1600px;
  margin: 0 auto;
  padding: 48px 48px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px
}

.footcol-brand .footlogobox {
  margin-bottom: 24px
}

.footcol-brand .footlogobox img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  background-color: #fff;
  border-radius: 4px;
  padding: 6px;
  box-shadow: 0 3px 5px -1px #d895cc0f 0 6px 28px -1px #d895cc1c
}

.footcol-brand .footbrandname {
  font-family: 'Archivo', sans-serif;
  font-size: 23px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px
}

.footcol-brand .footdesc {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  color: #8eaabf;
  line-height: 1.9
}

.footcol h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #D895CC;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 24px
}

.footcol ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footcol ul li a {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  color: #c9dae6;
  text-decoration: none;
  line-height: 1.6;
  transition: color .2s ease-out;
  display: flex;
  align-items: center;
  gap: 6px
}

.footcol ul li a:hover {
  color: #D895CC
}

.footcol ul li a:focus {
  outline: none;
  box-shadow: 0 0 0 3px #d895cc73;
  border-radius: 4px
}

.footcol-contact .contactitem {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px
}

.footcol-contact .contactitem-label {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  color: #8eaabf;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 6px
}

.footcol-contact .contactitem-val {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  color: #c9dae6;
  line-height: 1.6;
  text-decoration: none;
  transition: color .2s ease-out
}

.footcol-contact .contactitem-val:hover {
  color: #D895CC
}

.footcol-contact .contactitem-val:focus {
  outline: none;
  box-shadow: 0 0 0 3px #d895cc73;
  border-radius: 4px
}

.footcol-hours .hoursrow {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px
}

.footcol-hours .hoursday {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  color: #8eaabf;
  line-height: 1.6
}

.footcol-hours .hourstime {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  color: #c9dae6;
  line-height: 1.6;
  font-weight: 700
}

.sitefooter-bottom {
  border-top: 1px solid #d895cc26;
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px
}

.sitefooter-copy {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  color: #8eaabf;
  line-height: 1.6
}

.sitefooter-legalnav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap
}

.sitefooter-legalnav a {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  color: #8eaabf;
  text-decoration: none;
  line-height: 1.6;
  transition: color .2s ease-out
}

.sitefooter-legalnav a:hover {
  color: #D895CC
}

.sitefooter-legalnav a:focus {
  outline: none;
  box-shadow: 0 0 0 3px #d895cc73;
  border-radius: 4px
}

.sitefooter-cookielink {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  color: #D895CC;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  transition: color .2s ease-out
}

.sitefooter-cookielink:hover {
  color: #fff
}

.sitefooter-cookielink:focus {
  outline: none;
  box-shadow: 0 0 0 3px #d895cc73;
  border-radius: 4px
}

@media (max-width: 992px) {
  .sitefooter-body {
    grid-template-columns: 1fr 1fr;
    padding: 48px 24px 24px;
    gap: 24px
  }

  .sitefooter-bottom {
    padding: 24px
  }
}

@media (max-width: 576px) {
  .sitefooter-body {
    grid-template-columns: 1fr;
    padding: 24px 12px
  }

  .sitefooter-bottom {
    padding: 12px;
    flex-direction: column;
    align-items: flex-start
  }

  .sitefooter-legalnav {
    gap: 12px
  }
}

.cookiepop {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 380px;
  width: calc(100vw - 48px);
  background-color: #132436;
  border: 1px solid #d895cc4d;
  border-radius: 4px;
  padding: 24px;
  z-index: 1200;
  box-shadow: 0 8px 52px -1px #d895cc21;
  opacity: 0;
  transition: opacity .22s ease-out
}

.cookiepop.visible {
  opacity: 1
}

.cookiepop-desc {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  color: #c9dae6;
  line-height: 1.9;
  margin-bottom: 12px
}

.cookiepop-desc a {
  color: #D895CC;
  text-decoration: underline;
  transition: color .2s ease-out
}

.cookiepop-desc a:hover {
  color: #fff
}

.cookiepop-headline {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px
}

.cookiepop-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.cookiepop-btns button {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  line-height: 1.2;
  min-height: 44px;
  transition: background-color .2s ease-out, color .2s ease-out, border-color .2s ease-out
}

.cookiepop-btns button:focus {
  outline: none;
  box-shadow: 0 0 0 3px #d895cc73
}

.cookiebtn-ok {
  background-color: transparent;
  color: #D895CC;
  border: 1px solid #D895CC
}

.cookiebtn-ok:hover {
  background-color: #D895CC;
  color: #132436
}

.cookiebtn-no {
  background-color: transparent;
  color: #8eaabf;
  border: 1px solid #8eaabf66
}

.cookiebtn-no:hover {
  background-color: #8eaabf26;
  color: #c9dae6;
  border-color: #8eaabf
}

.content-doc {
  max-width: 1600px;
  margin: 0 auto;
  padding: 48px 24px
}

.content-doc p {
  font-size: 16px;
  line-height: 1.9;
  color: #132436;
  margin-bottom: 24px;
  letter-spacing: .01em
}

.content-doc ul,
.content-doc ol {
  margin: 0 0 24px;
  padding-left: 24px
}

.content-doc li {
  font-size: 16px;
  line-height: 1.9;
  color: #132436;
  margin-bottom: 6px;
  letter-spacing: .01em
}

.content-doc ul li {
  list-style-type: disc
}

.content-doc ol li {
  list-style-type: decimal
}

.content-doc ul ul,
.content-doc ol ol,
.content-doc ul ol,
.content-doc ol ul {
  margin-top: 6px;
  margin-bottom: 6px
}

.content-doc a {
  color: #D895CC;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .2s ease-out, text-decoration-color .15s ease-out
}

.content-doc a:hover {
  color: #132436;
  text-decoration-color: #132436
}

.content-doc a:visited {
  color: #b870a8
}

.content-doc table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 48px;
  font-size: 16px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 3px 5px -1px #d495cc0f 0 6px 28px -1px #d495cc1c
}

.content-doc thead {
  background-color: #132436
}

.content-doc thead th {
  color: #F8F8F8;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 12px 24px;
  text-align: left;
  line-height: 1.6
}

.content-doc tbody tr {
  border-bottom: 1px solid #1324361a;
  transition: background-color .2s ease-out
}

.content-doc tbody tr:last-child {
  border-bottom: none
}

.content-doc tbody tr:nth-child(even) {
  background-color: #d895cc0d
}

.content-doc tbody tr:hover {
  background-color: #d895cc1a
}

.content-doc td {
  color: #132436;
  font-size: 16px;
  line-height: 1.6;
  padding: 12px 24px;
  vertical-align: top
}

.content-doc th {
  font-size: 16px;
  line-height: 1.6
}

.content-doc hr {
  border: none;
  border-top: 1px solid #13243626;
  margin: 48px 0
}

@media (max-width: 576px) {
  .content-doc {
    padding: 24px 12px
  }

  .content-doc table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }

  .content-doc thead th,
  .content-doc td {
    padding: 12px
  }
}

@media (min-width: 576px) and (max-width: 992px) {
  .content-doc {
    padding: 48px 24px
  }
}

@media (min-width: 992px) {
  .content-doc {
    padding: 96px 48px
  }

  .content-doc p,
  .content-doc li {
    font-size: 16px
  }
}

.lrntp {
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: clip
}

.lrntp .reveal-scale {
  animation: scaleReveal .45s ease-out both
}

@keyframes scaleReveal {
  from {
    transform: scale(0.9);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

.lrntp .reveal-scale.delay1 {
  animation-delay: .1s
}

.lrntp .reveal-scale.delay2 {
  animation-delay: .2s
}

.lrntp .reveal-scale.delay3 {
  animation-delay: .28s
}

.lrntp .clip-expand {
  animation: clipExpand .38s ease-out both
}

@keyframes clipExpand {
  from {
    clip-path: inset(0 45% round 4px)
  }

  to {
    clip-path: inset(0 0% round 4px)
  }
}

.lrntp .pg-hero {
  position: relative;
  padding: 96px 48px;
  background: linear-gradient(160deg, #e8d4e4 0%, #c5a8be 40%, #132436 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.lrntp .pg-hero .atm-spot {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
  z-index: 0
}

.lrntp .pg-hero .atm-spot.a1 {
  width: 340px;
  height: 340px;
  background: #D895CC;
  opacity: .22;
  top: -48px;
  right: 10%
}

.lrntp .pg-hero .atm-spot.a2 {
  width: 220px;
  height: 220px;
  background: #132436;
  opacity: .18;
  bottom: 24px;
  left: 8%
}

.lrntp .pg-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px
}

.lrntp .pg-hero-inner .eyebrow {
  display: inline-block;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .18em;
  color: #D895CC;
  text-transform: uppercase;
  margin-bottom: 24px
}

.lrntp .pg-hero-inner h1 {
  font-size: 58px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 24px
}

.lrntp .pg-hero-inner h1 .big-word {
  font-size: 72px;
  line-height: 1.2;
  display: block;
  color: #fff
}

.lrntp .pg-hero-inner .sub {
  font-size: 23px;
  line-height: 1.6;
  color: #ffffffd1;
  max-width: 560px;
  margin: 0 auto 48px
}

.lrntp .pg-hero-inner .hero-img-wrap {
  width: 100%;
  max-width: 820px;
  border-radius: 22px;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 8px 52px -1px #d395cc21
}

.lrntp .pg-hero-inner .hero-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(100%);
  transition: filter .25s ease-out
}

.lrntp .pg-hero-inner .hero-img-wrap:hover img {
  filter: grayscale(60%)
}

.lrntp .tips-grid-sec {
  padding: 96px 48px;
  background: #fff;
  position: relative
}

.lrntp .tips-grid-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #fff 55%, #f0e6ee 100%);
  pointer-events: none;
  z-index: 0
}

.lrntp .tips-grid-sec .sec-label {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .16em;
  color: #D895CC;
  text-transform: uppercase;
  margin-bottom: 12px
}

.lrntp .tips-grid-sec h2 {
  position: relative;
  z-index: 1;
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #132436;
  text-align: center;
  margin-bottom: 48px
}

.lrntp .tips-grid-sec h2 .big {
  font-size: 58px;
  display: block
}

.lrntp .tips-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 48px
}

.lrntp .tip-card {
  background: #fff;
  border-radius: 22px;
  padding: 48px 24px 36px;
  text-align: center;
  box-shadow: 0 6px 28px -1px #1324361c;
  transition: transform .22s ease-out, box-shadow .22s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center
}

.lrntp .tip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 52px -1px #13243621
}

.lrntp .tip-card .num-ring {
  width: 64px;
  height: 64px;
  position: relative;
  margin-bottom: 24px;
  flex-shrink: 0
}

.lrntp .tip-card .num-ring svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px
}

.lrntp .tip-card .num-ring .num-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 23px;
  line-height: 1.2;
  color: #132436;
  font-weight: 700
}

.lrntp .tip-card h3 {
  font-size: 23px;
  line-height: 1.2;
  color: #132436;
  margin-bottom: 12px
}

.lrntp .tip-card p {
  font-size: 16px;
  line-height: 1.9;
  color: #3a4f63;
  margin: 0
}

.lrntp .tip-card .card-icon {
  font-size: 23px;
  color: #D895CC;
  margin-bottom: 12px
}

.lrntp .feature-stack-sec {
  padding: 96px 48px;
  background: #132436;
  position: relative
}

.lrntp .feature-stack-sec .diag-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(120deg, #132436 60%, #1e3850 100%);
  pointer-events: none;
  z-index: 0
}

.lrntp .feature-stack-sec .deco-lines {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 120px;
  height: 120px;
  pointer-events: none;
  z-index: 0;
  opacity: .12;
  overflow: hidden
}

.lrntp .feature-stack-sec .deco-lines svg {
  width: 100%;
  height: 100%
}

.lrntp .feature-stack-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto
}

.lrntp .feature-stack-inner .sec-top {
  text-align: center;
  margin-bottom: 48px
}

.lrntp .feature-stack-inner .sec-top .eyebrow {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .16em;
  color: #D895CC;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px
}

.lrntp .feature-stack-inner .sec-top h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -.01em;
  margin-bottom: 12px
}

.lrntp .feature-stack-inner .sec-top h2 .big {
  font-size: 58px;
  display: block
}

.lrntp .feature-stack-inner .sec-top p {
  font-size: 16px;
  line-height: 1.9;
  color: #ffffffb8;
  max-width: 520px;
  margin: 0 auto
}

.lrntp .feat-list {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.lrntp .feat-item {
  display: grid;
  grid-template-columns: 72px 1fr 420px;
  gap: 24px;
  align-items: center;
  background: #ffffff0d;
  border-radius: 22px;
  padding: 36px 48px;
  transition: background .2s ease-out
}

.lrntp .feat-item:hover {
  background: #ffffff17
}

.lrntp .feat-item.alt {
  grid-template-columns: 420px 1fr 72px
}

.lrntp .feat-item.alt .feat-icon-col {
  order: 3
}

.lrntp .feat-item.alt .feat-body {
  order: 2;
  text-align: right
}

.lrntp .feat-item.alt .feat-img-col {
  order: 1
}

.lrntp .feat-icon-col {
  display: flex;
  align-items: center;
  justify-content: center
}

.lrntp .feat-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 22px;
  background: #d895cc2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  color: #D895CC
}

.lrntp .feat-body h4 {
  font-size: 23px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px
}

.lrntp .feat-body p {
  font-size: 16px;
  line-height: 1.9;
  color: #ffffffb3;
  margin: 0
}

.lrntp .feat-img-col {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 28px -1px #1324361c
}

.lrntp .feat-img-col img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .3s ease-out, brightness .3s ease-out
}

.lrntp .feat-img-col:hover img {
  transform: scale(1.04);
  filter: brightness(1.08)
}

.lrntp .voices-sec {
  padding: 96px 48px;
  background: #fff;
  position: relative
}

.lrntp .voices-sec .two-tone {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(135deg, #f0e6ee 0%, #e8d4e4 100%);
  clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
  pointer-events: none;
  z-index: 0
}

.lrntp .voices-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto
}

.lrntp .voices-inner .sec-top {
  text-align: center;
  margin-bottom: 48px
}

.lrntp .voices-inner .sec-top .eyebrow {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .16em;
  color: #D895CC;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px
}

.lrntp .voices-inner .sec-top h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #132436;
  letter-spacing: -.01em;
  margin-bottom: 0
}

.lrntp .voices-inner .sec-top h2 .big {
  font-size: 58px;
  display: block
}

.lrntp .voices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px
}

.lrntp .voice-card {
  background: #fff;
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 6px 28px -1px #1324361c;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.lrntp .voice-card .vc-quote {
  font-size: 16px;
  line-height: 1.9;
  color: #132436;
  margin: 0
}

.lrntp .voice-card .vc-person {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px
}

.lrntp .voice-card .vc-portrait {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 3px 5px -1px #d395cc0f
}

.lrntp .voice-card .vc-portrait img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: filter .2s ease-out
}

.lrntp .voice-card .vc-portrait:hover img {
  filter: brightness(1.08)
}

.lrntp .voice-card .vc-meta strong {
  display: block;
  font-size: 16px;
  line-height: 1.6;
  color: #132436
}

.lrntp .voice-card .vc-meta span {
  font-size: 16px;
  line-height: 1.6;
  color: #7a8fa3
}

.lrntp .cta-band {
  background: #D895CC;
  border-radius: 22px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 8px 52px -1px #d395cc21
}

.lrntp .cta-band h3 {
  font-size: 42px;
  line-height: 1.2;
  color: #132436;
  margin-bottom: 12px
}

.lrntp .cta-band p {
  font-size: 16px;
  line-height: 1.9;
  color: #132436;
  max-width: 480px;
  margin: 0 auto 24px
}

.lrntp .btn-ghost {
  display: inline-block;
  padding: 12px 48px;
  border-radius: 4px;
  border: 2px solid #132436;
  background: transparent;
  color: #132436;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .06em;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease-out, color .18s ease-out
}

.lrntp .btn-ghost:hover {
  background: #132436;
  color: #fff
}

.lrntp .svg-divider {
  display: block;
  width: 100%;
  line-height: 0;
  margin: 0
}

@media (max-width: 992px) {
  .lrntp .tips-grid {
    grid-template-columns: 1fr 1fr
  }

  .lrntp .feat-item {
    grid-template-columns: 1fr;
    padding: 24px
  }

  .lrntp .feat-item.alt {
    grid-template-columns: 1fr
  }

  .lrntp .feat-item.alt .feat-icon-col,
  .lrntp .feat-item.alt .feat-body,
  .lrntp .feat-item.alt .feat-img-col {
    order: unset;
    text-align: left
  }

  .lrntp .voices-grid {
    grid-template-columns: 1fr
  }

  .lrntp .pg-hero-inner h1 {
    font-size: 42px
  }

  .lrntp .pg-hero-inner h1 .big-word {
    font-size: 58px
  }
}

@media (max-width: 576px) {
  .lrntp .pg-hero {
    padding: 48px 24px
  }

  .lrntp .pg-hero-inner h1 {
    font-size: 42px
  }

  .lrntp .pg-hero-inner h1 .big-word {
    font-size: 42px
  }

  .lrntp .pg-hero-inner .sub {
    font-size: 16px
  }

  .lrntp .pg-hero-inner .hero-img-wrap img {
    height: 220px
  }

  .lrntp .tips-grid {
    grid-template-columns: 1fr
  }

  .lrntp .tips-grid-sec {
    padding: 48px 24px
  }

  .lrntp .feature-stack-sec {
    padding: 48px 24px
  }

  .lrntp .voices-sec {
    padding: 48px 24px
  }

  .lrntp .cta-band {
    padding: 48px 24px
  }

  .lrntp .cta-band h3 {
    font-size: 23px
  }

  .lrntp .feature-stack-inner .sec-top h2 {
    font-size: 23px
  }

  .lrntp .feature-stack-inner .sec-top h2 .big {
    font-size: 42px
  }
}

.abus {
  overflow-x: hidden
}

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

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

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

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

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

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

@keyframes geoPulse {

  0%,
  100% {
    opacity: .18;
    transform: scale(1)
  }

  50% {
    opacity: .32;
    transform: scale(1.12)
  }
}

.abus .reveal-left {
  animation: slideInLeft .42s ease-out both
}

.abus .reveal-right {
  animation: slideInRight .38s ease-out both
}

.abus .reveal-up {
  animation: fadeUp .35s ease-out both
}

.abus .reveal-left:nth-child(2),
.abus .reveal-right:nth-child(2) {
  animation-delay: .1s
}

.abus .reveal-left:nth-child(3),
.abus .reveal-right:nth-child(3) {
  animation-delay: .2s
}

.abus .titblk {
  max-width: 1600px;
  margin: 0 auto;
  padding: 96px 48px 48px;
  text-align: center;
  position: relative
}

.abus .titblk-deco {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 96px;
  background: radial-gradient(ellipse 70% 80% at 70% 50%, #d895cc21 0%, transparent 80%);
  pointer-events: none;
  z-index: 0
}

.abus .titblk-img {
  width: 100%;
  max-width: 860px;
  margin: 0 auto 48px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 28px -1px #d895cc1c
}

.abus .titblk-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 22px;
  filter: contrast(1.04) saturate(1.06)
}

.abus .titblk-text {
  position: relative;
  z-index: 1
}

.abus .titblk-text h1 {
  font-size: 72px;
  line-height: 1.2;
  letter-spacing: -.03em;
  color: #132436;
  margin: 0
}

.abus .titblk-text h1 span {
  font-size: 58px;
  letter-spacing: -.02em
}

.abus .div-wave1 {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0
}

.abus .div-wave1 svg {
  display: block;
  width: 100%
}

.abus .ident {
  background: radial-gradient(ellipse 60% 90% at 80% 30%, #d895cc17 0%, transparent 70%), #132436;
  padding: 96px 48px;
  position: relative;
  overflow: hidden
}

.abus .ident-geo {
  position: absolute;
  top: 24px;
  right: 48px;
  width: 64px;
  height: 64px;
  border: 2px solid #d895cc47;
  border-radius: 4px;
  transform: rotate(22deg);
  animation: geoPulse 2.8s linear infinite;
  pointer-events: none
}

.abus .ident-geo::after {
  content: '';
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid #d895cc2e;
  border-radius: 4px
}

.abus .ident-geo2 {
  position: absolute;
  bottom: 48px;
  left: 24px;
  width: 32px;
  height: 32px;
  border: 2px solid #d895cc33;
  border-radius: 4px;
  transform: rotate(12deg);
  animation: geoPulse 3.4s linear infinite .6s;
  pointer-events: none
}

.abus .ident-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 96px;
  align-items: center
}

.abus .ident-left {
  flex: 0 0 340px
}

.abus .ident-label {
  font-size: 16px;
  letter-spacing: .14em;
  color: #D895CC;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block
}

.abus .ident-left h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #F8F8F8;
  margin: 0 0 24px;
  letter-spacing: -.02em
}

.abus .ident-left h2 strong {
  font-size: 58px;
  display: block;
  color: #D895CC;
  letter-spacing: -.03em;
  line-height: 1.2
}

.abus .ident-right {
  flex: 1
}

.abus .ident-right p {
  font-size: 23px;
  line-height: 1.6;
  color: #f8f8f8e0;
  margin: 0 0 24px
}

.abus .ident-right p:last-child {
  margin-bottom: 0
}

.abus .ident-img {
  margin-top: 48px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 52px -1px #d895cc21
}

.abus .ident-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 22px
}

.abus .div-wave2 {
  width: 100%;
  overflow: hidden;
  line-height: 0
}

.abus .div-wave2 svg {
  display: block;
  width: 100%
}

.abus .metrics {
  background: #F8F8F8;
  padding: 96px 48px
}

.abus .metrics-inner {
  max-width: 1600px;
  margin: 0 auto
}

.abus .metrics-head {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-end;
  margin-bottom: 48px
}

.abus .metrics-head h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #132436;
  margin: 0;
  letter-spacing: -.02em;
  flex: 1
}

.abus .metrics-head h2 em {
  font-style: normal;
  font-size: 58px;
  display: block;
  color: #D895CC;
  letter-spacing: -.03em
}

.abus .metrics-head-desc {
  flex: 0 0 360px;
  font-size: 16px;
  line-height: 1.9;
  color: #132436;
  opacity: .78;
  margin: 0
}

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

.abus .mcard {
  background: #fff;
  border-radius: 22px;
  padding: 48px 24px;
  text-align: center;
  box-shadow: 0 3px 5px -1px #1324360f;
  position: relative;
  transition: box-shadow .22s ease-out, transform .18s ease-out
}

.abus .mcard::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(to bottom, transparent, #d895cc12);
  border-radius: 0 0 22px 22px;
  pointer-events: none
}

.abus .mcard:hover {
  box-shadow: 0 6px 28px -1px #d895cc1c;
  transform: translateY(-4px)
}

.abus .mcard-num {
  font-size: 58px;
  line-height: 1.2;
  color: #D895CC;
  letter-spacing: -.03em;
  display: block;
  margin-bottom: 12px
}

.abus .mcard-lbl {
  font-size: 16px;
  line-height: 1.6;
  color: #132436;
  letter-spacing: .04em
}

.abus .metrics-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.abus .metrics-imgs figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 3px 5px -1px #1324360f
}

.abus .metrics-imgs figure img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 22px;
  transition: transform .45s ease-out
}

.abus .metrics-imgs figure:hover img {
  transform: scale(1.03)
}

.abus .div-wave3 {
  width: 100%;
  overflow: hidden;
  line-height: 0
}

.abus .div-wave3 svg {
  display: block;
  width: 100%
}

.abus .approach {
  background: #fff;
  padding: 96px 48px
}

.abus .approach-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px
}

.abus .approach-aside {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.abus .approach-portrait {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 28px -1px #d895cc1c;
  width: 100%;
  aspect-ratio: 7/9
}

.abus .approach-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 22px
}

.abus .approach-namecard {
  background: radial-gradient(ellipse 80% 60% at 70% 50%, #d895cc1c 0%, transparent 80%), #132436;
  border-radius: 22px;
  padding: 24px;
  text-align: center
}

.abus .approach-namecard strong {
  display: block;
  font-size: 16px;
  color: #F8F8F8;
  letter-spacing: .04em;
  margin-bottom: 6px
}

.abus .approach-namecard span {
  font-size: 16px;
  color: #D895CC;
  letter-spacing: .08em
}

.abus .approach-body {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.abus .approach-body h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #132436;
  margin: 0;
  letter-spacing: -.02em
}

.abus .approach-body h2 span {
  font-size: 58px;
  display: block;
  color: #D895CC;
  letter-spacing: -.03em
}

.abus .approach-body p {
  font-size: 16px;
  line-height: 1.9;
  color: #132436;
  margin: 0
}

.abus .approach-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 12px
}

.abus .astep {
  border-radius: 22px;
  padding: 24px;
  background: #d895cc12;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  transition: background .25s ease-out
}

.abus .astep:hover {
  background: #d895cc26
}

.abus .astep-ico {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: #D895CC;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center
}

.abus .astep-ico svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.abus .astep-text h5 {
  font-size: 16px;
  line-height: 1.6;
  color: #132436;
  margin: 0 0 6px;
  letter-spacing: .02em
}

.abus .astep-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #132436;
  opacity: .72;
  margin: 0
}

.abus .approach-bigimg {
  margin-top: 12px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 3px 5px -1px #1324360f
}

.abus .approach-bigimg img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 22px
}

.abus .div-wave4 {
  width: 100%;
  overflow: hidden;
  line-height: 0
}

.abus .div-wave4 svg {
  display: block;
  width: 100%
}

.abus .closing {
  background: radial-gradient(ellipse 55% 70% at 75% 40%, #d895cc1f 0%, transparent 65%), #132436;
  padding: 96px 48px;
  position: relative;
  overflow: hidden
}

.abus .closing-geo {
  position: absolute;
  top: 48px;
  left: 48px;
  width: 80px;
  height: 80px;
  border: 2px solid #d895cc2e;
  border-radius: 36px;
  pointer-events: none;
  animation: geoPulse 3.8s linear infinite 1s
}

.abus .closing-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 96px;
  align-items: center
}

.abus .closing-text h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #F8F8F8;
  margin: 0 0 24px;
  letter-spacing: -.02em
}

.abus .closing-text h2 strong {
  font-size: 58px;
  display: block;
  color: #D895CC;
  letter-spacing: -.03em;
  line-height: 1.2
}

.abus .closing-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #f8f8f8d1;
  margin: 0 0 24px
}

.abus .closing-text p:last-of-type {
  margin-bottom: 48px
}

.abus .closing-links {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap
}

.abus .btn-ghost {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  border: 2px solid #D895CC;
  color: #D895CC;
  font-size: 16px;
  letter-spacing: .06em;
  text-decoration: none;
  background: transparent;
  transition: background .22s ease-out, color .18s ease-out
}

.abus .btn-ghost:hover,
.abus .btn-ghost:focus {
  background: #D895CC;
  color: #132436;
  outline: none
}

.abus .btn-solid {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  border: 2px solid #F8F8F8;
  color: #132436;
  background: #F8F8F8;
  font-size: 16px;
  letter-spacing: .06em;
  text-decoration: none;
  transition: background .25s ease-out, color .2s ease-out, border-color .2s ease-out
}

.abus .btn-solid:hover,
.abus .btn-solid:focus {
  background: transparent;
  color: #F8F8F8;
  outline: none
}

.abus .closing-img {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 52px -1px #d895cc21
}

.abus .closing-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 22px
}

@media (max-width: 992px) {
  .abus .titblk {
    padding: 48px 24px
  }

  .abus .titblk-text h1 {
    font-size: 42px
  }

  .abus .titblk-text h1 span {
    font-size: 42px
  }

  .abus .ident {
    padding: 48px 24px
  }

  .abus .ident-inner {
    flex-direction: column;
    gap: 48px
  }

  .abus .ident-left {
    flex: none;
    width: 100%
  }

  .abus .ident-left h2 strong {
    font-size: 42px
  }

  .abus .metrics {
    padding: 48px 24px
  }

  .abus .metrics-head {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start
  }

  .abus .metrics-head-desc {
    flex: none;
    width: 100%
  }

  .abus .metrics-grid {
    grid-template-columns: 1fr 1fr
  }

  .abus .metrics-imgs {
    grid-template-columns: 1fr
  }

  .abus .approach {
    padding: 48px 24px
  }

  .abus .approach-inner {
    grid-template-columns: 1fr
  }

  .abus .approach-aside {
    flex-direction: row;
    align-items: flex-start
  }

  .abus .approach-portrait {
    width: 140px;
    flex-shrink: 0
  }

  .abus .approach-namecard {
    flex: 1
  }

  .abus .approach-body h2 span {
    font-size: 42px
  }

  .abus .closing {
    padding: 48px 24px
  }

  .abus .closing-inner {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .abus .closing-text h2 strong {
    font-size: 42px
  }
}

@media (max-width: 576px) {
  .abus .titblk {
    padding: 48px 12px 24px
  }

  .abus .titblk-text h1 {
    font-size: 42px
  }

  .abus .titblk-img img {
    height: 220px
  }

  .abus .metrics-grid {
    grid-template-columns: 1fr
  }

  .abus .approach-steps {
    grid-template-columns: 1fr
  }

  .abus .approach-aside {
    flex-direction: column
  }

  .abus .approach-portrait {
    width: 100%
  }

  .abus .closing-links {
    flex-direction: column
  }

  .abus .mcard-num {
    font-size: 42px
  }
}

.bse {
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: clip
}

.bse .titl {
  position: relative;
  padding: 96px 48px 48px;
  background: #132436;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end
}

.bse .titl .dot-scatter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden
}

.bse .titl .dot-scatter span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #D895CC;
  opacity: .18
}

.bse .titl .dot-scatter span:nth-child(1) {
  top: 12%;
  left: 8%
}

.bse .titl .dot-scatter span:nth-child(2) {
  top: 28%;
  left: 22%
}

.bse .titl .dot-scatter span:nth-child(3) {
  top: 8%;
  left: 45%
}

.bse .titl .dot-scatter span:nth-child(4) {
  top: 55%;
  left: 15%
}

.bse .titl .dot-scatter span:nth-child(5) {
  top: 72%;
  left: 60%
}

.bse .titl .dot-scatter span:nth-child(6) {
  top: 18%;
  left: 75%
}

.bse .titl .dot-scatter span:nth-child(7) {
  top: 40%;
  left: 88%
}

.bse .titl .dot-scatter span:nth-child(8) {
  top: 85%;
  left: 35%
}

.bse .titl .dot-scatter span:nth-child(9) {
  top: 62%;
  left: 78%
}

.bse .titl .dot-scatter span:nth-child(10) {
  top: 5%;
  left: 92%
}

.bse .titl .dot-scatter span:nth-child(11) {
  top: 90%;
  left: 12%
}

.bse .titl .dot-scatter span:nth-child(12) {
  top: 48%;
  left: 52%
}

.bse .titl .titl-img-wrap {
  position: absolute;
  bottom: 0;
  right: 48px;
  width: 340px;
  height: 220px;
  overflow: hidden;
  border-radius: 4px 4px 0 0
}

.bse .titl .titl-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 100%, black 55%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 100% at 50% 100%, black 55%, transparent 100%)
}

.bse .titl .titl-text {
  position: relative;
  z-index: 1;
  max-width: 820px
}

.bse .titl .titl-text h1 {
  font-size: 72px;
  line-height: 1.2;
  letter-spacing: -.03em;
  color: #F8F8F8;
  margin: 0 0 24px;
  clip-path: inset(0 100% 0 0);
  animation: revealClip .45s ease-out .1s forwards
}

.bse .titl .titl-text h1 span {
  color: #D895CC
}

@keyframes revealClip {
  to {
    clip-path: inset(0 0% 0 0)
  }
}

.bse .titl .titl-text .slogan {
  font-size: 23px;
  line-height: 1.6;
  color: #D895CC;
  margin: 0;
  letter-spacing: .01em;
  font-style: italic
}

.bse .titl-divider {
  width: 100%;
  display: block;
  line-height: 0
}

.bse .reput {
  padding: 96px 48px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center
}

.bse .reput .reput-left h2 {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #132436;
  margin: 0 0 24px
}

.bse .reput .reput-left h2 strong {
  font-size: 58px;
  display: block;
  color: #D895CC;
  line-height: 1.2
}

.bse .reput .reput-left p {
  font-size: 16px;
  line-height: 1.9;
  color: #132436;
  margin: 0 0 24px;
  max-width: 480px
}

.bse .reput .reput-right {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.bse .reput .reput-badge {
  border: 1.5px solid #D895CC;
  border-radius: 22px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 6px 28px -1px #d895cc1c;
  transition: box-shadow .25s ease-out, border-color .2s ease-out
}

.bse .reput .reput-badge:hover {
  box-shadow: 0 8px 52px -1px #d895cc21;
  border-color: #132436
}

.bse .reput .reput-badge .badge-label {
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #D895CC;
  display: block;
  margin-bottom: 6px
}

.bse .reput .reput-badge p {
  font-size: 16px;
  line-height: 1.6;
  color: #132436;
  margin: 0
}

.bse .reput-divider {
  width: 100%;
  display: block;
  line-height: 0
}

.bse .fitcheck {
  padding: 96px 48px;
  background: #132436
}

.bse .fitcheck .fitcheck-top {
  text-align: center;
  margin-bottom: 48px
}

.bse .fitcheck .fitcheck-top h2 {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #F8F8F8;
  margin: 0 0 24px
}

.bse .fitcheck .fitcheck-top h2 em {
  color: #D895CC;
  font-style: normal;
  font-size: 58px
}

.bse .fitcheck .fitcheck-top p {
  font-size: 16px;
  line-height: 1.9;
  color: #D895CC;
  max-width: 560px;
  margin: 0 auto
}

.bse .fitcheck .fitcheck-cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto
}

.bse .fitcheck .fitcheck-divline {
  width: 2px;
  background: linear-gradient(to bottom, transparent, #D895CC 30%, #D895CC 70%, transparent);
  align-self: stretch;
  min-height: 240px;
  border-radius: 4px
}

.bse .fitcheck .fit-col h4 {
  font-size: 16px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #D895CC;
  margin: 0 0 24px
}

.bse .fitcheck .fit-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.bse .fitcheck .fit-col ul li {
  font-size: 16px;
  line-height: 1.6;
  color: #F8F8F8;
  padding-left: 24px;
  position: relative
}

.bse .fitcheck .fit-col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D895CC;
  opacity: .7
}

.bse .fitcheck .fit-col.no-fit ul li::before {
  background: #F8F8F8;
  opacity: .3
}

.bse .fitcheck-divider {
  width: 100%;
  display: block;
  line-height: 0
}

.bse .scale {
  padding: 96px 48px;
  background: #F8F8F8
}

.bse .scale .scale-label {
  text-align: center;
  font-size: 16px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #D895CC;
  margin-bottom: 12px
}

.bse .scale h2 {
  text-align: center;
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #132436;
  margin: 0 0 48px
}

.bse .scale h2 strong {
  font-size: 58px;
  color: #D895CC
}

.bse .scale .stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px
}

.bse .scale .stat-item {
  text-align: center;
  padding: 48px 24px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 5px -1px #1324360f;
  transition: box-shadow .35s ease-out, transform .2s ease-out
}

.bse .scale .stat-item:hover {
  box-shadow: 0 8px 52px -1px #13243621;
  transform: translateY(-4px)
}

.bse .scale .stat-num {
  font-size: 58px;
  line-height: 1.2;
  color: #D895CC;
  letter-spacing: -.03em;
  display: block
}

.bse .scale .stat-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #132436;
  margin: 6px 0 0
}

.bse .scale .scale-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center
}

.bse .scale .scale-img-wrap {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 28px -1px #1324361c
}

.bse .scale .scale-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block
}

.bse .scale .scale-desc p {
  font-size: 16px;
  line-height: 1.9;
  color: #132436;
  margin: 0 0 24px
}

.bse .scale .scale-desc p:last-child {
  margin: 0
}

.bse .scale-divider {
  width: 100%;
  display: block;
  line-height: 0
}

.bse .current {
  padding: 96px 48px;
  background: #fff;
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 48px;
  align-items: center
}

.bse .current .curr-text h2 {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #132436;
  margin: 0 0 24px
}

.bse .current .curr-text h2 span {
  font-size: 58px;
  color: #D895CC;
  display: block
}

.bse .current .curr-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #132436;
  margin: 0 0 24px;
  max-width: 520px
}

.bse .current .step-track {
  margin-top: 48px
}

.bse .current .step-track h4 {
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #D895CC;
  margin: 0 0 24px
}

.bse .current .steps {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: flex-start
}

.bse .current .step {
  flex: 1;
  text-align: center;
  position: relative
}

.bse .current .step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #D895CC, #d895cc33)
}

.bse .current .step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #D895CC;
  color: #fff;
  font-size: 16px;
  line-height: 36px;
  display: inline-block;
  position: relative;
  z-index: 1;
  font-weight: 700
}

.bse .current .step-lbl {
  display: block;
  font-size: 16px;
  line-height: 1.6;
  color: #132436;
  margin-top: 6px
}

.bse .current .curr-img-wrap {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 6px 28px -1px #d895cc1c
}

.bse .current .curr-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block
}

.bse .current-divider {
  width: 100%;
  display: block;
  line-height: 0
}

.bse .grad {
  padding: 96px 48px;
  background: #132436
}

.bse .grad .grad-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px
}

.bse .grad .grad-top h2 {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #F8F8F8;
  margin: 0
}

.bse .grad .grad-top h2 em {
  font-size: 58px;
  color: #D895CC;
  font-style: normal;
  display: block
}

.bse .grad .grad-top .grad-intro p {
  font-size: 16px;
  line-height: 1.9;
  color: #f8f8f8d9;
  margin: 0 0 24px
}

.bse .grad .grad-top .grad-intro p:last-child {
  margin: 0
}

.bse .grad .grad-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px
}

.bse .grad .outcome-card {
  background: #f8f8f80d;
  border: 1px solid #d895cc40;
  border-radius: 22px;
  padding: 24px;
  transition: background .25s ease-out, border-color .2s ease-out
}

.bse .grad .outcome-card:hover {
  background: #d895cc1a;
  border-color: #D895CC
}

.bse .grad .outcome-card .oc-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center
}

.bse .grad .outcome-card .oc-icon svg {
  width: 32px;
  height: 32px
}

.bse .grad .outcome-card h5 {
  font-size: 16px;
  line-height: 1.6;
  color: #D895CC;
  margin: 0 0 12px;
  letter-spacing: .02em
}

.bse .grad .outcome-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #f8f8f8cc;
  margin: 0
}

.bse .grad .grad-profile {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  background: #d895cc14;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid #d895cc33
}

.bse .grad .prof-img {
  width: 80px;
  height: 103px;
  border-radius: 22px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 3px 5px -1px #d895cc0f
}

.bse .grad .prof-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block
}

.bse .grad .prof-quote {
  flex: 1
}

.bse .grad .prof-quote blockquote {
  font-size: 16px;
  line-height: 1.9;
  color: #f8f8f8d9;
  margin: 0 0 12px;
  font-style: italic
}

.bse .grad .prof-quote cite {
  font-size: 16px;
  color: #D895CC;
  font-style: normal;
  letter-spacing: .04em
}

@media (max-width: 992px) {
  .bse .titl {
    padding: 48px 24px
  }

  .bse .titl .titl-text h1 {
    font-size: 42px
  }

  .bse .titl .titl-img-wrap {
    width: 200px;
    height: 140px;
    right: 24px
  }

  .bse .reput {
    grid-template-columns: 1fr;
    padding: 48px 24px
  }

  .bse .fitcheck {
    padding: 48px 24px
  }

  .bse .fitcheck .fitcheck-cols {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .bse .fitcheck .fitcheck-divline {
    display: none
  }

  .bse .scale {
    padding: 48px 24px
  }

  .bse .scale .stats-row {
    grid-template-columns: repeat(2, 1fr)
  }

  .bse .scale .scale-detail {
    grid-template-columns: 1fr
  }

  .bse .current {
    grid-template-columns: 1fr;
    padding: 48px 24px
  }

  .bse .current .curr-img-wrap {
    order: -1
  }

  .bse .current .curr-img-wrap img {
    height: 280px
  }

  .bse .grad {
    padding: 48px 24px
  }

  .bse .grad .grad-top {
    grid-template-columns: 1fr
  }

  .bse .grad .grad-outcomes {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 576px) {
  .bse .titl .titl-text h1 {
    font-size: 42px
  }

  .bse .titl .titl-img-wrap {
    display: none
  }

  .bse .reput .reput-left h2 strong {
    font-size: 42px
  }

  .bse .scale .stats-row {
    grid-template-columns: 1fr
  }

  .bse .scale .stat-num {
    font-size: 42px
  }

  .bse .grad .grad-outcomes {
    grid-template-columns: 1fr
  }

  .bse .grad .grad-profile {
    flex-direction: column;
    align-items: flex-start
  }

  .bse .current .steps {
    flex-direction: column;
    gap: 12px
  }

  .bse .current .step:not(:last-child)::after {
    display: none
  }

  .bse .current .step {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    text-align: left
  }
}

.ctus {
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: clip
}

.ctus .split-panel {
  display: flex;
  flex-direction: row;
  min-height: 80vh;
  align-items: stretch
}

.ctus .split-left {
  flex: 0 0 48%;
  background-color: #132436;
  padding: 96px 48px 96px 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative
}

.ctus .split-left .geo-accent {
  position: absolute;
  top: 48px;
  right: -60px;
  width: 220px;
  height: 220px;
  border: 1px solid #d895cc1f;
  border-radius: 36px;
  transform: rotate(18deg);
  pointer-events: none
}

.ctus .split-left .geo-accent-sm {
  position: absolute;
  bottom: 96px;
  right: 24px;
  width: 90px;
  height: 90px;
  border: 1px solid #d895cc14;
  border-radius: 22px;
  transform: rotate(-10deg);
  pointer-events: none
}

.ctus .split-left .tag-line {
  font-size: 16px;
  letter-spacing: .18em;
  color: #D895CC;
  margin-bottom: 24px;
  text-transform: uppercase
}

.ctus .split-left .lft-head {
  font-size: 58px;
  line-height: 1.2;
  color: #F8F8F8;
  margin-bottom: 24px;
  letter-spacing: -.02em
}

.ctus .split-left .lft-head span {
  color: #D895CC
}

.ctus .split-left .lft-desc {
  font-size: 16px;
  line-height: 1.9;
  color: #f8f8f8b8;
  max-width: 420px;
  margin-bottom: 48px
}

.ctus .contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.ctus .citem {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px
}

.ctus .citem-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #d895cc59;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ctus .citem-icon svg {
  width: 18px;
  height: 18px;
  stroke: #D895CC;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round
}

.ctus .citem-text {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.ctus .citem-label {
  font-size: 16px;
  color: #f8f8f873;
  letter-spacing: .08em;
  text-transform: uppercase
}

.ctus .citem-val {
  font-size: 16px;
  color: #F8F8F8;
  line-height: 1.6;
  text-decoration: none;
  transition: color .2s ease-out
}

.ctus .citem-val:hover {
  color: #D895CC
}

.ctus .split-right {
  flex: 1;
  background-color: #F8F8F8;
  padding: 96px 96px 96px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.ctus .form-head {
  font-size: 42px;
  line-height: 1.2;
  color: #132436;
  letter-spacing: -.015em;
  margin-bottom: 12px
}

.ctus .form-sub {
  font-size: 16px;
  line-height: 1.6;
  color: #1324369e;
  margin-bottom: 48px;
  max-width: 440px
}

.ctus .contact-form {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.ctus .fld-group {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.ctus .fld-label {
  font-size: 16px;
  color: #132436;
  letter-spacing: .04em
}

.ctus .fld-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #13243638;
  border-radius: 4px;
  background: #fff;
  font-size: 16px;
  color: #132436;
  outline: none;
  transition: border-color .2s ease-out, box-shadow .25s ease-out;
  box-sizing: border-box
}

.ctus .fld-input::placeholder {
  color: #13243659
}

.ctus .fld-input:focus {
  border-color: #D895CC;
  box-shadow: 0 3px 5px -1px #d895cc0f
}

.ctus .radio-label {
  font-size: 16px;
  color: #132436;
  letter-spacing: .04em;
  margin-bottom: 6px;
  display: block
}

.ctus .radio-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px
}

.ctus .radio-opt {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  cursor: pointer
}

.ctus .radio-opt input[type="radio"] {
  accent-color: #D895CC;
  width: 16px;
  height: 16px;
  cursor: pointer
}

.ctus .radio-opt-text {
  font-size: 16px;
  color: #132436;
  line-height: 1.6;
  cursor: pointer
}

.ctus .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px
}

.ctus .privacy-row input[type="checkbox"] {
  accent-color: #D895CC;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
  cursor: pointer
}

.ctus .privacy-text {
  font-size: 16px;
  line-height: 1.6;
  color: #132436b3
}

.ctus .privacy-text a {
  color: #D895CC;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s ease-out
}

.ctus .privacy-text a:hover {
  color: #132436
}

.ctus .submit-btn {
  align-self: flex-start;
  padding: 12px 48px;
  border: 2px solid #132436;
  border-radius: 4px;
  background: transparent;
  color: #132436;
  font-size: 16px;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background-color .2s ease-out, color .18s ease-out
}

.ctus .submit-btn:hover {
  background-color: #132436;
  color: #F8F8F8
}

.ctus .submit-btn:focus {
  outline: 2px solid #D895CC;
  outline-offset: 3px
}

.ctus .divider-tick {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  padding: 0 96px;
  overflow: hidden
}

.ctus .divider-tick .tick-line {
  flex: 1;
  height: 1px;
  background: #1324361f;
  position: relative
}

.ctus .divider-tick .tick-mark {
  width: 1px;
  height: 8px;
  background: #13243633;
  margin: 0 24px;
  flex-shrink: 0
}

.ctus .info-band {
  background-color: #132436;
  padding: 96px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start
}

.ctus .iband-cell {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  align-items: center;
  padding: 48px 24px;
  border-radius: 22px;
  background: #f8f8f80a;
  border: 1px solid #d895cc1a;
  transition: background-color .35s ease-out, border-color .25s ease-out
}

.ctus .iband-cell:hover {
  background: #d895cc14;
  border-color: #d895cc47
}

.ctus .iband-icon-wrap {
  width: 52px;
  height: 52px;
  border: 1px solid #d895cc66;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px
}

.ctus .iband-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: #D895CC;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

.ctus .iband-cell-label {
  font-size: 16px;
  color: #f8f8f873;
  letter-spacing: .1em;
  text-transform: uppercase
}

.ctus .iband-cell-val {
  font-size: 23px;
  line-height: 1.2;
  color: #F8F8F8;
  letter-spacing: -.01em
}

.ctus .iband-cell-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #f8f8f88c;
  max-width: 240px
}

@keyframes zoomSettle {
  from {
    transform: scale(1.06);
    opacity: .7
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

.ctus .split-panel {
  animation: zoomSettle .45s ease-out both
}

@media (max-width: 992px) {
  .ctus .split-panel {
    flex-direction: column
  }

  .ctus .split-left {
    flex: none;
    padding: 48px 24px
  }

  .ctus .split-left .geo-accent {
    display: none
  }

  .ctus .split-right {
    padding: 48px 24px
  }

  .ctus .lft-head {
    font-size: 42px
  }

  .ctus .info-band {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 24px
  }

  .ctus .divider-tick {
    padding: 0 24px
  }
}

@media (max-width: 576px) {
  .ctus .split-left {
    padding: 48px 24px
  }

  .ctus .split-right {
    padding: 48px 24px
  }

  .ctus .lft-head {
    font-size: 42px
  }

  .ctus .form-head {
    font-size: 42px
  }

  .ctus .radio-row {
    flex-direction: column
  }

  .ctus .info-band {
    padding: 48px 24px
  }

  .ctus .submit-btn {
    width: 100%;
    text-align: center
  }
}

.successPage {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 24px;
  background: #fff
}

.successPage .confirmWrap {
  max-width: 560px;
  width: 100%;
  text-align: center
}

.successPage .iconMark {
  width: 72px;
  height: 72px;
  margin: 0 auto 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 36px;
  background: #D895CC;
  box-shadow: 0 6px 28px -1px #d895cc1c
}

.successPage .iconMark svg {
  display: block
}

.successPage .confirmHeading {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #132436;
  margin-bottom: 24px
}

.successPage .confirmHeading span {
  color: #D895CC;
  letter-spacing: .04em
}

.successPage .confirmText {
  font-size: 16px;
  line-height: 1.9;
  color: #132436;
  margin-bottom: 48px;
  opacity: .82
}

.successPage .dividerLine {
  width: 48px;
  height: 2px;
  background: #D895CC;
  margin: 0 auto 48px;
  border-radius: 4px
}

.successPage .infoBlock {
  background: #F4F4F4;
  border-radius: 22px;
  padding: 48px;
  margin-bottom: 48px;
  box-shadow: 0 3px 5px -1px #1324360f;
  text-align: left
}

.successPage .infoBlock .infoLabel {
  font-size: 16px;
  line-height: 1.6;
  color: #D895CC;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block
}

.successPage .infoBlock .infoDetail {
  font-size: 23px;
  line-height: 1.2;
  color: #132436;
  margin-bottom: 24px
}

.successPage .infoBlock .infoNote {
  font-size: 16px;
  line-height: 1.9;
  color: #132436;
  opacity: .75;
  margin: 0
}

.successPage .backBtn {
  display: inline-block;
  padding: 12px 48px;
  border-radius: 4px;
  border: 2px solid #132436;
  color: #132436;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .06em;
  text-decoration: none;
  background: transparent;
  transition: background-color .25s ease-out, color .2s ease-out, border-color .2s ease-out
}

.successPage .backBtn:hover,
.successPage .backBtn:focus {
  background: #132436;
  color: #fff;
  outline: none
}

.successPage .backBtn:focus-visible {
  box-shadow: 0 0 0 3px #d895cc73
}

@media (max-width: 576px) {
  .successPage {
    padding: 48px 24px
  }

  .successPage .confirmHeading {
    font-size: 23px
  }

  .successPage .infoBlock {
    padding: 24px
  }

  .successPage .infoBlock .infoDetail {
    font-size: 16px
  }
}