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

* {
    box-sizing: border-box
}

body {
    margin: 0;
    min-height: 100dvh;
    font-family: 'DM Sans', sans-serif;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%
}

.site-head {
    background: linear-gradient(135deg, #1a0d2e 0%, #2a1245 50%, #1e0a38 100%);
    border-bottom: 1px solid #9664bc38;
    position: relative;
    overflow: hidden
}

.site-head::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #9664bc0f 0%, transparent 100%);
    pointer-events: none
}

.head-top {
    max-width: 1140px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px
}

.logo-box {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
    background: #f7f5f714;
    border: 1px solid #c5bad740;
    border-radius: 18px 3px 18px 3px;
    padding: 8px;
    box-shadow: 2px 6px 20px -2px #9664bc17 0 0 0 1px #9664bc1f;
    transition: box-shadow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.logo-box:hover {
    box-shadow: 2px 10px 48px -2px #9664bc24 0 0 0 1px #9664bc4d;
    border-color: #c5bad773
}

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

.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: #F7F5F7;
    letter-spacing: .01em;
    line-height: 1.2;
    margin-left: 16px;
    text-decoration: none
}

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

.head-nav a {
    font-size: 16px;
    color: #C5BAD7;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 3px;
    line-height: 1.5;
    transition: color .5s ease-in-out, background .5s ease-in-out;
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center
}

.head-nav a:hover {
    color: #9664BC;
    background: #9664bc14
}

.head-nav a:focus {
    outline: none;
    position: relative
}

.head-nav a:focus::after {
    content: 'focus';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    color: #C5BAD7;
    background: #2a1245f2;
    padding: 2px 8px;
    border-radius: 3px;
    pointer-events: none;
    white-space: nowrap
}

.head-accent-link {
    font-size: 16px;
    color: #F7F5F7;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #9664bc8c;
    border-radius: 3px;
    line-height: 1.5;
    min-height: 44px;
    display: flex;
    align-items: center;
    transition: color .5s ease-in-out, border-color .5s ease-in-out;
    white-space: nowrap;
    position: relative;
    overflow: hidden
}

.head-accent-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    border-bottom: 2px solid #9664BC;
    border-top: 2px solid #9664BC;
    transition: left .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.head-accent-link:hover::before {
    left: 0
}

.head-accent-link:hover {
    color: #9664BC;
    border-color: #9664BC
}

.head-accent-link:focus {
    outline: none;
    position: relative
}

.head-accent-link:focus::after {
    content: 'focus';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    color: #C5BAD7;
    background: #2a1245f2;
    padding: 2px 8px;
    border-radius: 3px;
    pointer-events: none;
    white-space: nowrap
}

.head-divider {
    width: 1px;
    height: 24px;
    background: #c5bad733;
    flex-shrink: 0
}

.site-foot {
    background: linear-gradient(160deg, #1a0d2e 0%, #2a1245 60%, #180a2c 100%);
    border-top: 1px solid #9664bc33;
    padding: 40px 0 0;
    position: relative
}

.site-foot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #9664bc80, transparent);
    pointer-events: none
}

.foot-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px
}

.foot-brand-row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap
}

.foot-brand-zone {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.foot-logo-box {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background: #f7f5f70f;
    border: 1px solid #c5bad733;
    border-radius: 18px 3px 3px 3px;
    padding: 8px;
    box-shadow: 2px 3px 4px -2px #9664bc0d;
    width: fit-content
}

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

.foot-tagline {
    font-size: 16px;
    color: #C5BAD7;
    line-height: 1.75;
    margin: 0;
    max-width: 360px
}

.foot-links-zone {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.foot-links-label {
    font-size: 13px;
    font-weight: 700;
    color: #9664BC;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 8px
}

.foot-links-zone a {
    font-size: 16px;
    color: #C5BAD7;
    text-decoration: none;
    padding: 8px 0;
    line-height: 1.5;
    transition: color .5s ease-in-out;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 8px
}

.foot-links-zone a:hover {
    color: #9664BC
}

.foot-links-zone a:focus {
    outline: none;
    position: relative
}

.foot-links-zone a:focus::before {
    content: 'focus';
    position: absolute;
    top: -14px;
    left: 0;
    font-size: 13px;
    color: #C5BAD7;
    background: #2a1245f2;
    padding: 2px 8px;
    border-radius: 3px;
    pointer-events: none
}

.foot-links-zone a i {
    font-size: 13px;
    color: #9664bc99;
    flex-shrink: 0
}

.foot-bottom {
    border-top: 1px solid #c5bad71a;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px
}

.foot-copy {
    font-size: 13px;
    color: #c5bad78c;
    line-height: 1.5;
    margin: 0
}

.foot-copy a {
    color: #c5bad78c;
    text-decoration: none;
    transition: color .5s ease-in-out
}

.foot-copy a:hover {
    color: #9664BC
}

.foot-email {
    font-size: 13px;
    color: #c5bad78c;
    text-decoration: none;
    transition: color .5s ease-in-out;
    display: flex;
    align-items: center;
    gap: 8px
}

.foot-email:hover {
    color: #9664BC
}

.foot-email i {
    font-size: 13px
}

.consent-strip {
    display: none;
    position: fixed;
    top: 16px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 80px);
    max-width: 860px;
    z-index: 1200;
    background: #1e0a38;
    border: 1px solid #9664bc59;
    border-radius: 18px;
    box-shadow: 2px 10px 48px -2px #9664bc24;
    padding: 16px 40px
}

.consent-strip-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.consent-text-zone {
    flex: 1 1 280px
}

.consent-headline {
    font-size: 16px;
    font-weight: 700;
    color: #F7F5F7;
    line-height: 1.2;
    margin-bottom: 8px
}

.consent-desc {
    font-size: 13px;
    color: #C5BAD7;
    line-height: 1.75;
    margin: 0
}

.consent-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    flex-shrink: 0
}

.consent-btn {
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    color: #F7F5F7;
    background: transparent;
    border: 1px solid #9664bc80;
    border-radius: 3px;
    padding: 8px 16px;
    cursor: pointer;
    line-height: 1.5;
    min-height: 44px;
    transition: color .5s ease-in-out, border-color .5s ease-in-out;
    white-space: nowrap
}

.consent-btn:hover {
    color: #9664BC;
    border-color: #9664BC
}

.consent-btn:active {
    box-shadow: inset 2px 3px 4px -2px #9664bc26
}

.consent-btn-ok {
    color: #9664BC;
    border-color: #9664BC
}

.consent-btn-ok:hover {
    color: #F7F5F7;
    border-color: #C5BAD7
}

.consent-settings-link {
    font-size: 13px;
    color: #c5bad799;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    font-family: 'DM Sans', sans-serif;
    min-height: 44px;
    transition: color .5s ease-in-out
}

.consent-settings-link:hover {
    color: #9664BC
}

.consent-detail {
    display: none;
    width: 100%;
    margin-top: 16px;
    border-top: 1px solid #9664bc33;
    padding-top: 16px
}

.consent-toggle-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap
}

.consent-toggle-info {
    flex: 1 1 200px
}

.consent-toggle-label {
    font-size: 16px;
    font-weight: 700;
    color: #F7F5F7;
    line-height: 1.2;
    display: block;
    margin-bottom: 8px
}

.consent-toggle-desc {
    font-size: 13px;
    color: #C5BAD7;
    line-height: 1.75;
    margin: 0
}

.consent-toggle-ctrl {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.consent-chk {
    width: 18px;
    height: 18px;
    accent-color: #9664BC;
    cursor: pointer
}

.consent-chk-label {
    font-size: 13px;
    color: #C5BAD7;
    cursor: pointer
}

.consent-sale-notice {
    font-size: 13px;
    color: #c5bad7b3;
    line-height: 1.75;
    margin: 0 0 16px;
    padding: 8px 16px;
    background: #9664bc12;
    border-radius: 3px
}

.consent-mini {
    display: none;
    position: fixed;
    bottom: 16px;
    left: 16px;
    z-index: 1200;
    background: #1e0a38;
    border: 1px solid #9664bc59;
    border-radius: 28px;
    box-shadow: 2px 6px 20px -2px #9664bc17;
    padding: 8px 16px
}

.consent-mini-btn {
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    color: #C5BAD7;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0;
    transition: color .5s ease-in-out
}

.consent-mini-btn:hover {
    color: #9664BC
}

.consent-mini-btn i {
    font-size: 16px
}

@media (max-width: 1024px) {
    .head-top {
        padding: 16px 40px;
        flex-wrap: wrap;
        gap: 16px
    }

    .head-nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        gap: 8px
    }

    .head-divider {
        display: none
    }
}

@media (max-width: 640px) {
    .head-top {
        padding: 16px;
        gap: 16px
    }

    .foot-inner {
        padding: 0 16px
    }

    .foot-brand-row {
        flex-direction: column;
        gap: 16px
    }

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

    .consent-strip {
        width: calc(100% - 32px);
        padding: 16px;
        top: 8px
    }

    .consent-strip-inner {
        flex-direction: column;
        align-items: flex-start
    }

    .consent-actions {
        width: 100%
    }
}

@media (max-width: 360px) {
    .head-top {
        padding: 8px
    }

    .brand-name {
        font-size: 16px
    }

    .foot-inner {
        padding: 0 8px
    }

    .consent-strip {
        width: calc(100% - 16px);
        padding: 8px
    }
}

.rules-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 80px 40px;
    color: #C5BAD7;
    background: #18101f;
    min-height: 100vh
}

.rules-content h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #F7F5F7;
    margin-bottom: 40px;
    margin-top: 0;
    letter-spacing: .01em
}

.rules-content h2 {
    font-size: 20px;
    line-height: 1.5;
    color: #F7F5F7;
    margin-top: 80px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .12em;
    padding-bottom: 8px;
    border-bottom: 1px solid #9664bc47
}

.rules-content h3 {
    font-size: 20px;
    line-height: 1.5;
    color: #C5BAD7;
    margin-top: 40px;
    margin-bottom: 16px
}

.rules-content h4 {
    font-size: 16px;
    line-height: 1.5;
    color: #C5BAD7;
    margin-top: 40px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.rules-content h5 {
    font-size: 16px;
    line-height: 1.5;
    color: #9664BC;
    margin-top: 16px;
    margin-bottom: 8px
}

.rules-content h6 {
    font-size: 13px;
    line-height: 1.75;
    color: #9664BC;
    margin-top: 16px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .1em
}

.rules-content p {
    font-size: 16px;
    line-height: 1.75;
    color: #C5BAD7;
    margin-top: 0;
    margin-bottom: 16px
}

.rules-content ul,
.rules-content ol {
    font-size: 16px;
    line-height: 1.75;
    color: #C5BAD7;
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 40px
}

.rules-content ul {
    list-style: none;
    padding-left: 16px
}

.rules-content ul li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px
}

.rules-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .7em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #9664BC;
    box-shadow: 2px 3px 4px -2px #9664bc0d
}

.rules-content ol {
    list-style: decimal
}

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

.rules-content ol li::marker {
    color: #9664BC;
    font-size: 13px
}

.rules-content ul ul,
.rules-content ol ol,
.rules-content ul ol,
.rules-content ol ul {
    margin-top: 8px;
    margin-bottom: 8px
}

.rules-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    font-size: 13px;
    line-height: 1.75;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 2px 6px 20px -2px #9664bc17
}

.rules-content thead {
    background: #9664bc2e
}

.rules-content thead th {
    color: #F7F5F7;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #9664bc59
}

.rules-content tbody tr {
    border-bottom: 1px solid #c5bad717;
    transition: background .5s ease-in-out
}

.rules-content tbody tr:hover {
    background: #9664bc12
}

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

.rules-content td {
    padding: 16px;
    color: #C5BAD7;
    vertical-align: top
}

.rules-content th {
    padding: 16px;
    font-size: 13px;
    line-height: 1.5
}

.rules-content div {
    font-size: 16px;
    line-height: 1.75
}

.rules-content div+div {
    margin-top: 8px
}

@media (max-width: 1024px) {
    .rules-content {
        padding: 80px 40px
    }

    .rules-content h1 {
        font-size: 52px
    }
}

@media (max-width: 640px) {
    .rules-content {
        padding: 40px 16px
    }

    .rules-content h1 {
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: 40px
    }

    .rules-content h2 {
        font-size: 16px;
        margin-top: 40px
    }

    .rules-content h3 {
        font-size: 16px;
        margin-top: 40px
    }

    .rules-content h4,
    .rules-content h5,
    .rules-content h6 {
        font-size: 13px
    }

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

    .rules-content td,
    .rules-content th {
        padding: 8px;
        min-width: 120px
    }
}

@media (max-width: 360px) {
    .rules-content {
        padding: 40px 8px
    }

    .rules-content h1 {
        font-size: 20px
    }

    .rules-content ul,
    .rules-content ol {
        padding-left: 16px
    }
}

.bld {
    background: #18112a;
    color: #e8e2f0;
    overflow-x: clip
}

.bld .art-lead {
    padding: 80px 16px;
    background: linear-gradient(to bottom, #2a1a45 0%, #18112a 100%);
    position: relative
}

.bld .art-lead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, #9664bc0f 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, #9664bc0f 40px);
    pointer-events: none
}

.bld .lead-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1
}

.bld .lead-text {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.bld .art-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #9664BC;
    border: 1px solid #9664bc66;
    border-radius: 3px;
    padding: 8px 16px;
    width: fit-content
}

.bld .art-h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    color: #F7F5F7;
    margin: 0;
    letter-spacing: -.01em
}

.bld .art-h1 .key-word {
    position: relative;
    display: inline-block;
    color: #C5BAD7
}

.bld .art-h1 .key-word::after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 2px;
    height: 2px;
    background: #9664BC;
    animation: draw-line .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) .5s forwards
}

@keyframes draw-line {
    to {
        right: 0
    }
}

.bld .art-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: #C5BAD7;
    padding-top: 8px
}

.bld .art-meta .meta-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #9664BC;
    display: inline-block;
    flex-shrink: 0
}

.bld .art-meta .by-author {
    font-weight: 600;
    color: #F7F5F7
}

.bld .act-bar {
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding-top: 8px
}

.bld .btn-act {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #C5BAD7;
    background: transparent;
    border: 1px solid #c5bad759;
    border-radius: 3px;
    padding: 8px 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .55s ease-in-out, border-color .55s ease-in-out
}

.bld .btn-act::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 100%;
    bottom: 0;
    background: #9664bc1f;
    transition: right .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.bld .btn-act:hover::before {
    right: 0
}

.bld .btn-act:hover {
    color: #9664BC;
    border-color: #9664BC
}

.bld .btn-act:active {
    box-shadow: inset 2px 3px 4px -2px #9664bc33
}

.bld .btn-act .fa {
    font-size: 13px
}

.bld .img-frame {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 2px 10px 48px -2px #9664bc24;
    animation: shadow-build .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) .2s both
}

@keyframes shadow-build {
    from {
        box-shadow: 2px 3px 4px -2px #9664bc00
    }

    to {
        box-shadow: 2px 10px 48px -2px #9664bc24
    }
}

.bld .img-frame img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    filter: saturate(0.85) brightness(0.9);
    transition: filter .55s ease-in-out
}

.bld .img-frame:hover img {
    filter: saturate(1) brightness(1)
}

.bld .img-frame::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #18112ab3);
    pointer-events: none
}

.bld .img-frame .frame-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to left, #9664BC, #C5BAD7)
}

.bld .art-body {
    padding: 80px 16px;
    background: #18112a;
    position: relative
}

.bld .body-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    gap: 40px
}

.bld .side-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 8px;
    gap: 40px
}

.bld .vert-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #9664bc73;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap
}

.bld .side-line {
    width: 1px;
    flex: 1;
    background: linear-gradient(to bottom, #9664bc66, transparent);
    min-height: 80px
}

.bld .side-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 8px
}

.bld .side-right .side-line {
    background: linear-gradient(to bottom, transparent, #c5bad740, transparent)
}

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

.bld .prose p {
    font-size: 16px;
    line-height: 1.75;
    color: #d4cce0;
    margin: 0
}

.bld .prose h2 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #F7F5F7;
    margin: 40px 0 0;
    padding-top: 8px
}

.bld .prose blockquote {
    margin: 40px 0;
    padding: 40px;
    background: #9664bc14;
    border-radius: 18px;
    border-top: 3px solid #9664BC;
    border-bottom: 3px solid #c5bad733;
    position: relative
}

.bld .prose blockquote p {
    font-size: 20px;
    line-height: 1.5;
    color: #F7F5F7;
    font-weight: 500;
    font-style: italic
}

.bld .prose blockquote cite {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #9664BC;
    margin-top: 16px;
    font-style: normal
}

.bld .prose ul,
.bld .prose ol {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: 16px 0;
    list-style: none
}

.bld .prose ul li,
.bld .prose ol li {
    font-size: 16px;
    line-height: 1.75;
    color: #d4cce0;
    background: #c5bad70f;
    border-radius: 3px;
    padding: 16px;
    border-left: 3px solid #9664BC;
    border-right: 1px solid #9664bc26;
    transition: background .5s ease-in-out
}

.bld .prose ul li:hover,
.bld .prose ol li:hover {
    background: #9664bc1a
}

.bld .prose ins {
    text-decoration: none;
    background: #9664bc33;
    color: #C5BAD7;
    padding: 0 8px;
    border-radius: 3px
}

.bld .svg-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -1px
}

.bld .svg-divider svg {
    display: block;
    width: 100%
}

@media (max-width: 1024px) {
    .bld .lead-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .bld .art-h1 {
        font-size: 40px
    }

    .bld .body-inner {
        grid-template-columns: 40px 1fr 40px;
        gap: 16px
    }

    .bld .vert-label {
        display: none
    }
}

@media (max-width: 640px) {
    .bld .art-lead {
        padding: 40px 16px
    }

    .bld .art-h1 {
        font-size: 28px
    }

    .bld .body-inner {
        grid-template-columns: 1fr;
        gap: 0
    }

    .bld .side-left,
    .bld .side-right {
        display: none
    }

    .bld .art-body {
        padding: 40px 16px
    }

    .bld .act-bar {
        flex-direction: column
    }

    .bld .prose blockquote {
        padding: 16px;
        margin: 16px 0
    }
}

@media (max-width: 360px) {
    .bld .art-h1 {
        font-size: 20px
    }

    .bld .art-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .bld .meta-sep {
        display: none
    }
}

.jrnl {
    background-color: #13101a;
    color: #e8e2f0;
    overflow-x: clip;
    position: relative
}

.jrnl .pg-geo {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0
}

.jrnl .geo-a {
    width: 420px;
    height: 420px;
    border: 1px solid #9664bc12;
    top: -80px;
    right: -120px
}

.jrnl .geo-b {
    width: 260px;
    height: 260px;
    border: 1px solid #c5bad70f;
    top: 80px;
    right: 40px
}

.jrnl .geo-c {
    width: 180px;
    height: 180px;
    border: 1px solid #9664bc0d;
    bottom: 40px;
    left: -60px
}

.jrnl .jrnl-strip {
    height: 3px;
    background: linear-gradient(to left, #9664BC, #C5BAD7);
    width: 100%
}

.jrnl .title-band {
    padding: 40px 0;
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px
}

.jrnl .title-img-col {
    flex: 0 0 40%;
    position: relative
}

.jrnl .title-img-frame {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 16/9;
    box-shadow: 2px 10px 48px -2px #9664bc24
}

.jrnl .title-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.jrnl .title-img-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #13101a8c 0%, transparent 55%, #13101a73 100%);
    border-radius: 18px
}

.jrnl .title-deco-stripe {
    position: absolute;
    left: -8px;
    top: 16px;
    bottom: 16px;
    width: 3px;
    background: linear-gradient(to bottom, #9664BC, #C5BAD7);
    border-radius: 3px
}

.jrnl .title-text-col {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.jrnl .title-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #9664BC;
    line-height: 1.2
}

.jrnl .title-h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    color: #F7F5F7;
    margin: 0
}

.jrnl .title-h1 .accent-word {
    position: relative;
    display: inline-block
}

.jrnl .title-h1 .accent-word::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 2px;
    width: 0;
    background: linear-gradient(to left, #9664BC, #C5BAD7);
    border-radius: 3px;
    animation: underline-draw .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) .5s forwards
}

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

.jrnl .title-sub {
    font-size: 16px;
    line-height: 1.75;
    color: #C5BAD7;
    margin: 0;
    max-width: 520px
}

.jrnl .title-h2 {
    font-size: 20px;
    font-weight: 600;
    color: #e8e2f0;
    line-height: 1.5;
    margin: 0
}

.jrnl .badge-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #9664bc59;
    border-radius: 28px;
    font-size: 13px;
    color: #C5BAD7;
    align-self: flex-start;
    box-shadow: 2px 3px 4px -2px #9664bc0d
}

.jrnl .badge-count strong {
    color: #9664BC;
    font-size: 16px
}

.jrnl .articles-area {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background-color: #1c1628
}

.jrnl .articles-area::before {
    content: "";
    display: block;
    height: 1px;
    background: linear-gradient(to right, transparent, #9664bc4d, transparent)
}

.jrnl .articles-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px
}

.jrnl .articles-header {
    margin-bottom: 40px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px
}

.jrnl .articles-h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #F7F5F7;
    margin: 0;
    line-height: 1.2
}

.jrnl .articles-desc {
    font-size: 16px;
    color: #C5BAD7;
    line-height: 1.75;
    max-width: 480px;
    margin: 8px 0 0
}

.jrnl .art-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 16px;
    align-items: stretch
}

.jrnl .art-card {
    background-color: #13101a;
    border-radius: 18px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 2px 6px 20px -2px #9664bc17;
    border: 1px solid #9664bc1f;
    animation: flip-in .55s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    transform-style: preserve-3d
}

.jrnl .art-card:nth-child(1) {
    animation-delay: .1s
}

.jrnl .art-card:nth-child(2) {
    animation-delay: .22s
}

.jrnl .art-card:nth-child(3) {
    animation-delay: .35s
}

@keyframes flip-in {
    from {
        opacity: 0;
        transform: rotateX(-18deg) translateY(16px)
    }

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

.jrnl .art-card.featured {
    background: linear-gradient(to left, #1e1630, #13101a);
    border-color: #9664bc40;
    box-shadow: 2px 10px 48px -2px #9664bc24
}

.jrnl .art-tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #9664BC;
    line-height: 1.2
}

.jrnl .art-title {
    font-size: 16px;
    font-weight: 700;
    color: #F7F5F7;
    line-height: 1.5;
    margin: 0
}

.jrnl .art-card.featured .art-title {
    font-size: 20px
}

.jrnl .art-excerpt {
    font-size: 16px;
    color: #C5BAD7;
    line-height: 1.75;
    margin: 0;
    flex: 1
}

.jrnl .art-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #9664BC;
    text-decoration: none;
    letter-spacing: .05em;
    text-transform: uppercase;
    border-bottom: 1px solid #9664bc4d;
    padding-bottom: 3px;
    align-self: flex-start;
    transition: color .55s ease-in-out, border-color .55s ease-in-out
}

.jrnl .art-link:hover {
    color: #C5BAD7;
    border-color: #c5bad780
}

.jrnl .art-link i {
    font-size: 13px
}

.jrnl .compare-area {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background-color: #F7F5F7
}

.jrnl .compare-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start
}

.jrnl .compare-text {
    flex: 0 0 38%;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.jrnl .compare-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #9664BC;
    line-height: 1.2
}

.jrnl .compare-h2 {
    font-size: 20px;
    font-weight: 800;
    color: #13101a;
    line-height: 1.5;
    margin: 0
}

.jrnl .compare-p {
    font-size: 16px;
    color: #3d3050;
    line-height: 1.75;
    margin: 0
}

.jrnl .compare-p strong {
    color: #13101a
}

.jrnl .compare-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.jrnl .bar-row {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.jrnl .bar-meta {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.jrnl .bar-label {
    font-size: 13px;
    font-weight: 600;
    color: #3d3050;
    letter-spacing: .04em;
    text-transform: uppercase;
    line-height: 1.2
}

.jrnl .bar-values {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center
}

.jrnl .bar-val {
    font-size: 13px;
    color: #6b5f80;
    line-height: 1.2
}

.jrnl .bar-val strong {
    font-size: 16px;
    color: #13101a
}

.jrnl .bar-track {
    height: 8px;
    background-color: #9664bc1f;
    border-radius: 3px;
    position: relative;
    overflow: hidden
}

.jrnl .bar-fill {
    height: 100%;
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 0;
    animation: bar-grow .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) .3s both
}

@keyframes bar-grow {
    from {
        width: 0
    }
}

.jrnl .bar-fill.set-a {
    background: linear-gradient(to left, #9664BC, #C5BAD7)
}

.jrnl .bar-fill.set-b {
    background: linear-gradient(to left, #C5BAD7, #9664bc66)
}

.jrnl .bar-legend {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 8px
}

.jrnl .legend-dot {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b5f80
}

.jrnl .dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    flex-shrink: 0
}

.jrnl .dot.a {
    background: #9664BC
}

.jrnl .dot.b {
    background: #C5BAD7
}

@media (max-width: 1024px) {
    .jrnl .title-band {
        flex-direction: column;
        padding-left: 40px;
        padding-right: 40px
    }

    .jrnl .title-img-col {
        flex: none;
        width: 100%
    }

    .jrnl .title-text-col {
        flex: none;
        width: 100%
    }

    .jrnl .title-h1 {
        font-size: 52px
    }

    .jrnl .art-grid {
        grid-template-columns: 1fr 1fr
    }

    .jrnl .art-card.featured {
        grid-column: 1 / -1
    }

    .jrnl .compare-inner {
        flex-direction: column;
        gap: 40px
    }

    .jrnl .compare-text {
        flex: none;
        width: 100%
    }
}

@media (max-width: 640px) {
    .jrnl .title-band {
        padding: 40px 16px
    }

    .jrnl .title-h1 {
        font-size: 20px
    }

    .jrnl .articles-inner {
        padding: 0 16px
    }

    .jrnl .art-grid {
        grid-template-columns: 1fr
    }

    .jrnl .art-card.featured {
        grid-column: auto
    }

    .jrnl .articles-header {
        flex-direction: column;
        align-items: flex-start
    }

    .jrnl .compare-inner {
        padding: 0 16px
    }

    .jrnl .compare-area {
        padding: 40px 0
    }

    .jrnl .articles-area {
        padding: 40px 0
    }
}

@media (max-width: 360px) {
    .jrnl .title-h1 {
        font-size: 20px
    }

    .jrnl .art-card {
        padding: 16px
    }
}

.jrnl .bounce-load {
    animation: bounce-on .55s cubic-bezier(0.25, 0.46, 0.45, 0.94) .15s both
}

@keyframes bounce-on {
    0% {
        transform: translateY(12px);
        opacity: 0
    }

    70% {
        transform: translateY(-4px);
        opacity: 1
    }

    100% {
        transform: translateY(0)
    }
}

.abt-auth {
    background: #13101a;
    color: #e8e2f0;
    overflow-x: hidden
}

.abt-auth .pg-cap {
    background: #F7F5F7;
    padding: 80px 16px;
    position: relative
}

.abt-auth .pg-cap .dot-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    background-image: radial-gradient(circle, #9664BC22 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 0
}

.abt-auth .pg-cap .cap-row {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px;
    position: relative;
    z-index: 1
}

.abt-auth .pg-cap .cap-text {
    flex: 0 0 60%;
    padding-top: 40px
}

.abt-auth .pg-cap .cap-img-col {
    flex: 0 0 calc(40% - 40px)
}

.abt-auth .pg-cap .eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #9664BC;
    margin-bottom: 16px;
    display: block
}

.abt-auth .pg-cap .cap-h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    color: #13101a;
    margin-bottom: 16px
}

.abt-auth .pg-cap .cap-h1 .und-word {
    position: relative;
    display: inline-block
}

.abt-auth .pg-cap .cap-h1 .und-word::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 3px;
    background: #9664BC;
    animation: draw-line .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) .5s forwards
}

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

.abt-auth .pg-cap .cap-sub {
    font-size: 16px;
    line-height: 1.75;
    color: #3a2f4a;
    max-width: 560px
}

.abt-auth .pg-cap .cap-img-wrap {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 2px 10px 48px -2px #9664bc24;
    max-width: 280px;
    margin: 0 auto
}

.abt-auth .pg-cap .cap-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.9) brightness(0.97)
}

.abt-auth .divider-a {
    max-width: 1140px;
    margin: 0 auto;
    height: 1px;
    background: #C5BAD7;
    position: relative
}

.abt-auth .divider-a::before,
.abt-auth .divider-a::after {
    content: '';
    position: absolute;
    top: -4px;
    width: 1px;
    height: 9px;
    background: #9664BC
}

.abt-auth .divider-a::before {
    left: 20%
}

.abt-auth .divider-a::after {
    left: 60%
}

.abt-auth .divider-a .tick-mid {
    position: absolute;
    top: -4px;
    left: 80%;
    width: 1px;
    height: 9px;
    background: #9664BC
}

.abt-auth .bio-strip {
    padding: 80px 16px;
    background: #1a1326;
    position: relative
}

.abt-auth .bio-strip .radial-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0
}

.abt-auth .bio-strip .radial-bg::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, #9664bc12 0%, transparent 70%);
    animation: bg-drift 8s ease-in-out infinite alternate;
    top: -100px;
    right: -100px
}

@keyframes bg-drift {
    0% {
        transform: translate(0, 0)
    }

    100% {
        transform: translate(-60px, 40px)
    }
}

.abt-auth .bio-strip .bio-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.abt-auth .bio-strip .bio-cols {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start
}

.abt-auth .bio-strip .bio-left {
    flex: 0 0 60%
}

.abt-auth .bio-strip .bio-right {
    flex: 1;
    border-left: 1px solid #C5BAD733;
    padding-left: 40px
}

.abt-auth .bio-strip .sect-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #C5BAD7;
    margin-bottom: 16px;
    display: block
}

.abt-auth .bio-strip .bio-h2 {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #F7F5F7;
    margin-bottom: 16px
}

.abt-auth .bio-strip .bio-p {
    font-size: 16px;
    line-height: 1.75;
    color: #C5BAD7;
    margin-bottom: 16px
}

.abt-auth .bio-strip .bio-p .lead {
    font-weight: 700;
    color: #F7F5F7
}

.abt-auth .bio-strip .img-pair {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abt-auth .bio-strip .img-box {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 2px 6px 20px -2px #9664bc17
}

.abt-auth .bio-strip .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) brightness(0.9);
    transition: filter .55s ease-in-out
}

.abt-auth .bio-strip .img-box:hover img {
    filter: saturate(1) brightness(1)
}

.abt-auth .bio-strip .chart-area {
    margin-top: 40px
}

.abt-auth .bio-strip .chart-h {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #C5BAD7;
    margin-bottom: 16px
}

.abt-auth .bio-strip .bar-row {
    margin-bottom: 16px
}

.abt-auth .bio-strip .bar-label {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 13px;
    color: #C5BAD7;
    margin-bottom: 8px
}

.abt-auth .bio-strip .bar-track {
    width: 100%;
    height: 8px;
    background: #2a1f3a;
    border-radius: 3px;
    overflow: hidden
}

.abt-auth .bio-strip .bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(to left, #9664BC, #C5BAD7);
    width: 0;
    animation: fill-bar .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

.abt-auth .bio-strip .bar-fill.w-88 {
    animation-delay: .2s;
    --target: 88%
}

.abt-auth .bio-strip .bar-fill.w-74 {
    animation-delay: .35s;
    --target: 74%
}

.abt-auth .bio-strip .bar-fill.w-81 {
    animation-delay: .5s;
    --target: 81%
}

.abt-auth .bio-strip .bar-fill.w-65 {
    animation-delay: .6s;
    --target: 65%
}

@keyframes fill-bar {
    to {
        width: var(--target)
    }
}

.abt-auth .bio-strip .right-h {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #F7F5F7;
    margin-bottom: 16px
}

.abt-auth .bio-strip .right-p {
    font-size: 16px;
    line-height: 1.75;
    color: #C5BAD7;
    margin-bottom: 16px
}

.abt-auth .bio-strip .journal-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #F7F5F7;
    border: 1px solid #9664BC;
    padding: 8px 16px;
    border-radius: 3px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color .55s ease-in-out
}

.abt-auth .bio-strip .journal-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #9664BC;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0
}

.abt-auth .bio-strip .journal-link:hover::before {
    transform: scaleX(1)
}

.abt-auth .bio-strip .journal-link span {
    position: relative;
    z-index: 1
}

.abt-auth .divider-b {
    max-width: 1140px;
    margin: 0 auto;
    height: 1px;
    background: #2a1f3a;
    position: relative
}

.abt-auth .divider-b::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 40%;
    width: 1px;
    height: 9px;
    background: #C5BAD7
}

.abt-auth .divider-b .tick2 {
    position: absolute;
    top: -4px;
    left: 70%;
    width: 1px;
    height: 9px;
    background: #C5BAD7
}

.abt-auth .approach-blk {
    padding: 80px 16px;
    background: #13101a;
    position: relative
}

.abt-auth .approach-blk .circles-deco {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 260px;
    height: 260px;
    pointer-events: none;
    overflow: hidden;
    z-index: 0
}

.abt-auth .approach-blk .circles-deco svg {
    width: 100%;
    height: 100%;
    opacity: .07
}

.abt-auth .approach-blk .ap-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.abt-auth .approach-blk .ap-top {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 40px
}

.abt-auth .approach-blk .ap-top-text {
    flex: 0 0 55%
}

.abt-auth .approach-blk .ap-top-img {
    flex: 1
}

.abt-auth .approach-blk .ap-h2 {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #F7F5F7;
    margin-bottom: 16px
}

.abt-auth .approach-blk .ap-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #9664BC;
    margin-bottom: 16px;
    display: block
}

.abt-auth .approach-blk .ap-p {
    font-size: 16px;
    line-height: 1.75;
    color: #C5BAD7;
    margin-bottom: 16px
}

.abt-auth .approach-blk .ap-p .lead {
    font-weight: 700;
    color: #F7F5F7
}

.abt-auth .approach-blk .img-frame {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 2px 10px 48px -2px #9664bc24;
    border: 1px solid #2a1f3a;
    border-top: 3px solid #9664BC
}

.abt-auth .approach-blk .img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8) brightness(0.88);
    transition: filter .6s ease-in-out
}

.abt-auth .approach-blk .img-frame:hover img {
    filter: saturate(1) brightness(0.95)
}

.abt-auth .approach-blk .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.abt-auth .approach-blk .ap-card {
    background: #1a1326;
    border-radius: 18px;
    padding: 40px 16px;
    box-shadow: 2px 3px 4px -2px #9664bc0d;
    border: 1px solid #2a1f3a;
    transition: border-color .5s ease-in-out, box-shadow .5s ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.abt-auth .approach-blk .ap-card:hover {
    border-color: #9664BC55;
    box-shadow: 2px 6px 20px -2px #9664bc17
}

.abt-auth .approach-blk .ap-card .card-num {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    color: #9664BC;
    opacity: .35
}

.abt-auth .approach-blk .ap-card .card-ttl {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #F7F5F7
}

.abt-auth .approach-blk .ap-card .card-desc {
    font-size: 13px;
    line-height: 1.75;
    color: #C5BAD7
}

.abt-auth .approach-blk .standout-card {
    background: linear-gradient(to left, #9664BC, #7a4fa0);
    border-color: transparent !important;
    box-shadow: 2px 10px 48px -2px #9664bc24 !important
}

.abt-auth .approach-blk .standout-card .card-num {
    color: #F7F5F7;
    opacity: .5
}

.abt-auth .approach-blk .standout-card .card-ttl {
    color: #F7F5F7
}

.abt-auth .approach-blk .standout-card .card-desc {
    color: #e0d8f0
}

.abt-auth .approach-blk .img-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 40px
}

.abt-auth .approach-blk .img-row .img-sm {
    flex: 1;
    aspect-ratio: 16/9;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 2px 3px 4px -2px #9664bc0d
}

.abt-auth .approach-blk .img-row .img-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) brightness(0.85);
    transition: filter .55s ease-in-out
}

.abt-auth .approach-blk .img-row .img-sm:hover img {
    filter: saturate(1) brightness(0.95)
}

@media (max-width: 1024px) {
    .abt-auth .pg-cap .cap-row {
        flex-direction: column;
        align-items: flex-start
    }

    .abt-auth .pg-cap .cap-text {
        flex: 1 1 auto
    }

    .abt-auth .pg-cap .cap-img-col {
        flex: 0 0 auto;
        width: 200px
    }

    .abt-auth .bio-strip .bio-cols {
        flex-direction: column
    }

    .abt-auth .bio-strip .bio-left {
        flex: 1 1 auto
    }

    .abt-auth .bio-strip .bio-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #C5BAD733;
        padding-top: 40px
    }

    .abt-auth .approach-blk .ap-top {
        flex-direction: column
    }

    .abt-auth .approach-blk .ap-top-text {
        flex: 1 1 auto
    }

    .abt-auth .approach-blk .cards-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 640px) {
    .abt-auth .pg-cap .cap-h1 {
        font-size: 20px
    }

    .abt-auth .approach-blk .cards-grid {
        grid-template-columns: 1fr
    }

    .abt-auth .approach-blk .img-row {
        flex-direction: column
    }

    .abt-auth .bio-strip .img-pair {
        gap: 8px
    }

    .abt-auth .pg-cap {
        padding: 40px 16px
    }
}

@media (max-width: 360px) {
    .abt-auth .pg-cap .cap-h1 {
        font-size: 20px
    }

    .abt-auth .bio-strip,
    .abt-auth .approach-blk {
        padding: 40px 8px
    }
}

.ptl {
    background: #18112a;
    color: #e8e0f0;
    overflow-x: hidden
}

.ptl .pw-max {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px
}

.ptl .pw-max-sm {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px
}

.ptl .tb {
    position: relative;
    padding-top: 80px;
    padding-bottom: 40px;
    background: #18112a
}

.ptl .tb-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, #9664bc38 0%, #18112a00 70%);
    pointer-events: none
}

.ptl .tb-pattern {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none
}

.ptl .tb-pattern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(90deg, #9664bc0f 0px, #9664bc0f 1px, transparent 1px, transparent 60px), repeating-linear-gradient(0deg, #9664bc0f 0px, #9664bc0f 1px, transparent 1px, transparent 60px)
}

.ptl .tb-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px
}

.ptl .tb-text {
    flex: 1 1 0;
    min-width: 0
}

.ptl .tb-label {
    display: inline-block;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #9664BC;
    margin-bottom: 16px;
    border-bottom: 1px solid #9664bc4d;
    padding-bottom: 8px
}

.ptl .tb-h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 16px;
    color: #e8e0f0
}

.ptl .tb-h1 .accent-w {
    color: #9664BC;
    position: relative;
    display: inline-block
}

.ptl .tb-h1 .accent-w::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #C5BAD7, #9664BC);
    transform: scaleX(0);
    transform-origin: left;
    animation: draw-line .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) .5s forwards
}

@keyframes draw-line {
    to {
        transform: scaleX(1)
    }
}

.ptl .tb-link {
    display: inline-block;
    font-size: 16px;
    line-height: 1.5;
    color: #C5BAD7;
    text-decoration: none;
    border: 1px solid #c5bad766;
    padding: 8px 16px;
    border-radius: 3px;
    transition: color .5s ease-in-out, border-color .5s ease-in-out;
    position: relative
}

.ptl .tb-link::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid #9664BC;
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ptl .tb-link:hover {
    color: #9664BC;
    border-color: transparent
}

.ptl .tb-link:hover::before {
    transform: scaleX(1)
}

.ptl .tb-img-wrap {
    flex: 0 0 380px;
    width: 380px;
    overflow: hidden;
    border-radius: 3px
}

.ptl .tb-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.6) brightness(0.8);
    transition: filter .6s ease-in-out
}

.ptl .tb-img-wrap:hover .tb-img {
    filter: saturate(0.9) brightness(0.95)
}

.ptl .div-a {
    height: 1px;
    background: linear-gradient(to right, #C5BAD7, #9664BC, #18112a00);
    margin: 0
}

.ptl .voice {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #1e1530;
    position: relative;
    overflow: hidden
}

.ptl .voice-wave {
    position: absolute;
    top: 0;
    left: -20%;
    width: 140%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, #9664bc0d 40%, #c5bad70a 60%, transparent 100%);
    animation: wave-pass 6s ease-in-out infinite alternate;
    pointer-events: none
}

@keyframes wave-pass {
    0% {
        transform: translateX(-10%);
        opacity: .5
    }

    100% {
        transform: translateX(10%);
        opacity: 1
    }
}

.ptl .voice-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start
}

.ptl .voice-abbr {
    flex: 0 0 auto;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.2;
    color: #9664bc1a;
    letter-spacing: .08em;
    text-transform: uppercase;
    user-select: none;
    pointer-events: none;
    writing-mode: vertical-rl;
    text-orientation: mixed
}

.ptl .voice-body {
    flex: 1 1 0;
    min-width: 0
}

.ptl .voice-tag {
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #9664BC;
    margin-bottom: 16px
}

.ptl .voice-h2 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #e8e0f0;
    margin-bottom: 16px
}

.ptl .voice-h2 .accent-w {
    color: #9664BC
}

.ptl .voice-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px
}

.ptl .voice-p {
    font-size: 16px;
    line-height: 1.75;
    color: #C5BAD7;
    margin-bottom: 0
}

.ptl .voice-p strong {
    color: #e8e0f0;
    font-weight: 700
}

.ptl .div-b {
    height: 1px;
    background: linear-gradient(to left, #C5BAD7, #9664BC, #18112a00);
    margin: 0
}

.ptl .scale {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #18112a
}

.ptl .scale-inner {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: stretch
}

.ptl .scale-left {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ptl .scale-tag {
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #9664BC
}

.ptl .scale-h2 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #e8e0f0
}

.ptl .scale-h2 .accent-w {
    color: #9664BC
}

.ptl .scale-desc {
    font-size: 16px;
    line-height: 1.75;
    color: #C5BAD7
}

.ptl .scale-right {
    flex: 1 1 0;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.ptl .scale-card {
    background: #1e1530;
    border-radius: 18px;
    padding: 40px 16px 16px;
    border: 1px solid #9664bc26;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 2px 6px 20px -2px #9664bc17;
    transition: border-color .5s ease-in-out, box-shadow .55s ease-in-out
}

.ptl .scale-card:hover {
    border-color: #9664bc66;
    box-shadow: 2px 10px 48px -2px #9664bc24
}

.ptl .scale-num {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.2;
    color: #9664BC
}

.ptl .scale-card-label {
    font-size: 13px;
    line-height: 1.5;
    color: #C5BAD7;
    text-transform: uppercase;
    letter-spacing: .12em
}

.ptl .scale-card-p {
    font-size: 13px;
    line-height: 1.75;
    color: #c5bad7b3;
    margin: 0
}

.ptl .div-c {
    height: 2px;
    background: linear-gradient(to right, #9664bc00, #9664BC 50%, #c5bad700);
    margin: 0
}

.ptl .posts {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #211840
}

.ptl .posts-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 16px
}

.ptl .posts-tag {
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #9664BC;
    margin-bottom: 8px
}

.ptl .posts-h2 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #e8e0f0;
    margin: 0
}

.ptl .posts-h2 .accent-w {
    color: #9664BC
}

.ptl .posts-all {
    display: inline-block;
    font-size: 13px;
    line-height: 1.5;
    color: #C5BAD7;
    text-decoration: none;
    border: 1px solid #c5bad74d;
    padding: 8px 16px;
    border-radius: 3px;
    white-space: nowrap;
    transition: color .5s ease-in-out, border-color .5s ease-in-out;
    position: relative
}

.ptl .posts-all::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid #9664BC;
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ptl .posts-all:hover {
    color: #9664BC;
    border-color: transparent
}

.ptl .posts-all:hover::before {
    transform: scaleX(1)
}

.ptl .posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
}

.ptl .post-card {
    background: #18112a;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #9664bc1f;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 3px 4px -2px #9664bc0d;
    transition: box-shadow .55s ease-in-out, border-color .5s ease-in-out
}

.ptl .post-card:hover {
    box-shadow: 2px 10px 48px -2px #9664bc24;
    border-color: #9664bc59
}

.ptl .post-img-wrap {
    overflow: hidden;
    border-radius: 0
}

.ptl .post-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .65s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ptl .post-card:hover .post-img {
    transform: scale(1.06)
}

.ptl .post-body {
    padding: 16px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ptl .post-tag {
    display: inline-block;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #9664BC;
    border: 1px solid #9664bc59;
    border-radius: 3px;
    padding: 4px 8px;
    align-self: flex-start
}

.ptl .post-h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #e8e0f0;
    margin: 0
}

.ptl .post-desc {
    font-size: 13px;
    line-height: 1.75;
    color: #C5BAD7;
    margin: 0;
    flex: 1 1 auto
}

.ptl .post-foot {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    gap: 8px
}

.ptl .post-author {
    font-size: 13px;
    line-height: 1.5;
    color: #c5bad799
}

.ptl .post-read {
    display: inline-block;
    font-size: 13px;
    line-height: 1.5;
    color: #9664BC;
    text-decoration: none;
    border-bottom: 1px solid #9664bc66;
    transition: color .5s ease-in-out, border-color .5s ease-in-out
}

.ptl .post-read:hover {
    color: #C5BAD7;
    border-color: #C5BAD7
}

.ptl .div-d {
    height: 1px;
    background: linear-gradient(to right, #9664BC, #c5bad74d, #18112a00)
}

.ptl .clusters {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #18112a
}

.ptl .clusters-inner {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start
}

.ptl .clusters-main {
    flex: 1 1 0;
    min-width: 0
}

.ptl .clusters-tag {
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #9664BC;
    margin-bottom: 8px
}

.ptl .clusters-h2 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #e8e0f0;
    margin-bottom: 16px
}

.ptl .clusters-h2 .accent-w {
    color: #9664BC
}

.ptl .clusters-intro {
    font-size: 16px;
    line-height: 1.75;
    color: #C5BAD7;
    margin-bottom: 40px
}

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

.ptl .cluster-item {
    background: #1e1530;
    border-radius: 28px;
    padding: 16px 40px 16px 16px;
    border: 1px solid #9664bc1f;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    box-shadow: 2px 3px 4px -2px #9664bc0d;
    transition: border-color .5s ease-in-out, box-shadow .55s ease-in-out;
    position: relative
}

.ptl .cluster-item:hover {
    border-color: #9664bc66;
    box-shadow: 2px 6px 20px -2px #9664bc17
}

.ptl .cluster-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 18px;
    background: #9664bc26;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

.ptl .cluster-icon i {
    color: #9664BC;
    font-size: 16px
}

.ptl .cluster-text {
    flex: 1 1 0;
    min-width: 0
}

.ptl .cluster-name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #e8e0f0;
    margin-bottom: 4px
}

.ptl .cluster-desc {
    font-size: 13px;
    line-height: 1.75;
    color: #c5bad7b3;
    margin: 0
}

.ptl .clusters-sidebar {
    flex: 0 0 300px;
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ptl .clusters-img-wrap {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 2px 6px 20px -2px #9664bc17
}

.ptl .clusters-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.7) brightness(0.85);
    transition: transform .65s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter .6s ease-in-out
}

.ptl .clusters-img-wrap:hover .clusters-img {
    transform: scale(1.05);
    filter: saturate(0.9) brightness(0.95)
}

.ptl .clusters-note {
    font-size: 13px;
    line-height: 1.75;
    color: #c5bad7a6;
    padding: 16px;
    background: #9664bc12;
    border-radius: 18px;
    border-left: 2px solid #9664BC;
    border-top: 1px solid #9664bc33
}

.ptl .div-e {
    height: 1px;
    background: linear-gradient(to left, #9664bc00, #C5BAD7 50%, #9664bc00)
}

.ptl .habit {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #1e1530;
    position: relative;
    overflow: hidden
}

.ptl .habit-diag {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, #9664bc0f 100%);
    pointer-events: none
}

.ptl .habit-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.ptl .habit-left {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ptl .habit-tag {
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #9664BC
}

.ptl .habit-h2 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #e8e0f0
}

.ptl .habit-h2 .accent-w {
    color: #9664BC
}

.ptl .habit-p {
    font-size: 16px;
    line-height: 1.75;
    color: #C5BAD7
}

.ptl .habit-p strong {
    color: #e8e0f0
}

.ptl .habit-right {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ptl .habit-step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #9664bc0f;
    border-radius: 18px;
    border: 1px solid #9664bc1f;
    transition: background .5s ease-in-out, border-color .5s ease-in-out
}

.ptl .habit-step:hover {
    background: #9664bc1f;
    border-color: #9664bc4d
}

.ptl .habit-num {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 18px;
    background: #9664bc33;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #9664BC;
    line-height: 1.2
}

.ptl .habit-step-text {
    flex: 1 1 0;
    min-width: 0
}

.ptl .habit-step-h {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #e8e0f0;
    margin-bottom: 4px
}

.ptl .habit-step-p {
    font-size: 13px;
    line-height: 1.75;
    color: #c5bad7b3;
    margin: 0
}

.ptl .div-f {
    height: 2px;
    background: linear-gradient(to right, #18112a00, #9664BC, #C5BAD7, #18112a00)
}

.ptl .arcs {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #18112a
}

.ptl .arcs-top {
    margin-bottom: 40px
}

.ptl .arcs-tag {
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #9664BC;
    margin-bottom: 8px
}

.ptl .arcs-h2 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #e8e0f0;
    margin-bottom: 16px
}

.ptl .arcs-h2 .accent-w {
    color: #9664BC
}

.ptl .arcs-lead {
    font-size: 16px;
    line-height: 1.75;
    color: #C5BAD7;
    max-width: 600px
}

.ptl .arcs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.ptl .arc-card {
    border-radius: 28px;
    overflow: hidden;
    background: #1e1530;
    border: 1px solid #9664bc1f;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 3px 4px -2px #9664bc0d;
    transition: box-shadow .55s ease-in-out, border-color .5s ease-in-out
}

.ptl .arc-card:hover {
    box-shadow: 2px 10px 48px -2px #9664bc24;
    border-color: #9664bc59
}

.ptl .arc-img-wrap {
    overflow: hidden;
    position: relative
}

.ptl .arc-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.65) brightness(0.8);
    transition: transform .65s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter .6s ease-in-out
}

.ptl .arc-card:hover .arc-img {
    transform: scale(1.05);
    filter: saturate(0.85) brightness(0.9)
}

.ptl .arc-mask {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 30%, #1e153099 100%);
    transition: opacity .55s ease-in-out;
    pointer-events: none
}

.ptl .arc-card:hover .arc-mask {
    opacity: 0
}

.ptl .arc-body {
    padding: 16px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ptl .arc-label {
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #9664BC
}

.ptl .arc-h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #e8e0f0;
    margin: 0
}

.ptl .arc-p {
    font-size: 13px;
    line-height: 1.75;
    color: #c5bad7b3;
    margin: 0;
    flex: 1 1 auto
}

.ptl .arc-link {
    display: inline-block;
    font-size: 13px;
    line-height: 1.5;
    color: #9664BC;
    text-decoration: none;
    border-bottom: 1px solid #9664bc66;
    align-self: flex-start;
    transition: color .5s ease-in-out, border-color .5s ease-in-out
}

.ptl .arc-link:hover {
    color: #C5BAD7;
    border-color: #C5BAD7
}

.ptl .auth {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #211840;
    position: relative;
    overflow: hidden
}

.ptl .auth-diag {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9664bc14 0%, transparent 50%);
    pointer-events: none
}

.ptl .auth-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: stretch
}

.ptl .auth-portrait-col {
    flex: 0 0 240px;
    width: 240px
}

.ptl .auth-portrait-wrap {
    width: 240px;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 2px 6px 20px -2px #9664bc17
}

.ptl .auth-portrait {
    width: 240px;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.7) brightness(0.85);
    transition: filter .6s ease-in-out
}

.ptl .auth-portrait-wrap:hover .auth-portrait {
    filter: saturate(0.9) brightness(0.95)
}

.ptl .auth-body {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px
}

.ptl .auth-tag {
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #9664BC
}

.ptl .auth-h2 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #e8e0f0
}

.ptl .auth-h2 .accent-w {
    color: #9664BC
}

.ptl .auth-p {
    font-size: 16px;
    line-height: 1.75;
    color: #C5BAD7
}

.ptl .auth-p strong {
    color: #e8e0f0
}

.ptl .auth-link {
    display: inline-block;
    font-size: 16px;
    line-height: 1.5;
    color: #C5BAD7;
    text-decoration: none;
    border: 1px solid #c5bad766;
    padding: 8px 16px;
    border-radius: 3px;
    align-self: flex-start;
    transition: color .5s ease-in-out, border-color .5s ease-in-out;
    position: relative
}

.ptl .auth-link::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid #9664BC;
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ptl .auth-link:hover {
    color: #9664BC;
    border-color: transparent
}

.ptl .auth-link:hover::before {
    transform: scaleX(1)
}

@media (max-width: 1024px) {

    .ptl .pw-max,
    .ptl .pw-max-sm {
        padding-left: 40px;
        padding-right: 40px
    }

    .ptl .tb-h1 {
        font-size: 40px
    }

    .ptl .tb-img-wrap {
        flex: 0 0 280px;
        width: 280px
    }

    .ptl .voice-inner {
        gap: 40px
    }

    .ptl .voice-cols {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .ptl .scale-inner {
        flex-direction: column
    }

    .ptl .scale-left {
        flex: none;
        width: 100%
    }

    .ptl .clusters-inner {
        flex-direction: column
    }

    .ptl .clusters-sidebar {
        flex: none;
        width: 100%
    }

    .ptl .habit-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .ptl .arcs-grid {
        grid-template-columns: 1fr 1fr
    }

    .ptl .auth-inner {
        flex-direction: column
    }

    .ptl .auth-portrait-col {
        flex: none;
        width: 100%
    }

    .ptl .auth-portrait-wrap {
        width: 200px
    }

    .ptl .auth-portrait {
        width: 200px
    }
}

@media (max-width: 640px) {

    .ptl .pw-max,
    .ptl .pw-max-sm {
        padding-left: 16px;
        padding-right: 16px
    }

    .ptl .tb-inner {
        flex-direction: column
    }

    .ptl .tb-img-wrap {
        flex: none;
        width: 100%
    }

    .ptl .tb-h1 {
        font-size: 32px
    }

    .ptl .voice-inner {
        flex-direction: column
    }

    .ptl .voice-abbr {
        writing-mode: horizontal-tb;
        font-size: 32px
    }

    .ptl .scale-right {
        grid-template-columns: 1fr
    }

    .ptl .posts-grid {
        grid-template-columns: 1fr
    }

    .ptl .arcs-grid {
        grid-template-columns: 1fr
    }

    .ptl .posts-top {
        flex-direction: column;
        align-items: flex-start
    }
}

@media (max-width: 360px) {
    .ptl .tb-h1 {
        font-size: 26px
    }

    .ptl .scale-num {
        font-size: 40px
    }
}

.blg {
    background: #0e0a14;
    color: #C5BAD7;
    padding: 0;
    overflow-x: hidden
}

.blg .pg-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px
}

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

.blg .tb {
    position: relative;
    padding: 80px 0;
    background: #0e0a14
}

.blg .tb-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none
}

.blg .tb-pattern::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 420px;
    height: 420px;
    background: #9664bc12;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%)
}

.blg .tb-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none
}

.blg .tb-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 3px;
    background: #c5bad72e
}

.blg .tb-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px
}

.blg .tb-text {
    flex: 0 0 auto;
    max-width: 580px
}

.blg .tb-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #9664BC;
    margin-bottom: 16px;
    padding: 8px 16px;
    border: 1px solid #9664bc59;
    border-radius: 3px
}

.blg .tb-h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.2;
    color: #F7F5F7;
    margin: 0 0 16px;
    letter-spacing: -.01em
}

.blg .tb-h1 .acc-word {
    position: relative;
    display: inline-block
}

.blg .tb-h1 .acc-word::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #9664BC;
    border-radius: 3px;
    clip-path: inset(0 100% 0 0);
    animation: draw-line .55s cubic-bezier(0.25, 0.46, 0.45, 0.94) .4s forwards
}

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

.blg .tb-sub {
    font-size: 16px;
    line-height: 1.75;
    color: #C5BAD7;
    max-width: 460px
}

.blg .tb-spacer {
    flex: 1 1 auto
}

@media (max-width: 640px) {
    .blg .tb-inner {
        flex-direction: column;
        gap: 16px
    }

    .blg .tb-h1 {
        font-size: 36px
    }
}

.blg .posts-area {
    padding: 80px 0;
    background: #130e1a
}

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

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

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

.blg .post-card {
    background: #1a1226;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #9664bc24;
    box-shadow: 2px 6px 20px -2px #9664bc17;
    transition: box-shadow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.blg .post-card:hover {
    box-shadow: 2px 10px 48px -2px #9664bc24;
    border-color: #9664bc52
}

.blg .post-img-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    flex-shrink: 0
}

.blg .post-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .65s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

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

.blg .post-img-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #9664bc1f, #0e0a148c);
    pointer-events: none
}

.blg .post-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #F7F5F7;
    background: #9664bcb8;
    padding: 8px 16px;
    border-radius: 3px;
    backdrop-filter: blur(4px)
}

.blg .post-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 8px
}

.blg .post-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #F7F5F7;
    margin: 0;
    letter-spacing: .02em
}

.blg .post-desc {
    font-size: 13px;
    line-height: 1.75;
    color: #C5BAD7;
    margin: 0;
    flex: 1 1 auto
}

.blg .post-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid #c5bad71a
}

.blg .post-author {
    font-size: 13px;
    color: #9664BC;
    font-weight: 600
}

.blg .post-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #C5BAD7;
    text-decoration: none;
    border: 1px solid #c5bad740;
    border-radius: 3px;
    padding: 8px 16px;
    position: relative;
    overflow: hidden;
    transition: color .45s ease-in-out, border-color .45s ease-in-out
}

.blg .post-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #9664BC;
    transition: width .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.blg .post-link:hover {
    color: #9664BC;
    border-color: #9664bc80
}

.blg .post-link:hover::before {
    width: 100%
}

.blg .ed-block {
    padding: 80px 0;
    background: #0e0a14;
    border-top: 1px solid #9664bc1f
}

.blg .ed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

@media (max-width: 1024px) {
    .blg .ed-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

.blg .ed-img-col {
    position: relative
}

.blg .ed-img-frame {
    aspect-ratio: 16/9;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 2px 10px 48px -2px #9664bc24
}

.blg .ed-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: slow-zoom 8s ease-in-out infinite alternate
}

@keyframes slow-zoom {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(1.05)
    }
}

.blg .ed-img-overlay {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(to right, #c5bad714, #9664bc2e);
    pointer-events: none
}

.blg .ed-shape {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    background: #9664bc26;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    pointer-events: none
}

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

.blg .ed-eyebrow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.blg .ed-eyebrow-line {
    width: 40px;
    height: 2px;
    background: #9664BC;
    border-radius: 3px
}

.blg .ed-eyebrow-txt {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #9664BC
}

.blg .ed-h2 {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.5;
    color: #F7F5F7;
    margin: 0;
    letter-spacing: .04em;
    text-transform: uppercase
}

.blg .ed-p {
    font-size: 16px;
    line-height: 1.75;
    color: #C5BAD7;
    margin: 0
}

.blg .ed-p strong {
    color: #F7F5F7;
    font-weight: 700
}

.blg .prog-block {
    padding: 80px 0;
    background: #1a0e2a;
    border-top: 1px solid #9664bc1a
}

.blg .prog-top {
    max-width: 680px;
    margin: 0 auto 80px;
    text-align: center
}

.blg .prog-h2 {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.5;
    color: #F7F5F7;
    margin: 0 0 16px;
    letter-spacing: .05em;
    text-transform: uppercase
}

.blg .prog-intro {
    font-size: 16px;
    line-height: 1.75;
    color: #C5BAD7;
    margin: 0
}

.blg .prog-steps {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.blg .prog-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    align-items: start
}

@media (max-width: 640px) {
    .blg .prog-step {
        grid-template-columns: 1fr;
        gap: 16px
    }
}

.blg .prog-num-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.blg .prog-num {
    width: 56px;
    height: 56px;
    border-radius: 28px;
    border: 2px solid #9664BC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: #9664BC;
    flex-shrink: 0
}

.blg .prog-bar-track {
    flex: 1 1 auto;
    width: 2px;
    background: #9664bc2e;
    border-radius: 3px;
    min-height: 40px
}

.blg .prog-bar-fill {
    width: 100%;
    border-radius: 3px;
    background: linear-gradient(to bottom, #9664BC, #C5BAD7);
    transition: height .65s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.blg .prog-step-body {
    padding-top: 8px
}

.blg .prog-step-h {
    font-size: 16px;
    font-weight: 700;
    color: #F7F5F7;
    margin: 0 0 8px;
    letter-spacing: .04em;
    text-transform: uppercase
}

.blg .prog-step-p {
    font-size: 16px;
    line-height: 1.75;
    color: #C5BAD7;
    margin: 0
}

.blg .prog-inline-meter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #9664bc1f;
    border: 1px solid #9664bc47;
    border-radius: 28px;
    padding: 8px 16px;
    margin-top: 8px
}

.blg .prog-meter-label {
    font-size: 13px;
    font-weight: 700;
    color: #9664BC;
    letter-spacing: .08em;
    text-transform: uppercase
}

.blg .prog-meter-dots {
    display: flex;
    flex-direction: row;
    gap: 4px
}

.blg .prog-dot {
    width: 8px;
    height: 8px;
    border-radius: 3px;
    background: #9664bc40
}

.blg .prog-dot.on {
    background: #9664BC
}

.blg .topics-block {
    padding: 80px 0;
    background: #0e0a14;
    border-top: 1px solid #c5bad714
}

.blg .topics-head {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px
}

@media (max-width: 640px) {
    .blg .topics-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }
}

.blg .topics-h2 {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.5;
    color: #F7F5F7;
    margin: 0;
    letter-spacing: .05em;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.blg .topics-h2-shape {
    width: 16px;
    height: 16px;
    background: #9664BC;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    flex-shrink: 0
}

.blg .topics-sub {
    font-size: 16px;
    line-height: 1.75;
    color: #C5BAD7;
    max-width: 360px;
    margin: 0
}

.blg .topics-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0
}

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

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

.blg .topic-item {
    background: #1a1226;
    border-radius: 18px;
    padding: 40px 16px;
    border: 1px solid #9664bc1f;
    box-shadow: 2px 3px 4px -2px #9664bc0d;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color .55s ease-in-out, box-shadow .55s ease-in-out;
    position: relative;
    overflow: hidden
}

.blg .topic-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #C5BAD7, #9664BC);
    border-radius: 3px 3px 0 0
}

.blg .topic-item:hover {
    border-color: #9664bc52;
    box-shadow: 2px 6px 20px -2px #9664bc17
}

.blg .topic-icon {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background: #9664bc26;
    display: flex;
    align-items: center;
    justify-content: center
}

.blg .topic-icon i {
    color: #9664BC;
    font-size: 20px
}

.blg .topic-name {
    font-size: 16px;
    font-weight: 700;
    color: #F7F5F7;
    margin: 0;
    line-height: 1.5
}

.blg .topic-desc {
    font-size: 13px;
    line-height: 1.75;
    color: #C5BAD7;
    margin: 0
}

.blg .post-link {
    position: relative
}

.blg .post-link .tip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #9664BC;
    color: #F7F5F7;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 3px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity .45s ease-in-out;
    box-shadow: 2px 6px 20px -2px #9664bc17
}

.blg .post-link:focus .tip {
    opacity: 1
}

.blg .post-link:focus {
    outline: 2px solid #9664BC;
    outline-offset: 3px
}

.blg .reveal-clip {
    clip-path: inset(0 50% 0 50%);
    animation: clip-reveal .55s cubic-bezier(0.25, 0.46, 0.45, 0.94) .2s forwards
}

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

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

.success-pg .success-wrap {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px
}

.success-pg .success-card {
    background: #160e22;
    border: 1px solid #9664bc38;
    border-radius: 28px;
    padding: 80px 40px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 2px 10px 48px -2px #9664bc24;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px
}

.success-pg .icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(to left, #9664BC, #6b3fa0);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 6px 20px -2px #9664bc17;
    flex-shrink: 0
}

.success-pg .icon-wrap svg {
    width: 32px;
    height: 32px;
    display: block
}

.success-pg .success-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

.success-pg .success-label {
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #9664BC;
    font-weight: 700
}

.success-pg .success-heading {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    color: #F7F5F7;
    margin: 0;
    letter-spacing: -.01em
}

.success-pg .success-text {
    font-size: 16px;
    line-height: 1.75;
    color: #C5BAD7;
    margin: 0;
    max-width: 440px
}

.success-pg .success-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(to left, #9664BC, #C5BAD7);
    border-radius: 3px;
    flex-shrink: 0
}

.success-pg .success-detail {
    font-size: 13px;
    line-height: 1.5;
    color: #c5bad799;
    margin: 0
}

.success-pg .success-detail a {
    color: #9664BC;
    text-decoration: none;
    border-bottom: 1px solid #9664bc59;
    transition: color .55s ease-in-out, border-color .55s ease-in-out
}

.success-pg .success-detail a:hover {
    color: #C5BAD7;
    border-color: #c5bad799
}

.success-pg .btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
    color: #C5BAD7;
    text-decoration: none;
    border: 1px solid #c5bad74d;
    border-radius: 3px;
    padding: 16px 40px;
    position: relative;
    overflow: hidden;
    transition: color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.success-pg .btn-back::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, #9664bc1f, #c5bad70f);
    opacity: 0;
    transition: opacity .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.success-pg .btn-back::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(to left, #9664BC, #C5BAD7);
    transition: width .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.success-pg .btn-back:hover {
    color: #9664BC;
    border-color: #9664bc8c
}

.success-pg .btn-back:hover::before {
    opacity: 1
}

.success-pg .btn-back:hover::after {
    width: 100%
}

.success-pg .btn-back:focus-visible {
    outline: 2px solid #9664BC;
    outline-offset: 4px
}

@media (max-width: 640px) {
    .success-pg .success-card {
        padding: 40px 16px;
        gap: 16px;
        border-radius: 18px
    }

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

    .success-pg .success-wrap {
        gap: 16px
    }
}