html {
    box-sizing: border-box
}

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

body {
    margin: 0;
    position: relative;
    min-height: 100vh
}

.pg__body {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #1b1b2e;
    background-color: #fff
}

.pg__body img {
    max-width: 100%
}

.pg__body :focus-visible {
    outline: 2px solid #B034DB;
    outline-offset: 3px
}

.pg__body a:focus-visible {
    outline-color: #B034DB
}

.pg__body button:focus-visible {
    outline-color: #F67D14
}

.pg__body input:focus-visible,
.pg__body textarea:focus-visible,
.pg__body select:focus-visible {
    outline-color: #14E2F3
}

.pg__body input::placeholder,
.pg__body textarea::placeholder {
    color: #8a8a9a
}

.strip__hold {
    background: linear-gradient(90deg, #B034DB 0%, #7b1fa2 100%);
    padding: 0
}

.strip__mount {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-height: 44px
}

.strip__link {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .04em;
    color: #f3e8ff;
    text-decoration: none;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    transition: color .45s ease-in-out;
    position: relative
}

.strip__link::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 8px;
    left: 16px;
    right: 16px;
    height: 1px;
    background: #14E2F3;
    transform: scaleX(0);
    transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: left
}

.strip__link:hover {
    color: #14E2F3
}

.strip__link:hover::after {
    transform: scaleX(1)
}

.strip__sep {
    width: 1px;
    height: 16px;
    background: #f3e8ff4d;
    display: inline-block
}

.brand__hold {
    background: #fff;
    box-shadow: 0 6px 28px 0 #b034db17;
    border-bottom: 2px solid #b034db1f
}

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

.brand__img-shell {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 4px 0 #b034db0d 0 0 0 2px #b034db2e;
    flex-shrink: 0;
    padding: 8px
}

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

.brand__wordmark {
    font-family: 'DM Sans', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    color: #1b1b2e;
    letter-spacing: -.01em;
    display: flex;
    flex-direction: column
}

.brand__wordmark-accent {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .06em;
    color: #B034DB;
    line-height: 1.2;
    margin-top: 2px
}

.nav__hold {
    background: linear-gradient(135deg, #f8f0ff 0%, #e8feff 100%);
    border-bottom: 1px solid #14e2f333
}

.nav__mount {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 52px
}

.nav__item {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1b1b2e;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    transition: background-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative
}

.nav__item::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 6px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: #F67D14;
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform .45s ease-in-out;
    transform-origin: left
}

.nav__item:hover {
    background-color: #b034db12;
    color: #7b1fa2
}

.nav__item:hover::before {
    transform: scaleX(1)
}

.nav__item--active {
    color: #B034DB;
    background-color: #b034db1a
}

.nav__item--active::before {
    transform: scaleX(1)
}

@media (max-width: 768px) {
    .strip__mount {
        justify-content: flex-start;
        flex-wrap: wrap;
        padding: 0 16px
    }

    .brand__mount {
        padding: 16px
    }

    .nav__mount {
        padding: 0 16px;
        gap: 0
    }

    .nav__item {
        font-size: 14px;
        padding: 8px 12px
    }
}

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

    .strip__link {
        font-size: 14px;
        padding: 8px
    }

    .nav__item {
        padding: 8px
    }
}

.foot__hold {
    background: linear-gradient(160deg, #1b1b2e 0%, #2a1040 60%, #0d2a2e 100%);
    color: #e8e0f0;
    margin-top: 0
}

.foot__mount {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px 40px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start
}

.foot__left {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.foot__logo-shell {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff14;
    border-radius: 12px;
    box-shadow: 0 2px 4px 0 #14e2f30d 0 0 0 2px #14e2f338;
    padding: 8px;
    flex-shrink: 0
}

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

.foot__brand-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2
}

.foot__since {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #e8e0f099;
    letter-spacing: .05em;
    line-height: 1.7
}

.foot__hours {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #14E2F3;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.7
}

.foot__hours-detail {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #e8e0f0bf;
    line-height: 1.7
}

.foot__right {
    flex: 1;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: flex-end
}

.foot__col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 160px
}

.foot__col-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    color: #F67D14;
    line-height: 1.2;
    margin-bottom: 8px
}

.foot__link {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #e8e0f0d9;
    text-decoration: none;
    line-height: 1.7;
    transition: color .55s ease-in-out;
    display: inline-block
}

.foot__link:hover {
    color: #14E2F3
}

.foot__contact-item {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #e8e0f0bf;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 8px
}

.foot__contact-label {
    font-weight: 700;
    color: #e8e0f08c;
    font-size: 14px;
    letter-spacing: .04em;
    flex-shrink: 0
}

.foot__divider {
    max-width: 1100px;
    margin: 0 auto;
    border: none;
    border-top: 1px solid #b034db2e;
    margin-left: 24px;
    margin-right: 24px
}

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

.foot__copy {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #e8e0f073;
    line-height: 1.7
}

.foot__policy-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.foot__policy-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #e8e0f080;
    text-decoration: none;
    letter-spacing: .03em;
    transition: color .5s ease-in-out
}

.foot__policy-link:hover {
    color: #B034DB
}

@media (max-width: 768px) {
    .foot__mount {
        padding: 40px 16px 24px;
        flex-direction: column;
        gap: 40px
    }

    .foot__left {
        flex: 0 0 auto
    }

    .foot__right {
        justify-content: flex-start
    }

    .foot__bottom {
        padding: 24px 16px 40px;
        flex-direction: column;
        align-items: flex-start
    }
}

@media (max-width: 360px) {
    .foot__col {
        min-width: 100%
    }

    .foot__right {
        gap: 24px
    }
}

.legal-block {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
    color: #2a2236
}

.legal-block h1 {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -.5px;
    margin-bottom: 40px;
    color: #1e1530
}

.legal-block h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-top: 80px;
    margin-bottom: 24px;
    color: #1e1530;
    padding-bottom: 16px;
    border-bottom: 2px solid #b034db26
}

.legal-block h3 {
    font-size: 26px;
    line-height: 1.2;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2a1f40
}

.legal-block h4 {
    font-size: 20px;
    line-height: 1.2;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2a1f40
}

.legal-block h5 {
    font-size: 17px;
    line-height: 1.7;
    margin-top: 24px;
    margin-bottom: 8px;
    color: #2a1f40;
    letter-spacing: .04em;
    text-transform: uppercase
}

.legal-block h6 {
    font-size: 15px;
    line-height: 1.7;
    margin-top: 24px;
    margin-bottom: 8px;
    color: #3d2d5a;
    letter-spacing: .06em;
    text-transform: uppercase
}

.legal-block p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #2a2236
}

.legal-block a {
    color: #8a1fb5;
    text-decoration: underline;
    text-decoration-color: #b034db59;
    text-underline-offset: 3px;
    transition: color .5s ease-in-out, text-decoration-color .45s ease-in-out
}

.legal-block a:hover {
    color: #B034DB;
    text-decoration-color: #b034dbcc
}

.legal-block a:visited {
    color: #7a1a9e
}

.legal-block hr {
    border: none;
    border-top: 1px solid #b034db1f;
    margin: 80px 0
}

.legal-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-size: 15px;
    line-height: 1.7;
    box-shadow: 0 2px 4px 0 #b034db0d 0 6px 28px 0 #b034db17;
    border-radius: 12px;
    overflow: hidden
}

.legal-block thead {
    background: linear-gradient(135deg, #b034db1a 0%, #14e2f314 100%)
}

.legal-block thead th {
    font-size: 14px;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #1e1530;
    padding: 16px 24px;
    text-align: left;
    font-weight: 700
}

.legal-block tbody tr {
    border-top: 1px solid #b034db14;
    transition: background-color .5s ease-in-out
}

.legal-block tbody tr:hover {
    background-color: #b034db0a
}

.legal-block td {
    padding: 16px 24px;
    color: #2a2236;
    vertical-align: top
}

.legal-block th {
    padding: 16px 24px
}

.legal-block div {
    font-size: 17px;
    line-height: 1.7
}

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

    .legal-block h1 {
        font-size: 36px
    }

    .legal-block h2 {
        font-size: 26px;
        margin-top: 40px
    }

    .legal-block h3 {
        font-size: 20px
    }

    .legal-block h4 {
        font-size: 17px
    }

    .legal-block table {
        display: block;
        overflow-x: auto;
        border-radius: 3px
    }

    .legal-block thead th,
    .legal-block td {
        padding: 16px;
        white-space: nowrap
    }

    .legal-block hr {
        margin: 40px 0
    }
}

@media (max-width: 360px) {
    .legal-block {
        padding: 24px 16px
    }

    .legal-block h1 {
        font-size: 26px
    }

    .legal-block h2 {
        font-size: 20px
    }

    .legal-block h3,
    .legal-block h4 {
        font-size: 17px
    }

    .legal-block p,
    .legal-block div {
        font-size: 15px
    }
}

.gd {
    background: #fff;
    overflow-x: hidden
}

.gd .rd-bar {
    width: 100%;
    background: linear-gradient(135deg, #b034db12 0%, #14e2f30d 100%);
    border-bottom: 1px solid #b034db1f;
    padding: 16px 0
}

.gd .rd-bar__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap
}

.gd .rd-tag {
    display: inline-block;
    background: #b034db1a;
    color: #7a1fa8;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 2px
}

.gd .rd-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin-left: auto
}

.gd .rd-meta__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4a3560;
    letter-spacing: .03em
}

.gd .rd-meta__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.gd .rd-meta__sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #b034db4d;
    display: inline-block
}

.gd .art-head {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

.gd .art-head__text {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.gd .art-head__sub {
    font-size: 15px;
    color: #5c3d7a;
    line-height: 1.7;
    letter-spacing: .02em
}

.gd .art-head__h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1e0a30;
    font-weight: 800;
    letter-spacing: -.01em;
    margin: 0
}

.gd .art-head__h1 mark {
    background: linear-gradient(135deg, #b034db2e 0%, #14e2f31f 100%);
    color: inherit;
    padding: 0 4px;
    border-radius: 2px;
    text-decoration: underline;
    text-decoration-color: #B034DB;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px
}

.gd .art-head__author {
    font-size: 14px;
    color: #4a3560;
    letter-spacing: .04em;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.gd .art-head__author strong {
    color: #1e0a30
}

.gd .art-head__img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 48px 0 #b034db24
}

.gd .art-head__img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    filter: blur(0px);
    mask-image: radial-gradient(circle at 50% 50%, black 60%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 60%, transparent 100%);
    transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.gd .art-head__img-wrap:hover .art-head__img {
    transform: scale(1.03)
}

.gd .art-head__corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(225deg, #B034DB 0%, transparent 70%);
    border-radius: 0 12px 0 0
}

.gd .divider-thick {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px
}

.gd .divider-thick__line {
    height: 4px;
    background: linear-gradient(90deg, #B034DB 0%, #14E2F3 60%, transparent 100%);
    border-radius: 2px
}

.gd .art-body {
    position: relative;
    padding: 0 0 80px
}

.gd .art-body__bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 340px;
    height: 340px;
    pointer-events: none;
    opacity: .04;
    z-index: 0
}

.gd .art-body__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 40px 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1
}

.gd .art-body__col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.gd .art-body__col p {
    font-size: 17px;
    line-height: 1.7;
    color: #2a1840;
    margin: 0
}

.gd .art-body__col h2 {
    font-size: 26px;
    line-height: 1.2;
    color: #1e0a30;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 0
}

.gd .art-body__col h3 {
    font-size: 20px;
    line-height: 1.2;
    color: #1e0a30;
    font-weight: 600;
    letter-spacing: .04em;
    margin: 0
}

.gd .art-body__col blockquote {
    border-radius: 3px;
    background: #b034db0f;
    padding: 24px;
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #3a1f5a;
    font-style: italic;
    box-shadow: 0 2px 4px 0 #b034db0d
}

.gd .art-body__col cite {
    font-size: 14px;
    color: #7a5a99;
    font-style: normal;
    letter-spacing: .04em;
    display: block;
    margin-top: 8px
}

.gd .art-body__col ul {
    margin: 0;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.gd .art-body__col li {
    font-size: 17px;
    line-height: 1.7;
    color: #2a1840
}

.gd .art-body__col table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 6px 28px 0 #b034db17
}

.gd .art-body__col tr:first-child td {
    background: #b034db1f;
    font-weight: 700;
    color: #1e0a30;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: 14px
}

.gd .art-body__col td {
    padding: 16px;
    border-bottom: 1px solid #b034db14;
    color: #2a1840;
    line-height: 1.7
}

.gd .art-body__col tr:last-child td {
    border-bottom: none
}

.gd .art-body__col tr:nth-child(even) td {
    background: #14e2f30a
}

.gd .aside-panel {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.gd .aside-card {
    border-radius: 12px;
    padding: 24px;
    background: linear-gradient(135deg, #b034db12 0%, #14e2f30d 100%);
    box-shadow: 0 6px 28px 0 #b034db17;
    position: relative
}

.gd .aside-card__corner {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #F67D14 0%, transparent 70%);
    border-radius: 12px 0 0 0
}

.gd .aside-card__label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #7a1fa8;
    margin-bottom: 16px
}

.gd .aside-card__stat {
    font-size: 48px;
    font-weight: 800;
    color: #B034DB;
    line-height: 1.2;
    letter-spacing: -.02em
}

.gd .aside-card__stat-label {
    font-size: 15px;
    color: #4a3560;
    line-height: 1.7;
    margin-top: 8px
}

.gd .aside-card--accent {
    background: linear-gradient(135deg, #f67d1414 0%, #b034db0f 100%)
}

.gd .aside-card__cta {
    display: inline-block;
    margin-top: 16px;
    padding: 16px 24px;
    background: #B034DB;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 3px;
    text-decoration: none;
    letter-spacing: .03em;
    transition: background .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 28px 0 #b034db17;
    width: 100%;
    text-align: center;
    box-sizing: border-box
}

.gd .aside-card__cta:hover {
    background: #9020c0;
    box-shadow: 0 12px 48px 0 #b034db24
}

.gd .aside-card__cta:focus {
    outline: 2px solid #B034DB;
    outline-offset: 2px
}

.gd .like-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px 0 0
}

.gd .like-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: none;
    border: 2px solid #b034db40;
    border-radius: 3px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 15px;
    color: #4a3560;
    transition: border-color .45s ease-in-out, background .45s ease-in-out, color .45s ease-in-out
}

.gd .like-btn:hover {
    border-color: #B034DB;
    background: #b034db14;
    color: #7a1fa8
}

.gd .like-btn:focus {
    outline: 2px solid #B034DB;
    outline-offset: 2px
}

.gd .like-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.gd .like-count {
    font-size: 14px;
    color: #7a5a99;
    letter-spacing: .04em
}

.gd .prog-strip {
    background: linear-gradient(90deg, #b034db0f 0%, #14e2f314 100%);
    border-top: 1px solid #b034db1a;
    position: relative;
    overflow: hidden
}

.gd .prog-strip__edge {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 6px;
    background: linear-gradient(180deg, #14E2F3 0%, #B034DB 100%)
}

.gd .prog-strip__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start
}

.gd .prog-strip__head {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 16px
}

.gd .prog-strip__h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e0a30;
    text-transform: uppercase;
    letter-spacing: .07em;
    line-height: 1.2;
    margin: 0 0 16px
}

.gd .prog-strip__sub {
    font-size: 17px;
    color: #4a3560;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto
}

.gd .prog-card {
    border-radius: 12px;
    background: #fff;
    padding: 24px;
    box-shadow: 0 6px 28px 0 #b034db17;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.gd .prog-card:hover {
    box-shadow: 0 12px 48px 0 #b034db24;
    transform: translateY(-4px)
}

.gd .prog-card__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0
}

.gd .prog-card__h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e0a30;
    letter-spacing: .03em;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase
}

.gd .prog-card__text {
    font-size: 15px;
    color: #4a3560;
    line-height: 1.7;
    margin: 0
}

.gd .prog-card__link {
    font-size: 14px;
    font-weight: 700;
    color: #B034DB;
    text-decoration: none;
    letter-spacing: .04em;
    transition: text-shadow .5s ease-in-out;
    align-self: flex-start
}

.gd .prog-card__link:hover {
    text-shadow: 0 2px 8px #b034db59
}

.gd .prog-card__link:focus {
    outline: 2px solid #B034DB;
    outline-offset: 2px
}

.gd .prog-strip__cta-row {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 16px
}

.gd .prog-strip__cta {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid #B034DB;
    color: #B034DB;
    font-size: 17px;
    font-weight: 700;
    border-radius: 3px;
    text-decoration: none;
    letter-spacing: .04em;
    transition: background .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.gd .prog-strip__cta:hover {
    background: #B034DB;
    color: #fff;
    box-shadow: 0 12px 48px 0 #b034db24
}

.gd .prog-strip__cta:focus {
    outline: 2px solid #B034DB;
    outline-offset: 2px
}

.gd .reveal-el {
    opacity: 0;
    transform: scale(0.97);
    animation: gd-reveal .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

.gd .reveal-el--d1 {
    animation-delay: .1s
}

.gd .reveal-el--d2 {
    animation-delay: .2s
}

.gd .reveal-el--d3 {
    animation-delay: .3s
}

.gd .reveal-el--d4 {
    animation-delay: .4s
}

@keyframes gd-reveal {
    to {
        opacity: 1;
        transform: scale(1)
    }
}

@media (max-width: 1024px) {
    .gd .art-head {
        grid-template-columns: 1fr;
        padding: 40px 24px 24px
    }

    .gd .art-head__h1 {
        font-size: 36px
    }

    .gd .art-body__inner {
        grid-template-columns: 1fr;
        padding: 24px 24px 0
    }

    .gd .prog-strip__inner {
        grid-template-columns: 1fr;
        padding: 40px 24px
    }

    .gd .prog-strip__head {
        grid-column: 1
    }

    .gd .prog-strip__cta-row {
        grid-column: 1
    }

    .gd .rd-bar__inner {
        padding: 0 24px
    }

    .gd .divider-thick {
        padding: 0 24px
    }
}

@media (max-width: 768px) {
    .gd .art-head__h1 {
        font-size: 26px
    }

    .gd .art-head__img {
        height: 240px
    }

    .gd .rd-meta {
        margin-left: 0;
        flex-wrap: wrap;
        gap: 16px
    }

    .gd .rd-bar__inner {
        gap: 16px
    }

    .gd .art-head {
        gap: 24px
    }

    .gd .aside-card__stat {
        font-size: 36px
    }

    .gd .prog-strip__h2 {
        font-size: 26px
    }
}

@media (max-width: 360px) {
    .gd .art-head {
        padding: 24px 16px 16px
    }

    .gd .art-body__inner {
        padding: 16px 16px 0
    }

    .gd .rd-bar__inner {
        padding: 0 16px
    }

    .gd .divider-thick {
        padding: 0 16px
    }

    .gd .prog-strip__inner {
        padding: 24px 16px
    }

    .gd .art-head__h1 {
        font-size: 20px
    }
}

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

.crs .rg {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px
}

.crs .pg-band {
    background: #fff;
    position: relative;
    padding: 80px 0 0
}

.crs .pg-band__img-wrap {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%)
}

.crs .pg-band__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.crs .pg-band__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(137deg, #b034dbb8 0%, transparent 65%)
}

.crs .pg-band__edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #B034DB
}

.crs .pg-band__text {
    padding: 40px 0 80px;
    max-width: 620px
}

.crs .pg-band__label {
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #B034DB;
    margin-bottom: 16px;
    display: block
}

.crs .pg-band__h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a0a2e;
    margin: 0 0 24px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .04em
}

.crs .pg-band__desc {
    font-size: 17px;
    line-height: 1.7;
    color: #3a2a4a;
    margin: 0
}

.crs .pg-band__mono {
    position: absolute;
    right: 0;
    bottom: -40px;
    font-size: 180px;
    font-weight: 700;
    color: #b034db0d;
    line-height: 1;
    letter-spacing: -.05em;
    pointer-events: none;
    user-select: none;
    z-index: 0
}

.crs .divider-sym {
    text-align: center;
    padding: 16px 0;
    color: #b034db40;
    font-size: 26px;
    font-weight: 300;
    letter-spacing: .3em
}

.crs .reason-band {
    background: linear-gradient(circle at 0% 0%, #14e2f31a 0%, #fff 60%);
    padding: 80px 0;
    position: relative
}

.crs .reason-band__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start
}

.crs .reason-band__aside {
    position: sticky;
    top: 40px
}

.crs .reason-band__kicker {
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #14E2F3;
    margin-bottom: 16px;
    display: block;
    filter: brightness(0.7)
}

.crs .reason-band__h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1a0a2e;
    margin: 0 0 24px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .05em
}

.crs .reason-band__body {
    font-size: 17px;
    line-height: 1.7;
    color: #3a2a4a;
    margin: 0 0 16px
}

.crs .reason-band__stat {
    margin-top: 40px;
    border-top: 2px solid #b034db26;
    padding-top: 24px
}

.crs .reason-band__num {
    font-size: 48px;
    font-weight: 700;
    color: #B034DB;
    line-height: 1.2
}

.crs .reason-band__numlabel {
    font-size: 14px;
    color: #3a2a4a;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 8px;
    display: block
}

.crs .reason-band__items {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.crs .rsn-card {
    background: #fff;
    border: 1px solid #b034db1f;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 4px 0 #b034db0d;
    transition: border-color .55s ease-in-out, box-shadow .55s ease-in-out
}

.crs .rsn-card:hover {
    border-color: #B034DB;
    border-style: dashed;
    box-shadow: 0 6px 28px 0 #b034db17
}

.crs .rsn-card__ico {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background: #b034db14;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px
}

.crs .rsn-card__ico svg {
    width: 20px;
    height: 20px
}

.crs .rsn-card__h {
    font-size: 17px;
    font-weight: 600;
    color: #1a0a2e;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.crs .rsn-card__p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a3a5a;
    margin: 0
}

.crs .divider-sym--b {
    text-align: center;
    padding: 16px 0
}

.crs .divider-sym--b::after {
    content: '';
    display: inline-block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #B034DB, #14E2F3);
    border-radius: 2px
}

.crs .role-band {
    background: #1a0a2e;
    padding: 80px 0;
    position: relative;
    overflow: hidden
}

.crs .role-band__petal {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    pointer-events: none;
    opacity: .08;
    animation: crs-rot 18s linear infinite
}

@keyframes crs-rot {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.crs .role-band__h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 16px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .06em;
    text-align: center
}

.crs .role-band__sub {
    font-size: 17px;
    line-height: 1.7;
    color: #ffffffa6;
    text-align: center;
    max-width: 560px;
    margin: 0 auto 40px
}

.crs .role-band__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0
}

.crs .role-item {
    background: #ffffff0a;
    border: 1px solid #ffffff14;
    border-radius: 12px;
    padding: 24px;
    transition: background .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.crs .role-item:hover {
    background: #b034db1f;
    border-color: #b034db66;
    border-style: dashed
}

.crs .role-item__tag {
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #14E2F3;
    filter: brightness(0.85);
    display: block;
    margin-bottom: 8px
}

.crs .role-item__name {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.2
}

.crs .role-item__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #fff9;
    margin: 0 0 16px
}

.crs .role-item__type {
    display: inline-block;
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #F67D14;
    border: 1px solid #f67d1459;
    border-radius: 3px;
    padding: 4px 8px
}

.crs .divider-sym--c {
    text-align: center;
    padding: 24px 0;
    position: relative
}

.crs .divider-sym--c span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #B034DB;
    border-radius: 0;
    transform: rotate(45deg)
}

.crs .apply-band {
    background: linear-gradient(circle at 0% 0%, #b034db0f 0%, #fff 55%);
    padding: 80px 0;
    position: relative
}

.crs .apply-band__wrap {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 80px;
    align-items: center
}

.crs .apply-band__img-wrap {
    position: relative;
    height: 380px;
    overflow: hidden;
    border-radius: 12px;
    clip-path: ellipse(90% 100% at 10% 50%);
    box-shadow: 0 12px 48px 0 #b034db24
}

.crs .apply-band__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.crs .apply-band__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(circle at 0% 0%, #14e2f34d 0%, transparent 60%)
}

.crs .apply-band__kicker {
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #F67D14;
    display: block;
    margin-bottom: 16px
}

.crs .apply-band__h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1a0a2e;
    margin: 0 0 24px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .05em
}

.crs .apply-band__body {
    font-size: 17px;
    line-height: 1.7;
    color: #3a2a4a;
    margin: 0 0 16px
}

.crs .apply-band__steps {
    margin: 40px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.crs .step-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px
}

.crs .step-row__num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 2px;
    background: #B034DB;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center
}

.crs .step-row__txt {
    font-size: 15px;
    line-height: 1.7;
    color: #3a2a4a;
    padding-top: 4px
}

.crs .apply-band__link {
    display: inline-block;
    margin-top: 40px;
    font-size: 15px;
    color: #B034DB;
    text-decoration: none;
    border-bottom: 1px solid #b034db4d;
    padding-bottom: 2px;
    letter-spacing: .04em;
    transition: text-shadow .5s ease-in-out, border-color .5s ease-in-out
}

.crs .apply-band__link:hover {
    text-shadow: 0 2px 8px #b034db40;
    border-color: #B034DB
}

@media (max-width: 1024px) {
    .crs .reason-band__grid {
        grid-template-columns: 1fr
    }

    .crs .reason-band__aside {
        position: static
    }

    .crs .role-band__list {
        grid-template-columns: 1fr 1fr
    }

    .crs .apply-band__wrap {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .crs .apply-band__img-wrap {
        height: 280px;
        clip-path: none
    }

    .crs .pg-band__mono {
        font-size: 120px
    }
}

@media (max-width: 768px) {
    .crs .pg-band__img-wrap {
        height: 280px
    }

    .crs .pg-band__h1 {
        font-size: 36px
    }

    .crs .reason-band__h2,
    .crs .role-band__h2,
    .crs .apply-band__h2 {
        font-size: 26px
    }

    .crs .role-band__list {
        grid-template-columns: 1fr
    }

    .crs .pg-band__mono {
        display: none
    }
}

@media (max-width: 360px) {
    .crs .pg-band__h1 {
        font-size: 26px
    }

    .crs .reason-band__num {
        font-size: 36px
    }
}

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

.dbt__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px
}

@keyframes flicker {

    0%,
    100% {
        opacity: 1
    }

    18% {
        opacity: .97
    }

    36% {
        opacity: .99
    }

    54% {
        opacity: .95
    }

    72% {
        opacity: .98
    }

    90% {
        opacity: .96
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(28px) scale(0.97)
    }

    60% {
        opacity: 1;
        transform: translateY(-6px) scale(1.01)
    }

    80% {
        transform: translateY(3px) scale(0.995)
    }

    100% {
        transform: translateY(0) scale(1)
    }
}

.dbt__pitch {
    position: relative;
    padding: 80px 0;
    background: #fff;
    animation: flicker 9s ease-in-out infinite
}

.dbt__pitch::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, #b034db21 0%, transparent 62%);
    pointer-events: none
}

.dbt__pitch::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    height: 80px;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
    z-index: 1;
    pointer-events: none
}

.dbt__pitch-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px
}

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

.dbt__pitch-visual {
    flex: 0 0 420px;
    position: relative
}

.dbt__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    pointer-events: none;
    z-index: 0
}

.dbt__blob--a {
    width: 260px;
    height: 260px;
    background: #b034db2e;
    top: -40px;
    left: -40px
}

.dbt__blob--b {
    width: 180px;
    height: 180px;
    background: #14e2f326;
    bottom: -24px;
    right: -16px
}

.dbt__pitch-img-wrap {
    position: relative;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 48px 0 #b034db24
}

.dbt__pitch-img-wrap img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    filter: saturate(0.7) contrast(1.05);
    transition: filter .55s ease-in-out
}

.dbt__pitch-img-wrap:hover img {
    filter: saturate(1) contrast(1.02)
}

.dbt__eyebrow {
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #B034DB;
    margin-bottom: 16px;
    display: block;
    line-height: 1.2
}

.dbt__h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1b0a2e;
    margin: 0 0 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em
}

.dbt__h1 mark {
    background: none;
    color: inherit;
    position: relative;
    display: inline-block
}

.dbt__h1 mark::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #B034DB 0%, #14E2F3 100%);
    border-radius: 2px
}

.dbt__lead {
    font-size: 17px;
    line-height: 1.7;
    color: #2d1a42;
    margin: 0 0 24px
}

.dbt__cta-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap
}

.dbt__btn {
    display: inline-block;
    padding: 16px 40px;
    background: #B034DB;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 3px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 28px 0 #b034db17;
    letter-spacing: .04em;
    animation: bounceIn .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation-delay: .2s
}

.dbt__btn:hover {
    background: #9620c4;
    box-shadow: 0 12px 48px 0 #b034db24;
    color: #fff;
    text-decoration: none
}

.dbt__btn:focus {
    outline: 3px solid #14E2F3;
    outline-offset: 3px
}

.dbt__btn--ghost {
    background: transparent;
    color: #B034DB;
    border: 2px solid #B034DB;
    padding: 14px 24px;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background .45s ease-in-out, color .45s ease-in-out;
    animation: bounceIn .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation-delay: .35s
}

.dbt__btn--ghost:hover {
    background: #b034db14;
    color: #9620c4;
    text-decoration: none
}

.dbt__btn--ghost:focus {
    outline: 3px solid #B034DB;
    outline-offset: 3px
}

.dbt__lines-deco {
    position: absolute;
    top: 24px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
    z-index: 0
}

.dbt__lines-deco span {
    display: block;
    height: 2px;
    background: #b034db2e;
    border-radius: 2px
}

.dbt__approach {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(170deg, #14e2f312 0%, #fff 100%);
    margin-top: 40px
}

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

.dbt__approach-aside {
    flex: 0 0 340px;
    position: relative
}

.dbt__approach-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 28px 0 #14e2f317;
    position: relative;
    top: 40px
}

.dbt__approach-img-wrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    filter: saturate(0.75);
    transition: filter .6s ease-in-out, transform .6s ease-in-out
}

.dbt__approach-img-wrap:hover img {
    filter: saturate(1);
    transform: scale(1.02)
}

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

.dbt__h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1b0a2e;
    margin: 0 0 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-align: center
}

.dbt__h2 mark {
    background: none;
    color: inherit;
    position: relative;
    display: inline-block
}

.dbt__h2 mark::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 100%;
    height: 3px;
    background: #F67D14;
    border-radius: 2px
}

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

.dbt__approach-item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start
}

.dbt__approach-icon {
    flex: 0 0 40px;
    height: 40px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b034db17;
    box-shadow: inset 0 1px 2px 0 #b034db12
}

.dbt__approach-icon svg {
    width: 20px;
    height: 20px
}

.dbt__approach-item-text {
    flex: 1 1 0
}

.dbt__item-heading {
    font-size: 15px;
    font-weight: 700;
    color: #1b0a2e;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: .06em;
    line-height: 1.2
}

.dbt__item-body {
    font-size: 15px;
    line-height: 1.7;
    color: #3a2050;
    margin: 0
}

.dbt__value {
    position: relative;
    padding: 80px 0;
    background: #1b0a2e
}

.dbt__value::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, #b034db38 0%, transparent 55%);
    pointer-events: none;
    animation: flicker 13s ease-in-out infinite
}

.dbt__value-top {
    text-align: center;
    margin-bottom: 40px
}

.dbt__h2--light {
    font-size: 36px;
    line-height: 1.2;
    color: #f0e8fa;
    margin: 0 0 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-align: center
}

.dbt__h2--light mark {
    background: none;
    color: #14E2F3;
    position: relative;
    display: inline-block
}

.dbt__h2--light mark::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 100%;
    height: 3px;
    background: #14E2F3;
    border-radius: 2px
}

.dbt__value-lead {
    font-size: 17px;
    line-height: 1.7;
    color: #c9b8e0;
    max-width: 600px;
    margin: 0 auto;
    text-align: center
}

.dbt__stats {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center
}

.dbt__stat {
    flex: 1 1 200px;
    background: #ffffff0d;
    border-radius: 12px;
    padding: 40px 24px;
    text-align: center;
    box-shadow: 0 6px 28px 0 #14e2f317;
    border: 1px solid #14e2f31f;
    transition: background .55s ease-in-out, box-shadow .55s ease-in-out
}

.dbt__stat:hover {
    background: #b034db1f;
    box-shadow: 0 12px 48px 0 #b034db24
}

.dbt__stat-num {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #14E2F3;
    display: block;
    letter-spacing: -.02em
}

.dbt__stat-label {
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #a98cc4;
    margin-top: 8px;
    display: block;
    line-height: 1.7
}

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

.dbt__reputation::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #B034DB 0%, #14E2F3 55%, #F67D14 100%)
}

.dbt__rep-top {
    text-align: center;
    margin-bottom: 40px
}

.dbt__rep-lead {
    font-size: 17px;
    line-height: 1.7;
    color: #3a2050;
    max-width: 560px;
    margin: 0 auto;
    text-align: center
}

.dbt__rep-grid {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap
}

.dbt__rep-card {
    flex: 1 1 220px;
    border-radius: 12px;
    padding: 40px 24px 24px;
    background: #b034db0a;
    box-shadow: 0 2px 4px 0 #b034db0d;
    transition: box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden
}

.dbt__rep-card:hover {
    box-shadow: 0 12px 48px 0 #b034db24;
    background: #b034db12
}

.dbt__rep-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 3px 3px 0 0
}

.dbt__rep-card-accent--a {
    background: #B034DB
}

.dbt__rep-card-accent--b {
    background: #14E2F3
}

.dbt__rep-card-accent--c {
    background: #F67D14
}

.dbt__rep-card-accent--d {
    background: #B034DB
}

.dbt__rep-card-ico {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center
}

.dbt__rep-card-ico svg {
    width: 36px;
    height: 36px
}

.dbt__rep-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #1b0a2e;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: .06em;
    line-height: 1.2
}

.dbt__rep-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #4a3060;
    margin: 0
}

.dbt__people {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(0deg, #f67d1412 0%, #fff 100%)
}

.dbt__people-lines {
    position: absolute;
    bottom: 24px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none
}

.dbt__people-lines span {
    display: block;
    height: 2px;
    background: #f67d1426;
    border-radius: 2px
}

.dbt__people-top {
    text-align: center;
    margin-bottom: 40px
}

.dbt__people-lead {
    font-size: 17px;
    line-height: 1.7;
    color: #3a2050;
    max-width: 540px;
    margin: 0 auto;
    text-align: center
}

.dbt__testimonials {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap
}

.dbt__tcard {
    flex: 1 1 300px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 28px 0 #b034db17;
    padding: 40px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow .6s ease-in-out, transform .6s ease-in-out
}

.dbt__tcard:hover {
    box-shadow: 0 12px 48px 0 #b034db24;
    transform: translateY(-4px)
}

.dbt__tcard-quote {
    font-size: 15px;
    line-height: 1.7;
    color: #2d1a42;
    margin: 0;
    flex: 1 1 auto
}

.dbt__tcard-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.dbt__tcard-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #b034db1f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px
}

.dbt__tcard-avatar svg {
    width: 26px;
    height: 26px
}

.dbt__tcard-name {
    font-size: 14px;
    font-weight: 700;
    color: #1b0a2e;
    letter-spacing: .06em;
    text-transform: uppercase;
    line-height: 1.2;
    display: block
}

.dbt__tcard-role {
    font-size: 14px;
    color: #7a5a9a;
    line-height: 1.7;
    display: block
}

.dbt__tcard-result {
    font-size: 14px;
    font-weight: 700;
    color: #B034DB;
    letter-spacing: .04em;
    border-top: 1px solid #b034db1a;
    padding-top: 16px;
    line-height: 1.7
}

.dbt__img-third {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin-bottom: 24px;
    box-shadow: 0 6px 28px 0 #b034db17;
    filter: saturate(0.8);
    transition: filter .55s ease-in-out
}

.dbt__img-third:hover {
    filter: saturate(1)
}

@media (max-width: 1024px) {
    .dbt__pitch-grid {
        flex-direction: column
    }

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

    .dbt__approach-inner {
        flex-direction: column
    }

    .dbt__approach-aside {
        flex: 0 0 auto;
        width: 100%
    }

    .dbt__approach-img-wrap {
        top: 0
    }

    .dbt__h1 {
        font-size: 36px
    }
}

@media (max-width: 768px) {
    .dbt__pitch {
        padding: 40px 0 80px
    }

    .dbt__approach,
    .dbt__value,
    .dbt__reputation,
    .dbt__people {
        padding: 40px 0
    }

    .dbt__h1 {
        font-size: 26px
    }

    .dbt__h2,
    .dbt__h2--light {
        font-size: 26px
    }

    .dbt__stat-num {
        font-size: 36px
    }

    .dbt__stats {
        flex-direction: column
    }

    .dbt__rep-grid {
        flex-direction: column
    }

    .dbt__testimonials {
        flex-direction: column
    }

    .dbt__cta-row {
        flex-direction: column;
        align-items: flex-start
    }
}

@media (max-width: 360px) {
    .dbt__inner {
        padding: 0 16px
    }

    .dbt__h1 {
        font-size: 20px
    }

    .dbt__h2,
    .dbt__h2--light {
        font-size: 20px
    }
}

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

.ctus__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px
}

.ctus__panel {
    padding: 80px 24px;
    position: relative
}

.ctus__panel--reach {
    background: #fff
}

.ctus__panel--form {
    background: linear-gradient(circle at 0% 0%, #b034db12, transparent 60%)
}

.ctus__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start
}

.ctus__aside {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.ctus__eyebrow {
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #B034DB;
    font-weight: 600;
    margin: 0 0 16px;
    line-height: 1.2
}

.ctus__h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    color: #1b1230;
    margin: 0 0 24px;
    letter-spacing: -.01em
}

.ctus__h1 em {
    font-style: normal;
    color: #B034DB
}

.ctus__lead {
    font-size: 17px;
    line-height: 1.7;
    color: #3d3552;
    margin: 0 0 16px
}

.ctus__img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 48px 0 #b034db24
}

.ctus__img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    opacity: .82;
    transition: opacity .55s ease-in-out
}

.ctus__img-wrap:hover .ctus__img {
    opacity: 1
}

.ctus__badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #B034DB;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 3px;
    line-height: 1.2;
    letter-spacing: .04em
}

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

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

.ctus__contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background: #b034db14;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ctus__contact-row:hover .ctus__contact-icon {
    background: #b034db2e
}

.ctus__contact-icon svg {
    width: 18px;
    height: 18px
}

.ctus__contact-text {
    display: flex;
    flex-direction: column;
    gap: 0
}

.ctus__contact-label {
    font-size: 14px;
    color: #8a7fa0;
    letter-spacing: .06em;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 4px
}

.ctus__contact-val {
    font-size: 15px;
    color: #1b1230;
    line-height: 1.7;
    margin: 0;
    text-decoration: none;
    transition: color .5s ease-in-out
}

.ctus__contact-val:hover {
    color: #B034DB;
    text-shadow: 0 2px 8px #b034db2e
}

.ctus__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px 0;
    max-width: 1100px;
    margin: 0 auto
}

.ctus__divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #b034db33, transparent)
}

.ctus__divider-tri {
    display: flex;
    align-items: center;
    gap: 8px
}

.ctus__tri {
    width: 0;
    height: 0
}

.ctus__tri--left {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 10px solid #14e2f380
}

.ctus__tri--right {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 10px solid #b034db80
}

.ctus__form-col {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.ctus__form-head {
    display: flex;
    flex-direction: column;
    gap: 0
}

.ctus__h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1b1230;
    margin: 0 0 16px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .04em
}

.ctus__sub {
    font-size: 15px;
    color: #3d3552;
    line-height: 1.7;
    margin: 0
}

.ctus__form {
    display: flex;
    flex-direction: column;
    gap: 24px
}

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

.ctus__label {
    font-size: 14px;
    font-weight: 600;
    color: #3d3552;
    letter-spacing: .05em;
    text-transform: uppercase;
    line-height: 1.2
}

.ctus__input {
    width: 100%;
    padding: 16px;
    border: 1.5px solid #b034db33;
    border-radius: 3px;
    font-size: 15px;
    color: #1b1230;
    background: #fff;
    line-height: 1.7;
    outline: none;
    box-sizing: border-box;
    transition: border-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: inset 0 1px 2px #b034db0d
}

.ctus__input::placeholder {
    color: #a899be
}

.ctus__input:focus {
    border-color: #B034DB;
    box-shadow: 0 6px 28px 0 #b034db17 inset 0 1px 2px #b034db0d
}

.ctus__select {
    width: 100%;
    padding: 16px;
    border: 1.5px solid #b034db33;
    border-radius: 3px;
    font-size: 15px;
    color: #1b1230;
    background: #fff;
    line-height: 1.7;
    outline: none;
    box-sizing: border-box;
    appearance: none;
    cursor: pointer;
    transition: border-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: inset 0 1px 2px #b034db0d;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23B034DB' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px
}

.ctus__select:focus {
    border-color: #B034DB;
    box-shadow: 0 6px 28px 0 #b034db17
}

.ctus__timeline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
}

.ctus__timeline-opt {
    position: relative
}

.ctus__timeline-opt input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.ctus__timeline-opt label {
    display: block;
    padding: 12px 16px;
    border: 1.5px solid #b034db33;
    border-radius: 3px;
    font-size: 14px;
    color: #3d3552;
    cursor: pointer;
    text-align: center;
    line-height: 1.2;
    transition: border-color .5s ease-in-out, background .5s ease-in-out, color .5s ease-in-out;
    background: #fff
}

.ctus__timeline-opt input[type="radio"]:checked+label {
    border-color: #B034DB;
    background: #b034db14;
    color: #B034DB;
    font-weight: 600
}

.ctus__timeline-opt label:hover {
    border-color: #b034db80;
    background: #b034db0a
}

.ctus__privacy {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px
}

.ctus__checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #B034DB;
    flex-shrink: 0;
    cursor: pointer
}

.ctus__privacy-text {
    font-size: 14px;
    color: #3d3552;
    line-height: 1.7;
    margin: 0
}

.ctus__privacy-text a {
    color: #B034DB;
    text-decoration: underline;
    transition: color .5s ease-in-out
}

.ctus__privacy-text a:hover {
    color: #8a1fb0
}

.ctus__btn {
    padding: 16px 40px;
    background: #B034DB;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    letter-spacing: .04em;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
    transition: background .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 28px 0 #b034db17;
    align-self: flex-start
}

.ctus__btn:hover {
    background: #8a1fb0;
    box-shadow: 0 12px 48px 0 #b034db24
}

.ctus__btn:focus {
    outline: 2px solid #14E2F3;
    outline-offset: 3px
}

.ctus__btn:active {
    background: #6d1890
}

.ctus__bubble-wrap {
    position: relative;
    padding: 24px;
    background: #f67d140f;
    border-radius: 12px;
    border-top: 2px solid #f67d144d;
    box-shadow: 0 2px 4px 0 #b034db0d
}

.ctus__bubble-wrap::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 32px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #f67d144d
}

.ctus__bubble-text {
    font-size: 15px;
    color: #3d3552;
    line-height: 1.7;
    margin: 0 0 8px;
    font-style: italic
}

.ctus__bubble-author {
    font-size: 14px;
    font-weight: 600;
    color: #F67D14;
    letter-spacing: .05em;
    margin: 0;
    line-height: 1.2
}

.ctus__accent-stat {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    padding: 16px 0 0
}

.ctus__stat-num {
    font-size: 48px;
    font-weight: 800;
    color: #14E2F3;
    line-height: 1.2;
    letter-spacing: -.02em;
    text-shadow: 0 2px 4px #14e2f32e
}

.ctus__stat-label {
    font-size: 15px;
    color: #3d3552;
    line-height: 1.7
}

.ctus__right-accent {
    position: absolute;
    right: 0;
    top: 80px;
    bottom: 80px;
    width: 2px;
    background: linear-gradient(180deg, transparent, #b034db4d, transparent);
    border-radius: 2px
}

@keyframes contrast-breathe {
    0% {
        filter: contrast(1)
    }

    50% {
        filter: contrast(1.08)
    }

    100% {
        filter: contrast(1)
    }
}

.ctus__panel--reach {
    animation: contrast-breathe 5s ease-in-out infinite
}

.ctus__careers-note {
    font-size: 14px;
    color: #8a7fa0;
    line-height: 1.7;
    margin: 0
}

.ctus__careers-note a {
    color: #B034DB;
    text-decoration: underline;
    transition: color .5s ease-in-out
}

.ctus__careers-note a:hover {
    color: #8a1fb0
}

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

    .ctus__h1 {
        font-size: 36px
    }

    .ctus__h2 {
        font-size: 26px
    }

    .ctus__stat-num {
        font-size: 36px
    }

    .ctus__panel {
        padding: 40px 24px
    }

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

    .ctus__right-accent {
        display: none
    }
}

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

    .ctus__btn {
        padding: 16px 24px;
        font-size: 15px
    }
}

@media (min-width: 1440px) {
    .ctus__panel {
        padding: 80px 40px
    }
}

.lp-prog {
    overflow-x: hidden
}

.lp-prog .split-screen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    padding-top: 80px
}

.lp-prog .split-screen__left {
    background: linear-gradient(circle at 0% 0%, #b034db21 0%, #f5f0fa 100%);
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative
}

.lp-prog .split-screen__right {
    background: linear-gradient(circle at 0% 0%, #14e2f32e 0%, #e8fafb 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 80px 40px 0;
    position: relative;
    overflow: hidden
}

.lp-prog .split-screen__label {
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #B034DB;
    margin-bottom: 16px;
    font-weight: 600
}

.lp-prog .split-screen__h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    color: #1e0a2e;
    margin: 0 0 24px;
    text-transform: uppercase;
    letter-spacing: .03em
}

.lp-prog .split-screen__h1 span {
    color: #B034DB
}

.lp-prog .split-screen__quote {
    font-size: 17px;
    line-height: 1.7;
    color: #3d2050;
    max-width: 420px;
    border-top: 2px solid #b034db40;
    padding-top: 16px;
    margin: 0
}

.lp-prog .split-screen__img-wrap {
    width: 100%;
    max-width: 460px;
    height: 380px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    box-shadow: 0 12px 48px 0 #b034db24;
    position: relative
}

.lp-prog .split-screen__img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(circle at 0% 0%, #b034db47 0%, #14e2f32e 100%);
    mix-blend-mode: multiply;
    pointer-events: none
}

.lp-prog .split-screen__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.15) contrast(1.05)
}

.lp-prog .wave-divider {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0
}

.lp-prog .wave-divider svg {
    display: block;
    width: 100%
}

.lp-prog .prog-detail {
    background: linear-gradient(circle at 0% 100%, #f67d1412 0%, #fff 60%, #b034db0d 100%);
    padding: 80px 40px
}

.lp-prog .prog-detail__inner {
    max-width: 1100px;
    margin: 0 auto
}

.lp-prog .prog-detail__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px
}

.lp-prog .prog-detail__heading {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: #1e0a2e;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin: 0 0 24px;
    text-align: center
}

.lp-prog .prog-detail__heading span {
    color: #F67D14
}

.lp-prog .prog-detail__body {
    font-size: 17px;
    line-height: 1.7;
    color: #2d1840;
    margin: 0 0 16px
}

.lp-prog .prog-detail__stat-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 40px
}

.lp-prog .stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    flex: 1;
    box-shadow: 0 6px 28px 0 #b034db17;
    text-align: center;
    transition: box-shadow .55s ease-in-out, transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.lp-prog .stat-card:hover {
    box-shadow: 0 12px 48px 0 #b034db24;
    transform: translateY(-4px)
}

.lp-prog .stat-card__num {
    font-size: 36px;
    font-weight: 800;
    color: #B034DB;
    line-height: 1.2;
    display: block
}

.lp-prog .stat-card__label {
    font-size: 14px;
    color: #5a3870;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 8px;
    display: block
}

.lp-prog .prog-detail__right {
    padding-top: 8px
}

.lp-prog .module-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.lp-prog .module-list__item {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 4px 0 #b034db0d;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    transition: box-shadow .6s ease-in-out, transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden
}

.lp-prog .module-list__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(circle at 0% 0%, #14e2f326 0%, transparent 100%);
    transition: width .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none
}

.lp-prog .module-list__item:hover::before {
    width: 100%
}

.lp-prog .module-list__item:hover {
    box-shadow: 0 6px 28px 0 #b034db17;
    transform: translateX(4px)
}

.lp-prog .module-list__num {
    font-size: 26px;
    font-weight: 800;
    color: #b034db2e;
    line-height: 1.2;
    min-width: 40px;
    flex-shrink: 0
}

.lp-prog .module-list__text {
    flex: 1
}

.lp-prog .module-list__title {
    font-size: 15px;
    font-weight: 700;
    color: #1e0a2e;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.lp-prog .module-list__desc {
    font-size: 14px;
    line-height: 1.7;
    color: #4a2f62;
    margin: 0
}

.lp-prog .prog-detail__formats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0
}

.lp-prog .format-card {
    border-radius: 12px;
    padding: 40px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .6s ease-in-out
}

.lp-prog .format-card--group {
    background: linear-gradient(circle at 0% 0%, #b034db1f 0%, #b034db08 100%);
    box-shadow: 0 2px 4px 0 #b034db0d
}

.lp-prog .format-card--individual {
    background: linear-gradient(circle at 0% 0%, #14e2f326 0%, #14e2f30a 100%);
    box-shadow: 0 2px 4px 0 #14e2f30d
}

.lp-prog .format-card--path {
    background: linear-gradient(circle at 0% 0%, #f67d141f 0%, #f67d1408 100%);
    box-shadow: 0 2px 4px 0 #f67d140d
}

.lp-prog .format-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 48px 0 #b034db24
}

.lp-prog .format-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center
}

.lp-prog .format-card__name {
    font-size: 15px;
    font-weight: 700;
    color: #1e0a2e;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin: 0 0 16px
}

.lp-prog .format-card__desc {
    font-size: 14px;
    line-height: 1.7;
    color: #3d2050;
    margin: 0
}

.lp-prog .formats-label {
    font-size: 20px;
    font-weight: 700;
    color: #1e0a2e;
    text-align: center;
    margin: 0 0 40px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.lp-prog .pencil-divider {
    display: block;
    width: 100%;
    margin: 0;
    line-height: 0
}

.lp-prog .slide-left {
    opacity: 0;
    transform: translateX(-48px);
    animation: lp-slide-left .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

.lp-prog .slide-right {
    opacity: 0;
    transform: translateX(48px);
    animation: lp-slide-right .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

.lp-prog .slide-up {
    opacity: 0;
    transform: translateY(32px);
    animation: lp-slide-up .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

@keyframes lp-slide-left {
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes lp-slide-right {
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes lp-slide-up {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.lp-prog .delay-1 {
    animation-delay: .1s
}

.lp-prog .delay-2 {
    animation-delay: .25s
}

.lp-prog .delay-3 {
    animation-delay: .4s
}

.lp-prog .delay-4 {
    animation-delay: .55s
}

.lp-prog .delay-5 {
    animation-delay: .7s
}

.lp-prog .curved-connector {
    display: block;
    width: 60px;
    height: 32px;
    margin: 0 0 16px
}

@media (max-width: 1024px) {
    .lp-prog .split-screen {
        grid-template-columns: 1fr;
        padding-top: 40px
    }

    .lp-prog .split-screen__right {
        padding: 40px 24px 0
    }

    .lp-prog .split-screen__left {
        padding: 40px 24px
    }

    .lp-prog .prog-detail__top {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .lp-prog .prog-detail__formats {
        grid-template-columns: 1fr
    }

    .lp-prog .prog-detail {
        padding: 40px 24px
    }
}

@media (max-width: 768px) {
    .lp-prog .split-screen__h1 {
        font-size: 36px
    }

    .lp-prog .prog-detail__stat-row {
        flex-direction: column;
        gap: 16px
    }

    .lp-prog .split-screen__img-wrap {
        height: 260px
    }
}

@media (max-width: 360px) {
    .lp-prog .split-screen__h1 {
        font-size: 26px
    }

    .lp-prog .prog-detail__heading {
        font-size: 26px
    }
}

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

.abt-pg .col-wrap {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px
}

.abt-pg .lead-band {
    background: linear-gradient(to bottom, #b034db21 0%, transparent 100%);
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative
}

.abt-pg .lead-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #B034DB
}

.abt-pg .lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.abt-pg .lead-text {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-pg .eyebrow {
    font-size: 14px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #B034DB;
    font-weight: 600
}

.abt-pg .lead-h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #1b1b2e;
    margin: 0
}

.abt-pg .lead-h1 strong {
    font-weight: 700;
    color: #B034DB
}

.abt-pg .lead-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #2d2d3a;
    margin: 0
}

.abt-pg .stat-row {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-top: 16px
}

.abt-pg .stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.abt-pg .stat-num {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: #B034DB
}

.abt-pg .stat-lbl {
    font-size: 14px;
    line-height: 1.2;
    color: #555568;
    letter-spacing: .08em;
    text-transform: uppercase
}

.abt-pg .lead-visual {
    position: relative;
    display: flex;
    flex-direction: column
}

.abt-pg .img-depth {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 48px 0 #b034db24;
    display: block
}

.abt-pg .img-blur-fg {
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    filter: blur(3px) brightness(0.85);
    box-shadow: 0 6px 28px 0 #b034db17;
    pointer-events: none
}

.abt-pg .deco-behind {
    position: absolute;
    top: 24px;
    right: -24px;
    width: 180px;
    height: 180px;
    border-radius: 12px;
    background: radial-gradient(circle at top left, #14e2f338, transparent 70%);
    pointer-events: none;
    z-index: 0
}

.abt-pg .lead-visual img {
    position: relative;
    z-index: 1
}

.abt-pg .geo-div {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    padding: 16px 0;
    background: #fff
}

.abt-pg .geo-div svg {
    display: block;
    width: 100%
}

.abt-pg .detail-band {
    background: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative
}

.abt-pg .detail-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(90deg, #14E2F3 0px, #14E2F3 24px, transparent 24px, transparent 40px)
}

.abt-pg .detail-top {
    text-align: center;
    margin-bottom: 80px
}

.abt-pg .detail-h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #1b1b2e;
    margin: 0 0 16px
}

.abt-pg .detail-sub {
    font-size: 17px;
    line-height: 1.7;
    color: #2d2d3a;
    max-width: 560px;
    margin: 0 auto
}

.abt-pg .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px
}

.abt-pg .info-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 24px;
    box-shadow: 0 2px 4px 0 #b034db0d 0 6px 28px 0 #b034db17;
    border-right: 2px solid #b034db26;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow .55s ease-in-out, transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: cardFlip .6s ease-in-out both
}

.abt-pg .info-card:nth-child(1) {
    animation-delay: .1s
}

.abt-pg .info-card:nth-child(2) {
    animation-delay: .25s
}

.abt-pg .info-card:nth-child(3) {
    animation-delay: .4s
}

.abt-pg .info-card:nth-child(4) {
    animation-delay: .55s
}

.abt-pg .info-card:nth-child(5) {
    animation-delay: .7s
}

.abt-pg .info-card:nth-child(6) {
    animation-delay: .85s
}

@keyframes cardFlip {
    0% {
        opacity: 0;
        transform: rotateY(12deg) translateY(16px)
    }

    100% {
        opacity: 1;
        transform: rotateY(0deg) translateY(0)
    }
}

.abt-pg .info-card:hover {
    box-shadow: 0 12px 48px 0 #b034db24;
    transform: translateY(-4px)
}

.abt-pg .card-ico {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

.abt-pg .card-ico svg {
    width: 32px;
    height: 32px
}

.abt-pg .card-h {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #1b1b2e;
    margin: 0
}

.abt-pg .card-p {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a50;
    margin: 0
}

.abt-pg .team-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start
}

.abt-pg .team-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.abt-pg .team-img-tall {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 28px 0 #b034db17;
    grid-row: span 2
}

.abt-pg .team-img-sq {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 4px 0 #b034db0d
}

.abt-pg .team-txt {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-pg .team-h3 {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #1b1b2e;
    margin: 0
}

.abt-pg .team-p {
    font-size: 17px;
    line-height: 1.7;
    color: #2d2d3a;
    margin: 0
}

.abt-pg .person-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px
}

.abt-pg .person-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    border-radius: 3px;
    background: #14e2f30f;
    box-shadow: inset 0 1px 2px #14e2f31a;
    transition: background .5s ease-in-out
}

.abt-pg .person-item:hover {
    background: #14e2f31f
}

.abt-pg .person-name {
    font-size: 15px;
    font-weight: 600;
    color: #1b1b2e;
    letter-spacing: .04em
}

.abt-pg .person-role {
    font-size: 14px;
    color: #B034DB !important;
    letter-spacing: .1em;
    text-transform: uppercase
}

.abt-pg .person-note {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a50
}

.abt-pg .accent-stripe {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 24px 40px;
    background: #f67d1414;
    border-radius: 2px;
    margin-top: 40px
}

.abt-pg .stripe-ico {
    flex-shrink: 0;
    width: 32px;
    height: 32px
}

.abt-pg .stripe-txt {
    font-size: 15px;
    line-height: 1.7;
    color: #2d2d3a
}

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

    .abt-pg .img-depth {
        height: 360px
    }

    .abt-pg .cards-grid {
        grid-template-columns: 1fr 1fr
    }

    .abt-pg .team-row {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

@media (max-width: 768px) {
    .abt-pg .col-wrap {
        padding-left: 24px;
        padding-right: 24px
    }

    .abt-pg .lead-band {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .abt-pg .lead-h1 {
        font-size: 36px
    }

    .abt-pg .cards-grid {
        grid-template-columns: 1fr
    }

    .abt-pg .stat-row {
        gap: 24px
    }

    .abt-pg .team-imgs {
        grid-template-columns: 1fr
    }

    .abt-pg .team-img-tall {
        height: 240px;
        grid-row: auto
    }

    .abt-pg .team-img-sq {
        display: none
    }

    .abt-pg .detail-band {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .abt-pg .detail-top {
        margin-bottom: 40px
    }
}

@media (max-width: 360px) {
    .abt-pg .lead-h1 {
        font-size: 26px
    }

    .abt-pg .stat-num {
        font-size: 26px
    }

    .abt-pg .col-wrap {
        padding-left: 16px;
        padding-right: 16px
    }
}

.gds {
    background: #fff;
    overflow-x: hidden
}

.gds .lead {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px 40px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px;
    position: relative
}

.gds .lead__stripe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #B034DB 0%, #14E2F3 60%, transparent 100%)
}

.gds .lead__left {
    flex: 1 1 0;
    min-width: 0
}

.gds .lead__label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #B034DB;
    margin-bottom: 16px;
    border-bottom: 2px solid #14E2F3;
    padding-bottom: 4px
}

.gds .lead__h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 900;
    color: #1b0a2e;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: .03em
}

.gds .lead__desc {
    font-size: 17px;
    line-height: 1.7;
    color: #3a2550;
    max-width: 520px;
    margin: 0
}

.gds .lead__img-wrap {
    flex: 0 0 320px;
    width: 320px;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 48px 0 #b034db24;
    position: relative
}

.gds .lead__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.3) contrast(1.05);
    transition: filter .55s ease-in-out, transform .55s ease-in-out
}

.gds .lead__img-wrap:hover img {
    filter: saturate(1.6) contrast(1.1) hue-rotate(0deg);
    transform: scale(1.04)
}

.gds .lead__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, #b034db2e 0%, transparent 70%);
    pointer-events: none
}

.gds .chevron-div {
    width: 100%;
    overflow: hidden;
    line-height: 0
}

.gds .chevron-div svg {
    display: block;
    width: 100%
}

.gds .posts-area {
    background: radial-gradient(circle at 0% 0%, #b034db0f 0%, transparent 60%), #f7f3fc;
    box-shadow: inset 0 0 80px 0 #b034db0d;
    padding: 80px 40px
}

.gds .posts-area__inner {
    max-width: 1100px;
    margin: 0 auto
}

.gds .posts-area__heading {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #1b0a2e;
    text-align: center;
    margin: 0 0 40px
}

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

.gds .pcard {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 28px 0 #b034db17;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1.5px dashed transparent
}

.gds .pcard:hover {
    box-shadow: 0 12px 48px 0 #b034db24;
    transform: translateY(-4px);
    border-color: #B034DB
}

.gds .pcard__img-wrap {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0
}

.gds .pcard__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease-in-out
}

.gds .pcard:hover .pcard__img-wrap img {
    transform: scale(1.06)
}

.gds .pcard__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 8px
}

.gds .pcard__tag {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #B034DB
}

.gds .pcard__ttl {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
    color: #1b0a2e;
    margin: 0
}

.gds .pcard__sub {
    font-size: 15px;
    font-weight: 600;
    color: #5a3a7a;
    margin: 0
}

.gds .pcard__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #3a2550;
    margin: 0;
    flex: 1 1 auto
}

.gds .pcard__meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
    flex-wrap: wrap
}

.gds .pcard__author {
    font-size: 14px;
    color: #7a5a9a;
    font-weight: 600
}

.gds .pcard__date {
    font-size: 14px;
    color: #9a7ab8
}

.gds .pcard__read {
    font-size: 14px;
    color: #B034DB;
    font-weight: 700;
    margin-left: auto
}

.gds .pcard__likes {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #F67D14;
    font-weight: 700
}

.gds .pcard__likes-icon {
    width: 14px;
    height: 14px;
    display: inline-block
}

.gds .pcard__link {
    display: inline-block;
    margin-top: 16px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: #B034DB;
    padding: 8px 24px;
    border-radius: 3px;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background .5s ease-in-out, box-shadow .5s ease-in-out
}

.gds .pcard__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #14E2F3;
    transition: width .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.gds .pcard__link:hover::after {
    width: 100%
}

.gds .pcard__link:hover {
    background: #8f22b5;
    box-shadow: 0 6px 28px 0 #b034db24
}

.gds .pcard--featured {
    grid-column: span 2;
    flex-direction: row
}

.gds .pcard--featured .pcard__img-wrap {
    width: 260px;
    height: auto;
    flex-shrink: 0
}

.gds .pcard--featured .pcard__body {
    padding: 24px
}

.gds .chevron-div--light svg path {
    fill: #f7f3fc
}

.gds .chevron-div--white svg path {
    fill: #fff
}

.gds .stats-band {
    background: #1b0a2e;
    padding: 40px;
    box-shadow: inset 0 0 60px 0 #14e2f30f
}

.gds .stats-band__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    justify-content: space-between
}

.gds .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.gds .stat-item__num {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    color: #14E2F3
}

.gds .stat-item__lbl {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #c9a8e8;
    text-align: center
}

.gds .stat-item__divider {
    width: 1px;
    height: 60px;
    background: #14e2f333
}

.gds .topics-area {
    background: #fff;
    padding: 80px 40px;
    position: relative
}

.gds .topics-area__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start
}

.gds .topics-area__left {
    flex: 1 1 0;
    min-width: 0
}

.gds .topics-area__lbl {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #F67D14;
    margin-bottom: 16px;
    display: block
}

.gds .topics-area__h2 {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    color: #1b0a2e;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin: 0 0 24px
}

.gds .topics-area__body {
    font-size: 17px;
    line-height: 1.7;
    color: #3a2550;
    margin: 0 0 16px
}

.gds .topics-area__right {
    flex: 0 0 340px;
    width: 340px
}

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

.gds .topic-list__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 3px;
    background: #f7f3fc;
    box-shadow: 0 2px 4px 0 #b034db0d;
    transition: background .5s ease-in-out, box-shadow .5s ease-in-out
}

.gds .topic-list__item:hover {
    background: #efe5fa;
    box-shadow: 0 6px 28px 0 #b034db17
}

.gds .topic-list__dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: #B034DB;
    flex-shrink: 0
}

.gds .topic-list__text {
    font-size: 15px;
    font-weight: 600;
    color: #1b0a2e;
    line-height: 1.2
}

.gds .topics-area__bg-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 260px;
    height: 260px;
    pointer-events: none;
    overflow: hidden
}

.gds .topics-area__bg-accent svg {
    width: 100%;
    height: 100%
}

.gds .contact-strip {
    background: linear-gradient(135deg, #b034db14 0%, #14e2f314 100%);
    padding: 80px 40px;
    box-shadow: inset 0 0 80px 0 #b034db0f
}

.gds .contact-strip__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center
}

.gds .contact-strip__text {
    flex: 1 1 0;
    min-width: 0
}

.gds .contact-strip__h2 {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    color: #1b0a2e;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin: 0 0 16px
}

.gds .contact-strip__desc {
    font-size: 17px;
    line-height: 1.7;
    color: #3a2550;
    margin: 0
}

.gds .contact-strip__form {
    flex: 0 0 380px;
    width: 380px
}

.gds .form-row {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.gds .form-row input,
.gds .form-row textarea {
    width: 100%;
    padding: 16px;
    border: 1.5px solid #d4bfed;
    border-radius: 3px;
    font-size: 15px;
    color: #1b0a2e;
    background: #fff;
    box-sizing: border-box;
    transition: border-color .5s ease-in-out, box-shadow .5s ease-in-out;
    outline: none
}

.gds .form-row input::placeholder,
.gds .form-row textarea::placeholder {
    color: #a890c0
}

.gds .form-row input:focus,
.gds .form-row textarea:focus {
    border-color: #B034DB;
    box-shadow: 0 2px 4px 0 #b034db0d
}

.gds .form-row textarea {
    resize: vertical;
    min-height: 100px
}

.gds .form-row__btn {
    background: #B034DB;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background .5s ease-in-out, box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.gds .form-row__btn:hover {
    background: #8f22b5;
    box-shadow: 0 6px 28px 0 #b034db24
}

.gds .form-row__btn:focus {
    outline: 2px solid #14E2F3;
    outline-offset: 2px
}

.gds .form-row__btn:active {
    background: #6e1890
}

.gds .prog-strip {
    background: #1b0a2e;
    padding: 80px 40px
}

.gds .prog-strip__inner {
    max-width: 1100px;
    margin: 0 auto
}

.gds .prog-strip__h2 {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-align: center;
    margin: 0 0 40px
}

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

.gds .prog-item {
    background: #b034db1f;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid #b034db33;
    transition: background .55s ease-in-out, border-color .55s ease-in-out
}

.gds .prog-item:hover {
    background: #b034db38;
    border-color: #b034db80
}

.gds .prog-item__icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px
}

.gds .prog-item__ttl {
    font-size: 15px;
    font-weight: 700;
    color: #14E2F3;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .06em
}

.gds .prog-item__desc {
    font-size: 14px;
    line-height: 1.7;
    color: #c9a8e8;
    margin: 0
}

@keyframes blurIn {
    from {
        filter: blur(8px);
        opacity: 0
    }

    to {
        filter: blur(0);
        opacity: 1
    }
}

.gds .lead__left {
    animation: blurIn .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

.gds .lead__img-wrap {
    animation: blurIn .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) .2s both
}

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

    .gds .pcard--featured {
        grid-column: span 2;
        flex-direction: column
    }

    .gds .pcard--featured .pcard__img-wrap {
        width: 100%;
        height: 200px
    }

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

    .gds .topics-area__inner {
        flex-direction: column
    }

    .gds .topics-area__right {
        width: 100%;
        flex: unset
    }

    .gds .contact-strip__inner {
        flex-direction: column
    }

    .gds .contact-strip__form {
        width: 100%;
        flex: unset
    }
}

@media (max-width: 768px) {
    .gds .lead {
        flex-direction: column;
        padding: 40px 24px
    }

    .gds .lead__h1 {
        font-size: 36px
    }

    .gds .lead__img-wrap {
        width: 100%;
        flex: unset;
        height: 180px
    }

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

    .gds .pcard--featured {
        grid-column: span 1
    }

    .gds .stats-band__inner {
        flex-direction: column;
        gap: 24px
    }

    .gds .stat-item__divider {
        width: 60px;
        height: 1px
    }

    .gds .prog-grid {
        grid-template-columns: 1fr 1fr
    }

    .gds .posts-area {
        padding: 40px 24px
    }

    .gds .topics-area {
        padding: 40px 24px
    }

    .gds .contact-strip {
        padding: 40px 24px
    }

    .gds .prog-strip {
        padding: 40px 24px
    }
}

@media (max-width: 360px) {
    .gds .lead__h1 {
        font-size: 26px
    }

    .gds .prog-grid {
        grid-template-columns: 1fr
    }

    .gds .contact-strip__h2,
    .gds .topics-area__h2,
    .gds .prog-strip__h2 {
        font-size: 26px
    }
}

.success-pg {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: radial-gradient(circle at top left, #b034db12 0%, transparent 60%)
}

.success-pg .result-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 28px 0 #b034db17;
    max-width: 520px;
    width: 100%;
    padding: 40px;
    text-align: center
}

.success-pg .result-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center
}

.success-pg .result-card__icon svg {
    width: 56px;
    height: 56px
}

.success-pg .result-card__heading {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    color: #1b0a2e;
    margin: 0 0 16px;
    letter-spacing: .01em;
    text-transform: uppercase
}

.success-pg .result-card__body {
    font-size: 15px;
    line-height: 1.7;
    color: #3a2550;
    margin: 0 0 40px
}

.success-pg .result-card__body span {
    color: #B034DB;
    font-weight: 600
}

.success-pg .result-card__action {
    display: inline-block;
    background: #B034DB;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .04em;
    padding: 16px 40px;
    border-radius: 3px;
    text-decoration: none;
    transition: background-color .5s ease-in-out, box-shadow .5s ease-in-out;
    box-shadow: 0 2px 4px 0 #b034db0d
}

.success-pg .result-card__action:hover {
    background: #9520c2;
    box-shadow: 0 12px 48px 0 #b034db24
}

.success-pg .result-card__action:focus {
    outline: 2px solid #14E2F3;
    outline-offset: 3px
}

.success-pg .result-card__divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #B034DB, #14E2F3);
    border-radius: 2px;
    margin: 0 auto 24px
}

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

    .success-pg .result-card {
        padding: 40px 24px
    }

    .success-pg .result-card__heading {
        font-size: 20px
    }
}