html {
  box-sizing: border-box;
  scroll-behavior: auto;
  font-family: 'IBM Plex Serif', Georgia, serif
}

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

body {
  margin: 0;
  padding: 0
}

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

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

  to {
    outline-offset: 3px
  }
}

.hd {
  background: linear-gradient(160deg, #EEE1E6 0%, #fff 55%, #D9B6C8 100%);
  border-bottom: 1px solid #D9B6C8;
  box-shadow: 0 3px 3px 0 #c167b114;
  position: relative
}

.hd__top {
  max-width: 1024px;
  margin: 0 auto;
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  gap: 24px
}

.hd__brand-pod {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0
}

.hd__logo-cell {
  width: 90px;
  height: 90px;
  border-radius: 40px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px #D9B6C8, 0 0 0 6px #c167b12e 0 7px 28px 0 #c167b117;
  flex-shrink: 0;
  overflow: hidden
}

.hd__logo-cell img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block
}

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

.hd__name {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #C167B1;
  margin: 0
}

.hd__tagline {
  font-size: 14px;
  line-height: 1.4;
  color: #4a3040;
  font-style: italic;
  margin: 0
}

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

.hd__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 4px;
  list-style: none;
  margin: 0;
  padding: 0
}

.hd__menu-item a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 1.4;
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 700;
  color: #3a1f30;
  text-decoration: none;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: color .28s ease-in-out, background-color .35s cubic-bezier(0.4, 0, 0.2, 1), border-color .28s ease-in-out
}

.hd__menu-item a:hover {
  color: #C167B1;
  background-color: #c167b114;
  border-color: #D9B6C8
}

.hd__menu-item--active a {
  color: #C167B1;
  border-color: #C167B1;
  background-color: #c167b10f
}

.hd__contact-pod {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0
}

.hd__phone {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #3a1f30;
  text-decoration: none;
  letter-spacing: .01em;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .28s ease-in-out
}

.hd__phone:hover {
  color: #C167B1
}

.hd__phone-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.hd__email {
  font-size: 14px;
  line-height: 1.4;
  color: #7a4d6a;
  text-decoration: none;
  transition: color .32s cubic-bezier(0.4, 0, 0.2, 1)
}

.hd__email:hover {
  color: #C167B1
}

@media (max-width: 768px) {
  .hd__top {
    padding: 16px 16px 0;
    flex-wrap: wrap
  }

  .hd__bottom {
    padding: 8px 16px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
  }

  .hd__contact-pod {
    align-items: flex-start
  }

  .hd__name {
    font-size: 30px
  }
}

.ft {
  background: linear-gradient(170deg, #2a0f22 0%, #3d1533 60%, #1e0a18 100%);
  position: relative;
  overflow: hidden
}

.ft::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #d9b6c80a;
  backdrop-filter: blur(2px);
  pointer-events: none
}

.ft__glass {
  position: relative;
  z-index: 1;
  max-width: 1024px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start
}

.ft__brand-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px
}

.ft__brand-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #D9B6C8;
  margin: 0
}

.ft__contact-cell {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ft__cell-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #C167B1;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 8px
}

.ft__addr {
  font-size: 14px;
  line-height: 1.6;
  color: #D9B6C8;
  font-style: normal;
  margin: 0
}

.ft__link {
  font-size: 14px;
  line-height: 1.6;
  color: #D9B6C8;
  text-decoration: none;
  transition: color .26s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.ft__link:hover {
  color: #C167B1
}

.ft__legal-cell {
  display: flex;
  flex-direction: column;
  gap: 8px
}

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

.ft__legal-menu a {
  font-size: 14px;
  line-height: 1.6;
  color: #D9B6C8;
  text-decoration: none;
  transition: color .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.ft__legal-menu a:hover {
  color: #C167B1
}

.ft__strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid #c167b133;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px
}

.ft__logo-cell {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: #ffffff14;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px #c167b166 0 0 0 5px #c167b11f 0 7px 28px 0 #c167b117;
  overflow: hidden
}

.ft__logo-cell img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  display: block
}

.ft__copy {
  font-size: 14px;
  line-height: 1.4;
  color: #d9b6c899;
  margin: 0;
  text-align: center
}

@media (max-width: 768px) {
  .ft__glass {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 16px
  }

  .ft__brand-cell {
    align-items: center;
    text-align: center
  }
}

@media (min-width: 769px) and (max-width: 1280px) {
  .ft__glass {
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }

  .ft__legal-cell {
    grid-column: 1 / -1
  }
}

.ck-bar {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 360px;
  max-width: calc(100vw - 32px);
  background: #ffffffeb;
  backdrop-filter: blur(8px);
  border: 1px solid #D9B6C8;
  border-radius: 3px;
  box-shadow: 0 12px 36px 0 #c167b11a;
  z-index: 2000;
  padding: 24px;
  display: none
}

.ck-bar__body {
  font-size: 14px;
  line-height: 1.6;
  color: #2a0f22;
  margin: 0 0 16px
}

.ck-bar__uses {
  margin: 8px 0 0;
  padding: 0 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #4a3040
}

.ck-bar__uses li {
  margin-bottom: 4px
}

.ck-bar__acts {
  display: flex;
  gap: 16px;
  justify-content: flex-end
}

.ck-bar__btn {
  font-size: 14px;
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 700;
  line-height: 1.4;
  color: #C167B1;
  background: none;
  border: none;
  padding: 8px 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  min-height: 44px;
  transition: color .26s ease-in-out
}

.ck-bar__btn:hover {
  color: #3a1f30
}

.ck-bar__btn--decline {
  color: #7a4d6a;
  font-weight: 400
}

.ck-bar__btn--decline:hover {
  color: #3a1f30
}

.rules-kjhd-block {
  max-width: 1024px;
  margin: 0 auto;
  padding: 80px 40px
}

.rules-kjhd-block h1 {
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #C167B1;
  margin-bottom: 40px;
  margin-top: 0
}

.rules-kjhd-block h2 {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -.015em;
  color: #C167B1;
  margin-top: 80px;
  margin-bottom: 24px
}

.rules-kjhd-block h3 {
  font-size: 30px;
  line-height: 1.4;
  letter-spacing: -.01em;
  color: #D9B6C8;
  margin-top: 40px;
  margin-bottom: 16px
}

.rules-kjhd-block h4 {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #C167B1;
  margin-top: 40px;
  margin-bottom: 16px
}

.rules-kjhd-block h5 {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 8px
}

.rules-kjhd-block h6 {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 8px
}

.rules-kjhd-block p {
  font-size: 14px;
  line-height: 1.9;
  color: #2a2a2a;
  margin-top: 0;
  margin-bottom: 16px
}

.rules-kjhd-block ul,
.rules-kjhd-block ol {
  font-size: 14px;
  line-height: 1.9;
  color: #2a2a2a;
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 24px
}

.rules-kjhd-block ul {
  list-style: none;
  padding-left: 0
}

.rules-kjhd-block ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px
}

.rules-kjhd-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 40px;
  background-color: #C167B1
}

.rules-kjhd-block ol {
  list-style: decimal
}

.rules-kjhd-block ol li {
  margin-bottom: 8px;
  padding-left: 8px
}

.rules-kjhd-block ol li::marker {
  color: #C167B1;
  font-weight: 700
}

.rules-kjhd-block strong,
.rules-kjhd-block b {
  font-weight: 700;
  color: #1e1e1e
}

.rules-kjhd-block a {
  color: #C167B1;
  text-decoration: underline;
  text-decoration-color: #D9B6C8;
  text-underline-offset: 3px;
  transition: color .28s ease-in-out, text-decoration-color .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.rules-kjhd-block a:hover {
  color: #a04f97;
  text-decoration-color: #C167B1
}

.rules-kjhd-block table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 40px;
  box-shadow: 0 7px 28px 0 #c167b117;
  border-radius: 3px;
  overflow: hidden
}

.rules-kjhd-block thead {
  background-color: #EEE1E6
}

.rules-kjhd-block thead th {
  padding: 16px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: #2a2a2a;
  letter-spacing: .04em;
  text-transform: uppercase
}

.rules-kjhd-block tbody tr {
  border-bottom: 1px solid #EEE1E6;
  transition: background-color .25s ease-in-out
}

.rules-kjhd-block tbody tr:last-child {
  border-bottom: none
}

.rules-kjhd-block tbody tr:hover {
  background-color: #f7f0f5
}

.rules-kjhd-block td {
  padding: 16px;
  color: #2a2a2a;
  vertical-align: top
}

.rules-kjhd-block th {
  padding: 16px
}

.rules-kjhd-block hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D9B6C8 30%, #D9B6C8 70%, transparent);
  margin-top: 40px;
  margin-bottom: 40px
}

@media (max-width: 768px) {
  .rules-kjhd-block {
    padding: 40px 16px
  }

  .rules-kjhd-block h1 {
    font-size: 42px
  }

  .rules-kjhd-block h2 {
    font-size: 30px;
    margin-top: 40px
  }

  .rules-kjhd-block h3 {
    font-size: 14px
  }

  .rules-kjhd-block table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }
}

@media (min-width: 769px) and (max-width: 1280px) {
  .rules-kjhd-block {
    padding: 80px 24px
  }
}

.abt {
  width: 100%;
  overflow-x: clip
}

.abt .pg-row {
  display: flex;
  flex-direction: row;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px
}

.abt .pg-col {
  display: flex;
  flex-direction: column
}

.abt .s1 {
  background: #fff;
  padding: 80px 0 40px;
  position: relative
}

.abt .s1__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.abt .s1__deco-c1 {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 40px;
  background: #EEE1E6;
  opacity: .18;
  top: -80px;
  right: -60px
}

.abt .s1__deco-c2 {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 40px;
  background: #D9B6C8;
  opacity: .13;
  bottom: 40px;
  left: -40px
}

.abt .s1__deco-c3 {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 40px;
  background: #C167B1;
  opacity: .08;
  top: 60px;
  left: 30%
}

.abt .s1__row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px
}

.abt .s1__img-col {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column
}

.abt .s1__img-wrap {
  width: 420px;
  height: 540px;
  overflow: hidden;
  border-radius: 40px 3px 40px 3px;
  box-shadow: 0 12px 36px 0 #c167b11a
}

.abt .s1__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: 100%;
  display: block;
  transition: filter .38s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt .s1__img-wrap:hover img {
  filter: saturate(0)
}

.abt .s1__txt-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 40px
}

.abt .s1__label {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: .12em;
  color: #C167B1;
  text-transform: uppercase;
  margin-bottom: 16px
}

.abt .s1__h1 {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #1b1b1b;
  font-weight: 300;
  margin: 0 0 24px
}

.abt .s1__h1 em {
  font-style: italic;
  color: #C167B1
}

.abt .s1__stmt {
  font-size: 14px;
  line-height: 1.9;
  color: #2e2e2e;
  margin: 0 0 24px
}

.abt .s1__divider {
  width: 48px;
  height: 2px;
  background: #D9B6C8;
  margin-bottom: 24px;
  border-radius: 3px
}

.abt .s1__sub {
  font-size: 14px;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0
}

.abt .s1__wave {
  width: 100%;
  margin-top: 40px;
  overflow: hidden;
  line-height: 0
}

.abt .s1__wave svg {
  display: block;
  width: 100%
}

.abt .s2 {
  background: #EEE1E6;
  padding: 80px 0;
  position: relative
}

.abt .s2__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 3px;
  box-shadow: inset 0 0 0 2px #c167b100;
  animation: edgepulse 3.6s ease-in-out infinite
}

@keyframes edgepulse {
  0% {
    box-shadow: inset 0 0 18px 0 #c167b100
  }

  50% {
    box-shadow: inset 0 0 36px 0 #c167b121
  }

  100% {
    box-shadow: inset 0 0 18px 0 #c167b100
  }
}

.abt .s2__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px
}

.abt .s2__top {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px
}

.abt .s2__left {
  flex: 1;
  display: flex;
  flex-direction: column
}

.abt .s2__right {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.abt .s2__h2 {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -.01em;
  font-weight: 300;
  color: #1b1b1b;
  margin: 0 0 24px
}

.abt .s2__h2 em {
  font-style: italic;
  color: #D9B6C8
}

.abt .s2__p {
  font-size: 14px;
  line-height: 1.9;
  color: #2e2e2e;
  text-indent: 24px;
  margin: 0
}

.abt .s2__p+.abt .s2__p {
  margin-top: 0
}

.abt .s2__img-a {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 3px 40px 3px 40px;
  box-shadow: 0 7px 28px 0 #c167b117
}

.abt .s2__img-a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: 100%;
  display: block;
  transition: filter .28s ease-in-out
}

.abt .s2__img-a:hover img {
  filter: saturate(0)
}

.abt .s2__img-b {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 40px 3px 40px 3px;
  box-shadow: 0 3px 3px 0 #c167b114
}

.abt .s2__img-b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: 100%;
  display: block;
  transition: filter .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt .s2__img-b:hover img {
  filter: saturate(0)
}

.abt .s2__dashed {
  border: none;
  border-top: 1px dashed #C167B1;
  opacity: .3;
  margin: 0 0 40px
}

.abt .s2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px
}

.abt .s2__card {
  background: #fff;
  border-radius: 3px 40px 3px 3px;
  padding: 24px;
  box-shadow: 0 7px 28px 0 #c167b117;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.abt .s2__card-h {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  color: #C167B1;
  letter-spacing: .04em;
  text-transform: uppercase
}

.abt .s2__card-p {
  font-size: 14px;
  line-height: 1.6;
  color: #2e2e2e;
  margin: 0
}

.abt .s2__table-wrap {
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 7px 28px 0 #c167b117;
  margin-bottom: 40px
}

.abt .s2__tbl {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
  line-height: 1.6
}

.abt .s2__tbl thead tr {
  background: #C167B1
}

.abt .s2__tbl thead th {
  color: #fff;
  font-weight: 600;
  padding: 16px;
  text-align: left;
  letter-spacing: .04em;
  font-size: 14px
}

.abt .s2__tbl tbody tr {
  border-bottom: 1px solid #EEE1E6
}

.abt .s2__tbl tbody td {
  padding: 16px;
  color: #2e2e2e;
  vertical-align: middle
}

.abt .s2__tbl .td--low {
  background: #f9f0f6;
  color: #C167B1;
  font-weight: 600
}

.abt .s2__tbl .td--mid {
  background: #EEE1E6;
  color: #7a3a6e;
  font-weight: 600
}

.abt .s2__tbl .td--hi {
  background: #D9B6C8;
  color: #3a1232;
  font-weight: 600
}

.abt .s2__portrait-row {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start
}

.abt .s2__portrait-wrap {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px
}

.abt .s2__portrait-img {
  width: 200px;
  height: 280px;
  overflow: hidden;
  border-radius: 40px 3px 40px 3px;
  box-shadow: 0 12px 36px 0 #c167b11a
}

.abt .s2__portrait-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: 100%;
  display: block
}

.abt .s2__portrait-name {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  color: #1b1b1b;
  text-align: center
}

.abt .s2__portrait-role {
  font-size: 14px;
  line-height: 1.4;
  color: #C167B1;
  font-style: italic;
  text-align: center
}

.abt .s2__quote-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px
}

.abt .s2__quote {
  font-size: 14px;
  line-height: 1.9;
  color: #2e2e2e;
  font-style: italic;
  border-left: 3px solid #D9B6C8;
  padding-left: 16px;
  margin: 0
}

.abt .s2__img-c {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 3px 3px 40px 3px;
  box-shadow: 0 3px 3px 0 #c167b114
}

.abt .s2__img-c img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: 100%;
  display: block;
  transition: filter .32s ease-in-out
}

.abt .s2__img-c:hover img {
  filter: saturate(0)
}

.abt .s2__wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none
}

.abt .s2__wave-top svg {
  display: block;
  width: 100%
}

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

  .abt .s1__img-col {
    flex: none;
    width: 100%
  }

  .abt .s1__img-wrap {
    width: 100%;
    height: 300px
  }

  .abt .s1__txt-col {
    padding-top: 0
  }

  .abt .s1__h1 {
    font-size: 30px
  }

  .abt .s2__top {
    flex-direction: column
  }

  .abt .s2__right {
    flex: none;
    width: 100%
  }

  .abt .s2__grid {
    grid-template-columns: 1fr
  }

  .abt .s2__portrait-row {
    flex-direction: column;
    align-items: center
  }

  .abt .s2__portrait-wrap {
    flex: none
  }

  .abt .s2__tbl thead th,
  .abt .s2__tbl tbody td {
    padding: 8px;
    font-size: 14px
  }
}

@media (max-width: 1280px) and (min-width: 769px) {
  .abt .s1__img-col {
    flex: 0 0 340px
  }

  .abt .s1__img-wrap {
    width: 340px
  }
}

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

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

.lnch .ttl-blk {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0
}

.lnch .ttl-blk__left {
  background: #C167B1;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.lnch .ttl-blk__bg-num {
  position: absolute;
  top: -24px;
  left: -16px;
  font-size: 220px;
  font-weight: 900;
  color: #ffffff12;
  line-height: 1.2;
  pointer-events: none;
  user-select: none;
  letter-spacing: -8px
}

.lnch .ttl-blk__tag {
  font-size: 14px;
  line-height: 1.4;
  color: #ffffffbf;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 24px
}

.lnch .ttl-blk__h1 {
  font-size: 56px;
  line-height: 1.2;
  font-weight: 300;
  color: #fff;
  letter-spacing: -.02em;
  margin: 0 0 8px
}

.lnch .ttl-blk__h1 em {
  font-style: italic;
  color: #EEE1E6;
  font-weight: 400
}

.lnch .ttl-blk__sub {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffffd9;
  margin-top: 24px;
  max-width: 340px
}

.lnch .ttl-blk__right {
  background: #EEE1E6;
  position: relative;
  overflow: hidden
}

.lnch .ttl-blk__img-wrap {
  width: 100%;
  height: 100%;
  min-height: 480px
}

.lnch .ttl-blk__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: sepia(0.3) contrast(1.08) brightness(0.95);
  transition: filter .38s ease-in-out
}

.lnch .ttl-blk__img-wrap:hover img {
  filter: sepia(0.5) contrast(1.1) brightness(0.9) saturate(1.2)
}

.lnch .ttl-blk__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #c167b12e 50%, transparent 50%);
  pointer-events: none
}

@keyframes lnch-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px)
  }

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

.lnch .ttl-blk__tag {
  animation: lnch-fade-up .32s cubic-bezier(0.4, 0, 0.2, 1) .08s both
}

.lnch .ttl-blk__h1 {
  animation: lnch-fade-up .36s cubic-bezier(0.4, 0, 0.2, 1) .18s both
}

.lnch .ttl-blk__sub {
  animation: lnch-fade-up .38s cubic-bezier(0.4, 0, 0.2, 1) .3s both
}

.lnch .diff {
  background: #fff;
  padding: 80px 0
}

.lnch .diff__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start
}

.lnch .diff__left {
  position: sticky;
  top: 40px
}

.lnch .diff__eyebrow {
  font-size: 14px;
  line-height: 1.4;
  color: #C167B1;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px
}

.lnch .diff__h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 300;
  color: #2a1f28;
  letter-spacing: -.01em;
  margin: 0 0 24px
}

.lnch .diff__h2 span {
  display: block;
  text-decoration: underline;
  text-decoration-color: #D9B6C8;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px
}

.lnch .diff__img-wrap {
  margin-top: 40px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 7px 28px 0 #c167b117;
  position: relative
}

.lnch .diff__img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .38s ease-in-out
}

.lnch .diff__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #c167b100;
  transition: background .28s ease-in-out;
  pointer-events: none
}

.lnch .diff__img-wrap:hover img {
  transform: scale(1.04)
}

.lnch .diff__img-wrap:hover::after {
  background: #c167b12e
}

.lnch .diff__right {
  padding-top: 8px
}

.lnch .diff__item {
  padding: 24px 0;
  border-top: 1px solid #EEE1E6
}

.lnch .diff__item:last-child {
  border-bottom: 1px solid #EEE1E6
}

.lnch .diff__item-num {
  font-size: 14px;
  color: #D9B6C8;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 8px
}

.lnch .diff__item-h {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 400;
  color: #2a1f28;
  margin: 0 0 16px;
  letter-spacing: -.01em
}

.lnch .diff__item-p {
  font-size: 14px;
  line-height: 1.9;
  color: #3d2e3a;
  margin: 0;
  text-indent: 1.4em
}

.lnch .diff__item-p+.lnch .diff__item-p {
  text-indent: 1.4em
}

.lnch .prob {
  background: #2a1f28;
  padding: 80px 0;
  position: relative
}

.lnch .prob::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C167B1 50%, transparent 50%)
}

.lnch .prob__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px
}

.lnch .prob__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: end
}

.lnch .prob__eyebrow {
  font-size: 14px;
  line-height: 1.4;
  color: #D9B6C8;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px
}

.lnch .prob__h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 300;
  color: #fff;
  letter-spacing: -.01em;
  margin: 0
}

.lnch .prob__h2 em {
  font-style: italic;
  color: #C167B1
}

.lnch .prob__lead {
  font-size: 14px;
  line-height: 1.9;
  color: #ffffffb8;
  margin: 0;
  align-self: end;
  text-indent: 1.4em
}

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

.lnch .prob__card {
  background: #ffffff0a;
  border: 1px solid #c167b12e;
  border-radius: 3px;
  padding: 24px;
  transition: background .28s ease-in-out, border-color .28s ease-in-out
}

.lnch .prob__card:hover {
  background: #c167b11a;
  border-color: #c167b166
}

.lnch .prob__card-ico {
  width: 32px;
  height: 32px;
  margin-bottom: 16px
}

.lnch .prob__card-h {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  color: #EEE1E6;
  margin: 0 0 8px;
  letter-spacing: .04em;
  text-transform: uppercase
}

.lnch .prob__card-p {
  font-size: 14px;
  line-height: 1.6;
  color: #fff9;
  margin: 0
}

.lnch .prob__imgs {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px
}

.lnch .prob__img-item {
  border-radius: 3px;
  overflow: hidden;
  position: relative
}

.lnch .prob__img-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .35s ease-in-out
}

.lnch .prob__img-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #c167b100;
  transition: background .28s ease-in-out;
  pointer-events: none
}

.lnch .prob__img-item:hover img {
  transform: scale(1.05)
}

.lnch .prob__img-item:hover::after {
  background: #c167b138
}

.lnch .prob__img-item--tall img {
  height: 220px
}

.lnch .recog {
  background: #EEE1E6;
  padding: 80px 0 40px
}

.lnch .recog__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px
}

.lnch .recog__top {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 40px
}

.lnch .recog__h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 300;
  color: #2a1f28;
  letter-spacing: -.01em;
  margin: 0 0 16px
}

.lnch .recog__h2 span {
  color: #C167B1;
  font-style: italic
}

.lnch .recog__p {
  font-size: 14px;
  line-height: 1.9;
  color: #3d2e3a;
  margin: 0;
  text-indent: 1.4em
}

.lnch .recog__aside {
  padding-top: 8px
}

.lnch .recog__stat {
  padding: 24px 0;
  border-top: 1px solid #D9B6C8
}

.lnch .recog__stat:last-child {
  border-bottom: 1px solid #D9B6C8
}

.lnch .recog__stat-num {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 300;
  color: #C167B1;
  letter-spacing: -.02em
}

.lnch .recog__stat-label {
  font-size: 14px;
  line-height: 1.4;
  color: #3d2e3a;
  margin-top: 4px
}

.lnch .recog__people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px
}

.lnch .recog__person {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-radius: 3px;
  padding: 24px;
  box-shadow: 0 3px 3px 0 #c167b114;
  transition: box-shadow .28s ease-in-out
}

.lnch .recog__person:hover {
  box-shadow: 0 7px 28px 0 #c167b117
}

.lnch .recog__portrait {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 3px 3px 0 #c167b114
}

.lnch .recog__portrait img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: center;
  display: block
}

.lnch .recog__person-info {
  flex: 1
}

.lnch .recog__person-name {
  font-size: 14px;
  font-weight: 700;
  color: #2a1f28;
  margin: 0 0 4px;
  letter-spacing: .02em
}

.lnch .recog__person-role {
  font-size: 14px;
  line-height: 1.4;
  color: #C167B1;
  font-style: italic;
  margin: 0 0 8px
}

.lnch .recog__person-q {
  font-size: 14px;
  line-height: 1.6;
  color: #3d2e3a;
  margin: 0
}

.lnch .recog__assoc {
  border-top: 1px solid #D9B6C8;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap
}

.lnch .recog__assoc-label {
  font-size: 14px;
  color: #3d2e3a;
  letter-spacing: .06em;
  text-transform: uppercase;
  flex-shrink: 0
}

.lnch .recog__assoc-items {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center
}

.lnch .recog__assoc-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border-radius: 40px;
  border: 1px solid #D9B6C8;
  font-size: 14px;
  color: #2a1f28;
  box-shadow: 0 3px 3px 0 #c167b114;
  transition: border-color .25s ease-in-out
}

.lnch .recog__assoc-item:hover {
  border-color: #C167B1
}

.lnch .recog__assoc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C167B1;
  flex-shrink: 0
}

.lnch .prob__card-ico svg {
  width: 32px;
  height: 32px
}

@media (max-width: 768px) {
  .lnch .ttl-blk {
    grid-template-columns: 1fr
  }

  .lnch .ttl-blk__left {
    padding: 80px 24px 40px
  }

  .lnch .ttl-blk__h1 {
    font-size: 42px
  }

  .lnch .ttl-blk__img-wrap {
    min-height: 280px
  }

  .lnch .ttl-blk__bg-num {
    font-size: 140px
  }

  .lnch .diff__inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .lnch .diff__left {
    position: static
  }

  .lnch .diff__h2 {
    font-size: 30px
  }

  .lnch .prob__top {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .lnch .prob__h2 {
    font-size: 30px
  }

  .lnch .prob__grid {
    grid-template-columns: 1fr
  }

  .lnch .prob__imgs {
    grid-template-columns: 1fr 1fr
  }

  .lnch .prob__imgs .prob__img-item:last-child {
    display: none
  }

  .lnch .recog__top {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .lnch .recog__h2 {
    font-size: 30px
  }

  .lnch .recog__people {
    grid-template-columns: 1fr
  }

  .lnch .recog__assoc {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
  }
}

@media (min-width: 769px) and (max-width: 1280px) {
  .lnch .ttl-blk__h1 {
    font-size: 42px
  }

  .lnch .diff__inner {
    gap: 40px
  }

  .lnch .prob__grid {
    grid-template-columns: 1fr 1fr
  }
}

.ctus {
  width: 100%;
  overflow-x: clip
}

.ctus .pnl {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px
}

.ctus .reach {
  padding: 80px 0;
  background: #fff;
  position: relative
}

.ctus .reach__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}

.ctus .reach__left {
  position: relative
}

.ctus .reach__num {
  font-size: 56px;
  line-height: 1.2;
  font-weight: 900;
  color: #EEE1E6;
  letter-spacing: -2px;
  position: absolute;
  top: -24px;
  left: -16px;
  z-index: 0;
  user-select: none
}

.ctus .reach__tag {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: .12em;
  color: #C167B1;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  z-index: 1
}

.ctus .reach__h {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -.03em;
  font-weight: 300;
  color: #1b1b1b;
  margin: 0 0 24px;
  position: relative;
  z-index: 1
}

.ctus .reach__h em {
  font-style: italic;
  color: #C167B1;
  font-weight: 400
}

.ctus .reach__desc {
  font-size: 14px;
  line-height: 1.9;
  color: #2e2e2e;
  margin: 0 0 40px;
  text-indent: 1.5em;
  position: relative;
  z-index: 1
}

.ctus .reach__contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1
}

.ctus .reach__citem {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 3px 3px 0 #c167b114 0 7px 28px 0 #c167b117;
  border-top: 2px solid #EEE1E6;
  border-bottom: 2px solid #D9B6C8
}

.ctus .reach__cicon {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  background: linear-gradient(180deg, #EEE1E6 50%, #D9B6C8 50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ctus .reach__cicon svg {
  width: 20px;
  height: 20px
}

.ctus .reach__clabel {
  font-size: 14px;
  line-height: 1.4;
  color: #888;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px
}

.ctus .reach__cval {
  font-size: 14px;
  line-height: 1.6;
  color: #1b1b1b;
  font-weight: 600;
  word-break: break-word
}

.ctus .reach__cval a {
  color: #1b1b1b;
  text-decoration: none;
  transition: color .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .reach__cval a:hover {
  color: #C167B1
}

.ctus .reach__img-wrap {
  position: relative;
  border-radius: 40px 3px 40px 3px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/5;
  box-shadow: 0 12px 36px 0 #c167b11a
}

.ctus .reach__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) brightness(0.97)
}

.ctus .reach__img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #C167B1;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  padding: 8px 16px;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: .04em;
  box-shadow: 0 7px 28px 0 #c167b117
}

.ctus .reach__divider {
  height: 6px;
  border-top: 1.5px solid #D9B6C8;
  border-bottom: 1.5px solid #D9B6C8;
  background: #EEE1E6;
  margin: 0
}

.ctus .frm-blk {
  padding: 80px 0;
  background: #EEE1E6;
  position: relative
}

.ctus .frm-blk__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start
}

.ctus .frm-blk__aside {
  padding: 40px;
  background: #fff;
  border-radius: 3px 40px 3px 40px;
  box-shadow: 0 7px 28px 0 #c167b117
}

.ctus .frm-blk__aside-h {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 300;
  color: #1b1b1b;
  letter-spacing: -.02em;
  margin: 0 0 16px
}

.ctus .frm-blk__aside-h em {
  font-style: italic;
  color: #C167B1
}

.ctus .frm-blk__aside-p {
  font-size: 14px;
  line-height: 1.9;
  color: #2e2e2e;
  margin: 0 0 24px;
  text-indent: 1.5em
}

.ctus .steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative
}

.ctus .steps__item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 24px;
  animation: revl .38s cubic-bezier(0.4, 0, 0.2, 1) both
}

.ctus .steps__item:nth-child(1) {
  animation-delay: .1s
}

.ctus .steps__item:nth-child(2) {
  animation-delay: .22s
}

.ctus .steps__item:nth-child(3) {
  animation-delay: .34s
}

@keyframes revl {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

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

.ctus .steps__item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  width: 2px;
  bottom: 0;
  background: linear-gradient(180deg, #D9B6C8 50%, #EEE1E6 50%)
}

.ctus .steps__num {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #C167B1;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 3px 0 #c167b114;
  position: relative;
  z-index: 1
}

.ctus .steps__text {
  padding-top: 8px
}

.ctus .steps__text strong {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  color: #1b1b1b;
  font-weight: 700;
  margin-bottom: 4px
}

.ctus .steps__text span {
  font-size: 14px;
  line-height: 1.6;
  color: #555
}

.ctus .frm {
  background: #fff;
  border-radius: 3px;
  padding: 40px;
  box-shadow: 0 12px 36px 0 #c167b11a
}

.ctus .frm__h {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: -.02em;
  color: #1b1b1b;
  margin: 0 0 8px
}

.ctus .frm__sub {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0 0 40px
}

.ctus .frm__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px
}

.ctus .frm__field {
  position: relative;
  margin-bottom: 16px
}

.ctus .frm__field--full {
  grid-column: 1 / -1
}

.ctus .frm__input {
  width: 100%;
  box-sizing: border-box;
  padding: 24px 16px 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #1b1b1b;
  border: 1.5px solid #D9B6C8;
  border-radius: 3px;
  background: #fff;
  outline: none;
  transition: border-color .28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .35s ease-in-out;
  appearance: none
}

.ctus .frm__input:focus {
  border-color: #C167B1;
  box-shadow: 0 3px 3px 0 #c167b114 inset 0 1px 2px #c167b112 inset 0 -1px 1px #d9b6c81f
}

.ctus .frm__input::placeholder {
  color: transparent
}

.ctus .frm__lbl {
  position: absolute;
  left: 16px;
  top: 16px;
  font-size: 14px;
  line-height: 1.4;
  color: #888;
  pointer-events: none;
  transition: top .25s ease-in-out, font-size .25s ease-in-out, color .25s ease-in-out
}

.ctus .frm__input:focus~.frm__lbl,
.ctus .frm__input:not(:placeholder-shown)~.frm__lbl {
  top: 6px;
  font-size: 11px;
  color: #C167B1
}

.ctus .frm__budget {
  margin-bottom: 24px
}

.ctus .frm__budget-lbl {
  font-size: 14px;
  line-height: 1.4;
  color: #555;
  margin-bottom: 8px;
  display: block;
  letter-spacing: .04em
}

.ctus .budget-opts {
  display: flex;
  flex-direction: column;
  gap: 8px
}

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

.ctus .budget-opt input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #D9B6C8;
  border-radius: 40px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: border-color .28s cubic-bezier(0.4, 0, 0.2, 1), background .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .budget-opt input[type="radio"]:checked {
  border-color: #C167B1;
  background: #C167B1
}

.ctus .budget-opt input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.ctus .budget-opt input[type="radio"]:focus-visible {
  outline: 2px solid #C167B1;
  outline-offset: 2px
}

.ctus .budget-opt__txt {
  font-size: 14px;
  line-height: 1.6;
  color: #1b1b1b
}

.ctus .frm__privacy {
  margin-bottom: 24px
}

.ctus .prv-chk {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer
}

.ctus .prv-chk input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #D9B6C8;
  border-radius: 3px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  margin-top: 2px;
  transition: border-color .28s cubic-bezier(0.4, 0, 0.2, 1), background .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .prv-chk input[type="checkbox"]:checked {
  border-color: #C167B1;
  background: #C167B1
}

.ctus .prv-chk input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 1px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg)
}

.ctus .prv-chk input[type="checkbox"]:focus-visible {
  outline: 2px solid #C167B1;
  outline-offset: 2px
}

.ctus .prv-chk__txt {
  font-size: 14px;
  line-height: 1.6;
  color: #555
}

.ctus .prv-chk__txt a {
  color: #C167B1;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .prv-chk__txt a:hover {
  color: #9a4e8e
}

.ctus .frm__btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: #C167B1;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: .06em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  box-shadow: 0 7px 28px 0 #c167b117;
  transition: background .38s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .32s ease-in-out
}

.ctus .frm__btn:hover {
  background: #9a4e8e;
  box-shadow: 0 12px 36px 0 #c167b11a
}

.ctus .frm__btn:focus-visible {
  outline: 2px solid #C167B1;
  outline-offset: 3px
}

.ctus .frm__btn:active {
  background: #7d3d73
}

@media (max-width: 768px) {
  .ctus .reach__inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .ctus .reach__img-wrap {
    aspect-ratio: 3/2;
    order: -1
  }

  .ctus .reach__num {
    font-size: 42px
  }

  .ctus .reach__h {
    font-size: 30px
  }

  .ctus .frm-blk__inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .ctus .frm__row {
    grid-template-columns: 1fr
  }

  .ctus .frm {
    padding: 24px
  }

  .ctus .frm-blk__aside {
    padding: 24px
  }
}

@media (min-width: 769px) and (max-width: 1280px) {
  .ctus .reach__inner {
    gap: 40px
  }

  .ctus .frm-blk__inner {
    gap: 40px
  }
}

.lrn-prog {
  overflow-x: clip
}

.lrn-prog .pg-wrap {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px
}

.lrn-prog .ttl-blk {
  background: linear-gradient(135deg, #EEE1E6 50%, #D9B6C8 50%);
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative
}

.lrn-prog .ttl-blk__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
  z-index: 1
}

.lrn-prog .ttl-blk__lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.lrn-prog .ttl-blk__lines svg {
  width: 100%;
  height: 100%;
  opacity: .06
}

.lrn-prog .ttl-blk__label {
  font-size: 14px;
  line-height: 1.4;
  color: #C167B1;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px
}

.lrn-prog .ttl-blk__h1 {
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 300;
  color: #2a1a24;
  margin-bottom: 24px
}

.lrn-prog .ttl-blk__h1 em {
  color: #C167B1;
  font-style: italic
}

.lrn-prog .ttl-blk__desc {
  font-size: 14px;
  line-height: 1.9;
  color: #3a2530;
  max-width: 600px
}

.lrn-prog .ttl-blk__anchor {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: #C167B1;
  opacity: .12;
  position: absolute;
  right: 24px;
  top: 40px;
  letter-spacing: -.04em;
  pointer-events: none;
  user-select: none
}

.lrn-prog .ttl-blk__img-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end
}

.lrn-prog .ttl-blk__img-wrap {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/3;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 12px 36px 0 #c167b11a
}

.lrn-prog .ttl-blk__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.lrn-prog .zigzag-div {
  display: block;
  width: 100%;
  line-height: 0
}

.lrn-prog .zigzag-div svg {
  display: block;
  width: 100%
}

.lrn-prog .prog-str {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  margin-left: 40px
}

.lrn-prog .prog-str__top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px
}

.lrn-prog .prog-str__h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 300;
  color: #2a1a24;
  letter-spacing: -.02em;
  flex: 1
}

.lrn-prog .prog-str__intro {
  flex: 1;
  font-size: 14px;
  line-height: 1.9;
  color: #2a1a24
}

.lrn-prog .prog-str__intro p {
  text-indent: 1.5em;
  margin: 0
}

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

.lrn-prog .step-card {
  border: 1px solid #EEE1E6;
  border-radius: 3px;
  padding: 24px;
  position: relative;
  background: #fff;
  box-shadow: 0 3px 3px 0 #c167b114;
  transition: box-shadow .28s ease-in-out, border-color .28s ease-in-out
}

.lrn-prog .step-card:hover {
  box-shadow: 0 7px 28px 0 #c167b117;
  border-color: #D9B6C8
}

.lrn-prog .step-card--accent {
  background: linear-gradient(135deg, #C167B1 50%, #9a4d8e 50%);
  border-color: #C167B1
}

.lrn-prog .step-card--accent .step-card__num,
.lrn-prog .step-card--accent .step-card__h,
.lrn-prog .step-card--accent .step-card__txt {
  color: #fff
}

.lrn-prog .step-card__num {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: #EEE1E6;
  margin-bottom: 16px;
  letter-spacing: -.03em
}

.lrn-prog .step-card__h {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #2a1a24;
  margin-bottom: 8px;
  letter-spacing: .02em;
  text-transform: uppercase
}

.lrn-prog .step-card__txt {
  font-size: 14px;
  line-height: 1.6;
  color: #4a3540
}

.lrn-prog .step-card__check {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px
}

.lrn-prog .step-card__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #4a3540
}

.lrn-prog .step-card--accent .step-card__item {
  color: #fff
}

.lrn-prog .step-card__item-mark {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px
}

.lrn-prog .step-card__item-mark svg {
  width: 14px;
  height: 14px
}

.lrn-prog .prog-str .brace-deco {
  font-size: 42px;
  font-weight: 300;
  color: #D9B6C8;
  line-height: 1;
  margin-bottom: 8px;
  display: block
}

.lrn-prog .metrics-blk {
  background: #2a1a24;
  padding-top: 80px;
  padding-bottom: 80px;
  margin-right: 40px;
  position: relative;
  overflow: hidden
}

.lrn-prog .metrics-blk__rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.lrn-prog .metrics-blk__rings svg {
  position: absolute;
  right: -80px;
  top: -40px;
  opacity: .07;
  width: 480px;
  height: 480px
}

.lrn-prog .metrics-blk__h2 {
  font-size: 30px;
  font-weight: 300;
  line-height: 1.4;
  color: #EEE1E6;
  margin-bottom: 40px;
  letter-spacing: -.01em
}

.lrn-prog .metrics-blk__dual {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-bottom: 40px;
  align-items: flex-start
}

.lrn-prog .metric-fig {
  flex: 1;
  border-left: 3px solid #C167B1;
  padding-left: 24px
}

.lrn-prog .metric-fig__val {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  color: #C167B1;
  letter-spacing: -.03em
}

.lrn-prog .metric-fig__lbl {
  font-size: 14px;
  line-height: 1.6;
  color: #D9B6C8;
  margin-top: 8px
}

.lrn-prog .metrics-blk__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.lrn-prog .met-detail {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px
}

.lrn-prog .met-detail__icon {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  background: #c167b126;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.lrn-prog .met-detail__icon svg {
  width: 20px;
  height: 20px
}

.lrn-prog .met-detail__txt {
  font-size: 14px;
  line-height: 1.6;
  color: #c8b0be
}

.lrn-prog .met-detail__h {
  font-size: 14px;
  font-weight: 700;
  color: #EEE1E6;
  margin-bottom: 4px
}

.lrn-prog .team-sub {
  background: #EEE1E6;
  padding-top: 80px;
  padding-bottom: 80px;
  margin-left: 40px
}

.lrn-prog .team-sub__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start
}

.lrn-prog .team-sub__left {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.lrn-prog .team-sub__h2 {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.2;
  color: #2a1a24;
  letter-spacing: -.02em
}

.lrn-prog .team-sub__h2 em {
  color: #C167B1;
  font-style: italic
}

.lrn-prog .team-sub__body {
  font-size: 14px;
  line-height: 1.9;
  color: #3a2530
}

.lrn-prog .team-sub__body p {
  text-indent: 1.5em;
  margin: 0
}

.lrn-prog .portraits-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 8px
}

.lrn-prog .portrait-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1
}

.lrn-prog .portrait-card__img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 7px 28px 0 #c167b117
}

.lrn-prog .portrait-card__img img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  object-position: center;
  display: block
}

.lrn-prog .portrait-card__name {
  font-size: 14px;
  font-weight: 700;
  color: #2a1a24;
  line-height: 1.4
}

.lrn-prog .portrait-card__role {
  font-size: 14px;
  color: #C167B1;
  line-height: 1.4;
  font-style: italic
}

.lrn-prog .portrait-card__quote {
  font-size: 14px;
  line-height: 1.6;
  color: #4a3540
}

.lrn-prog .sub-form-blk {
  background: #fff;
  border: 1px solid #D9B6C8;
  border-radius: 3px;
  padding: 40px;
  box-shadow: 0 7px 28px 0 #c167b117
}

.lrn-prog .sub-form-blk__brace {
  font-size: 30px;
  font-weight: 300;
  color: #C167B1;
  line-height: 1;
  margin-bottom: 16px;
  display: block
}

.lrn-prog .sub-form-blk__h3 {
  font-size: 30px;
  font-weight: 300;
  line-height: 1.4;
  color: #2a1a24;
  margin-bottom: 8px;
  letter-spacing: -.01em
}

.lrn-prog .sub-form-blk__sub {
  font-size: 14px;
  line-height: 1.6;
  color: #4a3540;
  margin-bottom: 24px
}

.lrn-prog .fld-float {
  position: relative;
  margin-bottom: 24px
}

.lrn-prog .fld-float__input {
  width: 100%;
  border: none;
  border-bottom: 2px solid #D9B6C8;
  background: transparent;
  padding: 16px 0 8px;
  font-size: 14px;
  line-height: 1.4;
  color: #2a1a24;
  outline: none;
  border-radius: 0;
  transition: border-color .25s ease-in-out;
  box-sizing: border-box
}

.lrn-prog .fld-float__input:focus {
  border-color: #C167B1
}

.lrn-prog .fld-float__lbl {
  position: absolute;
  left: 0;
  top: 16px;
  font-size: 14px;
  line-height: 1.4;
  color: #9a7a8a;
  pointer-events: none;
  transition: top .25s cubic-bezier(0.4, 0, 0.2, 1), font-size .25s cubic-bezier(0.4, 0, 0.2, 1), color .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.lrn-prog .fld-float__input:focus+.fld-float__lbl,
.lrn-prog .fld-float__input:not(:placeholder-shown)+.fld-float__lbl {
  top: 0;
  font-size: 12px;
  color: #C167B1
}

.lrn-prog .chk-row {
  margin-bottom: 24px
}

.lrn-prog .sub-btn {
  display: inline-block;
  background: #C167B1;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 2px solid #C167B1;
  border-radius: 3px;
  cursor: pointer;
  transition: background .35s cubic-bezier(0.4, 0, 0.2, 1), color .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.lrn-prog .sub-btn:hover {
  background: transparent;
  color: #C167B1
}

.lrn-prog .sub-btn:focus {
  outline: 2px solid #C167B1;
  outline-offset: 3px
}

.lrn-prog .sub-btn:active {
  background: #9a4d8e;
  border-color: #9a4d8e;
  color: #fff
}

.lrn-prog .reveal-seq {
  display: flex;
  flex-direction: column;
  gap: 0
}

.lrn-prog .step-card {
  animation: stepReveal .4s ease-in-out both
}

.lrn-prog .step-card:nth-child(1) {
  animation-delay: .05s;
  animation-name: revealOff1
}

.lrn-prog .step-card:nth-child(2) {
  animation-delay: .15s;
  animation-name: revealOff2
}

.lrn-prog .step-card:nth-child(3) {
  animation-delay: .25s;
  animation-name: revealOff3
}

.lrn-prog .step-card:nth-child(4) {
  animation-delay: .35s;
  animation-name: revealOff4
}

@keyframes revealOff1 {
  from {
    opacity: 0;
    transform: translateY(8px) rotate(-0.5deg)
  }

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

@keyframes revealOff2 {
  from {
    opacity: 0;
    transform: translateY(16px) rotate(-1deg)
  }

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

@keyframes revealOff3 {
  from {
    opacity: 0;
    transform: translateY(24px) rotate(-1.5deg)
  }

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

@keyframes revealOff4 {
  from {
    opacity: 0;
    transform: translateY(32px) rotate(-2deg)
  }

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

.lrn-prog .met-detail {
  animation: metReveal .38s ease-in-out both
}

.lrn-prog .met-detail:nth-child(1) {
  animation-delay: .1s
}

.lrn-prog .met-detail:nth-child(2) {
  animation-delay: .2s
}

.lrn-prog .met-detail:nth-child(3) {
  animation-delay: .3s
}

.lrn-prog .met-detail:nth-child(4) {
  animation-delay: .4s
}

@keyframes metReveal {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

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

@media (max-width: 768px) {
  .lrn-prog .ttl-blk__h1 {
    font-size: 30px
  }

  .lrn-prog .ttl-blk {
    padding-top: 40px;
    padding-bottom: 40px
  }

  .lrn-prog .ttl-blk__anchor {
    display: none
  }

  .lrn-prog .prog-str {
    margin-left: 0
  }

  .lrn-prog .prog-str__top {
    flex-direction: column;
    gap: 16px
  }

  .lrn-prog .prog-str__steps {
    grid-template-columns: 1fr
  }

  .lrn-prog .metrics-blk {
    margin-right: 0
  }

  .lrn-prog .metrics-blk__dual {
    flex-direction: column;
    gap: 24px
  }

  .lrn-prog .metrics-blk__details {
    grid-template-columns: 1fr
  }

  .lrn-prog .team-sub {
    margin-left: 0
  }

  .lrn-prog .team-sub__grid {
    grid-template-columns: 1fr
  }

  .lrn-prog .portraits-row {
    flex-direction: column
  }

  .lrn-prog .prog-str,
  .lrn-prog .metrics-blk,
  .lrn-prog .team-sub {
    padding-top: 40px;
    padding-bottom: 40px
  }
}

@media (min-width: 769px) and (max-width: 1280px) {
  .lrn-prog .prog-str__steps {
    grid-template-columns: repeat(2, 1fr)
  }

  .lrn-prog .ttl-blk__h1 {
    font-size: 42px
  }

  .lrn-prog .prog-str {
    margin-left: 24px
  }

  .lrn-prog .metrics-blk {
    margin-right: 24px
  }

  .lrn-prog .team-sub {
    margin-left: 24px
  }
}

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

.succ-pg .succ-card {
  max-width: 1024px;
  width: 100%;
  background: #EEE1E6;
  border-radius: 40px;
  padding: 80px 40px;
  text-align: center;
  box-shadow: 0 7px 28px 0 #c167b117;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px
}

.succ-pg .succ-card__icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0
}

.succ-pg .succ-card__title {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #C167B1;
  margin: 0;
  font-weight: 300
}

.succ-pg .succ-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: #2d2d2d;
  max-width: 520px;
  margin: 0
}

.succ-pg .succ-card__divider {
  width: 48px;
  height: 2px;
  background: #C167B1;
  border-radius: 3px
}

.succ-pg .succ-card__note {
  font-size: 14px;
  line-height: 1.4;
  color: #2d2d2d;
  font-style: italic;
  color: #D9B6C8;
  margin: 0
}

.succ-pg .succ-card__link {
  display: inline-block;
  margin-top: 8px;
  padding: 16px 40px;
  background: #C167B1;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: .04em;
  transition: background .28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .35s ease-in-out;
  box-shadow: 0 3px 3px 0 #c167b114
}

.succ-pg .succ-card__link:hover {
  background: #a84f99;
  box-shadow: 0 7px 28px 0 #c167b117
}

.succ-pg .succ-card__link:focus {
  outline: 2px solid #C167B1;
  outline-offset: 4px
}

.succ-pg .succ-card__link:active {
  background: #8f3f82
}

@media (max-width: 768px) {
  .succ-pg {
    padding: 40px 16px
  }

  .succ-pg .succ-card {
    padding: 40px 24px;
    border-radius: 40px;
    gap: 16px
  }

  .succ-pg .succ-card__title {
    font-size: 30px
  }
}