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

html,
body {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: 'Nunito', sans-serif;
  background: #fff;
  color: #1a1a1a
}

.top-utility-strip {
  background: linear-gradient(135deg, #853E9D 0%, #C6A3CB 100%);
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: -1px 1px 2px 0 #853e9d0f
}

.utility-contact {
  display: flex;
  gap: 24px;
  align-items: center
}

.utility-email {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: opacity .22s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 400
}

.utility-email:hover {
  opacity: .85
}

.utility-email:focus {
  transform: scale(1.02);
  outline: 2px solid #fff;
  outline-offset: 4px
}

.utility-tagline {
  color: #fff;
  font-size: 15px;
  font-style: italic;
  opacity: .92
}

.brand-row {
  background: #EFE9F6;
  padding: 24px 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative
}

.brand-row::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #C6A3CB 20%, #853E9D 50%, #C6A3CB 80%, transparent 100%)
}

.logo-card {
  background: #2d2d2d;
  padding: 12px;
  border-radius: 20px;
  box-shadow: -1px 5px 14px 0 #853e9d14 -1px 1px 2px 0 #853e9d0f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border: 2px solid #C6A3CB
}

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

.primary-nav-row {
  background: #fff;
  padding: 24px 36px;
  box-shadow: -1px 5px 14px 0 #853e9d14
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 36px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto
}

.nav-links li {
  margin: 0;
  padding: 0
}

.nav-links a {
  color: #853E9D;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 24px;
  display: inline-block;
  border-radius: 36px;
  transition: background-color .24s cubic-bezier(0.4, 0, 0.2, 1), color .24s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden
}

.nav-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #853e9d1a, transparent);
  transition: left .28s cubic-bezier(0.0, 0, 0.2, 1)
}

.nav-links a:hover::before {
  left: 100%
}

.nav-links a:hover {
  background-color: #EFE9F6;
  color: #853E9D
}

.nav-links a:focus {
  transform: scale(1.02);
  outline: 2px solid #853E9D;
  outline-offset: 4px;
  background-color: #EFE9F6
}

@media (max-width: 768px) {
  .top-utility-strip {
    flex-direction: column;
    gap: 8px;
    padding: 12px 24px
  }

  .utility-contact {
    flex-direction: column;
    gap: 8px
  }

  .utility-tagline {
    display: none
  }

  .brand-row {
    padding: 24px
  }

  .logo-card {
    width: 70px;
    height: 70px
  }

  .logo-card img {
    width: 62px;
    height: 62px
  }

  .primary-nav-row {
    padding: 24px
  }

  .nav-links {
    gap: 12px
  }

  .nav-links a {
    padding: 8px 12px;
    font-size: 15px
  }
}

@media (max-width: 640px) {
  .nav-links {
    flex-direction: column;
    align-items: stretch
  }

  .nav-links a {
    text-align: center
  }
}

.site-footer {
  background: #2d2d2d;
  color: #fff;
  padding: 72px 36px 36px;
  position: relative;
  overflow: hidden
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, #853e9d26 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: .4
}

.footer-content-wrap {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.footer-logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 72px;
  padding-bottom: 36px;
  border-bottom: 1px solid #c6a3cb4d
}

.footer-logo-card {
  background: #3d3d3d;
  padding: 12px;
  border-radius: 20px;
  box-shadow: -1px 5px 14px 0 #853e9d14 -1px 1px 2px 0 #853e9d0f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border: 2px solid #C6A3CB
}

.footer-logo-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  margin-bottom: 72px
}

.footer-column h3 {
  font-family: 'Literata', serif;
  font-size: 31px;
  font-weight: 700;
  color: #C6A3CB;
  margin: 0 0 24px;
  line-height: 1.2
}

.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0
}

.footer-nav-list li {
  margin-bottom: 12px
}

.footer-nav-list a {
  color: #EFE9F6;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  padding: 8px 0;
  transition: color .26s cubic-bezier(0.4, 0, 0.2, 1), transform .26s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative
}

.footer-nav-list a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #853E9D;
  transition: width .28s cubic-bezier(0.0, 0, 0.2, 1)
}

.footer-nav-list a:hover {
  color: #C6A3CB;
  transform: translateX(4px)
}

.footer-nav-list a:hover::after {
  width: 100%
}

.footer-nav-list a:focus {
  transform: scale(1.02);
  outline: 2px solid #C6A3CB;
  outline-offset: 4px;
  color: #C6A3CB
}

.footer-about-text {
  font-size: 15px;
  line-height: 1.6;
  color: #EFE9F6;
  margin: 0
}

.footer-contact-info {
  margin-top: 24px
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #EFE9F6
}

.footer-contact-icon {
  width: 24px;
  height: 24px;
  background: #853E9D;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.footer-contact-icon svg {
  width: 14px;
  height: 14px;
  fill: #fff
}

.footer-contact-link {
  color: #EFE9F6;
  text-decoration: none;
  transition: color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.footer-contact-link:hover {
  color: #C6A3CB
}

.footer-contact-link:focus {
  transform: scale(1.02);
  outline: 2px solid #C6A3CB;
  outline-offset: 4px
}

.footer-bottom {
  padding-top: 36px;
  border-top: 1px solid #c6a3cb4d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px
}

.footer-copyright {
  font-size: 15px;
  color: #C6A3CB;
  margin: 0
}

.footer-legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0
}

.footer-legal-links a {
  color: #EFE9F6;
  font-size: 15px;
  text-decoration: none;
  transition: color .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.footer-legal-links a:hover {
  color: #C6A3CB
}

.footer-legal-links a:focus {
  transform: scale(1.02);
  outline: 2px solid #C6A3CB;
  outline-offset: 4px
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 36px
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 72px 24px 36px
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 12px
  }
}

@media (max-width: 640px) {
  .footer-logo-section {
    margin-bottom: 36px;
    padding-bottom: 24px
  }

  .footer-logo-card {
    width: 70px;
    height: 70px
  }

  .footer-logo-card img {
    width: 62px;
    height: 62px
  }

  .footer-column h3 {
    font-size: 31px
  }
}

.consent-wrapper {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1500;
  max-width: 420px;
  display: none
}

.consent-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: -1px 12px 52px 0 #853e9d21 -1px 5px 14px 0 #853e9d14;
  border: 1px solid #EFE9F6
}

.consent-headline {
  font-family: 'Literata', serif;
  font-size: 31px;
  font-weight: 700;
  color: #853E9D;
  margin: 0 0 12px;
  line-height: 1.2
}

.consent-description {
  font-size: 15px;
  line-height: 1.6;
  color: #2d2d2d;
  margin: 0 0 24px
}

.consent-options {
  margin-bottom: 24px
}

.consent-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #EFE9F6
}

.consent-option:last-child {
  border-bottom: none
}

.consent-option-label {
  font-size: 15px;
  color: #2d2d2d;
  font-weight: 700
}

.consent-toggle {
  position: relative;
  width: 52px;
  height: 28px;
  background: #C6A3CB;
  border-radius: 36px;
  cursor: pointer;
  transition: background-color .24s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #C6A3CB
}

.consent-toggle.active {
  background: #853E9D;
  border-color: #853E9D
}

.consent-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 36px;
  transition: transform .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.consent-toggle.active::after {
  transform: translateX(24px)
}

.consent-toggle:hover {
  filter: brightness(1.1)
}

.consent-toggle:focus {
  outline: 2px solid #853E9D;
  outline-offset: 4px
}

.consent-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.consent-btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  border-radius: 36px;
  cursor: pointer;
  transition: filter .22s cubic-bezier(0.4, 0, 0.2, 1), transform .22s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #853E9D;
  background: transparent;
  color: #853E9D;
  text-decoration: none;
  display: inline-block
}

.consent-btn:hover {
  filter: brightness(1.15)
}

.consent-btn:focus {
  transform: scale(1.02);
  outline: 2px solid #853E9D;
  outline-offset: 4px
}

.consent-link {
  display: inline-block;
  padding: 12px 24px;
  font-size: 15px;
  color: #853E9D;
  text-decoration: none;
  transition: color .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.consent-link:hover {
  color: #C6A3CB
}

.consent-link:focus {
  transform: scale(1.02);
  outline: 2px solid #853E9D;
  outline-offset: 4px
}

@media (max-width: 640px) {
  .consent-wrapper {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none
  }

  .consent-card {
    padding: 24px
  }

  .consent-actions {
    flex-direction: column
  }

  .consent-btn {
    width: 100%
  }
}

.legal-body {
  max-width: 1140px;
  margin: 0 auto;
  padding: 72px 24px;
  background: #fff
}

.legal-body h1 {
  font-size: 70px;
  line-height: 1.2;
  color: #853E9D;
  margin: 0 0 36px
}

.legal-body h2 {
  font-size: 56px;
  line-height: 1.2;
  color: #853E9D;
  margin: 72px 0 24px
}

.legal-body h3 {
  font-size: 31px;
  line-height: 1.4;
  color: #853E9D;
  margin: 36px 0 24px
}

.legal-body h4 {
  font-size: 31px;
  line-height: 1.4;
  color: #853E9D;
  margin: 36px 0 12px
}

.legal-body h5 {
  font-size: 15px;
  line-height: 1.6;
  color: #853E9D;
  margin: 24px 0 12px;
  font-weight: 700;
  text-transform: uppercase
}

.legal-body h6 {
  font-size: 15px;
  line-height: 1.6;
  color: #853E9D;
  margin: 24px 0 12px;
  font-weight: 600
}

.legal-body p {
  font-size: 15px;
  line-height: 1.9;
  color: #1a1a1a;
  margin: 0 0 24px
}

.legal-body ul {
  margin: 0 0 24px;
  padding: 0 0 0 24px
}

.legal-body ol {
  margin: 0 0 24px;
  padding: 0 0 0 24px
}

.legal-body li {
  font-size: 15px;
  line-height: 1.9;
  color: #1a1a1a;
  margin: 0 0 12px
}

.legal-body ul li {
  list-style-type: disc
}

.legal-body ol li {
  list-style-type: decimal
}

.legal-body ul ul {
  margin: 12px 0 0
}

.legal-body ol ol {
  margin: 12px 0 0
}

.legal-body strong {
  font-weight: 700;
  color: #853E9D
}

.legal-body b {
  font-weight: 700;
  color: #853E9D
}

.legal-body em {
  font-style: italic;
  color: #853E9D
}

.legal-body i {
  font-style: italic;
  color: #853E9D
}

.legal-body a {
  color: #853E9D;
  text-decoration: underline;
  transition: opacity .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.legal-body a:hover {
  opacity: .7
}

.legal-body a:focus {
  outline: 2px solid #853E9D;
  outline-offset: 4px
}

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 36px;
  box-shadow: -1px 5px 14px 0 #853e9d14;
  border-radius: 20px;
  overflow: hidden
}

.legal-body thead {
  background: #EFE9F6
}

.legal-body th {
  font-size: 15px;
  line-height: 1.6;
  color: #853E9D;
  font-weight: 700;
  text-align: left;
  padding: 24px;
  border-bottom: 2px solid #C6A3CB
}

.legal-body td {
  font-size: 15px;
  line-height: 1.9;
  color: #1a1a1a;
  padding: 24px;
  border-bottom: 1px solid #EFE9F6
}

.legal-body tbody tr:last-child td {
  border-bottom: none
}

.legal-body tbody tr:hover {
  background: #EFE9F6;
  transition: background .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.legal-body hr {
  border: none;
  height: 2px;
  background: #EFE9F6;
  margin: 72px 0
}

@media (max-width: 768px) {
  .legal-body {
    padding: 36px 24px
  }

  .legal-body h1 {
    font-size: 56px;
    margin: 0 0 24px
  }

  .legal-body h2 {
    font-size: 31px;
    margin: 36px 0 24px
  }

  .legal-body h3 {
    font-size: 31px;
    margin: 24px 0 12px
  }

  .legal-body table {
    display: block;
    overflow-x: auto
  }

  .legal-body th {
    padding: 12px
  }

  .legal-body td {
    padding: 12px
  }
}

@media (max-width: 640px) {
  .legal-body h1 {
    font-size: 31px
  }

  .legal-body h2 {
    font-size: 31px
  }
}

.blg-dtl {
  background: #fff;
  color: #1a1614;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0
}

.blg-dtl .lead-vis {
  position: relative;
  padding: 72px 24px 36px;
  overflow: hidden;
  background: linear-gradient(127deg, #853E9D 0%, #C6A3CB 100%)
}

.blg-dtl .lead-vis::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 180px 180px 0;
  border-color: transparent #EFE9F6 transparent transparent;
  opacity: .3
}

.blg-dtl .lead-vis::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 140px 140px;
  border-color: transparent transparent #efe9f640
}

.blg-dtl .lead-vis .vis-img {
  position: relative;
  max-width: 800px;
  margin: 0 auto 24px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: -1px 12px 52px 0 #853e9d21
}

.blg-dtl .lead-vis .vis-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  mask-image: linear-gradient(to bottom, #000000b3 0%, #000f 100%)
}

.blg-dtl .lead-vis .vis-txt {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: left
}

.blg-dtl .lead-vis .vis-txt h1 {
  font-size: 70px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 12px;
  font-weight: 700
}

.blg-dtl .lead-vis .tag-pill {
  display: inline-block;
  padding: 8px 24px;
  background: #fff3;
  border-radius: 36px;
  font-size: 15px;
  line-height: 1.4;
  color: #fff;
  font-weight: 600
}

.blg-dtl .art-body {
  padding: 72px 24px;
  background: #fff
}

.blg-dtl .art-body .body-wrap {
  max-width: 720px;
  margin: 0 auto
}

.blg-dtl .art-body h2 {
  font-size: 31px;
  line-height: 1.4;
  color: #853E9D;
  margin: 0 0 24px;
  font-weight: 700
}

.blg-dtl .art-body p {
  font-size: 15px;
  line-height: 1.9;
  color: #2d2826;
  margin: 0 0 24px;
  text-align: justify
}

.blg-dtl .art-body p:last-child {
  margin-bottom: 0
}

.blg-dtl .art-body em {
  font-style: italic;
  color: #853E9D
}

.blg-dtl .art-body ul,
.blg-dtl .art-body ol {
  margin: 0 0 24px;
  padding-left: 36px
}

.blg-dtl .art-body li {
  font-size: 15px;
  line-height: 1.6;
  color: #2d2826;
  margin-bottom: 12px
}

.blg-dtl .art-body blockquote {
  margin: 36px 0;
  padding: 24px 24px 24px 36px;
  background: #EFE9F6;
  border-left: 8px solid #853E9D;
  border-radius: 0;
  box-shadow: -1px 1px 2px 0 #853e9d0f
}

.blg-dtl .art-body blockquote p {
  font-size: 15px;
  line-height: 1.6;
  color: #3d3331;
  text-align: left;
  margin: 0
}

.blg-dtl .art-body figure {
  margin: 36px 0
}

.blg-dtl .art-body figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: -1px 5px 14px 0 #853e9d14
}

.blg-dtl .art-body figcaption {
  font-size: 15px;
  line-height: 1.4;
  color: #6d6361;
  margin-top: 12px;
  text-align: center
}

.blg-dtl .act-zone {
  padding: 72px 24px;
  background: linear-gradient(214deg, #EFE9F6 0%, #fff 100%);
  position: relative
}

.blg-dtl .act-zone svg {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  fill: #fff
}

.blg-dtl .act-zone .zone-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px
}

.blg-dtl .act-zone .prnt-box {
  background: #fff;
  padding: 36px;
  border-radius: 20px;
  box-shadow: -1px 5px 14px 0 #853e9d14;
  text-align: center
}

.blg-dtl .act-zone .prnt-box h3 {
  font-size: 31px;
  line-height: 1.4;
  color: #2d2826;
  margin: 0 0 12px;
  font-weight: 700
}

.blg-dtl .act-zone .prnt-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #5d5351;
  margin: 0 0 24px
}

.blg-dtl .act-zone .prnt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 36px;
  background: #853E9D;
  color: #fff;
  border: none;
  border-radius: 36px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  cursor: pointer;
  transition: filter .24s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -1px 1px 2px 0 #853e9d0f
}

.blg-dtl .act-zone .prnt-btn:hover {
  filter: brightness(1.15)
}

.blg-dtl .act-zone .prnt-btn svg {
  position: static;
  width: 20px;
  height: 20px;
  fill: currentColor;
  animation: rot-settle .26s cubic-bezier(0.0, 0, 0.2, 1) forwards
}

@keyframes rot-settle {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

.blg-dtl .act-zone .poll-box {
  background: #fff;
  padding: 36px;
  border-radius: 20px;
  box-shadow: -1px 5px 14px 0 #853e9d14
}

.blg-dtl .act-zone .poll-box h3 {
  font-size: 31px;
  line-height: 1.4;
  color: #2d2826;
  margin: 0 0 24px;
  font-weight: 700
}

.blg-dtl .act-zone .poll-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  cursor: pointer
}

.blg-dtl .act-zone .poll-opt:last-of-type {
  margin-bottom: 0
}

.blg-dtl .act-zone .poll-opt input[type="radio"] {
  appearance: none;
  width: 24px;
  height: 24px;
  border: 3px solid #C6A3CB;
  border-radius: 0;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.blg-dtl .act-zone .poll-opt input[type="radio"]:checked {
  background: #853E9D;
  border-color: #853E9D;
  box-shadow: inset 0 2px 4px #853e9d4d
}

.blg-dtl .act-zone .poll-opt input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 0
}

.blg-dtl .act-zone .poll-opt label {
  font-size: 15px;
  line-height: 1.6;
  color: #2d2826;
  cursor: pointer;
  flex: 1
}

.blg-dtl .act-zone .poll-opt input[type="radio"]:checked+label {
  color: #853E9D;
  font-weight: 600
}

.blg-dtl .stat-row {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap
}

.blg-dtl .stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(180deg, #EFE9F6 0%, #fff 100%);
  border-radius: 20px;
  box-shadow: -1px 1px 2px 0 #853e9d0f
}

.blg-dtl .stat-item .stat-ico {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center
}

.blg-dtl .stat-item .stat-ico svg {
  width: 100%;
  height: 100%;
  fill: #853E9D;
  position: static;
  animation: rot-settle .28s cubic-bezier(0.0, 0, 0.2, 1) forwards
}

.blg-dtl .stat-item .stat-num {
  font-size: 56px;
  line-height: 1.2;
  color: #853E9D;
  font-weight: 700;
  margin: 0 0 8px
}

.blg-dtl .stat-item .stat-lbl {
  font-size: 15px;
  line-height: 1.4;
  color: #5d5351
}

@media (min-width: 768px) {
  .blg-dtl .lead-vis {
    padding: 120px 36px 72px
  }

  .blg-dtl .lead-vis .vis-txt h1 {
    font-size: 70px
  }

  .blg-dtl .art-body {
    padding: 120px 36px
  }

  .blg-dtl .act-zone {
    padding: 120px 36px
  }

  .blg-dtl .act-zone .zone-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (min-width: 1024px) {
  .blg-dtl .lead-vis::before {
    border-width: 0 280px 280px 0
  }

  .blg-dtl .lead-vis::after {
    border-width: 0 0 220px 220px
  }
}

.srvc-pg {
  background: #fff;
  color: #1a1626;
  overflow-x: clip
}

.srvc-pg .top-banner {
  background: linear-gradient(167deg, #853E9D 0%, #C6A3CB 100%);
  padding: 36px 24px;
  position: relative;
  overflow: hidden
}

.srvc-pg .top-banner::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #EFE9F6
}

.srvc-pg .top-banner-inner {
  max-width: 1140px;
  margin: 0 auto
}

.srvc-pg .banner-heading {
  font-size: 56px;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  font-weight: 700
}

.srvc-pg .banner-heading .highlight-word {
  text-decoration: underline;
  text-decoration-color: #EFE9F6;
  text-decoration-thickness: 4px;
  text-underline-offset: 8px
}

.srvc-pg .banner-subtext {
  font-size: 15px;
  line-height: 1.6;
  color: #EFE9F6;
  margin: 24px 0 0;
  max-width: 640px
}

@media (min-width: 768px) {
  .srvc-pg .top-banner {
    padding: 72px 24px
  }

  .srvc-pg .banner-heading {
    font-size: 70px
  }
}

.srvc-pg .approach-zone {
  background: #fff;
  padding: 72px 24px;
  position: relative
}

.srvc-pg .approach-zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #EFE9F6 0%, #fff 100%);
  z-index: 0
}

.srvc-pg .approach-container {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start
}

@media (min-width: 1024px) {
  .srvc-pg .approach-container {
    grid-template-columns: 2fr 1fr;
    gap: 72px
  }
}

.srvc-pg .approach-main {
  animation: srvc-scale-in .24s cubic-bezier(0.0, 0, 0.2, 1) forwards;
  transform-origin: left center
}

@keyframes srvc-scale-in {
  from {
    opacity: 0;
    transform: scale(0.9)
  }

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

.srvc-pg .approach-label {
  font-size: 15px;
  line-height: 1.4;
  color: #853E9D;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px;
  font-weight: 600
}

.srvc-pg .approach-title {
  font-size: 31px;
  line-height: 1.4;
  color: #1a1626;
  margin: 0 0 24px;
  font-weight: 700
}

.srvc-pg .approach-title .color-shift {
  color: #853E9D
}

.srvc-pg .approach-text {
  font-size: 15px;
  line-height: 1.9;
  color: #1a1626;
  margin: 0 0 24px;
  text-align: justify
}

.srvc-pg .approach-text:last-child {
  margin-bottom: 0
}

.srvc-pg .approach-aside {
  position: relative
}

.srvc-pg .stat-card {
  background: #fff;
  border: 2px solid #EFE9F6;
  border-left: 8px solid #853E9D;
  border-radius: 20px;
  padding: 24px;
  box-shadow: -1px 5px 14px 0 #853e9d14;
  margin-bottom: 24px;
  transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.srvc-pg .stat-card:hover {
  transform: translateX(4px);
  box-shadow: -1px 12px 52px 0 #853e9d21
}

.srvc-pg .stat-card:last-child {
  margin-bottom: 0
}

.srvc-pg .stat-number {
  font-size: 56px;
  line-height: 1.2;
  color: #853E9D;
  margin: 0 0 8px;
  font-weight: 700
}

.srvc-pg .stat-label {
  font-size: 15px;
  line-height: 1.4;
  color: #1a1626;
  margin: 0;
  font-weight: 600
}

.srvc-pg .offering-section {
  background: #fff;
  padding: 72px 24px;
  position: relative
}

.srvc-pg .offering-wrapper {
  max-width: 1140px;
  margin: 0 auto
}

.srvc-pg .offering-header {
  text-align: center;
  margin-bottom: 72px
}

.srvc-pg .offering-heading {
  font-size: 31px;
  line-height: 1.4;
  color: #1a1626;
  margin: 0 0 24px;
  font-weight: 300
}

.srvc-pg .offering-heading .bold-part {
  font-weight: 700;
  color: #853E9D
}

.srvc-pg .offering-intro {
  font-size: 15px;
  line-height: 1.6;
  color: #1a1626;
  margin: 0 auto;
  max-width: 720px
}

.srvc-pg .offering-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px
}

@media (min-width: 640px) {
  .srvc-pg .offering-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (min-width: 1024px) {
  .srvc-pg .offering-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.srvc-pg .offering-item {
  background: #fff;
  border: 2px solid #EFE9F6;
  border-radius: 36px;
  padding: 36px 24px;
  position: relative;
  overflow: hidden;
  transition: transform .26s cubic-bezier(0.4, 0, 0.2, 1), border-color .26s cubic-bezier(0.4, 0, 0.2, 1);
  animation: srvc-item-fade .28s cubic-bezier(0.0, 0, 0.2, 1) forwards;
  opacity: 0
}

@keyframes srvc-item-fade {
  from {
    opacity: 0;
    transform: scale(0.9)
  }

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

.srvc-pg .offering-item:nth-child(1) {
  animation-delay: .1s
}

.srvc-pg .offering-item:nth-child(2) {
  animation-delay: .2s
}

.srvc-pg .offering-item:nth-child(3) {
  animation-delay: .3s
}

.srvc-pg .offering-item:nth-child(4) {
  animation-delay: .4s
}

.srvc-pg .offering-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #853E9D 0%, #C6A3CB 100%);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.srvc-pg .offering-item:hover {
  transform: translateY(-8px);
  border-color: #C6A3CB
}

.srvc-pg .offering-item:hover::before {
  transform: scaleY(1)
}

.srvc-pg .offering-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #853E9D 0%, #C6A3CB 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 24px
}

.srvc-pg .offering-icon svg {
  width: 28px;
  height: 28px;
  fill: #fff
}

.srvc-pg .offering-name {
  font-size: 15px;
  line-height: 1.4;
  color: #1a1626;
  margin: 0 0 12px;
  font-weight: 700
}

.srvc-pg .offering-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #1a1626;
  margin: 0
}

.srvc-pg .methodology-area {
  padding: 72px 24px;
  position: relative;
  overflow: hidden
}

.srvc-pg .methodology-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  right: -50%;
  bottom: 0;
  background: #EFE9F6;
  z-index: 0
}

.srvc-pg .methodology-content {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px
}

@media (min-width: 1024px) {
  .srvc-pg .methodology-content {
    grid-template-columns: 1fr 2fr;
    gap: 72px;
    align-items: center
  }
}

.srvc-pg .methodology-visual {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: -1px 12px 52px 0 #853e9d21
}

.srvc-pg .methodology-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block
}

.srvc-pg .methodology-details {
  animation: srvc-slide-in .26s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

@keyframes srvc-slide-in {
  from {
    opacity: 0;
    transform: translateX(-24px)
  }

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

.srvc-pg .methodology-question {
  font-size: 31px;
  line-height: 1.4;
  color: #1a1626;
  margin: 0 0 36px;
  font-weight: 700
}

.srvc-pg .methodology-steps {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.srvc-pg .step-block {
  background: #fff;
  border: 2px solid #C6A3CB;
  border-left: 12px solid #853E9D;
  border-radius: 20px;
  padding: 24px;
  position: relative;
  transition: transform .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.srvc-pg .step-block:hover {
  transform: translateX(8px);
  box-shadow: -1px 5px 14px 0 #853e9d14
}

.srvc-pg .step-num {
  font-size: 15px;
  line-height: 1.2;
  color: #853E9D;
  margin: 0 0 8px;
  font-weight: 700;
  text-transform: uppercase
}

.srvc-pg .step-name {
  font-size: 15px;
  line-height: 1.4;
  color: #1a1626;
  margin: 0 0 12px;
  font-weight: 700
}

.srvc-pg .step-info {
  font-size: 15px;
  line-height: 1.6;
  color: #1a1626;
  margin: 0;
  text-align: left
}

.srvc-pg .faq-zone {
  background: #fff;
  padding: 72px 24px
}

.srvc-pg .faq-container {
  max-width: 1140px;
  margin: 0 auto
}

.srvc-pg .faq-top {
  text-align: left;
  margin-bottom: 36px
}

.srvc-pg .faq-title {
  font-size: 31px;
  line-height: 1.4;
  color: #1a1626;
  margin: 0 0 12px;
  font-weight: 700
}

.srvc-pg .faq-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: #1a1626;
  margin: 0
}

.srvc-pg .faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.srvc-pg .faq-entry {
  background: #fff;
  border: 2px solid #EFE9F6;
  border-radius: 20px;
  padding: 24px;
  transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.srvc-pg .faq-entry:hover {
  border-color: #C6A3CB;
  box-shadow: -1px 5px 14px 0 #853e9d14
}

.srvc-pg .faq-q {
  font-size: 15px;
  line-height: 1.4;
  color: #853E9D;
  margin: 0 0 12px;
  font-weight: 700
}

.srvc-pg .faq-a {
  font-size: 15px;
  line-height: 1.6;
  color: #1a1626;
  margin: 0;
  text-align: justify
}

@media (min-width: 768px) {
  .srvc-pg .faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
  }
}

.opn-blg {
  background: #fff;
  color: #1a1a1a;
  line-height: 1.6;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0
}

.opn-blg .lead-band {
  background: linear-gradient(147deg, #853E9D 0%, #C6A3CB 100%);
  padding: 36px 24px;
  position: relative;
  overflow: hidden
}

.opn-blg .lead-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #ffffff1a 25%, transparent 25%), linear-gradient(-45deg, #ffffff1a 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #ffffff1a 75%), linear-gradient(-45deg, transparent 75%, #ffffff1a 75%);
  background-size: 48px 48px;
  background-position: 0 0, 0 24px, 24px -24px, -24px 0;
  opacity: .3;
  pointer-events: none
}

.opn-blg .lead-band .numeric-accent {
  font-size: 70px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  position: relative;
  z-index: 1
}

.opn-blg .lead-band .accent-split {
  color: #EFE9F6
}

.opn-blg .lead-band .brief-explain {
  font-size: 15px;
  line-height: 1.6;
  color: #fffffff2;
  max-width: 640px;
  margin: 0;
  position: relative;
  z-index: 1
}

.opn-blg .lead-band .decorative-shape {
  position: absolute;
  right: 24px;
  bottom: -12px;
  width: 180px;
  height: 180px;
  border: 4px solid #ffffff26;
  border-radius: 36px;
  transform: rotate(12deg);
  pointer-events: none;
  z-index: 0
}

@media (min-width: 768px) {
  .opn-blg .lead-band {
    padding: 36px 72px
  }

  .opn-blg .lead-band .decorative-shape {
    right: 72px;
    width: 240px;
    height: 240px
  }
}

.opn-blg .zigzag-divider {
  width: 100%;
  height: 24px;
  background: linear-gradient(135deg, #EFE9F6 25%, transparent 25%), linear-gradient(225deg, #EFE9F6 25%, transparent 25%);
  background-size: 36px 24px;
  background-position: 0 0, 18px 0;
  background-repeat: repeat-x
}

.opn-blg .posts-grid {
  padding: 72px 24px;
  background: #fff;
  position: relative
}

.opn-blg .posts-grid::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: linear-gradient(180deg, #853E9D 0%, #C6A3CB 50%, #EFE9F6 100%)
}

.opn-blg .grid-heading {
  font-size: 56px;
  line-height: 1.2;
  font-weight: 700;
  color: #853E9D;
  margin: 0 0 36px;
  text-align: left
}

.opn-blg .grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  animation: slide-in-left .26s cubic-bezier(0.0, 0, 0.2, 1) forwards
}

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

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

@media (min-width: 768px) {
  .opn-blg .posts-grid {
    padding: 72px
  }

  .opn-blg .grid-layout {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (min-width: 1024px) {
  .opn-blg .grid-layout {
    grid-template-columns: repeat(3, 1fr)
  }
}

.opn-blg .post-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: -1px 5px 14px 0 #853e9d14;
  transition: transform .24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column
}

.opn-blg .post-card:hover {
  transform: translateY(-8px);
  box-shadow: -1px 12px 52px 0 #853e9d21
}

.opn-blg .post-card:nth-child(2n) {
  animation: slide-in-right .28s cubic-bezier(0.0, 0, 0.2, 1) forwards
}

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

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

.opn-blg .card-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative
}

.opn-blg .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter .22s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.85)
}

.opn-blg .post-card:hover .card-img {
  filter: brightness(1.1)
}

.opn-blg .card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1
}

.opn-blg .theme-tag {
  display: inline-block;
  padding: 4px 12px;
  background: #EFE9F6;
  color: #853E9D;
  font-size: 15px;
  line-height: 1.4;
  border-radius: 20px;
  font-weight: 600;
  align-self: flex-start;
  transition: background .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.opn-blg .post-card:hover .theme-tag {
  background: #C6A3CB;
  color: #fff
}

.opn-blg .post-heading {
  font-size: 31px;
  line-height: 1.4;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0
}

.opn-blg .post-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0;
  flex-grow: 1;
  text-align: justify
}

.opn-blg .read-link {
  display: inline-block;
  padding: 12px 24px;
  background: #853E9D;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  align-self: flex-start;
  transition: filter .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.opn-blg .read-link:hover {
  filter: brightness(1.2)
}

.opn-blg .wave-divider {
  width: 100%;
  height: 48px;
  background: #fff;
  position: relative;
  overflow: hidden
}

.opn-blg .wave-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.opn-blg .stats-cluster {
  background: #EFE9F6;
  padding: 72px 24px;
  position: relative
}

.opn-blg .cluster-intro {
  max-width: 640px;
  margin: 0 0 36px
}

.opn-blg .cluster-title {
  font-size: 56px;
  line-height: 1.2;
  font-weight: 300;
  color: #1a1a1a;
  margin: 0 0 24px
}

.opn-blg .cluster-title .highlight-term {
  background: #C6A3CB;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700
}

.opn-blg .cluster-desc {
  font-size: 15px;
  line-height: 1.9;
  color: #2a2a2a;
  margin: 0;
  text-align: justify
}

.opn-blg .data-table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  box-shadow: -1px 5px 14px 0 #853e9d14
}

.opn-blg .data-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff
}

.opn-blg .data-table th {
  padding: 24px;
  text-align: left;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  background: #853E9D
}

.opn-blg .data-table td {
  padding: 24px;
  font-size: 15px;
  line-height: 1.6;
  color: #2a2a2a;
  border-bottom: 1px solid #EFE9F6
}

.opn-blg .data-table tr:last-child td {
  border-bottom: none
}

.opn-blg .data-table .cell-low {
  background: #efe9f666
}

.opn-blg .data-table .cell-medium {
  background: #c6a3cb4d
}

.opn-blg .data-table .cell-high {
  background: #853e9d26
}

@media (min-width: 768px) {
  .opn-blg .stats-cluster {
    padding: 72px
  }
}

.opn-blg .insight-panel {
  background: #fff;
  padding: 72px 24px;
  position: relative
}

.opn-blg .insight-panel::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: linear-gradient(180deg, #EFE9F6 0%, #C6A3CB 50%, #853E9D 100%)
}

.opn-blg .panel-layout {
  display: flex;
  flex-direction: column;
  gap: 36px
}

.opn-blg .large-text-zone {
  flex: 1
}

.opn-blg .panel-main-heading {
  font-size: 70px;
  line-height: 1.2;
  font-weight: 700;
  color: #853E9D;
  margin: 0 0 24px
}

.opn-blg .panel-body-text {
  font-size: 15px;
  line-height: 1.9;
  color: #2a2a2a;
  margin: 0 0 24px;
  text-align: justify
}

.opn-blg .blocks-cluster {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px
}

.opn-blg .mini-block {
  background: linear-gradient(147deg, #EFE9F6 0%, #fff 100%);
  padding: 24px;
  border-radius: 20px;
  box-shadow: -1px 1px 2px 0 #853e9d0f;
  transition: transform .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden
}

.opn-blg .mini-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #853E9D 0%, #C6A3CB 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .26s cubic-bezier(0.0, 0, 0.2, 1)
}

.opn-blg .mini-block:hover::before {
  transform: scaleX(1)
}

.opn-blg .mini-block:hover {
  transform: translateY(-4px);
  box-shadow: -1px 5px 14px 0 #853e9d14
}

.opn-blg .block-label {
  font-size: 31px;
  line-height: 1.4;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px
}

.opn-blg .block-detail {
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0
}

.opn-blg .visual-element {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center
}

.opn-blg .img-frame {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: -1px 12px 52px 0 #853e9d21;
  position: relative
}

.opn-blg .img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 4px solid #853e9d33;
  border-radius: 36px;
  pointer-events: none
}

.opn-blg .frame-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter .24s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.85)
}

.opn-blg .img-frame:hover .frame-img {
  filter: brightness(1.1)
}

@media (min-width: 768px) {
  .opn-blg .insight-panel {
    padding: 72px
  }

  .opn-blg .blocks-cluster {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media (min-width: 1024px) {
  .opn-blg .panel-layout {
    flex-direction: row;
    align-items: center
  }

  .opn-blg .blocks-cluster {
    grid-template-columns: repeat(2, 1fr)
  }
}

.ent-base {
  background: #fff;
  color: #1a1a1a;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0
}

.ent-base * {
  box-sizing: border-box
}

.ent-base .opening-zone {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 72px 24px 36px;
  overflow: hidden;
  background: linear-gradient(165deg, #EFE9F6 0%, #fff 100%)
}

.ent-base .opening-zone::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: #C6A3CB;
  opacity: .3
}

.ent-base .opening-zone::after {
  content: '';
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: #853E9D;
  opacity: .2
}

.ent-base .opening-text {
  position: relative;
  z-index: 2;
  max-width: 720px
}

.ent-base .opening-text h1 {
  font-size: 56px;
  line-height: 1.2;
  margin: 0 0 24px;
  font-weight: 700
}

.ent-base .opening-text h1 .accent-part {
  color: #853E9D
}

.ent-base .opening-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 36px
}

.ent-base .opening-text li {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 12px;
  padding-left: 24px;
  position: relative
}

.ent-base .opening-text li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 2px;
  background: #853E9D
}

.ent-base .opening-visual {
  position: relative;
  margin-top: 36px;
  width: 100%;
  max-width: 480px;
  align-self: flex-end
}

.ent-base .opening-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
  filter: saturate(0.7) brightness(1.1) contrast(0.95);
  box-shadow: -1px 5px 14px 0 #853e9d14
}

.ent-base .voice-descriptor {
  padding: 72px 24px;
  background: #fff;
  position: relative
}

.ent-base .voice-descriptor::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(220deg, #fff 0%, #EFE9F6 100%);
  z-index: 0;
  opacity: 0;
  transition: opacity .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.ent-base .voice-descriptor:hover::before {
  opacity: 1
}

.ent-base .voice-inner {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto
}

.ent-base .voice-inner h2 {
  font-size: 31px;
  line-height: 1.4;
  margin: 0 0 24px;
  font-weight: 700;
  color: #853E9D
}

.ent-base .voice-inner p {
  font-size: 15px;
  line-height: 1.9;
  margin: 0 0 24px;
  text-align: justify
}

.ent-base .voice-inner p:last-child {
  margin-bottom: 0
}

.ent-base .post-feed {
  padding: 72px 24px;
  background: #fff
}

.ent-base .post-feed h2 {
  font-size: 31px;
  line-height: 1.4;
  margin: 0 0 36px;
  font-weight: 300;
  text-align: center
}

.ent-base .feed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 840px;
  margin: 0 auto
}

.ent-base .post-card {
  background: #fff;
  border: 1px solid #EFE9F6;
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1), transform .24s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -1px 1px 2px 0 #853e9d0f
}

.ent-base .post-card:hover {
  box-shadow: -1px 12px 52px 0 #853e9d21;
  transform: translateY(-4px)
}

.ent-base .post-card-visual {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative
}

.ent-base .post-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s cubic-bezier(0.0, 0, 0.2, 1)
}

.ent-base .post-card:hover .post-card-visual img {
  transform: scale(1.05)
}

.ent-base .post-card-body {
  padding: 24px
}

.ent-base .post-tag {
  display: inline-block;
  font-size: 15px;
  line-height: 1.2;
  color: #853E9D;
  font-weight: 700;
  margin: 0 0 12px;
  text-transform: lowercase
}

.ent-base .post-card-body h3 {
  font-size: 31px;
  line-height: 1.4;
  margin: 0 0 12px;
  font-weight: 700
}

.ent-base .post-card-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.ent-base .post-card-body h3 a:hover {
  color: #853E9D
}

.ent-base .post-card-body p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 24px;
  color: #333
}

.ent-base .post-card-body .read-link {
  display: inline-block;
  font-size: 15px;
  line-height: 1.2;
  color: #853E9D;
  text-decoration: none;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 20px;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.ent-base .post-card-body .read-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #EFE9F6;
  transition: left .26s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1
}

.ent-base .post-card-body .read-link:hover::before {
  left: 0
}

.ent-base .series-cluster {
  padding: 72px 24px;
  background: linear-gradient(135deg, #EFE9F6 0%, #fff 50%, #EFE9F6 100%);
  position: relative
}

.ent-base .series-cluster::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #853E9D 50%, transparent 100%)
}

.ent-base .series-inner {
  max-width: 840px;
  margin: 0 auto
}

.ent-base .series-inner h2 {
  font-size: 31px;
  line-height: 1.4;
  margin: 0 0 36px;
  font-weight: 700;
  text-align: left
}

.ent-base .series-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px
}

.ent-base .series-item {
  background: #fff;
  padding: 24px;
  border-left: 4px solid #853E9D;
  border-radius: 0 20px 20px 0;
  box-shadow: -1px 1px 2px 0 #853e9d0f;
  transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1), transform .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.ent-base .series-item:hover {
  box-shadow: -1px 5px 14px 0 #853e9d14;
  transform: translateX(4px)
}

.ent-base .series-item h3 {
  font-size: 15px;
  line-height: 1.4;
  margin: 0 0 8px;
  font-weight: 700;
  color: #853E9D
}

.ent-base .series-item p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: #333
}

.ent-base .topic-navigator {
  padding: 72px 24px;
  background: #fff
}

.ent-base .topic-navigator h2 {
  font-size: 31px;
  line-height: 1.4;
  margin: 0 0 36px;
  font-weight: 300;
  text-align: center
}

.ent-base .topic-map {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px
}

.ent-base .topic-node {
  background: #EFE9F6;
  padding: 24px;
  border-radius: 36px;
  text-align: center;
  transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), transform .2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative
}

.ent-base .topic-node::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #853e9d1a;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .26s cubic-bezier(0.0, 0, 0.2, 1), height .26s cubic-bezier(0.0, 0, 0.2, 1)
}

.ent-base .topic-node:hover::before {
  width: 100%;
  height: 100%
}

.ent-base .topic-node:hover {
  transform: scale(1.05)
}

.ent-base .topic-node span {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  color: #853E9D;
  position: relative;
  z-index: 1
}

.ent-base .reading-ritual {
  padding: 72px 24px;
  background: #EFE9F6;
  position: relative;
  overflow: hidden
}

.ent-base .reading-ritual::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, transparent 10%, #853e9d08 15%, transparent 20%, transparent 30%, #853e9d0d 35%, transparent 40%, transparent 50%, #853e9d12 55%, transparent 60%, transparent 70%, #853e9d17 75%, transparent 80%, transparent 90%, #853e9d1c 95%, transparent 100%);
  animation: wave-shift 8s cubic-bezier(0.4, 0, 0.2, 1) infinite
}

@keyframes wave-shift {

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

  50% {
    transform: translateX(25%)
  }
}

.ent-base .ritual-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.ent-base .ritual-inner h2 {
  font-size: 31px;
  line-height: 1.4;
  margin: 0 0 24px;
  font-weight: 700;
  color: #853E9D;
  text-align: center
}

.ent-base .ritual-inner p {
  font-size: 15px;
  line-height: 1.9;
  margin: 0 0 24px;
  text-align: justify
}

.ent-base .ritual-inner p:last-child {
  margin-bottom: 0
}

.ent-base .entry-points {
  padding: 72px 24px;
  background: #fff;
  position: relative
}

.ent-base .entry-points::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #EFE9F6;
  z-index: 0;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%)
}

.ent-base .entry-inner {
  max-width: 840px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.ent-base .entry-inner h2 {
  font-size: 31px;
  line-height: 1.4;
  margin: 0 0 36px;
  font-weight: 300
}

.ent-base .entry-list {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.ent-base .entry-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: -1px 1px 2px 0 #853e9d0f;
  transition: box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 12px
}

.ent-base .entry-card:hover {
  box-shadow: -1px 12px 52px 0 #853e9d21
}

.ent-base .entry-card h3 {
  font-size: 15px;
  line-height: 1.4;
  margin: 0;
  font-weight: 700
}

.ent-base .entry-card p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: #333
}

.ent-base .entry-card a {
  font-size: 15px;
  line-height: 1.2;
  color: #853E9D;
  text-decoration: none;
  font-weight: 700;
  align-self: flex-start;
  transition: filter .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.ent-base .entry-card a:hover {
  filter: brightness(1.2)
}

.ent-base .depth-indicator {
  padding: 72px 24px;
  background: linear-gradient(180deg, #fff 0%, #EFE9F6 100%);
  position: relative
}

.ent-base .depth-inner {
  max-width: 840px;
  margin: 0 auto;
  text-align: center
}

.ent-base .depth-inner h2 {
  font-size: 56px;
  line-height: 1.2;
  margin: 0 0 24px;
  font-weight: 700;
  color: #853E9D
}

.ent-base .depth-inner p {
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
  text-align: justify
}

.ent-base .metric-row {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin: 36px 0 0;
  flex-wrap: wrap
}

.ent-base .metric-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  background: #fff;
  border-radius: 36px;
  min-width: 160px;
  box-shadow: -1px 1px 2px 0 #853e9d0f;
  transition: transform .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.ent-base .metric-box:hover {
  transform: translateY(-8px)
}

.ent-base .metric-value {
  font-size: 56px;
  line-height: 1.2;
  font-weight: 700;
  color: #853E9D
}

.ent-base .metric-label {
  font-size: 15px;
  line-height: 1.2;
  color: #333
}

.ent-base .connection-diagram {
  padding: 72px 24px;
  background: #fff;
  position: relative
}

.ent-base .diagram-inner {
  max-width: 840px;
  margin: 0 auto
}

.ent-base .diagram-inner h2 {
  font-size: 31px;
  line-height: 1.4;
  margin: 0 0 36px;
  font-weight: 700;
  text-align: center
}

.ent-base .diagram-visual {
  position: relative;
  padding: 36px 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px
}

.ent-base .diagram-node {
  width: 120px;
  height: 120px;
  border-radius: 0;
  background: #EFE9F6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  color: #853E9D;
  text-align: center;
  padding: 12px;
  position: relative;
  box-shadow: -1px 1px 2px 0 #853e9d0f;
  transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.ent-base .diagram-node:hover {
  transform: scale(1.1);
  box-shadow: -1px 5px 14px 0 #853e9d14
}

.ent-base .diagram-node.central {
  width: 160px;
  height: 160px;
  background: #853E9D;
  color: #fff;
  border-radius: 36px
}

.ent-base .diagram-connector {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, #C6A3CB 0%, #853E9D 100%);
  transform-origin: left center;
  pointer-events: none
}

@media (min-width: 640px) {
  .ent-base .opening-zone {
    padding: 72px 36px 36px
  }

  .ent-base .feed-grid {
    grid-template-columns: 1fr
  }

  .ent-base .series-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (min-width: 768px) {
  .ent-base .opening-zone {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 72px 36px
  }

  .ent-base .opening-text {
    max-width: 480px
  }

  .ent-base .opening-visual {
    margin-top: 0;
    max-width: 360px
  }

  .ent-base .voice-descriptor {
    padding: 72px 36px
  }

  .ent-base .post-feed {
    padding: 72px 36px
  }

  .ent-base .series-cluster {
    padding: 72px 36px
  }

  .ent-base .topic-navigator {
    padding: 72px 36px
  }

  .ent-base .reading-ritual {
    padding: 72px 36px
  }

  .ent-base .entry-points {
    padding: 72px 36px
  }

  .ent-base .depth-indicator {
    padding: 72px 36px
  }

  .ent-base .connection-diagram {
    padding: 72px 36px
  }
}

@media (min-width: 1024px) {
  .ent-base .opening-zone {
    padding: 72px
  }

  .ent-base .opening-text {
    max-width: 560px
  }

  .ent-base .opening-visual {
    max-width: 420px
  }

  .ent-base .voice-descriptor {
    padding: 72px
  }

  .ent-base .post-feed {
    padding: 72px
  }

  .ent-base .series-cluster {
    padding: 72px
  }

  .ent-base .series-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .ent-base .topic-navigator {
    padding: 72px
  }

  .ent-base .reading-ritual {
    padding: 72px
  }

  .ent-base .entry-points {
    padding: 72px
  }

  .ent-base .entry-list {
    flex-direction: row;
    flex-wrap: wrap
  }

  .ent-base .entry-card {
    flex: 1 1 calc(50% - 12px)
  }

  .ent-base .depth-indicator {
    padding: 72px
  }

  .ent-base .connection-diagram {
    padding: 72px
  }
}

.auth-bio {
  background: #fff;
  color: #1d1d1d;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0
}

.auth-bio .bio-intro {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
  padding: 72px 24px;
  position: relative;
  overflow: visible;
  background: #fff
}

.auth-bio .bio-intro::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(circle, #853e9d0a 1px, transparent 1px), radial-gradient(circle, #853e9d0a 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
  pointer-events: none;
  z-index: 0
}

.auth-bio .bio-intro::after {
  content: '';
  position: absolute;
  bottom: 36px;
  right: 320px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(circle, #c6a3cb0d 1px, transparent 1px), radial-gradient(circle, #c6a3cb0d 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  pointer-events: none;
  z-index: 0
}

.auth-bio .bio-text {
  position: relative;
  z-index: 1
}

.auth-bio .bio-headline {
  font-size: 70px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 24px;
  letter-spacing: -.02em;
  animation: bio-expand .8s cubic-bezier(0.0, 0, 0.2, 1) forwards
}

@keyframes bio-expand {
  from {
    letter-spacing: -.08em;
    opacity: .4
  }

  to {
    letter-spacing: -.02em;
    opacity: 1
  }
}

.auth-bio .bio-headline .accent {
  color: #853E9D
}

.auth-bio .bio-description {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 36px;
  max-width: 580px;
  color: #2d2d2d
}

.auth-bio .bio-actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap
}

.auth-bio .bio-link {
  font-size: 15px;
  line-height: 1.4;
  color: #853E9D;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  font-weight: 500;
  transition: color .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.auth-bio .bio-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #853E9D;
  transition: width .26s cubic-bezier(0.0, 0, 0.2, 1)
}

.auth-bio .bio-link:hover {
  color: #6a3180
}

.auth-bio .bio-link:hover::after {
  width: 100%
}

.auth-bio .bio-portrait {
  position: relative;
  z-index: 1;
  width: 280px;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: -1px 5px 14px 0 #853e9d14 -1px 12px 52px 0 #853e9d21
}

.auth-bio .bio-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(0);
  transition: filter .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.auth-bio .bio-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, #ffffff26 100%);
  pointer-events: none;
  z-index: 1
}

.auth-bio .expertise-grid {
  padding: 72px 24px;
  background: linear-gradient(165deg, #fafafa 0%, #f5f5f5 100%);
  position: relative
}

.auth-bio .expertise-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: radial-gradient(ellipse 800px 80px at 50% 0%, #fff, transparent);
  pointer-events: none
}

.auth-bio .expertise-container {
  max-width: 1140px;
  margin: 0 auto
}

.auth-bio .expertise-header {
  margin: 0 0 72px;
  text-align: center
}

.auth-bio .expertise-title {
  font-size: 56px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 24px;
  color: #1d1d1d
}

.auth-bio .expertise-subtitle {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: #4d4d4d;
  max-width: 640px;
  margin: 0 auto
}

.auth-bio .expertise-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px
}

.auth-bio .exp-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: -1px 1px 2px 0 #853e9d0f -1px 5px 14px 0 #853e9d14;
  position: relative;
  transition: transform .24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden
}

.auth-bio .exp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #853E9D 0%, #C6A3CB 100%);
  transition: height .26s cubic-bezier(0.0, 0, 0.2, 1)
}

.auth-bio .exp-card:hover::before {
  height: 100%
}

.auth-bio .exp-card:hover {
  transform: translateY(-4px);
  box-shadow: -1px 5px 14px 0 #853e9d14 -1px 12px 52px 0 #853e9d21
}

.auth-bio .exp-card::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #C6A3CB;
  border-right: 2px solid #C6A3CB;
  opacity: .3;
  pointer-events: none
}

.auth-bio .exp-icon {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: linear-gradient(135deg, #EFE9F6 0%, #fff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 24px
}

.auth-bio .exp-icon svg {
  width: 28px;
  height: 28px;
  fill: #853E9D
}

.auth-bio .exp-name {
  font-size: 31px;
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0 12px;
  color: #1d1d1d
}

.auth-bio .exp-detail {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: #4d4d4d
}

.auth-bio .journey-timeline {
  padding: 72px 24px;
  background: #fff;
  position: relative
}

.auth-bio .journey-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #EFE9F6 20%, #EFE9F6 80%, transparent 100%)
}

.auth-bio .journey-wrap {
  max-width: 1140px;
  margin: 0 auto
}

.auth-bio .journey-intro {
  margin: 0 0 72px
}

.auth-bio .journey-question {
  font-size: 56px;
  line-height: 1.2;
  font-weight: 300;
  margin: 0 0 24px;
  color: #1d1d1d
}

.auth-bio .journey-lead {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: #4d4d4d;
  max-width: 720px
}

.auth-bio .timeline-flow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 72px;
  position: relative
}

.auth-bio .timeline-flow::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, #EFE9F6 0%, #C6A3CB 50%, #EFE9F6 100%);
  transform: translateX(-50%)
}

.auth-bio .timeline-item {
  position: relative;
  padding: 24px;
  background: #fafafa;
  border-radius: 20px;
  transition: background .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.auth-bio .timeline-item:hover {
  background: #f5f5f5
}

.auth-bio .timeline-item::before {
  content: '';
  position: absolute;
  top: 36px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #853E9D;
  box-shadow: 0 0 0 4px #ffffff, 0 0 0 6px #C6A3CB;
  z-index: 2
}

.auth-bio .timeline-item:nth-child(odd) {
  text-align: right
}

.auth-bio .timeline-item:nth-child(odd)::before {
  right: -42px
}

.auth-bio .timeline-item:nth-child(even) {
  text-align: left
}

.auth-bio .timeline-item:nth-child(even)::before {
  left: -42px
}

.auth-bio .timeline-year {
  font-size: 31px;
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0 8px;
  color: #853E9D
}

.auth-bio .timeline-event {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 12px;
  font-weight: 600;
  color: #1d1d1d
}

.auth-bio .timeline-context {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: #4d4d4d
}

.auth-bio .metric-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #EFE9F6;
  border-radius: 36px;
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  color: #853E9D
}

.auth-bio .metric-arrow {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center
}

.auth-bio .metric-arrow svg {
  width: 12px;
  height: 12px;
  fill: #853E9D;
  transition: transform .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.auth-bio .timeline-item:hover .metric-arrow svg {
  transform: translateY(-2px)
}

.auth-bio .timeline-img-wrap {
  margin: 24px 0 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: -1px 1px 2px 0 #853e9d0f
}

.auth-bio .timeline-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.auth-bio .timeline-item:hover .timeline-img-wrap img {
  transform: scale(1.04)
}

@media (max-width: 1024px) {
  .auth-bio .bio-intro {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .auth-bio .bio-portrait {
    width: 100%;
    max-width: 400px;
    margin: 0 auto
  }

  .auth-bio .bio-intro::after {
    right: 24px
  }

  .auth-bio .expertise-cards {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .auth-bio .timeline-flow {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .auth-bio .timeline-flow::before {
    left: 24px
  }

  .auth-bio .timeline-item {
    text-align: left;
    padding-left: 48px
  }

  .auth-bio .timeline-item::before {
    left: -6px;
    top: 24px
  }

  .auth-bio .timeline-item:nth-child(odd) {
    text-align: left
  }

  .auth-bio .timeline-item:nth-child(odd)::before {
    right: auto;
    left: -6px
  }
}

@media (max-width: 768px) {
  .auth-bio .bio-intro {
    padding: 36px 24px
  }

  .auth-bio .bio-headline {
    font-size: 56px
  }

  .auth-bio .expertise-grid {
    padding: 36px 24px
  }

  .auth-bio .expertise-title {
    font-size: 31px
  }

  .auth-bio .journey-timeline {
    padding: 36px 24px
  }

  .auth-bio .journey-question {
    font-size: 31px
  }

  .auth-bio .expertise-header {
    margin: 0 0 36px
  }

  .auth-bio .journey-intro {
    margin: 0 0 36px
  }
}

@media (max-width: 640px) {
  .auth-bio .bio-headline {
    font-size: 31px
  }

  .auth-bio .bio-actions {
    flex-direction: column;
    gap: 12px
  }

  .auth-bio .bio-portrait {
    height: 360px
  }

  .auth-bio .exp-card {
    padding: 24px
  }

  .auth-bio .timeline-item {
    padding: 24px 24px 24px 36px
  }
}

.msn {
  background: #fff;
  color: #1a0f14;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0
}

.msn .lead-zone {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 72px 24px;
  gap: 36px;
  position: relative;
  border-bottom: 1px solid #853E9D
}

.msn .lead-zone::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #C6A3CB
}

.msn .lead-txt {
  flex: 1;
  max-width: 520px
}

.msn .lead-primary {
  font-size: 70px;
  line-height: 1.2;
  margin: 0 0 24px;
  font-weight: 700
}

.msn .lead-primary span:first-child {
  color: #1a0f14
}

.msn .lead-primary span:last-child {
  color: #853E9D
}

.msn .lead-link {
  display: inline-block;
  text-decoration: none;
  color: #853E9D;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border: 2px solid #853E9D;
  border-radius: 20px;
  transition: background-color .24s cubic-bezier(0.4, 0, 0.2, 1), color .26s cubic-bezier(0.0, 0, 0.2, 1)
}

.msn .lead-link:hover {
  background-color: #853E9D;
  color: #fff;
  filter: brightness(1.15)
}

.msn .lead-img-wrap {
  flex: 0 0 480px;
  position: relative;
  overflow: hidden;
  border-radius: 36px
}

.msn .lead-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: saturate(0.65);
  animation: msn-reveal-blur .8s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

@keyframes msn-reveal-blur {
  0% {
    opacity: 0;
    filter: saturate(0.65) blur(12px)
  }

  100% {
    opacity: 1;
    filter: saturate(0.65) blur(0px)
  }
}

.msn .foundation-area {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 36px;
  padding: 72px 24px;
  background: linear-gradient(165deg, #EFE9F6 0%, #fff 100%);
  position: relative
}

.msn .foundation-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-image: url(./illustrations/media-15alt.jpg);
  background-size: cover;
  background-position: center;
  opacity: .08;
  pointer-events: none;
  z-index: 0
}

.msn .foundation-divider {
  background: linear-gradient(180deg, #C6A3CB 0%, #853E9D 100%);
  width: 1px;
  height: 100%;
  position: relative;
  z-index: 1
}

.msn .foundation-col {
  position: relative;
  z-index: 1;
  animation: msn-reveal-blur 1s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

.msn .foundation-col:nth-child(1) {
  animation-delay: .15s
}

.msn .foundation-col:nth-child(3) {
  animation-delay: .28s
}

.msn .foundation-label {
  font-size: 31px;
  line-height: 1.4;
  margin: 0 0 24px;
  font-weight: 300;
  color: #1a0f14
}

.msn .foundation-body {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  text-align: justify;
  color: #1a0f14
}

.msn .foundation-body strong {
  background: #C6A3CB;
  padding: 4px 8px;
  border-radius: 0;
  color: #1a0f14
}

.msn .metrics-stage {
  padding: 72px 24px;
  background: #fff;
  position: relative;
  overflow: hidden
}

.msn .metrics-stage::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 160px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 160' preserveAspectRatio='none'%3E%3Cpath d='M0,80 L150,20 L300,80 L450,20 L600,80 L750,20 L900,80 L1050,20 L1200,80 L1200,0 L0,0 Z' fill='%23EFE9F6'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
  pointer-events: none
}

.msn .metrics-stage::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  height: 160px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 160' preserveAspectRatio='none'%3E%3Cpath d='M0,80 L150,140 L300,80 L450,140 L600,80 L750,140 L900,80 L1050,140 L1200,80 L1200,160 L0,160 Z' fill='%23EFE9F6'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
  pointer-events: none
}

.msn .metrics-heading {
  font-size: 56px;
  line-height: 1.2;
  margin: 0 0 36px;
  text-align: center;
  font-weight: 700;
  color: #853E9D
}

.msn .metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 36px
}

.msn .metric-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: -1px 5px 14px 0 #853e9d14;
  position: relative;
  overflow: hidden;
  transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .28s cubic-bezier(0.0, 0, 0.2, 1);
  animation: msn-reveal-blur .9s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

.msn .metric-card:nth-child(1) {
  animation-delay: .1s
}

.msn .metric-card:nth-child(2) {
  animation-delay: .2s
}

.msn .metric-card:nth-child(3) {
  animation-delay: .3s
}

.msn .metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at center, #C6A3CB 0%, transparent 70%);
  opacity: .2;
  pointer-events: none
}

.msn .metric-card:hover {
  transform: translateY(-8px);
  box-shadow: -1px 12px 52px 0 #853e9d21
}

.msn .metric-card:hover::after {
  opacity: 1
}

.msn .metric-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #853e9d08 0%, #c6a3cb08 100%);
  opacity: 0;
  transition: opacity .26s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none
}

.msn .metric-num {
  font-size: 56px;
  line-height: 1.2;
  margin: 0 0 12px;
  font-weight: 700;
  color: #853E9D
}

.msn .metric-label {
  font-size: 15px;
  line-height: 1.4;
  margin: 0;
  color: #1a0f14;
  font-weight: 600
}

.msn .metrics-summary {
  text-align: center;
  max-width: 720px;
  margin: 0 auto
}

.msn .metrics-txt {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: #1a0f14
}

.msn .visual-anchor {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 36px;
  padding: 72px 24px;
  background: #fff;
  position: relative
}

.msn .visual-anchor::before {
  content: '';
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 16px;
  height: 16px;
  background: #853E9D;
  border-radius: 0;
  opacity: .6
}

.msn .visual-anchor::after {
  content: '';
  position: absolute;
  bottom: 48px;
  right: 48px;
  width: 8px;
  height: 8px;
  background: #C6A3CB;
  border-radius: 0;
  opacity: .4
}

.msn .anchor-content {
  flex: 1;
  max-width: 580px
}

.msn .anchor-title {
  font-size: 56px;
  line-height: 1.2;
  margin: 0 0 24px;
  font-weight: 700;
  color: #1a0f14
}

.msn .anchor-desc {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 24px;
  text-align: justify;
  color: #1a0f14
}

.msn .anchor-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
  line-height: 1.4
}

.msn .anchor-list li {
  display: inline;
  color: #1a0f14
}

.msn .anchor-list li::after {
  content: ' / ';
  color: #C6A3CB;
  margin: 0 8px
}

.msn .anchor-list li:last-child::after {
  content: '';
  margin: 0
}

.msn .anchor-visual {
  flex: 0 0 460px;
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: -1px 12px 52px 0 #853e9d21
}

.msn .anchor-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #853e9d00 0%, #853e9d4d 100%);
  opacity: 0;
  transition: opacity .24s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 2
}

.msn .anchor-visual:hover::before {
  opacity: 1
}

.msn .anchor-pic {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform .28s cubic-bezier(0.0, 0, 0.2, 1)
}

.msn .anchor-visual:hover .anchor-pic {
  transform: scale(1.08)
}

@media (max-width: 1024px) {
  .msn .lead-zone {
    flex-direction: column;
    padding: 36px 24px
  }

  .msn .lead-txt {
    max-width: 100%
  }

  .msn .lead-primary {
    font-size: 56px
  }

  .msn .lead-img-wrap {
    flex: 0 0 auto;
    width: 100%
  }

  .msn .foundation-area {
    grid-template-columns: 1fr;
    padding: 36px 24px
  }

  .msn .foundation-divider {
    display: none
  }

  .msn .metrics-stage {
    padding: 36px 24px
  }

  .msn .metrics-heading {
    font-size: 31px
  }

  .msn .visual-anchor {
    flex-direction: column;
    padding: 36px 24px
  }

  .msn .anchor-content {
    max-width: 100%
  }

  .msn .anchor-title {
    font-size: 31px
  }

  .msn .anchor-visual {
    flex: 0 0 auto;
    width: 100%
  }
}

@media (max-width: 640px) {
  .msn .lead-primary {
    font-size: 31px
  }

  .msn .lead-link {
    font-size: 15px;
    padding: 8px 24px
  }

  .msn .foundation-label {
    font-size: 31px
  }

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

  .msn .metric-num {
    font-size: 31px
  }

  .msn .anchor-title {
    font-size: 31px
  }
}

.confirmation-page {
  background: linear-gradient(168deg, #fff 0%, #EFE9F6 100%);
  padding: 72px 24px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center
}

.confirmation-page .msg-wrapper {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  padding: 72px 36px;
  border-radius: 20px;
  box-shadow: -1px 12px 52px 0 #853e9d21;
  text-align: center
}

.confirmation-page .status-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 36px;
  position: relative
}

.confirmation-page .status-icon svg {
  width: 100%;
  height: 100%
}

.confirmation-page .status-icon circle {
  fill: none;
  stroke: #853E9D;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
  animation: draw-circle .24s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

.confirmation-page .status-icon polyline {
  fill: none;
  stroke: #853E9D;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: draw-check .22s cubic-bezier(0.0, 0, 0.2, 1) .24s forwards
}

@keyframes draw-circle {
  to {
    stroke-dashoffset: 0
  }
}

@keyframes draw-check {
  to {
    stroke-dashoffset: 0
  }
}

.confirmation-page .msg-title {
  font-size: 56px;
  line-height: 1.2;
  margin: 0 0 24px;
  font-weight: 700;
  color: #853E9D
}

.confirmation-page .msg-desc {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 36px;
  color: #2a2a2a
}

.confirmation-page .msg-desc p {
  margin: 0 0 12px
}

.confirmation-page .msg-desc p:last-child {
  margin: 0
}

.confirmation-page .detail-box {
  background: #EFE9F6;
  padding: 24px;
  border-radius: 20px;
  margin: 0 0 36px;
  text-align: left
}

.confirmation-page .detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.4
}

.confirmation-page .detail-row:last-child {
  margin: 0
}

.confirmation-page .detail-label {
  color: #5a5a5a;
  font-weight: 400
}

.confirmation-page .detail-value {
  color: #2a2a2a;
  font-weight: 600;
  text-align: right
}

.confirmation-page .action-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap
}

.confirmation-page .btn-primary {
  background: #853E9D;
  color: #fff;
  padding: 12px 36px;
  border: none;
  border-radius: 36px;
  font-size: 15px;
  line-height: 1.4;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: filter .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.confirmation-page .btn-primary:hover {
  filter: brightness(1.15)
}

.confirmation-page .btn-secondary {
  background: transparent;
  color: #853E9D;
  padding: 12px 36px;
  border: 2px solid #C6A3CB;
  border-radius: 36px;
  font-size: 15px;
  line-height: 1.4;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .23s cubic-bezier(0.0, 0, 0.2, 1), color .23s cubic-bezier(0.0, 0, 0.2, 1)
}

.confirmation-page .btn-secondary:hover {
  background: #EFE9F6;
  color: #853E9D
}

.confirmation-page .footnote {
  margin: 36px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: #6a6a6a
}

@media (max-width: 640px) {
  .confirmation-page {
    padding: 36px 12px
  }

  .confirmation-page .msg-wrapper {
    padding: 36px 24px
  }

  .confirmation-page .msg-title {
    font-size: 31px
  }

  .confirmation-page .status-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px
  }

  .confirmation-page .action-group {
    flex-direction: column
  }

  .confirmation-page .btn-primary,
  .confirmation-page .btn-secondary {
    width: 100%
  }

  .confirmation-page .detail-row {
    flex-direction: column;
    gap: 4px
  }

  .confirmation-page .detail-value {
    text-align: left
  }
}