@import "https://cdn.jsdelivr.net/npm/@fontsource/noto-sans@latest/300.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/noto-sans@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/noto-sans@latest/600.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/noto-sans@latest/700.css";

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

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

:focus-visible {
  outline: 2px dashed #13CBF9;
  outline-offset: 3px;
  animation: dash-spin 3s linear infinite
}

@keyframes dash-spin {
  from {
    outline-offset: 3px
  }

  to {
    outline-offset: 3px
  }
}

@keyframes focus-dash {
  0% {
    outline-color: #13CBF9
  }

  50% {
    outline-color: #240558
  }

  100% {
    outline-color: #13CBF9
  }
}

:focus-visible {
  animation: focus-dash 1.6s ease infinite
}

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

.hd-shell {
  padding: 16px 32px;
  background: #FFFDF6
}

.hd-ring {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #240558 0%, #13203a 60%, #0d1a30 100%);
  border-radius: 18px;
  box-shadow: -1px 9px 44px -2px #13cbf924 -1px 6px 14px -2px #13cbf91c;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 88px;
  position: relative
}

.hd-ring::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid #13cbf938;
  pointer-events: none
}

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

.brand-img-wrap {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: #FFFDF6;
  box-shadow: 0 0 0 2px #13CBF9, -1px 6px 14px -2px #13cbf91c;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  flex-shrink: 0
}

.brand-img-wrap img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.brand-name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFDF6;
  letter-spacing: .04em
}

.brand-tag {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  color: #13CBF9
}

.hd-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end
}

.hd-nav a {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: #fffdf6d1;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: color .5s ease, background .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .5s ease;
  white-space: nowrap
}

.hd-nav a:hover {
  color: #FFFDF6;
  background: #13cbf924;
  border-color: #13cbf94d
}

.hd-nav a.active {
  color: #13CBF9;
  background: #13cbf91a;
  border-color: #13cbf940
}

@media (max-width: 960px) {
  .hd-shell {
    padding: 16px
  }

  .hd-ring {
    padding: 0 16px;
    gap: 16px;
    min-height: 80px
  }

  .hd-nav a {
    padding: 8px 12px
  }
}

@media (max-width: 480px) {
  .hd-shell {
    padding: 8px
  }

  .hd-ring {
    border-radius: 6px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    min-height: unset;
    gap: 16px
  }

  .hd-nav {
    justify-content: flex-start
  }
}

.ft-shell {
  background: linear-gradient(160deg, #240558 0%, #0e0630 100%);
  padding: 64px 32px 32px;
  position: relative;
  overflow: hidden
}

.ft-shell::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #13CBF9 40%, #240558 100%);
  border-radius: 3px 3px 0 0
}

.ft-top {
  max-width: 1100px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid #13cbf926
}

.ft-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none
}

.ft-logo-wrap {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: #FFFDF6;
  box-shadow: 0 0 0 2px #13cbf980 -1px 6px 14px -2px #13cbf91c;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  flex-shrink: 0
}

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

.ft-brand-name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFDF6
}

.ft-hours {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.ft-hours-label {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  color: #fffdf68c
}

.ft-hours-val {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: #13CBF9
}

.ft-mid {
  max-width: 1100px;
  margin: 0 auto 32px;
  display: flex;
  gap: 64px;
  flex-wrap: wrap
}

.ft-nav-col {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ft-nav-col-head {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: #fffdf673;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px
}

.ft-nav-col a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  color: #fffdf6b3;
  text-decoration: none;
  transition: color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block
}

.ft-nav-col a:hover {
  color: #13CBF9
}

.ft-contact-col {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ft-contact-col-head {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: #fffdf673;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px
}

.ft-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px
}

.ft-contact-item a,
.ft-contact-item span {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  color: #fffdf6b3;
  text-decoration: none;
  transition: color .6s ease
}

.ft-contact-item a:hover {
  color: #13CBF9
}

.ft-icon-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #13CBF9;
  flex-shrink: 0;
  margin-top: 8px
}

.ft-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid #13cbf91a
}

.ft-copy {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.45;
  color: #fffdf666
}

.ft-copy strong {
  font-weight: 600;
  color: #fffdf699
}

@media (max-width: 960px) {
  .ft-shell {
    padding: 64px 16px 32px
  }

  .ft-mid {
    gap: 32px
  }
}

@media (max-width: 480px) {
  .ft-top {
    flex-direction: column;
    align-items: flex-start
  }

  .ft-bottom {
    flex-direction: column;
    align-items: flex-start
  }
}

.ck-popup {
  display: none;
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 92%;
  max-width: 640px;
  background: #FFFDF6;
  border-radius: 18px;
  box-shadow: -1px 9px 44px -2px #24055824 -1px 6px 14px -2px #2405581c;
  border: 1px solid #13cbf933;
  padding: 32px;
  z-index: 8000
}

.ck-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: #240558;
  margin-bottom: 8px
}

.ck-head {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: #240558;
  margin-bottom: 16px
}

.ck-opt-notice {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  color: #240558;
  padding: 8px 16px;
  background: #13cbf914;
  border-radius: 6px;
  margin-bottom: 16px
}

.ck-opt-notice label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #240558;
  margin-top: 8px
}

.ck-opt-notice input[type="checkbox"] {
  accent-color: #13CBF9;
  width: 16px;
  height: 16px;
  cursor: pointer
}

.ck-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.ck-btn-accept,
.ck-btn-decline {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  padding: 12px 28px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  transition: background .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .5s ease
}

.ck-btn-accept {
  background: linear-gradient(135deg, #13CBF9 0%, #240558 100%);
  color: #FFFDF6
}

.ck-btn-accept:hover {
  background: linear-gradient(225deg, #13CBF9 0%, #240558 100%)
}

.ck-btn-decline {
  background: transparent;
  color: #240558;
  border: 1px solid #24055840
}

.ck-btn-decline:hover {
  background: #2405580f
}

.agreement-bi-text {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 32px;
  color: #240558;
  background: #FFFDF6
}

.agreement-bi-text h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #240558;
  margin-bottom: 32px;
  margin-top: 0;
  padding-bottom: 16px;
  border-bottom: 2px solid #13CBF9
}

.agreement-bi-text h2 {
  font-size: 36px;
  line-height: 1.2;
  color: #240558;
  margin-top: 64px;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 4px solid #13CBF9;
  border-bottom: 1px solid #13cbf92e;
  padding-bottom: 8px
}

.agreement-bi-text h3 {
  font-size: 15px;
  line-height: 1.45;
  color: #240558;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 32px;
  margin-bottom: 8px
}

.agreement-bi-text h4 {
  font-size: 15px;
  line-height: 1.45;
  color: #240558;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 8px
}

.agreement-bi-text h5 {
  font-size: 14px;
  line-height: 1.45;
  color: #240558;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 8px
}

.agreement-bi-text h6 {
  font-size: 14px;
  line-height: 1.45;
  color: #240558b3;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 8px
}

.agreement-bi-text p {
  font-size: 15px;
  line-height: 1.65;
  color: #240558;
  margin-top: 0;
  margin-bottom: 16px
}

.agreement-bi-text ul {
  margin: 16px 0;
  padding-left: 0;
  list-style: none
}

.agreement-bi-text ol {
  margin: 16px 0;
  padding-left: 0;
  list-style: none;
  counter-reset: policy-counter
}

.agreement-bi-text ul li {
  font-size: 15px;
  line-height: 1.65;
  color: #240558;
  padding-left: 24px;
  margin-bottom: 8px;
  position: relative
}

.agreement-bi-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: linear-gradient(135deg, #13CBF9, #240558)
}

.agreement-bi-text ol li {
  font-size: 15px;
  line-height: 1.65;
  color: #240558;
  padding-left: 32px;
  margin-bottom: 8px;
  position: relative;
  counter-increment: policy-counter
}

.agreement-bi-text ol li::before {
  content: counter(policy-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  font-weight: 700;
  color: #13CBF9;
  line-height: 1.65;
  min-width: 24px
}

.agreement-bi-text ul ul,
.agreement-bi-text ol ol,
.agreement-bi-text ul ol,
.agreement-bi-text ol ul {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 16px
}

.agreement-bi-text ul ul li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #13cbf980;
  top: 11px
}

.agreement-bi-text strong,
.agreement-bi-text b {
  font-weight: 700;
  color: #240558
}

.agreement-bi-text em,
.agreement-bi-text i {
  font-style: italic;
  color: #240558d1
}

.agreement-bi-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 14px;
  line-height: 1.45;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: -1px 6px 14px -2px #13cbf91c
}

.agreement-bi-text thead {
  background: linear-gradient(135deg, #240558 0%, #13CBF9 100%)
}

.agreement-bi-text thead th {
  color: #FFFDF6;
  font-size: 14px;
  font-weight: 700;
  padding: 16px;
  text-align: left;
  border: none
}

.agreement-bi-text tbody tr {
  background: #FFFDF6;
  transition: background-color .5s ease
}

.agreement-bi-text tbody tr:nth-child(even) {
  background: #13cbf90d
}

.agreement-bi-text tbody tr:hover {
  background: #13cbf91a;
  transition: background-color .08s ease
}

.agreement-bi-text td {
  padding: 16px;
  font-size: 14px;
  line-height: 1.45;
  color: #240558;
  border-bottom: 1px solid #13cbf926;
  vertical-align: top
}

.agreement-bi-text th {
  padding: 16px;
  vertical-align: top
}

.agreement-bi-text tbody tr:last-child td {
  border-bottom: none
}

.agreement-bi-text a {
  color: #13CBF9;
  text-decoration: underline;
  text-decoration-color: #13cbf966;
  text-underline-offset: 3px;
  transition: color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), text-decoration-color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.agreement-bi-text a:hover {
  color: #240558;
  text-decoration-color: #24055880;
  transition: color .09s ease, text-decoration-color .09s ease
}

.agreement-bi-text blockquote {
  margin: 32px 0;
  padding: 16px 32px;
  border-left: 4px solid #13CBF9;
  border-right: 1px solid #13cbf933;
  background: #13cbf90d;
  border-radius: 0 6px 6px 0;
  font-size: 15px;
  line-height: 1.65;
  color: #240558d1;
  font-style: italic
}

.agreement-bi-text hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, #13CBF9, #24055826, transparent);
  margin: 64px 0
}

.agreement-bi-text code {
  font-size: 14px;
  background: #13cbf914;
  color: #240558;
  padding: 2px 8px;
  border-radius: 3px;
  border: 1px solid #13cbf933
}

.agreement-bi-text pre {
  background: #2405580a;
  border: 1px solid #13cbf933;
  border-radius: 6px;
  padding: 32px;
  overflow-x: auto;
  margin: 32px 0
}

.agreement-bi-text pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  line-height: 1.65
}

@media (max-width: 960px) {
  .agreement-bi-text {
    padding: 32px 16px
  }

  .agreement-bi-text h1 {
    font-size: 36px
  }

  .agreement-bi-text h2 {
    font-size: 36px;
    margin-top: 32px
  }

  .agreement-bi-text table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }
}

@media (max-width: 480px) {
  .agreement-bi-text {
    padding: 32px 16px
  }

  .agreement-bi-text h1 {
    font-size: 36px;
    line-height: 1.2
  }

  .agreement-bi-text h2 {
    font-size: 15px;
    margin-top: 32px
  }

  .agreement-bi-text thead th,
  .agreement-bi-text td {
    padding: 8px
  }
}

.stor {
  background: #FFFDF6;
  overflow-x: clip;
  container-type: inline-size
}

.stor .pg-band {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px
}

.stor .title-strip {
  position: relative;
  padding: 64px 32px 32px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.stor .title-strip .bg-num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 180px;
  font-weight: 900;
  line-height: 1.2;
  color: #240558;
  opacity: .04;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0
}

.stor .title-strip .strip-img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  object-position: center;
  border: 1px solid #13cbf940;
  border-radius: 6px;
  box-shadow: -1px 3px 4px -2px #13cbf90d;
  position: relative;
  z-index: 1;
  margin-bottom: 16px
}

.stor .title-strip .strip-labels {
  position: relative;
  z-index: 1
}

.stor .title-strip .strip-labels h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #240558;
  margin: 0 0 8px
}

.stor .title-strip .strip-labels h1 span {
  background: linear-gradient(263deg, #13CBF9, #240558);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.stor .title-strip .strip-labels .sub-line {
  font-size: 15px;
  line-height: 1.45;
  color: #240558;
  opacity: .6;
  margin: 0
}

.stor .stories-grid {
  background: #240558;
  padding: 64px 0;
  position: relative
}

.stor .stories-grid::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 60px solid transparent;
  border-top: 28px solid #FFFDF6;
  position: absolute;
  top: 0;
  right: 120px
}

.stor .stories-grid .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px
}

.stor .stories-grid .sec-label {
  font-size: 14px;
  line-height: 1.45;
  color: #13CBF9;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 8px
}

.stor .stories-grid .sec-head {
  font-size: 36px;
  line-height: 1.2;
  color: #FFFDF6;
  margin: 0 0 32px;
  position: relative;
  display: inline-block
}

.stor .stories-grid .sec-head::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(263deg, #13CBF9, #240558);
  position: absolute;
  bottom: -4px;
  left: 0;
  animation: underline-draw .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) .4s forwards
}

@keyframes underline-draw {
  to {
    width: 100%
  }
}

.stor .stories-grid .outer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px
}

.stor .stories-grid .story-card {
  background: #fffdf60d;
  border-radius: 18px;
  border-top: 3px solid #13CBF9;
  padding: 32px;
  box-shadow: -1px 6px 14px -2px #13cbf91c;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: row-appear .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  transition: box-shadow .5s ease, background .6s ease
}

.stor .stories-grid .story-card:hover {
  background: #fffdf617;
  box-shadow: -1px 9px 44px -2px #13cbf924
}

.stor .stories-grid .story-card:nth-child(1) {
  animation-delay: .1s
}

.stor .stories-grid .story-card:nth-child(2) {
  animation-delay: .25s
}

.stor .stories-grid .story-card:nth-child(3) {
  animation-delay: .4s
}

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

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

.stor .stories-grid .card-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px
}

.stor .stories-grid .portrait-wrap {
  width: 80px;
  height: 120px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid #13cbf94d;
  box-shadow: -1px 3px 4px -2px #13cbf90d
}

.stor .stories-grid .portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block
}

.stor .stories-grid .person-meta {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.stor .stories-grid .person-name {
  font-size: 15px;
  line-height: 1.45;
  color: #FFFDF6;
  font-weight: 700;
  margin: 0
}

.stor .stories-grid .person-role {
  font-size: 14px;
  line-height: 1.45;
  color: #13CBF9;
  margin: 0
}

.stor .stories-grid .card-quote {
  font-size: 15px;
  line-height: 1.65;
  color: #fffdf6d1;
  margin: 0;
  font-style: italic
}

.stor .stories-grid .card-detail {
  font-size: 14px;
  line-height: 1.65;
  color: #fffdf6a6;
  margin: 0
}

.stor .stories-grid .card-tag {
  display: inline-block;
  background: #13cbf91f;
  color: #13CBF9;
  font-size: 14px;
  line-height: 1.45;
  border-radius: 6px;
  padding: 4px 8px;
  font-weight: 600;
  border: 1px solid #13cbf940;
  align-self: flex-start
}

.stor .stories-grid .featured-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: #13cbf914;
  border-top: 3px solid #13CBF9;
  border-radius: 18px;
  padding: 32px;
  box-shadow: -1px 9px 44px -2px #13cbf924;
  animation: row-appear .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) .55s both
}

.stor .stories-grid .featured-card .feat-left {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.stor .stories-grid .featured-card .feat-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: start
}

.stor .stories-grid .featured-card .feat-head {
  font-size: 36px;
  line-height: 1.2;
  color: #FFFDF6;
  margin: 0
}

.stor .stories-grid .featured-card .feat-body {
  font-size: 15px;
  line-height: 1.65;
  color: #fffdf6cc;
  margin: 0
}

.stor .stories-grid .featured-card .feat-body strong {
  color: #13CBF9;
  font-style: normal
}

.stor .stories-grid .featured-card .feat-sig {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 8px
}

.stor .stories-grid .featured-card .feat-sig .sig-name {
  font-size: 15px;
  line-height: 1.45;
  color: #FFFDF6;
  font-weight: 700;
  margin: 0
}

.stor .stories-grid .featured-card .feat-sig .sig-role {
  font-size: 14px;
  line-height: 1.45;
  color: #fffdf68c;
  margin: 0
}

.stor .stories-grid .metric-tile {
  background: #fffdf60f;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid #13cbf926;
  transition: background .6s ease
}

.stor .stories-grid .metric-tile:hover {
  background: #fffdf61a
}

.stor .stories-grid .metric-val {
  font-size: 36px;
  line-height: 1.2;
  color: #13CBF9;
  font-weight: 900;
  margin: 0
}

.stor .stories-grid .metric-desc {
  font-size: 14px;
  line-height: 1.45;
  color: #fffdf699;
  margin: 0
}

.stor .stories-grid .no-portrait-card {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.stor .stories-grid .np-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px
}

.stor .stories-grid .np-avatar {
  width: 48px;
  height: 48px;
  border-radius: 28px;
  background: linear-gradient(263deg, #13CBF9, #240558);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.stor .stories-grid .np-avatar svg {
  width: 22px;
  height: 22px;
  fill: #FFFDF6
}

@media (max-width: 960px) {
  .stor .stories-grid .outer-grid {
    grid-template-columns: 1fr
  }

  .stor .stories-grid .featured-card {
    grid-template-columns: 1fr;
    grid-column: auto
  }

  .stor .stories-grid .featured-card .feat-right {
    grid-template-columns: 1fr 1fr
  }

  .stor .title-strip .strip-labels h1 {
    font-size: 36px
  }

  .stor .title-strip .bg-num {
    font-size: 110px
  }
}

@media (max-width: 480px) {
  .stor .title-strip {
    padding: 32px 16px 16px
  }

  .stor .stories-grid {
    padding: 32px 0
  }

  .stor .stories-grid .inner {
    padding: 0 16px
  }

  .stor .stories-grid .featured-card .feat-right {
    grid-template-columns: 1fr
  }

  .stor .stories-grid .story-card {
    padding: 16px
  }

  .stor .stories-grid .featured-card {
    padding: 16px;
    gap: 16px
  }

  .stor .title-strip .strip-labels h1 {
    font-size: 36px
  }

  .stor .title-strip .bg-num {
    font-size: 80px
  }
}

.abt-us {
  max-width: 100%;
  overflow-x: hidden
}

.abt-us .pg-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px
}

.abt-us .diamond-div {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 16px 0
}

.abt-us .diamond-div span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #13CBF9;
  transform: rotate(45deg);
  opacity: .5
}

.abt-us .diamond-div span:nth-child(3n+2) {
  background: #240558;
  opacity: .35
}

.abt-us .diamond-div span:nth-child(3n+3) {
  background: #13CBF9;
  opacity: .25
}

.abt-us .band-top {
  background: #FFFDF6;
  padding: 48px 0 40px;
  border-bottom: 1px solid #13cbf926
}

.abt-us .band-top .pg-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px
}

.abt-us .band-top .txt-side {
  flex: 1 1 0;
  min-width: 0
}

.abt-us .band-top .img-side {
  flex: 0 0 380px;
  position: relative
}

.abt-us .lbl-tag {
  display: inline-block;
  background: #13cbf91f;
  color: #240558;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 3px;
  margin-bottom: 16px;
  letter-spacing: .04em
}

.abt-us .band-top h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #240558;
  margin: 0 0 16px
}

.abt-us .band-top h1 .acct-word {
  background: linear-gradient(263deg, #13CBF9, #240558);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.abt-us .band-top .lead-p {
  font-size: 15px;
  line-height: 1.65;
  color: #2d1a5e;
  margin: 0 0 32px;
  max-width: 480px
}

.abt-us .img-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: -1px 9px 44px -2px #24055824
}

.abt-us .img-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 1px solid #13cbf933;
  border-radius: 18px
}

.abt-us .img-badge {
  position: absolute;
  bottom: 16px;
  left: -16px;
  background: #240558;
  color: #FFFDF6;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  box-shadow: -1px 6px 14px -2px #2405581c;
  white-space: nowrap
}

.abt-us .stat-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 8px
}

.abt-us .stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.abt-us .stat-num {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  background: linear-gradient(263deg, #13CBF9, #240558);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.abt-us .stat-lbl {
  font-size: 14px;
  color: #5a4a7a;
  line-height: 1.45
}

.abt-us .story-sec {
  background: #fff;
  padding: 64px 0
}

.abt-us .story-sec .pg-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start
}

.abt-us .story-col h2 {
  font-size: 36px;
  line-height: 1.2;
  color: #240558;
  margin: 0 0 8px;
  position: relative;
  display: inline-block
}

.abt-us .story-col h2::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(263deg, #13CBF9, #240558);
  border-radius: 3px;
  margin-top: 6px;
  animation: underline-draw .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) .2s forwards
}

@keyframes underline-draw {
  to {
    width: 100%
  }
}

.abt-us .story-col .sub-lbl {
  font-size: 14px;
  font-weight: 700;
  color: #13CBF9;
  margin-bottom: 8px
}

.abt-us .story-col p {
  font-size: 15px;
  line-height: 1.65;
  color: #2d1a5e;
  margin: 0 0 16px
}

.abt-us .story-col p:last-child {
  margin-bottom: 0
}

.abt-us .pillar-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.abt-us .pillar-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 6px;
  background: #FFFDF6;
  box-shadow: -1px 3px 4px -2px #13cbf90d;
  transition: box-shadow .6s ease, background .5s ease
}

.abt-us .pillar-list li:hover {
  background: #13cbf912;
  box-shadow: -1px 6px 14px -2px #13cbf91c
}

.abt-us .pill-num {
  flex: 0 0 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(263deg, #13CBF9, #240558);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: -1px 3px 4px -2px #2405580d
}

.abt-us .pill-body strong {
  display: block;
  font-size: 15px;
  color: #240558;
  margin-bottom: 4px
}

.abt-us .pill-body span {
  font-size: 14px;
  color: #5a4a7a;
  line-height: 1.45
}

.abt-us .img2-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: -1px 9px 44px -2px #24055824
}

.abt-us .img2-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 1px solid #2405581f;
  border-radius: 28px
}

.abt-us .img2-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(263deg, #13cbf926, #24055859);
  border-radius: 28px;
  pointer-events: none
}

.abt-us .img2-cap {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fffdf6f2;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  color: #240558;
  font-weight: 600;
  box-shadow: -1px 3px 4px -2px #2405580d
}

.abt-us .contact-sec {
  background: linear-gradient(263deg, #13cbf914, #2405580f);
  padding: 64px 0;
  border-top: 1px solid #13cbf926;
  border-bottom: 1px solid #24055814
}

.abt-us .contact-sec .pg-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start
}

.abt-us .contact-info h2 {
  font-size: 36px;
  line-height: 1.2;
  color: #240558;
  margin: 0 0 8px;
  position: relative;
  display: inline-block
}

.abt-us .contact-info h2::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(263deg, #13CBF9, #240558);
  border-radius: 3px;
  margin-top: 6px;
  animation: underline-draw .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) .4s forwards
}

.abt-us .contact-info p {
  font-size: 15px;
  line-height: 1.65;
  color: #2d1a5e;
  margin: 16px 0 32px
}

.abt-us .instructor-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border-radius: 18px;
  box-shadow: -1px 6px 14px -2px #2405581c;
  margin-bottom: 32px
}

.abt-us .instr-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 64px;
  border: 2px solid #13cbf94d
}

.abt-us .instr-photo img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  object-position: top;
  display: block
}

.abt-us .instr-meta strong {
  display: block;
  font-size: 15px;
  color: #240558;
  font-weight: 700
}

.abt-us .instr-meta span {
  font-size: 14px;
  color: #5a4a7a
}

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

.abt-us .addr-list li {
  font-size: 14px;
  color: #2d1a5e;
  line-height: 1.45;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px
}

.abt-us .addr-list li .addr-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #13CBF9;
  flex: 0 0 6px;
  margin-top: 5px
}

.abt-us .form-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: -1px 9px 44px -2px #24055824
}

.abt-us .form-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #240558;
  margin: 0 0 16px;
  line-height: 1.2
}

.abt-us .f-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px
}

.abt-us .f-row label {
  font-size: 14px;
  font-weight: 600;
  color: #240558
}

.abt-us .f-row input[type="text"],
.abt-us .f-row input[type="email"],
.abt-us .f-row input[type="tel"] {
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #24055833;
  border-radius: 6px;
  font-size: 15px;
  color: #240558;
  background: #FFFDF6;
  box-sizing: border-box;
  transition: border-color .5s ease, box-shadow .6s ease;
  outline: none
}

.abt-us .f-row input::placeholder {
  color: #24055859;
  font-weight: 300
}

.abt-us .f-row input:focus {
  border-color: #13CBF9;
  box-shadow: -1px 3px 4px -2px #13cbf90d
}

.abt-us .radio-grp {
  margin-bottom: 16px
}

.abt-us .radio-grp .r-lbl {
  font-size: 14px;
  font-weight: 600;
  color: #240558;
  display: block;
  margin-bottom: 8px
}

.abt-us .radio-opts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px
}

.abt-us .radio-opts label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #2d1a5e;
  cursor: pointer;
  padding: 4px 8px;
  border: 1px solid #2405582e;
  border-radius: 6px;
  transition: background .5s ease, border-color .5s ease
}

.abt-us .radio-opts label:hover {
  background: #13cbf914;
  border-color: #13CBF9
}

.abt-us .radio-opts input[type="radio"] {
  accent-color: #13CBF9
}

.abt-us .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px
}

.abt-us .privacy-row input[type="checkbox"] {
  margin-top: 3px;
  accent-color: #13CBF9;
  flex: 0 0 auto
}

.abt-us .privacy-row label {
  font-size: 14px;
  color: #5a4a7a;
  line-height: 1.45
}

.abt-us .privacy-row a {
  color: #13CBF9;
  text-decoration: underline;
  transition: color .5s ease
}

.abt-us .privacy-row a:hover {
  color: #240558
}

.abt-us .btn-submit {
  width: 100%;
  padding: 16px 32px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(263deg, #13CBF9, #240558);
  background-size: 200% 200%;
  background-position: right center;
  cursor: pointer;
  box-shadow: -1px 6px 14px -2px #2405581c;
  transition: background-position .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .6s ease
}

.abt-us .btn-submit:hover {
  background-position: left center;
  box-shadow: -1px 9px 44px -2px #24055824
}

.abt-us .btn-submit:focus {
  outline: 2px solid #13CBF9;
  outline-offset: 2px
}

.abt-us .btn-submit:active {
  background-position: right center
}

@media (max-width: 960px) {
  .abt-us .band-top .pg-wrap {
    flex-direction: column;
    gap: 32px
  }

  .abt-us .band-top .img-side {
    flex: 0 0 auto;
    width: 100%
  }

  .abt-us .story-sec .pg-wrap {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .abt-us .contact-sec .pg-wrap {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .abt-us .img2-wrap img {
    height: 280px
  }
}

@media (max-width: 480px) {
  .abt-us .pg-wrap {
    padding: 0 16px
  }

  .abt-us .band-top {
    padding: 32px 0
  }

  .abt-us .band-top h1 {
    font-size: 36px
  }

  .abt-us .stat-row {
    flex-wrap: wrap;
    gap: 16px
  }

  .abt-us .story-sec {
    padding: 32px 0
  }

  .abt-us .contact-sec {
    padding: 32px 0
  }

  .abt-us .form-card {
    padding: 16px
  }

  .abt-us .radio-opts {
    flex-direction: column
  }

  .abt-us .img-frame img {
    height: 220px
  }
}

.ct-us {
  background: #FFFDF6;
  overflow-x: clip
}

.ct-us .reach-band {
  width: 100%;
  background: linear-gradient(263deg, #240558 0%, #13CBF9 100%);
  padding: 64px 0 0;
  position: relative
}

.ct-us .reach-band::after {
  content: "";
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0
}

.ct-us .reach-band svg.divider-curve {
  display: block;
  width: 100%;
  height: 56px
}

.ct-us .reach-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start
}

.ct-us .reach-left {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 64px
}

.ct-us .reach-label {
  display: inline-block;
  background: #fffdf626;
  color: #FFFDF6;
  font-size: 14px;
  line-height: 1.2;
  padding: 4px 16px;
  border-radius: 3px;
  letter-spacing: .08em;
  text-transform: uppercase;
  width: fit-content
}

.ct-us .reach-heading {
  font-size: 48px;
  line-height: 1.2;
  color: #FFFDF6;
  margin: 0;
  animation: track-expand .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

.ct-us .reach-heading .accent-word {
  display: inline-block;
  position: relative;
  color: #13CBF9;
  -webkit-text-fill-color: #13CBF9
}

.ct-us .reach-heading .accent-word::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #13CBF9;
  border-radius: 3px;
  transform-origin: left;
  animation: line-draw .6s .5s ease both
}

@keyframes track-expand {
  from {
    letter-spacing: -.06em;
    opacity: .4
  }

  to {
    letter-spacing: 0;
    opacity: 1
  }
}

@keyframes line-draw {
  from {
    transform: scaleX(0)
  }

  to {
    transform: scaleX(1)
  }
}

.ct-us .reach-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #fffdf6e0;
  margin: 0
}

.ct-us .reach-details {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ct-us .det-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px
}

.ct-us .det-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #fffdf61f;
  display: flex;
  align-items: center;
  justify-content: center
}

.ct-us .det-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #FFFDF6;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.ct-us .det-text {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.ct-us .det-label {
  font-size: 14px;
  line-height: 1.2;
  color: #fffdf699;
  text-transform: uppercase;
  letter-spacing: .06em
}

.ct-us .det-val {
  font-size: 15px;
  line-height: 1.45;
  color: #FFFDF6;
  text-decoration: none;
  transition: color .5s ease
}

.ct-us .det-val:hover {
  color: #13CBF9
}

.ct-us .reach-img-wrap {
  flex: 1 1 0;
  position: relative;
  align-self: flex-end;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  border: 1px solid #fffdf62e;
  box-shadow: -1px 9px 44px -2px #13cbf924
}

.ct-us .reach-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  opacity: .72;
  transition: opacity .7s ease
}

.ct-us .reach-img-wrap:hover img {
  opacity: .88
}

.ct-us .reach-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, #2405588c 100%);
  pointer-events: none
}

.ct-us .zigzag-top {
  width: 100%;
  height: 20px;
  background: #FFFDF6;
  clip-path: polygon(0% 100%, 2.5% 0%, 5% 100%, 7.5% 0%, 10% 100%, 12.5% 0%, 15% 100%, 17.5% 0%, 20% 100%, 22.5% 0%, 25% 100%, 27.5% 0%, 30% 100%, 32.5% 0%, 35% 100%, 37.5% 0%, 40% 100%, 42.5% 0%, 45% 100%, 47.5% 0%, 50% 100%, 52.5% 0%, 55% 100%, 57.5% 0%, 60% 100%, 62.5% 0%, 65% 100%, 67.5% 0%, 70% 100%, 72.5% 0%, 75% 100%, 77.5% 0%, 80% 100%, 82.5% 0%, 85% 100%, 87.5% 0%, 90% 100%, 92.5% 0%, 95% 100%, 97.5% 0%, 100% 100%)
}

.ct-us .form-band {
  background: #FFFDF6;
  padding: 64px 0;
  position: relative
}

.ct-us .form-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start
}

.ct-us .form-sidebar {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 32px
}

.ct-us .sidebar-tag {
  display: inline-block;
  background: linear-gradient(263deg, #24055814 0%, #13cbf91a 100%);
  color: #240558;
  font-size: 14px;
  line-height: 1.2;
  padding: 4px 16px;
  border-radius: 3px;
  letter-spacing: .06em;
  text-transform: uppercase;
  width: fit-content
}

.ct-us .sidebar-head {
  font-size: 36px;
  line-height: 1.2;
  color: #240558;
  margin: 0;
  position: relative;
  display: inline-block;
  animation: track-expand .7s .2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

.ct-us .sidebar-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 48px;
  height: 3px;
  background: linear-gradient(263deg, #240558 0%, #13CBF9 100%);
  border-radius: 3px;
  animation: line-draw .6s .7s ease both
}

.ct-us .sidebar-note {
  font-size: 15px;
  line-height: 1.65;
  color: #240558;
  margin: 0;
  opacity: .78
}

.ct-us .sidebar-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0
}

.ct-us .sidebar-steps li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.45;
  color: #240558
}

.ct-us .sidebar-steps li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #13CBF9;
  margin-top: 6px
}

.ct-us .form-col {
  flex: 1 1 0
}

.ct-us .ct-form {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: -1px 6px 14px -2px #2405581c;
  border: 1px solid #24055812;
  display: flex;
  flex-direction: column;
  gap: 32px
}

.ct-us .fgroup {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ct-us .frow {
  display: flex;
  flex-direction: row;
  gap: 16px
}

.ct-us .frow .fgroup {
  flex: 1 1 0
}

.ct-us .flabel {
  font-size: 14px;
  line-height: 1.2;
  color: #240558;
  font-weight: 600;
  letter-spacing: .04em
}

.ct-us .flabel .req {
  color: #13CBF9;
  margin-left: 2px
}

.ct-us .finput {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  line-height: 1.45;
  color: #240558;
  background: #FFFDF6;
  border: 1.5px solid #2405582e;
  border-radius: 6px;
  outline: none;
  box-sizing: border-box;
  transition: border-color .5s ease, box-shadow .5s ease
}

.ct-us .finput::placeholder {
  color: #24055859;
  font-weight: 300
}

.ct-us .finput:focus {
  border-color: #13CBF9;
  box-shadow: -1px 3px 4px -2px #13cbf90d
}

.ct-us .checks-head {
  font-size: 14px;
  line-height: 1.2;
  color: #240558;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 4px
}

.ct-us .checks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px
}

.ct-us .chk-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1.5px solid #2405581f;
  background: #FFFDF6;
  transition: border-color .5s ease, background .6s ease;
  font-size: 15px;
  line-height: 1.45;
  color: #240558
}

.ct-us .chk-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #13CBF9;
  flex-shrink: 0;
  cursor: pointer
}

.ct-us .chk-item:has(input:checked) {
  border-color: #13CBF9;
  background: #13cbf90f
}

.ct-us .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #2405580a;
  border-radius: 6px;
  border: 1px solid #24055814
}

.ct-us .privacy-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #240558;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer
}

.ct-us .privacy-text {
  font-size: 14px;
  line-height: 1.65;
  color: #240558;
  opacity: .8
}

.ct-us .privacy-text a {
  color: #13CBF9;
  text-decoration: underline;
  transition: color .5s ease
}

.ct-us .privacy-text a:hover {
  color: #240558
}

.ct-us .submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  color: #FFFDF6;
  background: linear-gradient(263deg, #240558 0%, #13CBF9 100%);
  border: none;
  border-radius: 28px;
  cursor: pointer;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: box-shadow .6s ease;
  box-shadow: -1px 6px 14px -2px #2405581c
}

.ct-us .submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(263deg, #13CBF9 0%, #240558 100%);
  opacity: 0;
  transition: opacity .7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 28px
}

.ct-us .submit-btn:hover::before {
  opacity: 1
}

.ct-us .submit-btn:hover {
  box-shadow: -1px 9px 44px -2px #24055824
}

.ct-us .submit-btn span {
  position: relative;
  z-index: 1
}

.ct-us .submit-btn svg {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  stroke: #FFFDF6;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .5s ease
}

.ct-us .submit-btn:hover svg {
  transform: translateX(4px)
}

.ct-us .submit-btn:focus-visible {
  outline: 3px solid #13CBF9;
  outline-offset: 3px
}

@media (max-width: 960px) {
  .ct-us .reach-inner {
    flex-direction: column;
    gap: 32px
  }

  .ct-us .reach-left {
    flex: none;
    width: 100%;
    padding-bottom: 0
  }

  .ct-us .reach-img-wrap {
    width: 100%
  }

  .ct-us .reach-img-wrap img {
    height: 280px
  }

  .ct-us .form-inner {
    flex-direction: column;
    gap: 32px
  }

  .ct-us .form-sidebar {
    flex: none;
    width: 100%;
    position: static
  }

  .ct-us .checks-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width: 480px) {
  .ct-us .reach-heading {
    font-size: 36px
  }

  .ct-us .reach-inner,
  .ct-us .form-inner {
    padding: 0 16px
  }

  .ct-us .ct-form {
    padding: 16px
  }

  .ct-us .frow {
    flex-direction: column
  }

  .ct-us .reach-band {
    padding: 32px 0 0
  }

  .ct-us .form-band {
    padding: 32px 0
  }
}

.bse {
  max-width: 100%;
  overflow-x: hidden
}

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

.bse ::selection {
  background: #240558;
  color: #fff
}

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

.bse .title-blk {
  position: relative;
  background: linear-gradient(263deg, #240558 0%, #13CBF9 100%);
  padding: 64px 0;
  overflow: hidden
}

.bse .title-blk::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(263deg, #240558eb 0%, #13cbf9d1 100%);
  z-index: 0
}

.bse .title-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden
}

.bse .title-dots span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fffdf62e
}

.bse .title-dots span:nth-child(1) {
  top: 18%;
  left: 8%
}

.bse .title-dots span:nth-child(2) {
  top: 35%;
  left: 14%
}

.bse .title-dots span:nth-child(3) {
  top: 55%;
  left: 6%
}

.bse .title-dots span:nth-child(4) {
  top: 72%;
  left: 20%
}

.bse .title-dots span:nth-child(5) {
  top: 85%;
  left: 10%
}

.bse .title-dots span:nth-child(6) {
  top: 20%;
  right: 12%
}

.bse .title-dots span:nth-child(7) {
  top: 40%;
  right: 7%
}

.bse .title-dots span:nth-child(8) {
  top: 60%;
  right: 15%
}

.bse .title-dots span:nth-child(9) {
  top: 78%;
  right: 9%
}

.bse .title-dots span:nth-child(10) {
  top: 50%;
  left: 50%
}

.bse .title-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px
}

.bse .title-text {
  flex: 1
}

.bse .title-num {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 900;
  color: #fffdf626;
  display: block;
  margin-bottom: 8px
}

.bse .title-h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #FFFDF6;
  margin: 0 0 16px;
  font-weight: 800
}

.bse .title-sub {
  font-size: 15px;
  line-height: 1.65;
  color: #fffdf6e0;
  margin: 0 0 32px;
  max-width: 480px
}

.bse .title-badge {
  display: inline-block;
  background: #fffdf61f;
  border: 1px solid #fffdf64d;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  color: #FFFDF6;
  letter-spacing: .04em
}

.bse .title-img-wrap {
  flex: 0 0 340px;
  position: relative
}

.bse .title-img-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #fffdf638;
  box-shadow: -1px 9px 44px -2px #13cbf924
}

.bse .title-img-frame img {
  width: 340px;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block
}

.bse .title-bracket {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: #fffdf680;
  border-style: solid
}

.bse .title-bracket.tl {
  top: -8px;
  left: -8px;
  border-width: 2px 0 0 2px
}

.bse .title-bracket.br {
  bottom: -8px;
  right: -8px;
  border-width: 0 2px 2px 0
}

.bse .nums-blk {
  background: #FFFDF6;
  padding: 64px 0
}

.bse .sec-divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px
}

.bse .sec-divider .div-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #13cbf966, transparent)
}

.bse .sec-divider .div-num {
  font-size: 14px;
  color: #13CBF9;
  font-weight: 700;
  letter-spacing: .08em
}

.bse .nums-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 32px
}

.bse .num-card {
  background: #FFFDF6;
  border: 1px solid #13cbf92e;
  border-radius: 18px;
  padding: 32px 16px;
  text-align: center;
  box-shadow: -1px 6px 14px -2px #13cbf91c;
  transition: box-shadow .6s ease, border-color .5s ease;
  position: relative;
  overflow: hidden
}

.bse .num-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(263deg, #240558, #13CBF9);
  border-radius: 0 0 18px 18px;
  opacity: 0;
  transition: opacity .6s ease
}

.bse .num-card:hover {
  box-shadow: -1px 9px 44px -2px #13cbf924;
  border-color: #13cbf966
}

.bse .num-card:hover::after {
  opacity: 1
}

.bse .num-val {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 900;
  background: linear-gradient(263deg, #240558, #13CBF9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block
}

.bse .num-label {
  font-size: 14px;
  line-height: 1.45;
  color: #240558;
  margin-top: 8px;
  display: block
}

.bse .nums-note {
  font-size: 14px;
  line-height: 1.65;
  color: #555;
  margin-top: 32px;
  max-width: 600px
}

.bse .stories-blk {
  background: linear-gradient(263deg, #2405580a 0%, #13cbf90f 100%);
  padding: 64px 0;
  border-top: 1px solid #13cbf91f;
  border-bottom: 1px solid #13cbf91f
}

.bse .stories-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  margin-top: 32px
}

.bse .story-portrait {
  flex: 0 0 160px
}

.bse .story-portrait img {
  width: 160px;
  height: 240px;
  object-fit: cover;
  object-position: top;
  border-radius: 18px;
  border: 1px solid #13cbf938;
  box-shadow: -1px 6px 14px -2px #13cbf91c;
  display: block
}

.bse .story-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.bse .story-card {
  background: #FFFDF6;
  border-radius: 18px;
  padding: 32px;
  border: 1px solid #24055814;
  box-shadow: -1px 3px 4px -2px #2405580d;
  position: relative
}

.bse .story-card .sq-accent {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: linear-gradient(263deg, #240558, #13CBF9)
}

.bse .story-name {
  font-size: 15px;
  font-weight: 700;
  color: #240558;
  margin: 0 0 4px
}

.bse .story-role {
  font-size: 14px;
  color: #13CBF9;
  margin: 0 0 16px
}

.bse .story-text {
  font-size: 15px;
  line-height: 1.65;
  color: #333;
  margin: 0
}

.bse .story-link-row {
  margin-top: 32px
}

.bse .story-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #240558;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #13cbf966;
  padding-bottom: 4px;
  transition: color .5s ease, border-color .6s ease
}

.bse .story-link:hover {
  color: #13CBF9;
  border-color: #13CBF9
}

.bse .story-link svg {
  width: 16px;
  height: 16px;
  transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.bse .story-link:hover svg {
  transform: translateX(4px)
}

.bse .approach-blk {
  background: #240558;
  padding: 64px 0
}

.bse .approach-blk .sec-divider .div-line {
  background: linear-gradient(90deg, transparent, #13cbf94d, transparent)
}

.bse .approach-blk .sec-divider .div-num {
  color: #13CBF9
}

.bse .approach-h2 {
  font-size: 36px;
  line-height: 1.2;
  color: #FFFDF6;
  margin: 0 0 8px;
  font-weight: 800
}

.bse .approach-lead {
  font-size: 15px;
  line-height: 1.65;
  color: #fffdf6bf;
  margin: 0 0 32px;
  max-width: 560px
}

.bse .approach-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px
}

.bse .approach-img-col {
  position: relative
}

.bse .approach-img-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #13cbf938;
  box-shadow: -1px 9px 44px -2px #13cbf924;
  position: relative
}

.bse .approach-img-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block
}

.bse .approach-bracket {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: #13cbf980;
  border-style: solid
}

.bse .approach-bracket.tl {
  top: -8px;
  left: -8px;
  border-width: 2px 0 0 2px
}

.bse .approach-bracket.br {
  bottom: -8px;
  right: -8px;
  border-width: 0 2px 2px 0
}

.bse .approach-items {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.bse .appr-item {
  background: #fffdf60d;
  border: 1px solid #13cbf926;
  border-radius: 18px;
  padding: 16px 32px 16px 16px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  transition: background .6s ease, border-color .5s ease
}

.bse .appr-item:hover {
  background: #fffdf617;
  border-color: #13cbf959
}

.bse .appr-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #13CBF9;
  flex-shrink: 0;
  margin-top: 6px
}

.bse .appr-item-h {
  font-size: 15px;
  font-weight: 700;
  color: #FFFDF6;
  margin: 0 0 4px
}

.bse .appr-item-p {
  font-size: 14px;
  line-height: 1.65;
  color: #fffdf6b8;
  margin: 0
}

.bse .longval-blk {
  background: #FFFDF6;
  padding: 64px 0
}

.bse .longval-row {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: center;
  margin-top: 32px
}

.bse .longval-img-col {
  flex: 0 0 420px;
  position: relative
}

.bse .longval-img-frame {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #13cbf933;
  box-shadow: -1px 9px 44px -2px #13cbf924
}

.bse .longval-img-frame img {
  width: 420px;
  height: 340px;
  object-fit: cover;
  object-position: center;
  display: block
}

.bse .longval-text-col {
  flex: 1
}

.bse .longval-h2 {
  font-size: 36px;
  line-height: 1.2;
  color: #240558;
  margin: 0 0 16px;
  font-weight: 800;
  position: relative;
  display: inline-block
}

.bse .longval-h2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(263deg, #240558, #13CBF9);
  animation: underline-draw .8s .4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

@keyframes underline-draw {
  to {
    width: 100%
  }
}

.bse .longval-lead {
  font-size: 15px;
  line-height: 1.65;
  color: #333;
  margin: 16px 0 32px
}

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

.bse .longval-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.65;
  color: #333
}

.bse .longval-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #13CBF9;
  flex-shrink: 0;
  margin-top: 8px
}

.bse .cond-blk {
  background: linear-gradient(263deg, #13CBF9 0%, #240558 100%);
  padding: 64px 0
}

.bse .cond-blk .sec-divider .div-num {
  color: #FFFDF6
}

.bse .cond-blk .sec-divider .div-line {
  background: linear-gradient(90deg, transparent, #fffdf659, transparent)
}

.bse .cond-h2 {
  font-size: 36px;
  line-height: 1.2;
  color: #FFFDF6;
  margin: 0 0 8px;
  font-weight: 800
}

.bse .cond-sub {
  font-size: 15px;
  line-height: 1.65;
  color: #fffdf6d1;
  margin: 0 0 32px;
  max-width: 540px
}

.bse .cond-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px
}

.bse .cond-card {
  background: #fffdf61a;
  border: 1px solid #fffdf633;
  border-radius: 18px;
  padding: 32px;
  transition: background .6s ease
}

.bse .cond-card:hover {
  background: #fffdf629
}

.bse .cond-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px
}

.bse .cond-card-h {
  font-size: 15px;
  font-weight: 700;
  color: #FFFDF6;
  margin: 0 0 8px
}

.bse .cond-card-p {
  font-size: 14px;
  line-height: 1.65;
  color: #fffdf6c7;
  margin: 0
}

.bse .cond-note {
  margin-top: 32px;
  font-size: 14px;
  line-height: 1.65;
  color: #fffdf6b8;
  background: #fffdf614;
  border-radius: 6px;
  padding: 16px;
  border-left: 3px solid #fffdf666;
  border-right: 1px solid #fffdf61f;
  border-top: 1px solid #fffdf61f;
  border-bottom: 1px solid #fffdf61f
}

.bse .avail-blk {
  background: #FFFDF6;
  padding: 64px 0
}

.bse .avail-h2 {
  font-size: 36px;
  line-height: 1.2;
  color: #240558;
  margin: 0 0 8px;
  font-weight: 800
}

.bse .avail-sub {
  font-size: 15px;
  line-height: 1.65;
  color: #555;
  margin: 0 0 32px;
  max-width: 540px
}

.bse .avail-layout {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  margin-top: 32px
}

.bse .avail-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.bse .avail-item {
  border-radius: 18px;
  border: 1px solid #13cbf92e;
  padding: 32px;
  background: #FFFDF6;
  box-shadow: -1px 3px 4px -2px #13cbf90d;
  transition: box-shadow .7s ease, border-color .5s ease;
  position: relative
}

.bse .avail-item:hover {
  box-shadow: -1px 9px 44px -2px #13cbf924;
  border-color: #13cbf966
}

.bse .avail-item-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #13CBF9;
  letter-spacing: .06em;
  margin-bottom: 8px
}

.bse .avail-item-h {
  font-size: 15px;
  font-weight: 700;
  color: #240558;
  margin: 0 0 8px
}

.bse .avail-item-p {
  font-size: 14px;
  line-height: 1.65;
  color: #444;
  margin: 0
}

.bse .avail-portrait-col {
  flex: 0 0 200px;
  position: relative
}

.bse .avail-portrait-col img {
  width: 200px;
  height: 300px;
  object-fit: cover;
  object-position: top;
  border-radius: 18px;
  border: 1px solid #13cbf938;
  box-shadow: -1px 6px 14px -2px #13cbf91c;
  display: block
}

.bse .avail-portrait-caption {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.45;
  color: #333;
  text-align: center
}

.bse .avail-portrait-name {
  font-weight: 700;
  color: #240558;
  display: block
}

.bse .avail-portrait-role {
  color: #13CBF9;
  display: block
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(32px)
  }

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

@keyframes slide-left {
  from {
    opacity: 0;
    transform: translateX(32px)
  }

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

@keyframes slide-right {
  from {
    opacity: 0;
    transform: translateX(-32px)
  }

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

@keyframes fade-in {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.bse .title-text {
  animation: slide-right .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

.bse .title-img-wrap {
  animation: slide-left .7s .15s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

.bse .num-card:nth-child(1) {
  animation: slide-up .6s .1s ease both
}

.bse .num-card:nth-child(2) {
  animation: slide-up .6s .2s ease both
}

.bse .num-card:nth-child(3) {
  animation: slide-up .6s .3s ease both
}

.bse .num-card:nth-child(4) {
  animation: slide-up .6s .4s ease both
}

@media (max-width: 960px) {
  .bse .title-inner {
    flex-direction: column;
    gap: 32px
  }

  .bse .title-img-wrap {
    flex: none;
    width: 100%
  }

  .bse .title-img-frame img {
    width: 100%;
    height: 280px
  }

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

  .bse .stories-row {
    flex-direction: column
  }

  .bse .story-portrait {
    flex: none
  }

  .bse .approach-cols {
    grid-template-columns: 1fr
  }

  .bse .approach-img-frame img {
    height: 240px
  }

  .bse .longval-row {
    flex-direction: column;
    gap: 32px
  }

  .bse .longval-img-col {
    flex: none;
    width: 100%
  }

  .bse .longval-img-frame img {
    width: 100%;
    height: 260px
  }

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

  .bse .avail-layout {
    flex-direction: column
  }

  .bse .avail-portrait-col {
    flex: none;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
  }

  .bse .avail-portrait-col img {
    width: 120px;
    height: 180px
  }

  .bse .avail-portrait-caption {
    text-align: left;
    margin-top: 0
  }
}

@media (max-width: 480px) {
  .bse .pg-wrap {
    padding: 0 16px
  }

  .bse .title-inner {
    padding: 0 16px
  }

  .bse .title-h1 {
    font-size: 36px
  }

  .bse .nums-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px
  }

  .bse .cond-grid {
    grid-template-columns: 1fr
  }

  .bse .approach-cols {
    grid-template-columns: 1fr
  }

  .bse .story-card {
    padding: 16px
  }

  .bse .avail-item {
    padding: 16px
  }
}

.success-pg {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 16px;
  background: #FFFDF6
}

.success-pg .success-wrap {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px
}

.success-pg .icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 28px;
  background: linear-gradient(263deg, #13CBF9, #240558);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: -1px 9px 44px -2px #13cbf924;
  flex-shrink: 0
}

.success-pg .icon-ring svg {
  width: 36px;
  height: 36px;
  display: block
}

.success-pg .success-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: -1px 6px 14px -2px #2405581c;
  padding: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  max-width: 560px;
  width: 100%;
  border: 1px solid #13cbf92e
}

.success-pg .success-heading {
  font-size: 36px;
  line-height: 1.2;
  color: #240558;
  margin: 0;
  position: relative;
  display: inline-block
}

.success-pg .success-heading::after {
  content: '';
  display: block;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(263deg, #13CBF9, #240558);
  margin-top: 8px;
  animation: underline-draw .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  transform-origin: left
}

@keyframes underline-draw {
  from {
    transform: scaleX(0);
    opacity: 0
  }

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

.success-pg .success-msg {
  font-size: 15px;
  line-height: 1.65;
  color: #240558;
  margin: 0;
  opacity: .82;
  max-width: 400px
}

.success-pg .divider-line {
  width: 48px;
  height: 2px;
  border-radius: 3px;
  background: linear-gradient(263deg, #13CBF9, #240558);
  opacity: .35
}

.success-pg .success-detail {
  font-size: 14px;
  line-height: 1.45;
  color: #240558;
  opacity: .6;
  margin: 0
}

.success-pg .back-btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 6px;
  background: linear-gradient(263deg, #13CBF9, #240558);
  color: #FFFDF6;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: -1px 6px 14px -2px #2405581c;
  transition: background-position .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .5s ease;
  background-size: 200% 200%;
  background-position: 0 50%
}

.success-pg .back-btn:hover {
  background-position: 100% 50%;
  box-shadow: -1px 9px 44px -2px #13cbf924
}

.success-pg .back-btn:focus {
  outline: 2px solid #13CBF9;
  outline-offset: 4px
}

.success-pg .accent-label {
  display: inline-block;
  background: #13cbf91a;
  color: #240558;
  font-size: 14px;
  line-height: 1.45;
  padding: 4px 16px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0
}

@media (max-width: 480px) {
  .success-pg .success-card {
    padding: 32px 16px
  }

  .success-pg .success-heading {
    font-size: 36px
  }
}