html {
    box-sizing: border-box;
    scroll-behavior: auto
}

body {
    margin: 0;
    min-height: 100svh;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    font-family: 'Alegreya', serif;
    font-size: 19px;
    line-height: 1.75;
    color: #1a1a1a;
    background: #fff
}

.top-band {
    background: linear-gradient(135deg, #FFF9E4 0%, #fff 100%);
    border-bottom: 2px solid #FF9D08;
    padding: 28px 56px 14px
}

.brand-mount {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px
}

.logo-hold {
    width: 82px;
    height: 82px;
    border: 1px solid #361E7F;
    background: #fff;
    padding: 6px;
    border-radius: 2px;
    box-shadow: 1px 1px 2px 0 #361e7f14;
    flex-shrink: 0
}

.logo-hold img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

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

.brand-name {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #361E7F;
    letter-spacing: -.02em
}

.brand-tag {
    font-size: 16px;
    line-height: 1.5;
    color: #6a6a6a;
    font-weight: 400
}

.nav-bar {
    background: #fff;
    border-bottom: 1px solid #361e7f26;
    box-shadow: 1px 7px 14px 0 #ff9d081c
}

.nav-shell {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 56px
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 56px;
    align-items: center
}

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

.nav-link {
    display: block;
    padding: 28px 0;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
    color: #361E7F;
    text-decoration: none;
    position: relative;
    transition: color .6s ease
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 24px;
    left: 0;
    width: 0;
    height: 3px;
    background: #FF9D08;
    transition: width .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.nav-link:hover {
    color: #FF9D08
}

.nav-link:hover::after {
    width: 100%
}

.nav-link:focus {
    outline: 2px solid #FF9D08;
    outline-offset: 4px
}

.decor-accent {
    position: absolute;
    top: 14px;
    right: 56px;
    width: 96px;
    height: 96px;
    border-radius: 46px;
    background: linear-gradient(135deg, #ff9d081f 0%, #361e7f14 100%);
    border: 2px solid #ff9d084d;
    pointer-events: none;
    z-index: 1
}

.footer-shell {
    background: linear-gradient(180deg, #fff 0%, #FFF9E4 100%);
    border-top: 2px solid #361E7F;
    padding: 96px 56px 56px
}

.footer-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 96px;
    align-items: start
}

.footer-col--left {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.footer-link {
    font-size: 16px;
    line-height: 1.5;
    color: #361E7F;
    text-decoration: none;
    font-weight: 400;
    transition: color .55s ease;
    display: inline-block
}

.footer-link:hover {
    color: #FF9D08
}

.footer-link:focus {
    outline: 2px solid #FF9D08;
    outline-offset: 3px
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px
}

.footer-logo-hold {
    width: 120px;
    height: 120px;
    border: 2px solid #FF9D08;
    background: #fff;
    padding: 14px;
    border-radius: 46px;
    box-shadow: 1px 9px 52px 0 #361e7f1c
}

.footer-logo-hold img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

.footer-brand-text {
    text-align: center
}

.footer-brand-name {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: #361E7F;
    margin: 0 0 6px
}

.footer-brand-tag {
    font-size: 16px;
    line-height: 1.5;
    color: #6a6a6a;
    font-weight: 400;
    margin: 0
}

.footer-col--right {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: flex-end
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: right
}

.contact-label {
    font-size: 16px;
    line-height: 1.5;
    color: #6a6a6a;
    font-weight: 400;
    margin: 0
}

.contact-value {
    font-size: 19px;
    line-height: 1.5;
    color: #361E7F;
    font-weight: 700;
    text-decoration: none;
    transition: color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.contact-value:hover {
    color: #FF9D08
}

.contact-value:focus {
    outline: 2px solid #FF9D08;
    outline-offset: 3px
}

.social-icons {
    display: flex;
    gap: 28px;
    align-items: center
}

.social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #361E7F;
    border-radius: 46px;
    background: #fff;
    color: #361E7F;
    font-size: 23px;
    text-decoration: none;
    transition: all .65s ease;
    box-shadow: 1px 1px 2px 0 #ff9d0814
}

.social-icon:hover {
    background: #FF9D08;
    color: #fff;
    border-color: #FF9D08;
    box-shadow: 1px 7px 14px 0 #ff9d081c
}

.social-icon:focus {
    outline: 2px solid #FF9D08;
    outline-offset: 4px
}

.footer-bottom {
    max-width: 1600px;
    margin: 56px auto 0;
    padding-top: 28px;
    border-top: 1px solid #361e7f33;
    text-align: center
}

.copyright {
    font-size: 16px;
    line-height: 1.5;
    color: #6a6a6a;
    font-weight: 400;
    margin: 0
}

.consent-box {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 380px;
    background: #fff;
    border: 3px solid #361E7F;
    border-radius: 2px;
    padding: 28px;
    box-shadow: 1px 9px 52px 0 #361e7f1c;
    z-index: 2000;
    transform: translateX(-120%);
    transition: transform .32s ease
}

.consent-box.active {
    transform: translateX(0)
}

.consent-headline {
    font-size: 23px;
    font-weight: 700;
    line-height: 1.2;
    color: #361E7F;
    margin: 0 0 14px
}

.consent-desc {
    font-size: 16px;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0 0 14px
}

.consent-uses {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.consent-uses li {
    font-size: 16px;
    line-height: 1.5;
    color: #4a4a4a;
    padding-left: 24px;
    position: relative
}

.consent-uses li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #FF9D08;
    border-radius: 46px
}

.consent-toggles {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0 0 28px
}

.consent-toggle {
    display: flex;
    align-items: center;
    gap: 14px
}

.consent-toggle input[type="checkbox"] {
    width: 24px;
    height: 24px;
    border: 2px solid #361E7F;
    border-radius: 2px;
    cursor: pointer;
    flex-shrink: 0
}

.consent-toggle label {
    font-size: 16px;
    line-height: 1.5;
    color: #4a4a4a;
    cursor: pointer
}

.consent-actions {
    display: flex;
    gap: 28px;
    align-items: center
}

.consent-btn {
    font-family: 'Alegreya', serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #361E7F;
    background: transparent;
    border: 2px solid #361E7F;
    border-radius: 2px;
    padding: 14px 28px;
    cursor: pointer;
    text-decoration: none;
    transition: all .6s ease;
    display: inline-block
}

.consent-btn:hover {
    background: #361E7F;
    color: #fff
}

.consent-btn:focus {
    outline: 2px solid #FF9D08;
    outline-offset: 3px
}

.consent-btn--primary {
    background: #FF9D08;
    border-color: #FF9D08;
    color: #fff
}

.consent-btn--primary:hover {
    background: #361E7F;
    border-color: #361E7F
}

.consent-link {
    font-size: 16px;
    line-height: 1.5;
    color: #361E7F;
    text-decoration: underline;
    cursor: pointer;
    transition: color .55s ease
}

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

.consent-link:focus {
    outline: 2px solid #FF9D08;
    outline-offset: 2px
}

@media (max-width: 1440px) {
    .top-band {
        padding: 28px 28px 14px
    }

    .nav-shell {
        padding: 0 28px
    }

    .decor-accent {
        right: 28px
    }

    .footer-shell {
        padding: 96px 28px 56px
    }

    .footer-grid {
        gap: 56px
    }
}

@media (max-width: 1024px) {
    .brand-mount {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .brand-text {
        align-items: center
    }

    .nav-list {
        justify-content: center;
        gap: 14px 28px
    }

    .decor-accent {
        display: none
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 56px;
        text-align: center
    }

    .footer-col--left {
        align-items: center
    }

    .footer-col--right {
        align-items: center
    }

    .contact-block {
        text-align: center;
        align-items: center
    }

    .social-icons {
        justify-content: center
    }
}

@media (max-width: 768px) {
    .brand-name {
        font-size: 30px
    }

    .nav-list {
        flex-direction: column;
        gap: 0
    }

    .nav-link {
        padding: 14px 0
    }

    .nav-link::after {
        bottom: 10px
    }

    .footer-shell {
        padding: 56px 28px 28px
    }

    .footer-grid {
        gap: 28px
    }

    .footer-logo-hold {
        width: 96px;
        height: 96px
    }

    .consent-box {
        left: 14px;
        right: 14px;
        width: auto;
        bottom: 14px
    }

    .consent-actions {
        flex-direction: column;
        gap: 14px
    }

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

@media (max-width: 480px) {
    .top-band {
        padding: 14px
    }

    .brand-mount {
        gap: 14px
    }

    .logo-hold {
        width: 64px;
        height: 64px
    }

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

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

    .nav-shell {
        padding: 0 14px
    }

    .nav-link {
        font-size: 16px
    }

    .footer-shell {
        padding: 28px 14px
    }

    .footer-brand-name {
        font-size: 23px
    }

    .contact-value {
        font-size: 16px
    }

    .consent-box {
        padding: 14px
    }

    .consent-headline {
        font-size: 19px
    }
}

.agreement-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 96px 28px
}

.agreement-content h1 {
    font-size: 58px;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 56px;
    color: #361E7F
}

.agreement-content h2 {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin-top: 96px;
    margin-bottom: 28px;
    color: #361E7F
}

.agreement-content h3 {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin-top: 56px;
    margin-bottom: 28px;
    color: #361E7F
}

.agreement-content h4 {
    font-size: 23px;
    line-height: 1.5;
    margin-top: 56px;
    margin-bottom: 14px;
    color: #361E7F
}

.agreement-content h5 {
    font-size: 19px;
    line-height: 1.5;
    margin-top: 28px;
    margin-bottom: 14px;
    color: #361E7F
}

.agreement-content h6 {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 28px;
    margin-bottom: 14px;
    color: #361E7F;
    text-transform: uppercase;
    letter-spacing: .05em
}

.agreement-content p {
    font-size: 19px;
    line-height: 1.75;
    margin-bottom: 28px;
    color: #1a0f3d
}

.agreement-content ul {
    margin-bottom: 28px;
    padding-left: 28px
}

.agreement-content ol {
    margin-bottom: 28px;
    padding-left: 28px
}

.agreement-content li {
    font-size: 19px;
    line-height: 1.75;
    margin-bottom: 14px;
    color: #1a0f3d
}

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

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

.agreement-content li ul {
    margin-top: 14px;
    margin-bottom: 14px
}

.agreement-content li ol {
    margin-top: 14px;
    margin-bottom: 14px
}

.agreement-content em {
    font-style: italic
}

.agreement-content i {
    font-style: italic
}

.agreement-content a {
    color: #FF9D08;
    text-decoration: none;
    border-bottom: 1px solid #ff9d084d;
    transition: border-color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.agreement-content a:hover {
    color: #361E7F;
    border-bottom-color: #361E7F
}

.agreement-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, #FF9D08, #361E7F);
    margin: 96px 0;
    opacity: .2
}

@media (max-width: 1024px) {
    .agreement-content {
        padding: 56px 28px
    }

    .agreement-content h1 {
        font-size: 42px;
        margin-bottom: 28px
    }

    .agreement-content h2 {
        font-size: 30px;
        margin-top: 56px;
        margin-bottom: 14px
    }

    .agreement-content h3 {
        font-size: 23px;
        margin-top: 28px
    }
}

@media (max-width: 768px) {
    .agreement-content {
        padding: 56px 14px
    }

    .agreement-content h1 {
        font-size: 30px
    }

    .agreement-content h2 {
        font-size: 23px
    }

    .agreement-content h3 {
        font-size: 19px
    }

    .agreement-content p {
        font-size: 16px
    }

    .agreement-content li {
        font-size: 16px
    }

    .agreement-content hr {
        margin: 56px 0
    }
}

@media (max-width: 480px) {
    .agreement-content {
        padding: 28px 14px
    }

    .agreement-content ul {
        padding-left: 14px
    }

    .agreement-content ol {
        padding-left: 14px
    }
}

.mcd {
    max-width: 1600px;
    margin: 0 auto
}

.mcd__opening {
    position: relative;
    padding: 96px 28px;
    background: linear-gradient(263deg, #FFF9E4 0%, #fff 100%), radial-gradient(ellipse at 30% 40%, #ff9d080f 0%, transparent 70%);
    overflow: hidden
}

.mcd__opening::before {
    content: '';
    position: absolute;
    top: 56px;
    left: 56px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, #361e7f14 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none
}

.mcd__opening::after {
    content: '';
    position: absolute;
    bottom: 96px;
    right: 96px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, #ff9d0817 0%, transparent 65%);
    filter: blur(50px);
    pointer-events: none
}

.mcd__opening-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1
}

.mcd__manifesto {
    max-width: 680px
}

.mcd__manifesto-title {
    font-size: 58px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1a0a3d;
    margin: 0 0 28px;
    animation: mcd-expand .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

@keyframes mcd-expand {
    from {
        letter-spacing: -.05em;
        opacity: .7
    }

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

.mcd__manifesto-text {
    font-size: 19px;
    line-height: 1.75;
    color: #2d2d2d;
    margin: 0 0 28px
}

.mcd__manifesto-meta {
    display: flex;
    gap: 28px;
    margin: 0 0 28px
}

.mcd__meta-item {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.mcd__meta-label {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    text-transform: uppercase;
    letter-spacing: .05em
}

.mcd__meta-value {
    font-size: 23px;
    line-height: 1.2;
    color: #361E7F;
    font-weight: 600
}

.mcd__manifesto-cta {
    display: inline-block;
    padding: 14px 56px;
    font-size: 19px;
    line-height: 1.5;
    color: #361E7F;
    background: #fff;
    border: 3px solid #361E7F;
    border-radius: 2px;
    text-decoration: none;
    transition: background .6s ease, color .6s ease, box-shadow .6s ease;
    cursor: pointer
}

.mcd__manifesto-cta:hover {
    background: #361E7F;
    color: #fff;
    box-shadow: 0 0 28px #361e7f4d
}

.mcd__visual {
    position: relative
}

.mcd__visual-corner {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 60px;
    height: 60px;
    z-index: 2
}

.mcd__visual-corner::before,
.mcd__visual-corner::after {
    content: '';
    position: absolute;
    background: #FF9D08;
    border-radius: 2px
}

.mcd__visual-corner::before {
    width: 40px;
    height: 3px;
    top: 0;
    right: 0
}

.mcd__visual-corner::after {
    width: 3px;
    height: 40px;
    top: 0;
    right: 0
}

.mcd__visual-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 2px;
    filter: sepia(0.15) saturate(0.85) brightness(1.05);
    box-shadow: 1px 9px 52px 0 #361e7f1c
}

.mcd__program {
    padding: 96px 28px;
    background: #fff;
    position: relative
}

.mcd__program::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1600px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #FF9D08 50%, transparent 100%)
}

.mcd__program-wrap {
    max-width: 1200px;
    margin: 0 auto
}

.mcd__program-heading {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: .08em;
    color: #1a0a3d;
    text-align: center;
    margin: 0 0 56px;
    font-weight: 700
}

.mcd__program-content {
    background: linear-gradient(263deg, #fff9e44d 0%, #ffffff80 100%);
    padding: 56px;
    border-radius: 2px;
    border: 1px solid #361e7f1a;
    box-shadow: 1px 7px 14px 0 #ff9d081c
}

.mcd__program-content h2 {
    font-size: 30px;
    line-height: 1.2;
    color: #361E7F;
    margin: 0 0 28px;
    letter-spacing: .02em
}

.mcd__program-content p {
    font-size: 19px;
    line-height: 1.75;
    color: #2d2d2d;
    margin: 0 0 28px
}

.mcd__program-content small {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    display: block;
    margin: 0 0 14px
}

.mcd__program-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px
}

.mcd__program-content li {
    font-size: 19px;
    line-height: 1.75;
    color: #2d2d2d;
    padding: 14px 0 14px 28px;
    position: relative;
    border-bottom: 1px solid #361e7f14
}

.mcd__program-content li:last-child {
    border-bottom: none
}

.mcd__program-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #FF9D08;
    border-radius: 46px
}

.mcd__program-content dl {
    margin: 0 0 28px
}

.mcd__program-content dt {
    font-size: 19px;
    line-height: 1.5;
    color: #361E7F;
    font-weight: 600;
    margin: 0 0 6px
}

.mcd__program-content dd {
    font-size: 19px;
    line-height: 1.75;
    color: #2d2d2d;
    margin: 0 0 28px;
    padding-left: 28px
}

.mcd__program-content figure {
    margin: 28px 0;
    padding: 28px;
    background: #fff9e480;
    border-left: 0;
    border-radius: 2px;
    position: relative
}

.mcd__program-content figure::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #FF9D08
}

.mcd__program-content figcaption {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    margin-top: 14px;
    font-style: italic
}

.mcd__details {
    padding: 96px 28px;
    background: #fafcff;
    position: relative
}

.mcd__details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, #361e7f05 2px, #361e7f05 4px), repeating-linear-gradient(90deg, transparent, transparent 2px, #361e7f05 2px, #361e7f05 4px);
    pointer-events: none
}

.mcd__details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.mcd__details-col {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.mcd__details-heading {
    font-size: 42px;
    line-height: 1.2;
    color: #1a0a3d;
    margin: 0 0 28px;
    letter-spacing: -.01em
}

.mcd__details-content {
    background: #fff;
    padding: 56px;
    border-radius: 2px;
    box-shadow: 1px 7px 14px 0 #361e7f1c
}

.mcd__details-content h2 {
    font-size: 30px;
    line-height: 1.2;
    color: #361E7F;
    margin: 0 0 28px
}

.mcd__details-content h3 {
    font-size: 23px;
    line-height: 1.2;
    color: #1a0a3d;
    margin: 0 0 14px
}

.mcd__details-content p {
    font-size: 19px;
    line-height: 1.75;
    color: #2d2d2d;
    margin: 0 0 28px
}

.mcd__details-content small {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    display: block;
    margin: 0 0 14px
}

.mcd__details-content ol {
    list-style: none;
    counter-reset: detail-counter;
    padding: 0;
    margin: 0 0 28px
}

.mcd__details-content li {
    font-size: 19px;
    line-height: 1.75;
    color: #2d2d2d;
    padding: 14px 0 14px 42px;
    position: relative;
    counter-increment: detail-counter;
    margin-bottom: 14px
}

.mcd__details-content li::before {
    content: counter(detail-counter);
    position: absolute;
    left: 0;
    top: 14px;
    width: 28px;
    height: 28px;
    background: #FF9D08;
    color: #fff;
    border-radius: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600
}

.mcd__details-content dl {
    margin: 0 0 28px
}

.mcd__details-content dt {
    font-size: 19px;
    line-height: 1.5;
    color: #361E7F;
    font-weight: 600;
    margin: 0 0 6px
}

.mcd__details-content dd {
    font-size: 19px;
    line-height: 1.75;
    color: #2d2d2d;
    margin: 0 0 28px;
    padding-left: 28px
}

.mcd__details-content blockquote {
    font-size: 23px;
    line-height: 1.5;
    color: #361E7F;
    margin: 28px 0;
    padding: 28px 28px 28px 56px;
    background: linear-gradient(263deg, #fff9e499 0%, #ffffff4d 100%);
    border-radius: 2px;
    position: relative;
    font-style: italic
}

.mcd__details-content blockquote::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: #FF9D08;
    border-radius: 2px
}

.mcd__enroll {
    padding: 96px 28px;
    background: linear-gradient(263deg, #361E7F 0%, #4a2ba8 100%), radial-gradient(ellipse at 70% 60%, #ff9d0826 0%, transparent 60%);
    position: relative
}

.mcd__enroll::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1600px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #FF9D08 20%, #FF9D08 80%, transparent 100%)
}

.mcd__enroll::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1600px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #fff9e480 50%, transparent 100%)
}

.mcd__enroll-wrap {
    max-width: 900px;
    margin: 0 auto;
    text-align: center
}

.mcd__enroll-heading {
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 28px;
    letter-spacing: .05em
}

.mcd__enroll-text {
    font-size: 19px;
    line-height: 1.75;
    color: #FFF9E4;
    margin: 0 0 56px
}

.mcd__enroll-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center
}

.mcd__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    width: 100%
}

.mcd__form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left
}

.mcd__form-label {
    font-size: 16px;
    line-height: 1.5;
    color: #FFF9E4;
    letter-spacing: .02em
}

.mcd__form-input {
    padding: 14px 28px;
    font-size: 19px;
    line-height: 1.5;
    color: #1a0a3d;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 2px;
    transition: border-color .5s ease, box-shadow .5s ease
}

.mcd__form-input::placeholder {
    color: #999;
    transition: opacity .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.mcd__form-input:focus {
    outline: none;
    border-color: #FF9D08;
    box-shadow: 0 0 20px #ff9d0866
}

.mcd__form-input:focus::placeholder {
    opacity: 0
}

.mcd__form-textarea {
    padding: 14px 28px;
    font-size: 19px;
    line-height: 1.75;
    color: #1a0a3d;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 2px;
    min-height: 140px;
    resize: vertical;
    transition: border-color .5s ease, box-shadow .5s ease;
    width: 100%
}

.mcd__form-textarea::placeholder {
    color: #999;
    transition: opacity .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.mcd__form-textarea:focus {
    outline: none;
    border-color: #FF9D08;
    box-shadow: 0 0 20px #ff9d0866
}

.mcd__form-textarea:focus::placeholder {
    opacity: 0
}

.mcd__form-submit {
    padding: 14px 96px;
    font-size: 19px;
    line-height: 1.5;
    color: #361E7F;
    background: #fff;
    border: 3px solid #fff;
    border-radius: 2px;
    cursor: pointer;
    transition: background .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.mcd__form-submit:hover {
    background: #FF9D08;
    color: #fff;
    box-shadow: 0 0 32px #ff9d0880
}

.mcd__enroll-note {
    font-size: 16px;
    line-height: 1.5;
    color: #fff9e4b3;
    margin: 28px 0 0
}

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

    .mcd__manifesto {
        max-width: 100%
    }

    .mcd__details-grid {
        grid-template-columns: 1fr;
        gap: 56px
    }

    .mcd__form-row {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {
    .mcd__opening {
        padding: 56px 14px
    }

    .mcd__manifesto-title {
        font-size: 42px
    }

    .mcd__manifesto-text {
        font-size: 16px
    }

    .mcd__manifesto-meta {
        flex-direction: column;
        gap: 14px
    }

    .mcd__program {
        padding: 56px 14px
    }

    .mcd__program-heading {
        font-size: 30px
    }

    .mcd__program-content {
        padding: 28px
    }

    .mcd__program-content h2 {
        font-size: 23px
    }

    .mcd__program-content p,
    .mcd__program-content li,
    .mcd__program-content dt,
    .mcd__program-content dd {
        font-size: 16px
    }

    .mcd__details {
        padding: 56px 14px
    }

    .mcd__details-heading {
        font-size: 30px
    }

    .mcd__details-content {
        padding: 28px
    }

    .mcd__details-content h2 {
        font-size: 23px
    }

    .mcd__details-content h3 {
        font-size: 19px
    }

    .mcd__details-content p,
    .mcd__details-content li,
    .mcd__details-content dt,
    .mcd__details-content dd {
        font-size: 16px
    }

    .mcd__details-content blockquote {
        font-size: 19px;
        padding: 14px 14px 14px 42px
    }

    .mcd__enroll {
        padding: 56px 14px
    }

    .mcd__enroll-heading {
        font-size: 30px
    }

    .mcd__enroll-text {
        font-size: 16px
    }

    .mcd__form-input,
    .mcd__form-textarea,
    .mcd__form-submit {
        font-size: 16px
    }

    .mcd__form-submit {
        padding: 14px 56px
    }
}

@media (max-width: 480px) {
    .mcd__opening {
        padding: 28px 14px
    }

    .mcd__manifesto-title {
        font-size: 30px
    }

    .mcd__manifesto-cta {
        padding: 14px 28px;
        width: 100%;
        text-align: center
    }

    .mcd__program {
        padding: 28px 14px
    }

    .mcd__program-heading {
        font-size: 23px
    }

    .mcd__program-content {
        padding: 14px
    }

    .mcd__details {
        padding: 28px 14px
    }

    .mcd__details-heading {
        font-size: 23px
    }

    .mcd__details-content {
        padding: 14px
    }

    .mcd__enroll {
        padding: 28px 14px
    }

    .mcd__enroll-heading {
        font-size: 23px
    }

    .mcd__form-submit {
        width: 100%
    }
}

.post {
    max-width: 1600px;
    margin: 0 auto;
    background: #fff
}

.post__hero {
    padding: 96px 28px;
    background: linear-gradient(263deg, #ff9d080a, #361e7f05), radial-gradient(circle at 30% 40%, #ff9d080f, transparent 60%);
    position: relative;
    overflow: hidden
}

.post__hero-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 56px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto
}

.post__hero-img-wrap {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 1px 7px 14px 0 #361e7f1c
}

.post__hero-img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(0.7) brightness(1.1) contrast(0.95)
}

.post__hero-stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #FF9D08, #361E7F)
}

.post__hero-txt {
    padding: 28px 0
}

.post__meta-row {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 28px;
    flex-wrap: wrap
}

.post__tag {
    display: inline-block;
    padding: 6px 14px;
    background: #FFF9E4;
    color: #361E7F;
    font-size: 16px;
    border-radius: 46px;
    font-weight: 600;
    letter-spacing: .02em
}

.post__date {
    font-size: 16px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px
}

.post__date::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #FF9D08;
    border-radius: 50%
}

.post__read {
    font-size: 16px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px
}

.post__read::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #361E7F;
    border-radius: 50%
}

.post__h1 {
    font-size: 58px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 14px;
    font-weight: 700;
    letter-spacing: -.02em
}

.post__subtitle {
    font-size: 23px;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0 0 28px;
    font-weight: 400
}

.post__author-line {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 19px;
    color: #333
}

.post__author-line::before {
    content: '';
    width: 42px;
    height: 2px;
    background: linear-gradient(90deg, #FF9D08, #361E7F)
}

.post__author-name {
    font-weight: 600;
    color: #361E7F
}

.post__content-wrap {
    padding: 96px 28px;
    background: #fff;
    position: relative
}

.post__content-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 28px;
    background-image: radial-gradient(circle at 14px 0, transparent 14px, #fff 14px);
    background-size: 28px 28px;
    background-position: 0 0
}

.post__content-inner {
    max-width: 880px;
    margin: 0 auto
}

.post__content-inner p {
    font-size: 19px;
    line-height: 1.75;
    color: #2a2a2a;
    margin: 0 0 28px
}

.post__content-inner h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 56px 0 28px;
    font-weight: 700;
    letter-spacing: -.01em
}

.post__content-inner h3 {
    font-size: 30px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 56px 0 28px;
    font-weight: 700
}

.post__content-inner h4 {
    font-size: 23px;
    line-height: 1.5;
    color: #2a2a2a;
    margin: 28px 0 14px;
    font-weight: 600
}

.post__content-inner small {
    font-size: 16px;
    color: #666;
    display: block;
    margin: 14px 0
}

.post__content-inner ul {
    margin: 28px 0;
    padding: 0;
    list-style: none
}

.post__content-inner li {
    font-size: 19px;
    line-height: 1.75;
    color: #2a2a2a;
    margin: 0 0 14px;
    padding-left: 42px;
    position: relative
}

.post__content-inner li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 14px;
    height: 14px;
    border: 2px solid #FF9D08;
    border-radius: 2px
}

.post__content-inner li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 16px;
    width: 6px;
    height: 3px;
    border-left: 2px solid #361E7F;
    border-bottom: 2px solid #361E7F;
    transform: rotate(-45deg)
}

.post__content-inner details {
    margin: 28px 0;
    border: 2px solid #FFF9E4;
    border-radius: 2px;
    padding: 28px;
    background: #fff;
    transition: border-color .6s ease
}

.post__content-inner details[open] {
    border-color: #FF9D08
}

.post__content-inner summary {
    font-size: 23px;
    line-height: 1.5;
    color: #361E7F;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 42px;
    transition: color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.post__content-inner summary::-webkit-details-marker {
    display: none
}

.post__content-inner summary::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: 2px solid #FF9D08;
    border-radius: 46px;
    transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .5s ease
}

.post__content-inner summary::before {
    content: '';
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 10px;
    background: #FF9D08;
    transition: opacity .6s ease, background .5s ease
}

.post__content-inner details[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
    border-color: #361E7F
}

.post__content-inner details[open] summary::before {
    opacity: 0
}

.post__content-inner summary:hover {
    color: #FF9D08
}

.post__content-inner a {
    color: #361E7F;
    text-decoration: none;
    position: relative;
    display: inline;
    transition: color .5s ease
}

.post__content-inner a::after {
    content: '→';
    display: inline-block;
    margin-left: 6px;
    transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.post__content-inner a:hover {
    color: #FF9D08
}

.post__content-inner a:hover::after {
    transform: translateX(6px)
}

.post__tools {
    padding: 96px 28px;
    background: linear-gradient(263deg, #FFF9E4 0%, #fff 100%), radial-gradient(circle at 70% 60%, #361e7f08, transparent 50%);
    position: relative
}

.post__tools-inner {
    max-width: 1200px;
    margin: 0 auto
}

.post__tools-h {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 56px;
    font-weight: 700;
    text-align: center;
    letter-spacing: -.01em
}

.post__tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.post__tool-card {
    background: #fff;
    border: 3px solid #FFF9E4;
    border-radius: 2px;
    padding: 28px;
    transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .6s ease, box-shadow .6s ease;
    position: relative;
    overflow: hidden
}

.post__tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #ff9d0814, transparent);
    transition: left .8s ease
}

.post__tool-card:hover {
    transform: translateY(-6px);
    border-color: #FF9D08;
    box-shadow: 1px 9px 52px 0 #361e7f1c
}

.post__tool-card:hover::before {
    left: 100%
}

.post__tool-card:active {
    transform: translateY(-6px) scale(1.02)
}

.post__tool-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #FF9D08, #361E7F);
    border-radius: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative
}

.post__tool-icon::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border: 3px solid #fff;
    border-radius: 50%
}

.post__tool-h {
    font-size: 23px;
    line-height: 1.5;
    color: #1a1a1a;
    margin: 0 0 14px;
    font-weight: 600
}

.post__tool-txt {
    font-size: 16px;
    line-height: 1.75;
    color: #4a4a4a;
    margin: 0
}

.post__path-wrap {
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    bottom: 28px;
    pointer-events: none;
    z-index: 1
}

.post__path {
    position: absolute;
    border: 2px dashed #ff9d084d;
    border-radius: 46px
}

.post__path--one {
    top: 0;
    left: 0;
    width: 40%;
    height: 60%
}

.post__path--two {
    bottom: 0;
    right: 0;
    width: 50%;
    height: 50%
}

.post__cta {
    padding: 96px 28px;
    background: #fff;
    position: relative;
    overflow: hidden
}

.post__cta::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 28px;
    background-image: radial-gradient(circle at 14px 28px, transparent 14px, #fff 14px);
    background-size: 28px 28px;
    background-position: 0 0
}

.post__cta-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2
}

.post__cta-h {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 28px;
    font-weight: 700;
    letter-spacing: -.01em
}

.post__cta-txt {
    font-size: 19px;
    line-height: 1.75;
    color: #4a4a4a;
    margin: 0 0 56px
}

.post__cta-btns {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap
}

.post__cta-btn {
    padding: 14px 56px;
    font-size: 19px;
    font-weight: 600;
    border: 3px solid #361E7F;
    background: #361E7F;
    color: #fff;
    border-radius: 2px;
    cursor: pointer;
    transition: background .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .6s ease, transform .5s ease, box-shadow .6s ease;
    text-decoration: none;
    display: inline-block
}

.post__cta-btn:hover {
    background: #fff;
    color: #361E7F;
    box-shadow: 1px 7px 14px 0 #361e7f1c
}

.post__cta-btn:active {
    transform: scale(0.97)
}

.post__cta-btn--alt {
    background: #fff;
    border-color: #FF9D08;
    color: #FF9D08
}

.post__cta-btn--alt:hover {
    background: #FF9D08;
    color: #fff
}

.post__checklist {
    position: absolute;
    top: 50%;
    left: 28px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 28px;
    opacity: .15;
    pointer-events: none
}

.post__check-item {
    width: 28px;
    height: 28px;
    border: 2px solid #361E7F;
    border-radius: 2px;
    position: relative;
    animation: post-check-bounce 2s ease infinite
}

.post__check-item:nth-child(2) {
    animation-delay: .3s
}

.post__check-item:nth-child(3) {
    animation-delay: .6s
}

.post__check-item::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 10px;
    width: 10px;
    height: 5px;
    border-left: 2px solid #FF9D08;
    border-bottom: 2px solid #FF9D08;
    transform: rotate(-45deg)
}

@keyframes post-check-bounce {

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

    50% {
        transform: translateY(-6px)
    }
}

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

    .post__hero-img-wrap {
        max-width: 480px;
        margin: 0 auto
    }

    .post__h1 {
        font-size: 42px
    }

    .post__tools-grid {
        grid-template-columns: 1fr
    }

    .post__checklist {
        display: none
    }
}

@media (max-width: 768px) {
    .post__hero {
        padding: 56px 14px
    }

    .post__h1 {
        font-size: 30px
    }

    .post__subtitle {
        font-size: 19px
    }

    .post__meta-row {
        gap: 14px
    }

    .post__content-wrap {
        padding: 56px 14px
    }

    .post__content-inner h2 {
        font-size: 30px
    }

    .post__content-inner h3 {
        font-size: 23px
    }

    .post__tools {
        padding: 56px 14px
    }

    .post__tools-h {
        font-size: 30px;
        margin-bottom: 28px
    }

    .post__cta {
        padding: 56px 14px
    }

    .post__cta-h {
        font-size: 30px
    }

    .post__cta-btns {
        flex-direction: column;
        align-items: stretch
    }

    .post__cta-btn {
        width: 100%
    }
}

@media (max-width: 480px) {
    .post__hero {
        padding: 28px 14px
    }

    .post__h1 {
        font-size: 23px
    }

    .post__subtitle {
        font-size: 16px
    }

    .post__tag,
    .post__date,
    .post__read {
        font-size: 16px
    }

    .post__content-wrap {
        padding: 28px 14px
    }

    .post__content-inner p,
    .post__content-inner li {
        font-size: 16px
    }

    .post__content-inner h2 {
        font-size: 23px;
        margin-top: 28px
    }

    .post__content-inner h3 {
        font-size: 19px;
        margin-top: 28px
    }

    .post__tools {
        padding: 28px 14px
    }

    .post__tools-h {
        font-size: 23px
    }

    .post__cta {
        padding: 28px 14px
    }

    .post__cta-h {
        font-size: 23px
    }

    .post__cta-txt {
        font-size: 16px
    }
}

::selection {
    background: #ff9d0833;
    color: inherit
}

::-moz-selection {
    background: #ff9d0833;
    color: inherit
}

input::placeholder,
textarea::placeholder {
    transition: opacity .6s ease
}

input:focus::placeholder,
textarea:focus::placeholder {
    opacity: 0
}

@media print {
    .post {
        max-width: 100%
    }

    .post__hero {
        padding: 28px 14px;
        background: #fff;
        page-break-after: avoid
    }

    .post__hero-grid {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .post__hero-img-wrap {
        max-width: 300px;
        box-shadow: none
    }

    .post__hero-img {
        filter: none
    }

    .post__hero-stripe {
        display: none
    }

    .post__h1 {
        font-size: 30px;
        page-break-after: avoid
    }

    .post__subtitle {
        font-size: 19px
    }

    .post__meta-row {
        margin-bottom: 14px
    }

    .post__tag {
        background: transparent;
        border: 1px solid #361E7F;
        padding: 2px 6px
    }

    .post__content-wrap {
        padding: 28px 14px;
        background: #fff
    }

    .post__content-wrap::before {
        display: none
    }

    .post__content-inner h2,
    .post__content-inner h3,
    .post__content-inner h4 {
        page-break-after: avoid
    }

    .post__content-inner p,
    .post__content-inner li {
        orphans: 3;
        widows: 3
    }

    .post__content-inner details {
        border: 1px solid #ccc;
        padding: 14px
    }

    .post__content-inner summary::after,
    .post__content-inner summary::before {
        display: none
    }

    .post__tools {
        padding: 28px 14px;
        background: #fff;
        page-break-before: avoid
    }

    .post__tools-h {
        font-size: 23px;
        margin-bottom: 14px
    }

    .post__tools-grid {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .post__tool-card {
        border: 1px solid #ccc;
        padding: 14px;
        box-shadow: none;
        page-break-inside: avoid
    }

    .post__tool-card::before {
        display: none
    }

    .post__tool-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 14px;
        background: #ccc
    }

    .post__path-wrap {
        display: none
    }

    .post__cta {
        padding: 28px 14px;
        background: #fff;
        page-break-before: avoid
    }

    .post__cta::before {
        display: none
    }

    .post__cta-h {
        font-size: 23px
    }

    .post__cta-txt {
        font-size: 16px
    }

    .post__cta-btns {
        display: none
    }

    .post__checklist {
        display: none
    }

    a[href]::after {
        content: none
    }

    .post__content-inner a::after {
        content: ''
    }
}

.mstrcls {
    max-width: 1600px;
    margin: 0 auto;
    background: #fff
}

.mstrcls__split {
    display: flex;
    min-height: 520px;
    overflow: hidden
}

.mstrcls__split-zone {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.mstrcls__split-zone--purple {
    background: #361E7F
}

.mstrcls__split-zone--orange {
    background: #FF9D08;
    position: relative
}

.mstrcls__split-txt {
    position: relative;
    z-index: 2;
    padding: 56px;
    max-width: 680px
}

.mstrcls__split-txt::before {
    content: '';
    position: absolute;
    top: -96px;
    left: -96px;
    width: 280px;
    height: 280px;
    border: 2px dashed #fff3;
    border-radius: 46px;
    z-index: -1
}

.mstrcls__split-h {
    font-size: 58px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 28px;
    letter-spacing: -.02em
}

.mstrcls__split-p {
    font-size: 19px;
    line-height: 1.5;
    color: #ffffffeb;
    margin: 0
}

.mstrcls__split-img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

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

.mstrcls__split-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #361E7F 0%, #361e7f00 100%);
    z-index: 1
}

.mstrcls__catalog {
    padding: 96px 56px;
    background: #fff
}

.mstrcls__catalog-hd {
    text-align: center;
    margin: 0 0 56px
}

.mstrcls__catalog-h {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 14px;
    letter-spacing: -.01em
}

.mstrcls__catalog-sub {
    font-size: 19px;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0
}

.mstrcls__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px
}

.mstrcls__card {
    background: #fff;
    border: 3px solid #361E7F;
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 1px 1px 2px 0 #361e7f14
}

.mstrcls__card:hover {
    transform: translateY(-6px);
    box-shadow: 1px 9px 52px 0 #361e7f1c
}

.mstrcls__card-img-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative
}

.mstrcls__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s ease
}

.mstrcls__card:hover .mstrcls__card-img {
    transform: scale(1.05)
}

.mstrcls__card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.mstrcls__card-h {
    font-size: 23px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 14px;
    letter-spacing: -.01em
}

.mstrcls__card-desc {
    font-size: 16px;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0 0 28px;
    flex: 1
}

.mstrcls__card-meta {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0 0 28px;
    padding: 14px 0;
    border-top: 2px dotted #e8e8e8;
    border-bottom: 2px dotted #e8e8e8
}

.mstrcls__card-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    line-height: 1.5;
    color: #4a4a4a
}

.mstrcls__card-meta-icon {
    width: 32px;
    height: 32px;
    border-radius: 46px;
    background: linear-gradient(263deg, #FF9D08 0%, #FFF9E4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    font-weight: 700
}

.mstrcls__card-price {
    font-size: 30px;
    line-height: 1.2;
    color: #361E7F;
    margin: 0 0 14px;
    font-weight: 700
}

.mstrcls__card-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #fff;
    color: #361E7F;
    border: 3px solid #361E7F;
    border-radius: 2px;
    font-size: 16px;
    line-height: 1.5;
    text-decoration: none;
    transition: background .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center
}

.mstrcls__card-btn:hover {
    background: #361E7F;
    color: #fff
}

.mstrcls__showcase {
    padding: 96px 56px;
    background: linear-gradient(263deg, #ff9d080d 0%, #fff9e40d 100%), radial-gradient(circle at 30% 40%, #361e7f08 0%, #fff0 60%);
    position: relative
}

.mstrcls__showcase-inner {
    display: flex;
    gap: 56px;
    align-items: flex-start
}

.mstrcls__showcase-main {
    flex: 3
}

.mstrcls__showcase-h {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 28px;
    letter-spacing: -.01em
}

.mstrcls__showcase-p {
    font-size: 19px;
    line-height: 1.75;
    color: #4a4a4a;
    margin: 0 0 28px
}

.mstrcls__showcase-img-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 2px;
    position: relative;
    margin: 28px 0 0
}

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

.mstrcls__showcase-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #361e7f4d 0%, #361e7f00 70%)
}

.mstrcls__showcase-side {
    flex: 1;
    position: sticky;
    top: 96px
}

.mstrcls__dtl-card {
    background: #ffffffe6;
    backdrop-filter: blur(14px);
    border: 2px solid #FF9D08;
    border-radius: 2px;
    padding: 28px;
    box-shadow: 1px 7px 14px 0 #ff9d081c
}

.mstrcls__dtl-card-h {
    font-size: 19px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 14px;
    font-weight: 700;
    letter-spacing: -.01em
}

.mstrcls__dtl-card-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #FFF9E4;
    border: 1px solid #FF9D08;
    border-radius: 46px;
    font-size: 16px;
    line-height: 1.5;
    color: #361E7F;
    margin: 0 0 14px
}

.mstrcls__dtl-card-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 46px;
    background: #FF9D08
}

.mstrcls__dtl-card-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px dotted #e8e8e8;
    font-size: 16px;
    line-height: 1.5
}

.mstrcls__dtl-card-row:last-child {
    border-bottom: none
}

.mstrcls__dtl-card-label {
    color: #4a4a4a
}

.mstrcls__dtl-card-value {
    color: #1a1a1a;
    font-weight: 700
}

.mstrcls__process {
    padding: 96px 56px;
    background: #fff
}

.mstrcls__process-h {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 56px;
    text-align: center;
    letter-spacing: -.01em
}

.mstrcls__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 56px;
    position: relative
}

.mstrcls__step {
    position: relative;
    opacity: 0;
    animation: slideIn .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

.mstrcls__step:nth-child(odd) {
    animation-name: slideInLeft
}

.mstrcls__step:nth-child(even) {
    animation-name: slideInRight
}

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

.mstrcls__step:nth-child(2) {
    animation-delay: .2s
}

.mstrcls__step:nth-child(3) {
    animation-delay: .3s
}

.mstrcls__step:nth-child(4) {
    animation-delay: .4s
}

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

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

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

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

.mstrcls__step-num {
    width: 56px;
    height: 56px;
    border-radius: 46px;
    background: #361E7F;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 14px
}

.mstrcls__step-h {
    font-size: 23px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 14px;
    letter-spacing: -.01em
}

.mstrcls__step-p {
    font-size: 16px;
    line-height: 1.75;
    color: #4a4a4a;
    margin: 0
}

.mstrcls__step::after {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(100% + 28px);
    width: 56px;
    height: 2px;
    background: repeating-linear-gradient(to right, #FF9D08 0px, #FF9D08 6px, transparent 6px, transparent 12px);
    display: none
}

@media (min-width: 1024px) {
    .mstrcls__step::after {
        display: block
    }

    .mstrcls__step:last-child::after {
        display: none
    }
}

@media (max-width: 1023px) {
    .mstrcls__split {
        flex-direction: column
    }

    .mstrcls__split-zone {
        min-height: 360px
    }

    .mstrcls__split-txt {
        padding: 56px 28px
    }

    .mstrcls__split-h {
        font-size: 42px
    }

    .mstrcls__catalog {
        padding: 56px 28px
    }

    .mstrcls__catalog-h {
        font-size: 30px
    }

    .mstrcls__grid {
        grid-template-columns: 1fr
    }

    .mstrcls__showcase {
        padding: 56px 28px
    }

    .mstrcls__showcase-inner {
        flex-direction: column;
        gap: 28px
    }

    .mstrcls__showcase-h {
        font-size: 30px
    }

    .mstrcls__showcase-side {
        position: static;
        width: 100%
    }

    .mstrcls__process {
        padding: 56px 28px
    }

    .mstrcls__process-h {
        font-size: 30px
    }

    .mstrcls__steps {
        gap: 28px
    }
}

@media (max-width: 767px) {
    .mstrcls__split-h {
        font-size: 30px
    }

    .mstrcls__split-p {
        font-size: 16px
    }

    .mstrcls__catalog-h {
        font-size: 23px
    }

    .mstrcls__catalog-sub {
        font-size: 16px
    }

    .mstrcls__card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px
    }

    .mstrcls__showcase-h {
        font-size: 23px
    }

    .mstrcls__showcase-p {
        font-size: 16px
    }

    .mstrcls__process-h {
        font-size: 23px
    }
}

@media (max-width: 479px) {
    .mstrcls__split-txt {
        padding: 28px
    }

    .mstrcls__catalog {
        padding: 28px
    }

    .mstrcls__showcase {
        padding: 28px
    }

    .mstrcls__process {
        padding: 28px
    }

    .mstrcls__card-body {
        padding: 14px
    }
}

.blg {
    max-width: 1600px;
    margin: 0 auto
}

.blg__hero {
    position: relative;
    background: linear-gradient(263deg, #FF9D08 0%, #fffffff2 100%), radial-gradient(ellipse at 30% 40%, #361e7f26, transparent 70%);
    padding: 96px 28px 56px;
    overflow: hidden
}

.blg__hero::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    bottom: 14px;
    border: 1px solid #361e7f33;
    pointer-events: none
}

.blg__hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 20%;
    width: 2px;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, #361e7f4d 50%, transparent 100%);
    transform: rotate(18deg);
    pointer-events: none
}

.blg__hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .08;
    filter: saturate(0) contrast(1.2);
    mix-blend-mode: multiply
}

.blg__hero-wrap {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    z-index: 1
}

.blg__hero-title {
    font-size: 58px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #361E7F;
    margin: 0 0 28px;
    font-weight: 700
}

.blg__hero-quote {
    font-size: 23px;
    line-height: 1.5;
    color: #2a2a2a;
    margin: 0;
    font-style: italic;
    font-weight: 400
}

.blg__posts {
    background: #fff;
    padding: 96px 28px
}

.blg__posts-container {
    max-width: 1400px;
    margin: 0 auto
}

.blg__posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 56px;
    margin: 0;
    padding: 0;
    list-style: none
}

.blg__card {
    background: #fff;
    border: 3px solid #361E7F;
    border-radius: 2px;
    overflow: hidden;
    transition: transform .65s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 1px 1px 2px 0 #ff9d0814 1px 7px 14px 0 #ff9d081c 1px 9px 52px 0 #ff9d081c
}

.blg__card:hover {
    transform: translateY(-6px);
    box-shadow: 1px 2px 4px 0 #361e7f1f 1px 14px 28px 0 #361e7f29 1px 18px 72px 0 #361e7f29
}

.blg__card-link {
    display: block;
    text-decoration: none;
    color: inherit
}

.blg__card-img-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: #FFF9E4
}

.blg__card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease
}

.blg__card:hover .blg__card-img {
    transform: scale(1.05)
}

.blg__card-body {
    padding: 28px
}

.blg__card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 14px;
    flex-wrap: wrap
}

.blg__card-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #FFF9E4;
    color: #361E7F;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    border-radius: 46px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.blg__card-date {
    font-size: 16px;
    line-height: 1.2;
    color: #666
}

.blg__card-title {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: #361E7F;
    margin: 0 0 14px;
    font-weight: 700
}

.blg__card-subtitle {
    font-size: 19px;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0 0 14px;
    font-weight: 500
}

.blg__card-desc {
    font-size: 16px;
    line-height: 1.75;
    color: #2a2a2a;
    margin: 0 0 28px
}

.blg__card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 0;
    border-top: 1px solid #361e7f26;
    gap: 14px;
    flex-wrap: wrap
}

.blg__card-author {
    font-size: 16px;
    line-height: 1.2;
    color: #2a2a2a;
    font-weight: 600
}

.blg__card-read {
    font-size: 16px;
    line-height: 1.2;
    color: #666
}

.blg__insights {
    background: linear-gradient(263deg, #ff9d0814 0%, #fff 100%), radial-gradient(ellipse at 70% 30%, #361e7f0d, transparent 60%);
    padding: 96px 28px;
    position: relative
}

.blg__insights::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 2px;
    height: 80%;
    background: linear-gradient(180deg, transparent 0%, #ff9d084d 50%, transparent 100%);
    transform: translateY(-50%) rotate(-12deg);
    pointer-events: none
}

.blg__insights-container {
    max-width: 1200px;
    margin: 0 auto
}

.blg__insights-head {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #361E7F;
    margin: 0 0 56px;
    text-align: center;
    font-weight: 700
}

.blg__insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.blg__stat {
    background: #fff;
    padding: 28px;
    border-radius: 2px;
    border: 2px solid #FF9D08;
    text-align: center;
    transition: border-color .6s ease, transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 1px 1px 2px 0 #361e7f14
}

.blg__stat:hover {
    border-color: #361E7F;
    transform: translateY(-4px)
}

.blg__stat-num {
    font-size: 58px;
    line-height: 1.2;
    color: #FF9D08;
    font-weight: 700;
    margin: 0 0 14px;
    letter-spacing: -.03em
}

.blg__stat-label {
    font-size: 19px;
    line-height: 1.5;
    color: #2a2a2a;
    margin: 0;
    font-weight: 500
}

.blg__community {
    background: #fff;
    padding: 96px 28px;
    position: relative
}

.blg__community-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px
}

.blg__community-txt {
    text-align: center
}

.blg__community-q {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: #361E7F;
    margin: 0 0 28px;
    font-weight: 700
}

.blg__community-p {
    font-size: 19px;
    line-height: 1.75;
    color: #2a2a2a;
    margin: 0 0 14px;
    max-width: 700px
}

.blg__community-img-frame {
    position: relative;
    width: 100%;
    max-width: 800px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 1px 1px 2px 0 #ff9d0814 1px 7px 14px 0 #ff9d081c 1px 9px 52px 0 #ff9d081c
}

.blg__community-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover
}

.blg__resources {
    background: #FFF9E4;
    padding: 96px 28px;
    position: relative;
    overflow: hidden
}

.blg__resources::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(90deg, #FF9D08 0px, #FF9D08 40px, transparent 40px, transparent 80px, #361E7F 80px, #361E7F 120px, transparent 120px, transparent 160px)
}

.blg__resources-container {
    max-width: 1200px;
    margin: 0 auto
}

.blg__resources-title {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #361E7F;
    margin: 0 0 28px;
    font-weight: 700
}

.blg__resources-intro {
    font-size: 19px;
    line-height: 1.75;
    color: #2a2a2a;
    margin: 0 0 56px;
    max-width: 800px
}

.blg__resources-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none
}

.blg__resource {
    background: #fff;
    padding: 28px;
    border-radius: 46px;
    border: 3px solid #361E7F;
    display: flex;
    align-items: center;
    gap: 28px;
    transition: background .6s ease, border-color .6s ease
}

.blg__resource:hover {
    background: #ff9d080d;
    border-color: #FF9D08
}

.blg__resource-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #FF9D08, #361E7F);
    border-radius: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 1px 1px 2px 0 #361e7f14
}

.blg__resource-icon-svg {
    width: 36px;
    height: 36px;
    fill: #fff
}

.blg__resource-txt {
    flex: 1
}

.blg__resource-name {
    font-size: 23px;
    line-height: 1.2;
    color: #361E7F;
    margin: 0 0 6px;
    font-weight: 700
}

.blg__resource-desc {
    font-size: 16px;
    line-height: 1.5;
    color: #2a2a2a;
    margin: 0
}

.blg__resource-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 28px;
    background: transparent;
    color: #361E7F;
    border: 3px solid #361E7F;
    border-radius: 2px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none;
    transition: background .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0
}

.blg__resource-link:hover {
    background: #361E7F;
    color: #fff;
    border-color: #361E7F
}

.blg__resource-arrow {
    width: 16px;
    height: 16px;
    transition: transform .5s ease
}

.blg__resource-link:hover .blg__resource-arrow {
    transform: translateX(4px)
}

.blg__progress {
    background: linear-gradient(263deg, #fff 0%, #361e7f08 100%), radial-gradient(ellipse at 20% 80%, #ff9d0814, transparent 50%);
    padding: 96px 28px
}

.blg__progress-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center
}

.blg__progress-head {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #361E7F;
    margin: 0 0 28px;
    font-weight: 700
}

.blg__progress-txt {
    font-size: 19px;
    line-height: 1.75;
    color: #2a2a2a;
    margin: 0 0 56px
}

.blg__progress-visual {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto
}

.blg__progress-ring {
    width: 280px;
    height: 280px;
    margin: 0 auto;
    position: relative
}

.blg__progress-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%
}

.blg__progress-bg {
    fill: none;
    stroke: #FFF9E4;
    stroke-width: 16
}

.blg__progress-bar {
    fill: none;
    stroke: url(#blg-gradient);
    stroke-width: 16;
    stroke-linecap: round;
    stroke-dasharray: 785;
    stroke-dashoffset: 196;
    transition: stroke-dashoffset .8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.blg__progress-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center
}

.blg__progress-num {
    font-size: 58px;
    line-height: 1.2;
    color: #361E7F;
    font-weight: 700;
    margin: 0;
    letter-spacing: -.03em
}

.blg__progress-label {
    font-size: 16px;
    line-height: 1.2;
    color: #666;
    margin: 6px 0 0;
    text-transform: uppercase;
    letter-spacing: .08em
}

.blg__progress-legend {
    display: flex;
    justify-content: center;
    gap: 56px;
    margin: 56px 0 0
}

.blg__progress-item {
    text-align: center
}

.blg__progress-item-val {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 6px
}

.blg__progress-item--used .blg__progress-item-val {
    color: #FF9D08
}

.blg__progress-item--free .blg__progress-item-val {
    color: #361E7F
}

.blg__progress-item-txt {
    font-size: 16px;
    line-height: 1.2;
    color: #666;
    margin: 0
}

@media (max-width: 1024px) {
    .blg__hero-title {
        font-size: 42px
    }

    .blg__hero-quote {
        font-size: 19px
    }

    .blg__posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 28px
    }

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

    .blg__resource {
        flex-direction: column;
        text-align: center
    }
}

@media (max-width: 768px) {
    .blg__hero {
        padding: 56px 28px 28px
    }

    .blg__hero-title {
        font-size: 30px
    }

    .blg__hero-quote {
        font-size: 16px
    }

    .blg__posts {
        padding: 56px 28px
    }

    .blg__posts-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .blg__card-title {
        font-size: 23px
    }

    .blg__insights {
        padding: 56px 28px
    }

    .blg__insights-head {
        font-size: 30px;
        margin: 0 0 28px
    }

    .blg__insights-grid {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .blg__stat-num {
        font-size: 42px
    }

    .blg__community {
        padding: 56px 28px
    }

    .blg__community-container {
        gap: 28px
    }

    .blg__community-q {
        font-size: 30px
    }

    .blg__resources {
        padding: 56px 28px
    }

    .blg__resources-title {
        font-size: 30px
    }

    .blg__resources-intro {
        font-size: 16px;
        margin: 0 0 28px
    }

    .blg__resources-list {
        gap: 14px
    }

    .blg__resource {
        padding: 14px;
        gap: 14px
    }

    .blg__resource-icon {
        width: 56px;
        height: 56px
    }

    .blg__resource-name {
        font-size: 19px
    }

    .blg__progress {
        padding: 56px 28px
    }

    .blg__progress-head {
        font-size: 30px
    }

    .blg__progress-txt {
        font-size: 16px;
        margin: 0 0 28px
    }

    .blg__progress-ring {
        width: 220px;
        height: 220px
    }

    .blg__progress-num {
        font-size: 42px
    }

    .blg__progress-legend {
        flex-direction: column;
        gap: 28px;
        margin: 28px 0 0
    }
}

@media (max-width: 480px) {
    .blg__hero {
        padding: 28px 14px
    }

    .blg__hero-title {
        font-size: 23px;
        margin: 0 0 14px
    }

    .blg__posts {
        padding: 28px 14px
    }

    .blg__card-body {
        padding: 14px
    }

    .blg__card-footer {
        flex-direction: column;
        align-items: flex-start
    }

    .blg__insights {
        padding: 28px 14px
    }

    .blg__community {
        padding: 28px 14px
    }

    .blg__resources {
        padding: 28px 14px
    }

    .blg__resource-link {
        width: 100%;
        justify-content: center
    }

    .blg__progress {
        padding: 28px 14px
    }
}

.author {
    max-width: 1600px;
    margin: 0 auto;
    background: #fff
}

.author__split {
    display: flex;
    min-height: 520px;
    position: relative;
    overflow: hidden
}

.author__split-zone {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px
}

.author__split-zone--purple {
    background: #361E7F
}

.author__split-zone--orange {
    background: #FF9D08;
    position: relative
}

.author__split-text {
    max-width: 680px;
    color: #fff
}

.author__split-h1 {
    font-size: 58px;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin: 0 0 28px
}

.author__split-h1 span {
    background: #FFF9E4;
    color: #361E7F;
    padding: 6px 14px;
    border-radius: 2px;
    display: inline-block
}

.author__split-p {
    font-size: 19px;
    line-height: 1.5;
    margin: 0;
    opacity: .95
}

.author__dots {
    position: absolute;
    top: 28px;
    right: 28px;
    display: flex;
    gap: 14px
}

.author__dot {
    width: 8px;
    height: 8px;
    border-radius: 46px;
    background: #ffffff4d;
    animation: author-dot-float 2.4s ease-in-out infinite
}

.author__dot:nth-child(2) {
    animation-delay: .3s
}

.author__dot:nth-child(3) {
    animation-delay: .6s
}

.author__dot:nth-child(4) {
    animation-delay: .9s
}

@keyframes author-dot-float {

    0%,
    100% {
        transform: translateY(0);
        opacity: .3
    }

    50% {
        transform: translateY(-12px);
        opacity: .8
    }
}

.author__bio {
    padding: 96px 56px;
    background: #fff;
    position: relative
}

.author__bio-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 96px;
    align-items: start
}

.author__portrait-wrap {
    position: relative;
    animation: author-scale-in .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transform: scale(0.95)
}

@keyframes author-scale-in {
    to {
        transform: scale(1)
    }
}

.author__portrait {
    width: 100%;
    aspect-ratio: 7/9;
    object-fit: cover;
    object-position: top;
    border-radius: 2px;
    border: 4px solid #FFF9E4;
    box-shadow: 1px 9px 52px 0 #361e7f1c
}

.author__bio-content {
    padding-top: 14px
}

.author__bio-h2 {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin: 0 0 28px;
    color: #1a1a1a
}

.author__bio-p {
    font-size: 19px;
    line-height: 1.75;
    color: #2d2d2d;
    margin: 0 0 28px
}

.author__bio-p:last-child {
    margin-bottom: 0
}

.author__curve {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 120px;
    background: linear-gradient(180deg, transparent, #FF9D08)
}

.author__expertise {
    padding: 96px 56px;
    background: radial-gradient(ellipse 800px 600px at 50% 50%, #ff9d080d, transparent), linear-gradient(263deg, #361e7f08, #fff9e40d);
    position: relative
}

.author__expertise-inner {
    max-width: 1400px;
    margin: 0 auto
}

.author__expertise-h2 {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin: 0 0 56px;
    text-align: center;
    color: #1a1a1a
}

.author__skills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.author__skill-card {
    background: #fff;
    padding: 56px 28px;
    border-radius: 46px;
    border: 3px solid #FFF9E4;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 1px 7px 14px 0 #ff9d081c;
    transition: transform .6s ease;
    animation: author-scale-in .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transform: scale(0.95)
}

.author__skill-card:nth-child(2) {
    animation-delay: .15s
}

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

.author__skill-card:active {
    transform: scale(1.05)
}

.author__skill-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 28px;
    border-radius: 46px;
    background: linear-gradient(263deg, #FF9D08, #361E7F);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px
}

.author__skill-h3 {
    font-size: 23px;
    line-height: 1.2;
    margin: 0 0 14px;
    color: #1a1a1a;
    font-weight: 700
}

.author__skill-p {
    font-size: 16px;
    line-height: 1.5;
    color: #3d3d3d;
    margin: 0
}

.author__zigzag {
    width: 100%;
    height: 32px;
    margin: 0;
    display: block
}

.author__journey {
    padding: 96px 56px;
    background: #fff
}

.author__journey-inner {
    max-width: 920px;
    margin: 0 auto
}

.author__journey-h2 {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin: 0 0 56px;
    color: #1a1a1a
}

.author__timeline {
    display: flex;
    flex-direction: column;
    gap: 56px;
    position: relative
}

.author__timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #FF9D08, #361E7F)
}

.author__milestone {
    display: flex;
    gap: 28px;
    position: relative;
    animation: author-scale-in .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transform: scale(0.95)
}

.author__milestone:nth-child(2) {
    animation-delay: .2s
}

.author__milestone:nth-child(3) {
    animation-delay: .4s
}

.author__milestone-marker {
    width: 64px;
    height: 64px;
    border-radius: 46px;
    background: #fff;
    border: 4px solid #FF9D08;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    font-weight: 700;
    color: #361E7F;
    box-shadow: 1px 1px 2px 0 #361e7f14;
    position: relative;
    z-index: 2
}

.author__milestone-content {
    padding-top: 6px;
    flex: 1
}

.author__milestone-h3 {
    font-size: 23px;
    line-height: 1.2;
    margin: 0 0 14px;
    color: #1a1a1a;
    font-weight: 700
}

.author__milestone-p {
    font-size: 16px;
    line-height: 1.75;
    color: #3d3d3d;
    margin: 0
}

.author__connect {
    padding: 96px 56px;
    background: linear-gradient(263deg, #ff9d0814, #361e7f0d);
    position: relative
}

.author__connect-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 96px;
    align-items: center
}

.author__connect-text {
    animation: author-scale-in .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transform: scale(0.95)
}

.author__connect-h2 {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin: 0 0 28px;
    color: #1a1a1a
}

.author__connect-p {
    font-size: 19px;
    line-height: 1.75;
    color: #2d2d2d;
    margin: 0 0 28px
}

.author__connect-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px
}

.author__connect-item {
    display: inline
}

.author__connect-item::after {
    content: '/';
    margin-left: 14px;
    color: #FF9D08
}

.author__connect-item:last-child::after {
    content: '';
    margin: 0
}

.author__connect-link {
    font-size: 16px;
    color: #361E7F;
    text-decoration: none;
    position: relative;
    transition: color .55s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.author__connect-link::after {
    content: '→';
    transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block
}

.author__connect-link:hover {
    color: #FF9D08
}

.author__connect-link:hover::after {
    transform: translateX(6px)
}

.author__connect-img-wrap {
    position: relative;
    animation: author-scale-in .8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transform: scale(0.95);
    animation-delay: .2s
}

.author__connect-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 46px;
    border: 4px solid #fff;
    box-shadow: 1px 9px 52px 0 #ff9d081c;
    position: relative
}

.author__connect-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, #0000004d, transparent);
    border-radius: 46px 46px 0 0;
    pointer-events: none
}

@media (max-width: 1024px) {
    .author__split {
        flex-direction: column;
        min-height: auto
    }

    .author__split-zone {
        padding: 56px 28px
    }

    .author__split-h1 {
        font-size: 42px
    }

    .author__bio-inner {
        grid-template-columns: 1fr;
        gap: 56px
    }

    .author__portrait-wrap {
        max-width: 380px;
        margin: 0 auto
    }

    .author__skills {
        grid-template-columns: 1fr
    }

    .author__connect-inner {
        grid-template-columns: 1fr;
        gap: 56px
    }
}

@media (max-width: 768px) {
    .author__split-zone {
        padding: 56px 28px
    }

    .author__split-h1 {
        font-size: 30px
    }

    .author__split-p {
        font-size: 16px
    }

    .author__bio {
        padding: 56px 28px
    }

    .author__bio-h2 {
        font-size: 30px
    }

    .author__bio-p {
        font-size: 16px
    }

    .author__expertise {
        padding: 56px 28px
    }

    .author__expertise-h2 {
        font-size: 30px;
        margin-bottom: 28px
    }

    .author__skill-card {
        padding: 28px 14px
    }

    .author__journey {
        padding: 56px 28px
    }

    .author__journey-h2 {
        font-size: 30px;
        margin-bottom: 28px
    }

    .author__timeline::before {
        left: 16px
    }

    .author__milestone-marker {
        width: 48px;
        height: 48px;
        font-size: 19px
    }

    .author__connect {
        padding: 56px 28px
    }

    .author__connect-h2 {
        font-size: 30px
    }

    .author__connect-p {
        font-size: 16px
    }
}

@media (max-width: 480px) {
    .author__split-zone {
        padding: 28px 14px
    }

    .author__bio {
        padding: 28px 14px
    }

    .author__expertise {
        padding: 28px 14px
    }

    .author__journey {
        padding: 28px 14px
    }

    .author__connect {
        padding: 28px 14px
    }

    .author__dots {
        gap: 6px;
        right: 14px;
        top: 14px
    }

    .author__dot {
        width: 6px;
        height: 6px
    }
}

.rt {
    max-width: 1600px;
    margin: 0 auto
}

.rt__splash {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 520px;
    position: relative;
    overflow: hidden;
    padding-bottom: 96px;
    padding-top: 56px
}

.rt__splash-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 96px;
    padding-right: 56px;
    position: relative;
    z-index: 2
}

.rt__splash-txt::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 28px;
    width: 180px;
    height: 4px;
    background: linear-gradient(263deg, #FF9D08, #361E7F);
    opacity: .7;
    animation: rt-breathe 6.2s ease-in-out infinite
}

@keyframes rt-breathe {

    0%,
    100% {
        opacity: .7
    }

    50% {
        opacity: .95
    }
}

.rt__splash-h {
    font-size: 72px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #2a2a2a;
    margin: 0
}

.rt__splash-pic {
    position: relative;
    overflow: hidden
}

.rt__splash-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.4)
}

.rt__depth {
    padding: 96px;
    background: linear-gradient(263deg, #ff9d0808, #361e7f0a), radial-gradient(circle at 70% 30%, #fff9e499, transparent 60%)
}

.rt__depth-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center
}

.rt__depth-txt {
    padding-right: 28px
}

.rt__depth-h {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: #2a2a2a;
    margin: 0 0 28px;
    font-weight: 700
}

.rt__depth-p {
    font-size: 19px;
    line-height: 1.75;
    color: #3d3d3d;
    margin: 0 0 14px
}

.rt__depth-p:last-child {
    margin-bottom: 0
}

.rt__depth-vis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px
}

.rt__depth-card {
    background: #fff;
    padding: 28px;
    border: 2px solid #FF9D08;
    border-radius: 2px;
    box-shadow: 1px 7px 14px 0 #361e7f1c;
    transition: transform .65s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.rt__depth-card:hover {
    transform: translateY(-6px)
}

.rt__depth-num {
    font-size: 58px;
    line-height: 1.2;
    font-weight: 700;
    color: #361E7F;
    margin: 0 0 6px
}

.rt__depth-label {
    font-size: 16px;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0
}

.rt__feed {
    padding: 96px;
    background: #fff
}

.rt__feed-h {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: #2a2a2a;
    margin: 0 0 56px;
    font-weight: 700;
    text-align: center
}

.rt__posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 56px
}

.rt__post {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 3px solid #361E7F;
    border-radius: 2px;
    overflow: hidden;
    transition: box-shadow .7s ease
}

.rt__post:hover {
    box-shadow: 1px 9px 52px 0 #ff9d081c
}

.rt__post-img-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative
}

.rt__post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .75s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.rt__post:hover .rt__post-img {
    transform: scale(1.08)
}

.rt__post-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.rt__post-meta {
    display: flex;
    flex-direction: row;
    gap: 14px;
    margin-bottom: 14px;
    flex-wrap: wrap
}

.rt__post-tag {
    font-size: 16px;
    line-height: 1.5;
    color: #FF9D08;
    font-weight: 700
}

.rt__post-date {
    font-size: 16px;
    line-height: 1.5;
    color: #6a6a6a
}

.rt__post-h {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: #2a2a2a;
    margin: 0 0 14px;
    font-weight: 700
}

.rt__post-desc {
    font-size: 16px;
    line-height: 1.75;
    color: #3d3d3d;
    margin: 0 0 14px;
    flex-grow: 1
}

.rt__post-foot {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 14px;
    border-top: 2px solid #FFF9E4
}

.rt__post-author {
    font-size: 16px;
    line-height: 1.5;
    color: #4a4a4a
}

.rt__post-time {
    font-size: 16px;
    line-height: 1.5;
    color: #6a6a6a
}

.rt__post-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%
}

.rt__themes {
    padding: 96px;
    background: #FFF9E4;
    position: relative
}

.rt__themes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(263deg, #FF9D08, #361E7F)
}

.rt__themes-h {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: #2a2a2a;
    margin: 0 0 56px;
    font-weight: 700;
    text-align: center
}

.rt__themes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.rt__theme {
    background: #fff;
    padding: 28px;
    border-radius: 46px;
    box-shadow: 1px 1px 2px 0 #361e7f14;
    transition: transform .6s ease, box-shadow .6s ease;
    text-align: center
}

.rt__theme:hover {
    transform: translateY(-8px);
    box-shadow: 1px 9px 52px 0 #ff9d081c
}

.rt__theme--craft {
    border: 3px solid #FF9D08
}

.rt__theme--tech {
    border: 3px solid #361E7F
}

.rt__theme--flow {
    border: 3px solid #FFF9E4;
    background: linear-gradient(263deg, #ff9d080d, #361e7f0d)
}

.rt__theme-h {
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: #2a2a2a;
    margin: 0 0 14px;
    font-weight: 700
}

.rt__theme-p {
    font-size: 16px;
    line-height: 1.75;
    color: #3d3d3d;
    margin: 0
}

.rt__cluster {
    padding: 96px;
    background: #fff
}

.rt__cluster-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 56px
}

.rt__cluster-side {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.rt__cluster-author {
    background: linear-gradient(263deg, #ff9d0814, #361e7f0f), radial-gradient(circle at 30% 70%, #fff9e480, transparent 70%);
    padding: 28px;
    border-radius: 2px;
    text-align: center;
    border: 2px solid #FFF9E4
}

.rt__cluster-portrait {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    margin: 0 auto 14px;
    display: block;
    border: 3px solid #FF9D08
}

.rt__cluster-name {
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: #2a2a2a;
    margin: 0 0 6px;
    font-weight: 700
}

.rt__cluster-role {
    font-size: 16px;
    line-height: 1.5;
    color: #6a6a6a;
    margin: 0
}

.rt__cluster-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px
}

.rt__cluster-stat {
    background: #fff;
    padding: 14px;
    border: 2px solid #361E7F;
    border-radius: 2px;
    text-align: center
}

.rt__cluster-stat-num {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #FF9D08;
    margin: 0 0 6px
}

.rt__cluster-stat-label {
    font-size: 16px;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0
}

.rt__cluster-main {
    display: flex;
    flex-direction: column
}

.rt__cluster-h {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: #2a2a2a;
    margin: 0 0 28px;
    font-weight: 700
}

.rt__cluster-p {
    font-size: 19px;
    line-height: 1.75;
    color: #3d3d3d;
    margin: 0 0 14px
}

.rt__cluster-img-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 2px;
    margin-top: 28px;
    position: relative
}

.rt__cluster-img-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(263deg, #ff9d0833, #361e7f33);
    z-index: 1;
    pointer-events: none
}

.rt__cluster-img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.rt__seq {
    padding: 96px;
    background: linear-gradient(263deg, #361e7f0a, #ff9d0808), radial-gradient(circle at 30% 70%, #fff9e480, transparent 60%);
    position: relative
}

.rt__seq::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 96px;
    width: 4px;
    height: 60%;
    transform: translateY(-50%);
    background: linear-gradient(180deg, #FF9D08, #361E7F)
}

.rt__seq-h {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: #2a2a2a;
    margin: 0 0 56px;
    font-weight: 700
}

.rt__seq-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px
}

.rt__seq-item {
    background: #fff;
    padding: 28px;
    border-radius: 2px;
    border: 3px solid transparent;
    transition: border-color .55s ease, transform .55s ease;
    position: relative;
    overflow: hidden
}

.rt__seq-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(263deg, #FF9D08, #361E7F);
    transition: left .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.rt__seq-item:hover::before {
    left: 0
}

.rt__seq-item:hover {
    border-color: #FF9D08;
    transform: scale(1.04)
}

.rt__seq-num {
    font-size: 58px;
    line-height: 1.2;
    font-weight: 700;
    color: #361E7F;
    margin: 0 0 14px;
    opacity: .3
}

.rt__seq-title {
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: #2a2a2a;
    margin: 0 0 14px;
    font-weight: 700
}

.rt__seq-desc {
    font-size: 16px;
    line-height: 1.75;
    color: #3d3d3d;
    margin: 0
}

.rt__next {
    padding: 56px 96px 96px;
    background: #fff;
    text-align: center
}

.rt__next-h {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: #2a2a2a;
    margin: 0 0 28px;
    font-weight: 700
}

.rt__next-p {
    font-size: 19px;
    line-height: 1.75;
    color: #3d3d3d;
    margin: 0 0 28px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto
}

.rt__next-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap
}

.rt__next-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 19px;
    line-height: 1.5;
    color: #2a2a2a;
    background: #fff;
    border: 3px solid #FF9D08;
    border-radius: 2px;
    text-decoration: none;
    transition: background .6s ease, color .6s ease;
    font-weight: 700
}

.rt__next-btn:hover {
    background: #FF9D08;
    color: #fff
}

.rt__next-btn.alt {
    border-color: #361E7F
}

.rt__next-btn.alt:hover {
    background: #361E7F;
    color: #fff
}

.rt__divider {
    height: 4px;
    background: linear-gradient(263deg, #FF9D08, #361E7F);
    margin: 0;
    position: relative
}

.rt__divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background: #fff;
    border: 4px solid #361E7F;
    border-radius: 50%
}

@media (max-width: 1024px) {
    .rt__splash {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: 56px
    }

    .rt__splash-txt {
        padding: 56px 56px 28px
    }

    .rt__splash-h {
        font-size: 58px
    }

    .rt__depth {
        padding: 56px
    }

    .rt__depth-inner {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .rt__depth-txt {
        padding-right: 0
    }

    .rt__feed {
        padding: 56px
    }

    .rt__posts {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .rt__themes {
        padding: 56px
    }

    .rt__themes-grid {
        grid-template-columns: 1fr
    }

    .rt__cluster {
        padding: 56px
    }

    .rt__cluster-layout {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .rt__seq {
        padding: 56px
    }

    .rt__seq::before {
        left: 56px
    }

    .rt__seq-list {
        grid-template-columns: 1fr
    }

    .rt__next {
        padding: 56px
    }
}

@media (max-width: 768px) {
    .rt__splash-txt {
        padding: 28px 28px 14px
    }

    .rt__splash-h {
        font-size: 42px
    }

    .rt__depth {
        padding: 28px
    }

    .rt__depth-h {
        font-size: 30px
    }

    .rt__depth-vis {
        grid-template-columns: 1fr
    }

    .rt__feed {
        padding: 28px
    }

    .rt__feed-h {
        font-size: 30px;
        margin-bottom: 28px
    }

    .rt__themes {
        padding: 28px
    }

    .rt__themes-h {
        font-size: 30px;
        margin-bottom: 28px
    }

    .rt__cluster {
        padding: 28px
    }

    .rt__cluster-h {
        font-size: 30px
    }

    .rt__seq {
        padding: 28px
    }

    .rt__seq::before {
        left: 28px
    }

    .rt__seq-h {
        font-size: 30px;
        margin-bottom: 28px
    }

    .rt__next {
        padding: 28px
    }

    .rt__next-h {
        font-size: 30px
    }

    .rt__next-links {
        flex-direction: column;
        align-items: stretch
    }
}

@media (max-width: 480px) {
    .rt__splash-h {
        font-size: 30px
    }

    .rt__depth-h {
        font-size: 23px
    }

    .rt__feed-h {
        font-size: 23px
    }

    .rt__post-h {
        font-size: 23px
    }

    .rt__themes-h {
        font-size: 23px
    }

    .rt__cluster-h {
        font-size: 23px
    }

    .rt__seq-h {
        font-size: 23px
    }

    .rt__next-h {
        font-size: 23px
    }
}

.jnl {
    background: #fff;
    color: #2a2a2a;
    max-width: 1600px;
    margin: 0 auto
}

.jnl__intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    padding: 96px 56px;
    position: relative;
    overflow: hidden
}

.jnl__intro-img-zone {
    position: relative;
    padding: 96px 28px;
    background: linear-gradient(263deg, #ff9d0808 0%, #361e7f05 100%), radial-gradient(circle at 30% 40%, #fff9e466 0%, transparent 70%);
    border-radius: 2px
}

.jnl__intro-txt-zone {
    padding: 56px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.jnl__intro-img-wrap {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 46px;
    overflow: hidden;
    box-shadow: 1px 9px 52px 0 #ff9d081c
}

.jnl__intro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
    transition: filter .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.jnl__intro-img-wrap:hover .jnl__intro-img {
    filter: blur(0)
}

.jnl__intro-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff9d0826 0%, #361e7f33 100%);
    pointer-events: none
}

.jnl__intro-label {
    font-size: 16px;
    line-height: 1.5;
    color: #361E7F;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin: 0 0 14px;
    font-weight: 600
}

.jnl__intro-heading {
    font-size: 58px;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin: 0 0 28px;
    font-weight: 700;
    color: #1a1a1a
}

.jnl__intro-desc {
    font-size: 19px;
    line-height: 1.75;
    margin: 0;
    color: #4a4a4a
}

.jnl__intro-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    fill: #fff
}

.jnl__studies {
    background: linear-gradient(263deg, #FFF9E4 0%, #fff9e44d 100%), radial-gradient(circle at 70% 30%, #ff9d0814 0%, transparent 60%);
    padding: 96px 56px;
    position: relative
}

.jnl__studies-inner {
    max-width: 1400px;
    margin: 0 auto
}

.jnl__studies-heading {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin: 0 0 56px;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a
}

.jnl__studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.jnl__study-card {
    background: #fff;
    border-radius: 2px;
    padding: 28px;
    border: 3px solid #FF9D08;
    transition: transform .6s ease, box-shadow .6s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-40px);
    animation: jnl-drop .8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

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

.jnl__study-card:nth-child(2) {
    animation-delay: .25s
}

.jnl__study-card:nth-child(3) {
    animation-delay: .4s
}

@keyframes jnl-drop {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.jnl__study-card:hover {
    transform: translateY(-6px);
    box-shadow: 1px 9px 52px 0 #361e7f1c
}

.jnl__study-num {
    font-size: 72px;
    line-height: 1;
    font-weight: 700;
    color: #ff9d0826;
    margin: 0 0 14px;
    letter-spacing: -.03em
}

.jnl__study-title {
    font-size: 23px;
    line-height: 1.5;
    font-weight: 700;
    margin: 0 0 14px;
    color: #1a1a1a
}

.jnl__study-author {
    font-size: 16px;
    line-height: 1.5;
    color: #361E7F;
    margin: 0 0 14px;
    font-style: italic
}

.jnl__study-desc {
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 14px;
    color: #4a4a4a
}

.jnl__study-year {
    font-size: 16px;
    line-height: 1.5;
    color: #6a6a6a;
    font-weight: 600
}

.jnl__approach {
    padding: 96px 56px;
    background: #fff;
    position: relative
}

.jnl__approach-container {
    max-width: 1400px;
    margin: 0 auto
}

.jnl__approach-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 56px;
    align-items: start
}

.jnl__approach-sidebar {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 28px;
    background: linear-gradient(263deg, #ff9d080d 0%, #361e7f08 100%), radial-gradient(circle at 50% 50%, #fff9e499 0%, transparent 70%);
    border-radius: 46px;
    border: 2px dashed #FF9D08
}

.jnl__approach-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center
}

.jnl__approach-icon-shape {
    width: 56px;
    height: 56px;
    border-radius: 46px;
    background: #FF9D08;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .5s ease
}

.jnl__approach-icon-item:hover .jnl__approach-icon-shape {
    transform: rotate(180deg)
}

.jnl__approach-icon-svg {
    width: 28px;
    height: 28px;
    fill: #fff
}

.jnl__approach-icon-label {
    font-size: 16px;
    line-height: 1.5;
    color: #361E7F;
    font-weight: 600
}

.jnl__approach-content {
    display: flex;
    flex-direction: column;
    gap: 56px
}

.jnl__approach-heading {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin: 0 0 28px;
    font-weight: 700;
    color: #1a1a1a
}

.jnl__approach-text {
    font-size: 19px;
    line-height: 1.75;
    margin: 0 0 28px;
    color: #4a4a4a
}

.jnl__approach-highlight {
    background: linear-gradient(90deg, #ff9d0833 0%, #fff9e466 100%);
    padding: 6px 14px;
    border-radius: 2px;
    font-weight: 600;
    color: #361E7F
}

.jnl__approach-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px
}

.jnl__approach-block {
    padding: 28px;
    background: #fff;
    border-radius: 2px;
    box-shadow: 1px 7px 14px 0 #361e7f1c;
    transition: box-shadow .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.jnl__approach-block:hover {
    box-shadow: 1px 9px 52px 0 #ff9d081c
}

.jnl__approach-block-title {
    font-size: 23px;
    line-height: 1.5;
    font-weight: 700;
    margin: 0 0 14px;
    color: #1a1a1a
}

.jnl__approach-block-desc {
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
    color: #4a4a4a
}

.jnl__approach-link {
    color: #361E7F;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .6s ease
}

.jnl__approach-link:hover {
    gap: 14px
}

.jnl__approach-link::after {
    content: '';
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23361E7F' d='M8 0l8 8-8 8-1.5-1.5L12 9H0V7h12L6.5 1.5z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    transition: transform .6s ease
}

.jnl__approach-link:hover::after {
    transform: translateX(6px)
}

@media (max-width: 1024px) {
    .jnl__intro {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 56px 28px
    }

    .jnl__intro-img-zone {
        padding: 56px 14px
    }

    .jnl__intro-txt-zone {
        padding: 28px 14px
    }

    .jnl__intro-heading {
        font-size: 42px
    }

    .jnl__studies {
        padding: 56px 28px
    }

    .jnl__studies-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .jnl__studies-heading {
        font-size: 30px;
        margin: 0 0 28px
    }

    .jnl__approach {
        padding: 56px 28px
    }

    .jnl__approach-layout {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .jnl__approach-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center
    }

    .jnl__approach-heading {
        font-size: 30px
    }

    .jnl__approach-blocks {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {
    .jnl__intro {
        padding: 28px 14px
    }

    .jnl__intro-img-zone {
        padding: 28px 14px
    }

    .jnl__intro-txt-zone {
        padding: 14px
    }

    .jnl__intro-heading {
        font-size: 30px
    }

    .jnl__intro-desc {
        font-size: 16px
    }

    .jnl__intro-img-wrap {
        height: 320px
    }

    .jnl__studies {
        padding: 28px 14px
    }

    .jnl__studies-heading {
        font-size: 23px
    }

    .jnl__study-card {
        padding: 14px
    }

    .jnl__study-num {
        font-size: 42px
    }

    .jnl__study-title {
        font-size: 19px
    }

    .jnl__approach {
        padding: 28px 14px
    }

    .jnl__approach-heading {
        font-size: 23px
    }

    .jnl__approach-text {
        font-size: 16px
    }

    .jnl__approach-block {
        padding: 14px
    }

    .jnl__approach-block-title {
        font-size: 19px
    }
}

@media (max-width: 480px) {
    .jnl__intro-heading {
        font-size: 23px
    }

    .jnl__intro-label {
        font-size: 16px
    }

    .jnl__studies-heading {
        font-size: 19px
    }

    .jnl__study-num {
        font-size: 30px
    }

    .jnl__approach-heading {
        font-size: 19px
    }

    .jnl__approach-sidebar {
        padding: 14px
    }

    .jnl__approach-icon-shape {
        width: 42px;
        height: 42px
    }

    .jnl__approach-icon-svg {
        width: 19px;
        height: 19px
    }
}

.success {
    background: linear-gradient(263deg, #FFF9E4 0%, #fff 100%), radial-gradient(circle at 30% 70%, #ff9d080f 0%, transparent 60%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 28px
}

.success__wrap {
    max-width: 720px;
    width: 100%;
    text-align: center
}

.success__icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 56px;
    position: relative
}

.success__circle {
    width: 140px;
    height: 140px;
    border: 6px solid #FF9D08;
    border-radius: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 1px 9px 52px 0 #ff9d081c;
    animation: successPulse .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transform: scale(0)
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0
    }

    50% {
        transform: scale(1.08)
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

.success__check {
    width: 60px;
    height: 60px;
    position: relative
}

.success__check::before,
.success__check::after {
    content: '';
    position: absolute;
    background: #361E7F;
    border-radius: 2px
}

.success__check::before {
    width: 8px;
    height: 28px;
    bottom: 16px;
    left: 14px;
    transform: rotate(-45deg);
    animation: checkShort .5s .5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transform-origin: bottom;
    opacity: 0
}

.success__check::after {
    width: 8px;
    height: 48px;
    bottom: 6px;
    right: 10px;
    transform: rotate(45deg);
    animation: checkLong .6s .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transform-origin: bottom;
    opacity: 0
}

@keyframes checkShort {
    0% {
        height: 0;
        opacity: 0
    }

    100% {
        height: 28px;
        opacity: 1
    }
}

@keyframes checkLong {
    0% {
        height: 0;
        opacity: 0
    }

    100% {
        height: 48px;
        opacity: 1
    }
}

.success__title {
    font-size: 58px;
    line-height: 1.2;
    color: #361E7F;
    margin: 0 0 28px;
    font-weight: 700;
    letter-spacing: -.02em
}

.success__text {
    font-size: 19px;
    line-height: 1.75;
    color: #2a2a2a;
    margin: 0 0 56px
}

.success__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

.success__btn {
    font-size: 16px;
    padding: 14px 28px;
    border: 3px solid #FF9D08;
    background: #fff;
    color: #361E7F;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    transition: background .6s ease, color .6s ease, border-color .6s ease;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    cursor: pointer
}

.success__btn:hover {
    background: #FF9D08;
    color: #fff;
    border-color: #FF9D08
}

.success__btn--alt {
    border-color: #361E7F;
    background: #361E7F;
    color: #fff
}

.success__btn--alt:hover {
    background: #fff;
    color: #361E7F;
    border-color: #361E7F
}

.success__meta {
    margin-top: 96px;
    padding-top: 28px;
    border-top: 2px solid #ff9d0833
}

.success__info {
    font-size: 16px;
    line-height: 1.5;
    color: #5a5a5a;
    margin: 0
}

.success__link {
    color: #FF9D08;
    text-decoration: none;
    font-weight: 600;
    transition: color .5s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.success__link:hover {
    color: #361E7F
}

.success__link::after {
    content: '→';
    transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.success__link:hover::after {
    transform: translateX(6px)
}

@media (max-width: 768px) {
    .success {
        padding: 28px 14px
    }

    .success__icon {
        width: 100px;
        height: 100px;
        margin-bottom: 28px
    }

    .success__circle {
        width: 100px;
        height: 100px
    }

    .success__check {
        width: 44px;
        height: 44px
    }

    .success__check::before {
        height: 20px;
        bottom: 12px;
        left: 10px
    }

    .success__check::after {
        height: 34px;
        bottom: 5px;
        right: 8px
    }

    @keyframes checkShort {
        0% {
            height: 0;
            opacity: 0
        }

        100% {
            height: 20px;
            opacity: 1
        }
    }

    @keyframes checkLong {
        0% {
            height: 0;
            opacity: 0
        }

        100% {
            height: 34px;
            opacity: 1
        }
    }

    .success__title {
        font-size: 42px;
        margin-bottom: 14px
    }

    .success__text {
        font-size: 16px;
        margin-bottom: 28px
    }

    .success__actions {
        flex-direction: column
    }

    .success__btn {
        width: 100%;
        justify-content: center
    }

    .success__meta {
        margin-top: 56px
    }
}

@media (max-width: 480px) {
    .success__title {
        font-size: 30px
    }
}