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

html {
    font-family: 'Fira Code', monospace;
    font-size: 16px;
    line-height: 1.65;
    background-color: #0e1018;
    color: #e8e4f4;
    overflow-x: hidden
}

body {
    margin: 0
}

.site-header {
    position: relative;
    background: linear-gradient(135deg, #0e1018 0%, #16112a 60%, #1a1230 100%);
    border-bottom: 1px solid #776bbf47;
    box-shadow: 0 4px 18px 1px #776bbf1c;
    z-index: 100
}

.header-band {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0 12px;
    gap: 24px
}

.header-contact-line {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    color: #CEBBDE;
    letter-spacing: .01em
}

.header-contact-line a {
    color: #CEBBDE;
    text-decoration: none;
    transition: color .12s ease-out
}

.header-contact-line a:hover {
    color: #FFF
}

.header-contact-line span {
    opacity: .45;
    font-size: 14px
}

.logo-zone {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0
}

.logo-capsule {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 24px;
    background: #776bbf1f;
    border-radius: 32px;
    border-right: 3px solid #776BBF;
    box-shadow: 0 1px 3px 1px #776bbf0d inset 0 0 12px #cebbde0f
}

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

.header-bottom {
    padding: 0;
    border-top: 1px solid #776bbf24
}

.primary-navigation {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px 0
}

.primary-navigation a {
    font-size: 14px;
    font-family: 'Fira Code', monospace;
    color: #CEBBDE;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    background: transparent;
    border: 1px solid transparent;
    transition: background .1s ease-out, border-color .1s ease-out, color .1s ease-out;
    white-space: nowrap;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    outline-offset: 3px
}

.primary-navigation a:hover {
    background: #776bbf29;
    border-color: #776bbf59;
    color: #FFF
}

.primary-navigation a:focus-visible {
    outline: 3px solid #776BBF
}

.primary-navigation a[aria-current="page"] {
    background: #776bbf38;
    border-color: #776bbf80;
    color: #FFF
}

.site-footer {
    background: linear-gradient(180deg, #0e1018 0%, #100d1e 100%);
    border-top: 1px solid #776bbf38;
    box-shadow: 0 -4px 18px 1px #776bbf12;
    padding: 48px 24px 24px
}

.footer-band {
    max-width: 1320px;
    margin: 0 auto;
    text-align: center
}

.footer-logo-zone {
    display: flex;
    justify-content: center;
    margin-bottom: 24px
}

.footer-logo-capsule {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 24px;
    background: #776bbf1a;
    border-radius: 32px;
    border: 1px solid #776bbf4d;
    box-shadow: 0 1px 3px 1px #776bbf0d inset 0 0 10px #cebbde0d
}

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

.footer-divider {
    border: none;
    border-top: 1px solid #776bbf2e;
    margin: 24px 0
}

.footer-navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px
}

.footer-navigation a {
    font-size: 14px;
    font-family: 'Fira Code', monospace;
    color: #CEBBDE;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: color .09s linear, background .09s linear;
    white-space: nowrap;
    min-height: 44px;
    display: inline-flex;
    align-items: center
}

.footer-navigation a:hover {
    color: #FFF;
    background: #776bbf1f
}

.footer-navigation a:focus-visible {
    outline: 3px solid #776BBF;
    outline-offset: 3px
}

.footer-nav-separator {
    display: inline-flex;
    align-items: center;
    color: #776bbf59;
    font-size: 14px;
    padding: 0 6px;
    user-select: none
}

.footer-contact-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px
}

.footer-contact-group a {
    font-size: 14px;
    color: #CEBBDE;
    text-decoration: none;
    font-family: 'Fira Code', monospace;
    transition: color .1s ease-out
}

.footer-contact-group a:hover {
    color: #FFF
}

.footer-address {
    font-size: 14px;
    color: #cebbde8c;
    line-height: 1.65;
    margin-bottom: 24px
}

.footer-copyright {
    font-size: 14px;
    color: #cebbde66;
    line-height: 1.4
}

.consent-card {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 320px;
    background: #16112a;
    border: 1px solid #776bbf66;
    border-radius: 18px;
    padding: 24px;
    z-index: 2000;
    box-shadow: 0 9px 44px 1px #776bbf1a;
    transform: translateX(-380px);
    transition: transform .26s ease-out;
    display: none
}

.consent-card.visible {
    transform: translateX(0)
}

.consent-card-headline {
    font-size: 16px;
    font-family: 'Fira Code', monospace;
    color: #FFF;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px
}

.consent-card-text {
    font-size: 14px;
    color: #CEBBDE;
    line-height: 1.65;
    margin: 0 0 24px
}

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

.consent-accept {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #776BBF;
    background: transparent;
    color: #776BBF;
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    cursor: pointer;
    transition: background .12s ease-out, color .12s ease-out;
    min-height: 44px
}

.consent-accept:hover {
    background: #776bbf2e;
    color: #FFF
}

.consent-accept:focus-visible {
    outline: 3px solid #776BBF;
    outline-offset: 3px
}

.consent-decline {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #cebbde4d;
    background: transparent;
    color: #CEBBDE;
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    cursor: pointer;
    transition: background .12s ease-out, color .12s ease-out;
    min-height: 44px
}

.consent-decline:hover {
    background: #cebbde14;
    color: #FFF
}

.consent-decline:focus-visible {
    outline: 3px solid #776BBF;
    outline-offset: 3px
}

.settings-trigger {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #16112a;
    border: 1px solid #776bbf66;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1999;
    box-shadow: 0 4px 18px 1px #776bbf1c;
    transition: background .1s ease-out
}

.settings-trigger:hover {
    background: #776bbf2e
}

.settings-trigger:focus-visible {
    outline: 3px solid #776BBF;
    outline-offset: 3px
}

.settings-trigger svg {
    width: 20px;
    height: 20px;
    fill: #CEBBDE
}

@media (max-width: 768px) {
    .header-top {
        flex-wrap: wrap;
        gap: 12px
    }

    .header-contact-line {
        gap: 12px;
        flex-wrap: wrap
    }

    .consent-card {
        right: 12px;
        top: 12px;
        width: calc(100vw - 24px);
        max-width: 320px
    }

    .primary-navigation {
        gap: 6px
    }

    .primary-navigation a {
        padding: 12px;
        font-size: 14px
    }

    .footer-contact-group {
        flex-direction: column;
        align-items: center;
        gap: 12px
    }
}

@media (max-width: 1280px) {
    .header-band {
        padding: 0 24px
    }
}

.terms-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 24px;
    color: #d4cce8;
    background-color: #12111a;
    min-height: 100vh
}

.terms-wrapper h1 {
    font-size: 52px;
    line-height: 1.15;
    color: #CEBBDE;
    margin-bottom: 24px;
    margin-top: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #776BBF
}

.terms-wrapper h2 {
    font-size: 24px;
    line-height: 1.4;
    color: #CEBBDE;
    margin-top: 48px;
    margin-bottom: 12px
}

.terms-wrapper h3 {
    font-size: 16px;
    line-height: 1.4;
    color: #b8a8d4;
    margin-top: 24px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.terms-wrapper h4 {
    font-size: 16px;
    line-height: 1.4;
    color: #a898c8;
    margin-top: 24px;
    margin-bottom: 6px
}

.terms-wrapper h5 {
    font-size: 14px;
    line-height: 1.65;
    color: #9888b8;
    margin-top: 12px;
    margin-bottom: 6px
}

.terms-wrapper h6 {
    font-size: 14px;
    line-height: 1.65;
    color: #8878a8;
    margin-top: 12px;
    margin-bottom: 6px
}

.terms-wrapper p {
    font-size: 16px;
    line-height: 1.85;
    color: #c8bedd;
    margin-top: 0;
    margin-bottom: 24px;
    max-width: 72ch
}

.terms-wrapper ul {
    margin-bottom: 24px;
    padding-left: 24px;
    list-style: none
}

.terms-wrapper ol {
    margin-bottom: 24px;
    padding-left: 24px;
    list-style: none;
    counter-reset: policy-counter
}

.terms-wrapper ul li {
    font-size: 16px;
    line-height: 1.85;
    color: #c8bedd;
    margin-bottom: 6px;
    padding-left: 12px;
    position: relative;
    max-width: 72ch
}

.terms-wrapper ul li::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background-color: #776BBF;
    border-radius: 50%;
    position: absolute;
    left: -12px;
    top: 11px
}

.terms-wrapper ol li {
    font-size: 16px;
    line-height: 1.85;
    color: #c8bedd;
    margin-bottom: 6px;
    padding-left: 12px;
    position: relative;
    max-width: 72ch;
    counter-increment: policy-counter
}

.terms-wrapper ol li::before {
    content: counter(policy-counter) ".";
    position: absolute;
    left: -18px;
    top: 0;
    color: #776BBF;
    font-size: 14px;
    line-height: 1.85
}

.terms-wrapper strong,
.terms-wrapper b {
    color: #e2d8f0;
    font-weight: 700
}

.terms-wrapper em,
.terms-wrapper i {
    color: #c0b2d8;
    font-style: italic
}

.terms-wrapper a {
    color: #9d8fd4;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .1s ease-out
}

.terms-wrapper a:hover {
    color: #CEBBDE;
    text-decoration-thickness: 2px
}

.terms-wrapper a:visited {
    color: #8878b8
}

.terms-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.65;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 18px 1px #776bbf1c
}

.terms-wrapper thead {
    background-color: #1e1a2e
}

.terms-wrapper thead tr {
    border-bottom: 2px solid #776BBF
}

.terms-wrapper tbody tr {
    border-bottom: 1px solid #2a2440;
    transition: background-color .08s ease-out
}

.terms-wrapper tbody tr:last-child {
    border-bottom: none
}

.terms-wrapper tbody tr:hover {
    background-color: #1a1628
}

.terms-wrapper th {
    padding: 12px 24px;
    text-align: left;
    color: #CEBBDE;
    font-size: 14px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 700;
    background-color: #1e1a2e
}

.terms-wrapper td {
    padding: 12px 24px;
    color: #c8bedd;
    font-size: 14px;
    line-height: 1.65;
    vertical-align: top;
    background-color: #16131f
}

.terms-wrapper tbody tr:nth-child(even) td {
    background-color: #191525
}

@media (max-width: 768px) {
    .terms-wrapper {
        padding: 24px 12px
    }

    .terms-wrapper h1 {
        font-size: 24px;
        line-height: 1.4
    }

    .terms-wrapper h2 {
        font-size: 16px;
        margin-top: 24px
    }

    .terms-wrapper h3 {
        font-size: 14px
    }

    .terms-wrapper table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 6px
    }

    .terms-wrapper th,
    .terms-wrapper td {
        padding: 12px;
        white-space: nowrap
    }

    .terms-wrapper p,
    .terms-wrapper ul li,
    .terms-wrapper ol li {
        max-width: 100%
    }
}

@media (min-width: 768px) and (max-width: 1280px) {
    .terms-wrapper {
        padding: 48px 24px
    }

    .terms-wrapper h1 {
        font-size: 52px
    }
}

.learning-program {
    background-color: #0d0e14;
    color: #d4cfe8;
    overflow-x: clip
}

.learning-program .program-title-block {
    position: relative;
    padding: 96px 24px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 24px;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto
}

.learning-program .program-title-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 70%, #776bbf1f 0%, transparent 60%), radial-gradient(ellipse at 70% 30%, #cebbde12 0%, transparent 55%);
    pointer-events: none
}

.learning-program .title-circle-one {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px solid #776bbf1f;
    top: 12%;
    left: 8%;
    pointer-events: none
}

.learning-program .title-circle-two {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid #cebbde17;
    bottom: 15%;
    right: 10%;
    pointer-events: none
}

.learning-program .title-circle-three {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid #776bbf14;
    top: 60%;
    left: 20%;
    pointer-events: none
}

.learning-program .title-image-left {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 4px 18px 1px #776bbf1c
}

.learning-program .title-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .12s ease-out, brightness .12s ease-out
}

.learning-program .title-image-left::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, #0d0e14bf 100%);
    pointer-events: none
}

.learning-program .title-image-left:hover img {
    transform: scale(1.04);
    filter: brightness(1.08)
}

.learning-program .title-text-center {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 24px
}

.learning-program .title-overline {
    font-size: 14px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #776BBF;
    margin-bottom: 12px;
    display: block
}

.learning-program .title-heading {
    font-size: 70px;
    line-height: 1.15;
    font-weight: 800;
    color: #FFF;
    text-shadow: 0 2px 24px #776bbf59 0 0 2px #cebbde2e;
    margin: 0 0 12px
}

.learning-program .title-sub {
    font-size: 16px;
    line-height: 1.65;
    color: #CEBBDE;
    max-width: 360px;
    margin: 0 auto
}

.learning-program .title-placeholder-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center
}

.learning-program .title-stat {
    background: linear-gradient(135deg, #776bbf2e 0%, transparent 60%, #cebbde14 100%);
    border: 1px solid #776bbf38;
    border-radius: 10px;
    padding: 12px 24px;
    text-align: center;
    width: 100%;
    box-shadow: 0 1px 3px 1px #776bbf0d
}

.learning-program .title-stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #776BBF;
    display: block;
    line-height: 1.15
}

.learning-program .title-stat-label {
    font-size: 14px;
    color: #CEBBDE;
    line-height: 1.4
}

.learning-program .curve-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0
}

.learning-program .curve-divider svg {
    display: block;
    width: 100%
}

.learning-program .program-details {
    background: linear-gradient(170deg, #111220 0%, #0d0e14 45%, #131025 100%);
    padding: 96px 24px;
    position: relative
}

.learning-program .program-details-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start
}

.learning-program .details-sidebar {
    position: sticky;
    top: 24px
}

.learning-program .details-sidebar-heading {
    font-size: 24px;
    font-weight: 700;
    color: #FFF;
    line-height: 1.4;
    text-shadow: 0 1px 8px #776bbf38;
    margin-bottom: 24px
}

.learning-program .sidebar-progress-group {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.learning-program .sidebar-progress-item {
    background: #776bbf12;
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #776bbf24
}

.learning-program .progress-label {
    font-size: 14px;
    color: #CEBBDE;
    margin-bottom: 6px;
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.learning-program .progress-bar-track {
    background: #ffffff12;
    border-radius: 6px;
    height: 6px;
    overflow: hidden
}

.learning-program .progress-bar-fill {
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, #776BBF 0%, transparent 80%, #CEBBDE 100%);
    box-shadow: inset 0 1px 3px #cebbde2e;
    transition: width .15s ease-out
}

.learning-program .details-main {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.learning-program .details-heading {
    font-size: 52px;
    font-weight: 800;
    color: #FFF;
    line-height: 1.15;
    text-shadow: 0 2px 16px #776bbf47;
    margin: 0
}

.learning-program .details-paragraph-group {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    align-items: start
}

.learning-program .details-intro-col {
    font-size: 16px;
    line-height: 1.65;
    color: #776BBF;
    font-weight: 600
}

.learning-program .details-body-col {
    font-size: 16px;
    line-height: 1.65;
    color: #d4cfe8
}

.learning-program .details-body-col p {
    margin: 0 0 12px
}

.learning-program .accent-dashed-block {
    border: 2px dashed #776bbf66;
    border-radius: 10px;
    padding: 24px;
    background: #776bbf0d;
    box-shadow: 0 1px 3px 1px #776bbf0d
}

.learning-program .accent-dashed-block h4 {
    font-size: 16px;
    font-weight: 700;
    color: #CEBBDE;
    margin: 0 0 12px;
    line-height: 1.4
}

.learning-program .accent-dashed-block p {
    font-size: 14px;
    line-height: 1.65;
    color: #b8afd4;
    margin: 0
}

.learning-program .curve-divider-up svg {
    transform: scaleY(-1)
}

.learning-program .modules-section {
    padding: 96px 24px 48px;
    position: relative;
    background-color: #0d0e14
}

.learning-program .modules-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, #776bbf0a 39px, #776bbf0a 40px);
    pointer-events: none;
    animation: bg-zoom 18s ease-in-out infinite alternate;
    transform-origin: center center
}

@keyframes bg-zoom {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.06)
    }
}

.learning-program .modules-inner {
    max-width: 1320px;
    margin: 0 auto
}

.learning-program .modules-top {
    text-align: center;
    margin-bottom: 48px
}

.learning-program .modules-heading {
    font-size: 52px;
    font-weight: 800;
    color: #FFF;
    line-height: 1.15;
    text-shadow: 0 2px 16px #776bbf47;
    margin: 0 0 12px
}

.learning-program .modules-sub {
    font-size: 16px;
    line-height: 1.65;
    color: #CEBBDE;
    max-width: 560px;
    margin: 0 auto
}

.learning-program .modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px
}

.learning-program .module-card {
    background: linear-gradient(155deg, #16172a 0%, #0f1019 100%);
    border: 1px solid #776bbf2e;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 4px 18px 1px #776bbf1c;
    transition: transform .1s ease-out, box-shadow .1s ease-out;
    cursor: default
}

.learning-program .module-card:hover {
    transform: translateY(-4px) perspective(600px) rotateX(2deg);
    box-shadow: 0 9px 44px 1px #776bbf1a
}

.learning-program .module-number {
    font-size: 52px;
    font-weight: 800;
    color: #776bbf33;
    line-height: 1.15;
    margin-bottom: 6px
}

.learning-program .module-title {
    font-size: 16px;
    font-weight: 700;
    color: #FFF;
    margin: 0 0 12px;
    line-height: 1.4
}

.learning-program .module-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #b8afd4;
    margin: 0
}

.learning-program .module-tag {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    background: #776bbf26;
    color: #776BBF;
    border-radius: 6px;
    padding: 6px 12px;
    border: 1px solid #776bbf40
}

.learning-program .feature-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    border-top: 1px solid #776bbf26;
    padding-top: 48px
}

.learning-program .strip-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}

.learning-program .strip-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #776bbf1f;
    border: 1px solid #776bbf38;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 6px #cebbde1a
}

.learning-program .strip-icon svg {
    width: 22px;
    height: 22px;
    stroke: #776BBF;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.learning-program .strip-label {
    font-size: 14px;
    color: #CEBBDE;
    line-height: 1.4;
    font-weight: 600
}

.learning-program .strip-detail {
    font-size: 14px;
    color: #8a8099;
    line-height: 1.4
}

.learning-program .curve-divider-two svg {
    display: block;
    width: 100%
}

.learning-program .approach-section {
    padding: 48px 24px 96px;
    background: linear-gradient(200deg, #13102a 0%, #0d0e14 55%, #111220 100%);
    position: relative
}

.learning-program .approach-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Crect width='60' height='60' fill='none'/%3E%3Ccircle cx='30' cy='30' r='1' fill='#776bbf0f'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: .6
}

.learning-program .approach-inner {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.learning-program .approach-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.learning-program .approach-divider {
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, #776bbf66 30%, #cebbde40 70%, transparent 100%);
    align-self: stretch;
    min-height: 300px
}

.learning-program .approach-col-left {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.learning-program .approach-heading {
    font-size: 52px;
    font-weight: 800;
    color: #FFF;
    line-height: 1.15;
    text-shadow: 0 2px 16px #776bbf47;
    margin: 0
}

.learning-program .approach-body {
    font-size: 16px;
    line-height: 1.65;
    color: #d4cfe8
}

.learning-program .approach-body p {
    margin: 0 0 12px
}

.learning-program .approach-large-text {
    font-size: 24px;
    font-weight: 700;
    color: #CEBBDE;
    line-height: 1.4;
    border-left: 3px solid #776BBF;
    padding-left: 12px;
    border-radius: 0
}

.learning-program .approach-col-right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.learning-program .approach-col-right h4 {
    font-size: 16px;
    font-weight: 700;
    color: #FFF;
    margin: 0 0 12px;
    line-height: 1.4
}

.learning-program .step-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0
}

.learning-program .step-list li {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px;
    border-radius: 10px;
    background: #776bbf0f;
    border: 1px solid #776bbf1f;
    transition: background .1s ease-out
}

.learning-program .step-list li:hover {
    background: #776bbf1f
}

.learning-program .step-num {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #776bbf33;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #776BBF;
    flex-shrink: 0
}

.learning-program .step-text {
    font-size: 14px;
    line-height: 1.65;
    color: #d4cfe8
}

.learning-program .step-text strong {
    color: #CEBBDE;
    display: block;
    font-size: 16px;
    margin-bottom: 6px
}

.learning-program .testimonials-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px
}

.learning-program .testimonial-card {
    background: #0d0e14cc;
    border: 1px solid #cebbde24;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 1px 3px 1px #cebbde0d;
    position: relative
}

.learning-program .testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(90deg, #776BBF, transparent, #CEBBDE)
}

.learning-program .testimonial-text {
    font-size: 16px;
    line-height: 1.85;
    color: #d4cfe8;
    margin: 0 0 12px
}

.learning-program .testimonial-author {
    font-size: 14px;
    color: #776BBF;
    font-weight: 600
}

@media (max-width: 768px) {
    .learning-program .program-title-block {
        grid-template-columns: 1fr;
        padding: 48px 24px
    }

    .learning-program .title-image-left {
        display: none
    }

    .learning-program .title-placeholder-right {
        display: none
    }

    .learning-program .title-heading {
        font-size: 52px
    }

    .learning-program .program-details-inner {
        grid-template-columns: 1fr
    }

    .learning-program .details-sidebar {
        position: static
    }

    .learning-program .details-paragraph-group {
        grid-template-columns: 1fr
    }

    .learning-program .modules-grid {
        grid-template-columns: 1fr
    }

    .learning-program .feature-strip {
        grid-template-columns: repeat(2, 1fr)
    }

    .learning-program .approach-two-col {
        grid-template-columns: 1fr
    }

    .learning-program .approach-divider {
        display: none
    }

    .learning-program .testimonials-row {
        grid-template-columns: 1fr
    }
}

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

    .learning-program .feature-strip {
        grid-template-columns: repeat(2, 1fr)
    }

    .learning-program .program-title-block {
        grid-template-columns: 1fr 2fr
    }

    .learning-program .title-placeholder-right {
        display: none
    }
}

.learning-program .btn-primary {
    display: inline-block;
    padding: 12px 48px;
    background: linear-gradient(135deg, #776BBF 0%, transparent 50%, #CEBBDE 100%) !important;
    background-size: 200% 200%;
    background-position: 0 0;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    border: 1px solid #776bbf66;
    cursor: pointer;
    transition: background-position .13s ease-out, box-shadow .13s ease-out;
    text-decoration: none;
    box-shadow: 0 4px 18px 1px #776bbf1c
}

.learning-program .btn-primary:hover {
    background-position: 100% 100%;
    box-shadow: 0 9px 44px 1px #776bbf1a
}

.contact-us-page {
    background-color: #0d0e14;
    color: #e8e4f4;
    overflow-x: clip
}

.contact-us-page .form-strip {
    width: 100%;
    height: 4px;
    background: linear-gradient(113deg, #776BBF 0%, transparent 50%, #CEBBDE 100%)
}

.contact-us-page .split-area {
    max-width: 1320px;
    margin: 0 auto;
    padding: 96px 24px 48px;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 48px;
    align-items: start
}

.contact-us-page .left-panel {
    position: sticky;
    top: 24px
}

.contact-us-page .eyebrow {
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #CEBBDE;
    line-height: 1.4;
    margin-bottom: 12px;
    display: block
}

.contact-us-page .panel-heading {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    color: #FFF;
    margin: 0 0 24px;
    text-shadow: 0 2px 18px #776bbf61
}

.contact-us-page .panel-heading em {
    font-style: normal;
    color: #CEBBDE
}

.contact-us-page .panel-desc {
    font-size: 16px;
    line-height: 1.65;
    color: #b8b0d4;
    margin-bottom: 48px;
    max-width: 340px
}

.contact-us-page .contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 48px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.contact-us-page .contact-details-list li {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    background: #776bbf14;
    border-radius: 10px;
    border: 1px solid #776bbf2e;
    box-shadow: 0 1px 3px 1px #776bbf0d
}

.contact-us-page .detail-label {
    font-size: 14px;
    color: #776BBF;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
    line-height: 1.4
}

.contact-us-page .detail-value {
    font-size: 16px;
    color: #e8e4f4;
    line-height: 1.4;
    word-break: break-word
}

.contact-us-page .detail-value a {
    color: #CEBBDE;
    text-decoration: none;
    transition: color .1s ease-out
}

.contact-us-page .detail-value a:hover {
    color: #FFF
}

.contact-us-page .geo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #cebbde1a;
    border-radius: 6px;
    border: 1px solid #cebbde33;
    font-size: 14px;
    color: #CEBBDE;
    line-height: 1.4
}

.contact-us-page .geo-dot {
    width: 8px;
    height: 8px;
    border-radius: 32px;
    background: #776BBF;
    box-shadow: 0 0 0 3px #776bbf40;
    flex-shrink: 0
}

.contact-us-page .form-panel {
    background: #0f0e19d9;
    border: 1px solid #776bbf38;
    border-radius: 18px;
    padding: 48px;
    box-shadow: 0 9px 44px 1px #776bbf1a;
    position: relative;
    overflow: hidden
}

.contact-us-page .form-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background: linear-gradient(225deg, #776bbf1f 0%, transparent 70%);
    border-radius: 0 18px 0 100%;
    pointer-events: none
}

.contact-us-page .form-heading {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
    color: #FFF;
    margin: 0 0 6px;
    text-shadow: 0 1px 8px #776bbf40
}

.contact-us-page .form-sub {
    font-size: 14px;
    color: #9088b8;
    line-height: 1.65;
    margin: 0 0 24px
}

.contact-us-page .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px
}

.contact-us-page .field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px
}

.contact-us-page .field-label {
    font-size: 14px;
    color: #CEBBDE;
    font-weight: 600;
    line-height: 1.4
}

.contact-us-page .field-label span {
    color: #776BBF;
    margin-left: 2px
}

.contact-us-page .text-input {
    width: 100%;
    padding: 12px;
    background: #0d0e14e6;
    border: 1px solid #776bbf47;
    border-radius: 10px;
    color: #e8e4f4;
    font-size: 16px;
    line-height: 1.4;
    outline: none;
    transition: border-color .12s ease-out, box-shadow .12s ease-out;
    box-sizing: border-box
}

.contact-us-page .text-input::placeholder {
    color: #4e4870;
    font-weight: 300
}

.contact-us-page .text-input:focus {
    border-color: #776BBF !important;
    box-shadow: 0 0 0 3px #776bbf2e inset 0 1px 6px #776bbf14 !important
}

.contact-us-page .text-input:focus-visible {
    border-color: #CEBBDE !important;
    box-shadow: 0 0 0 4px #cebbde38 inset 0 1px 6px #776bbf1a !important;
    outline: none !important
}

.contact-us-page .textarea-input {
    width: 100%;
    padding: 12px;
    background: #0d0e14e6;
    border: 1px solid #776bbf47;
    border-radius: 10px;
    color: #e8e4f4;
    font-size: 16px;
    line-height: 1.65;
    outline: none;
    resize: vertical;
    min-height: 100px;
    transition: border-color .12s ease-out, box-shadow .12s ease-out;
    box-sizing: border-box
}

.contact-us-page .textarea-input::placeholder {
    color: #4e4870;
    font-weight: 300
}

.contact-us-page .textarea-input:focus {
    border-color: #776BBF !important;
    box-shadow: 0 0 0 3px #776bbf2e inset 0 1px 6px #776bbf14 !important
}

.contact-us-page .textarea-input:focus-visible {
    border-color: #CEBBDE !important;
    box-shadow: 0 0 0 4px #cebbde38 !important;
    outline: none !important
}

.contact-us-page .select-input {
    width: 100%;
    padding: 12px;
    background: #0d0e14e6;
    border: 1px solid #776bbf47;
    border-radius: 10px;
    color: #e8e4f4;
    font-size: 16px;
    line-height: 1.4;
    outline: none;
    appearance: none;
    cursor: pointer;
    transition: border-color .12s ease-out;
    box-sizing: border-box;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23776BBF' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px
}

.contact-us-page .select-input option {
    background: #1a1628;
    color: #e8e4f4
}

.contact-us-page .select-input:focus {
    border-color: #776BBF !important;
    box-shadow: 0 0 0 3px #776bbf2e !important
}

.contact-us-page .select-input:focus-visible {
    border-color: #CEBBDE !important;
    box-shadow: 0 0 0 4px #cebbde38 !important;
    outline: none !important
}

.contact-us-page .divider-line {
    border: none;
    border-top: 1px solid #776bbf26;
    margin: 24px 0
}

.contact-us-page .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    padding: 12px;
    background: #776bbf0f;
    border-radius: 10px;
    border: 1px solid #776bbf24
}

.contact-us-page .privacy-checkbox {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: #776BBF;
    cursor: pointer;
    margin-top: 2px
}

.contact-us-page .privacy-text {
    font-size: 14px;
    color: #9088b8;
    line-height: 1.65
}

.contact-us-page .privacy-text a {
    color: #CEBBDE;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .1s ease-out
}

.contact-us-page .privacy-text a:hover {
    color: #FFF
}

.contact-us-page .submit-button {
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(113deg, #776BBF 0%, #5a4fa8 100%);
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    line-height: 1.4;
    letter-spacing: .04em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: box-shadow .1s ease-out, transform .08s ease-out;
    box-shadow: 0 4px 18px 1px #776bbf1c
}

.contact-us-page .submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(113deg, transparent 0%, #cebbde40 50%, transparent 100%);
    transition: left .13s ease-out
}

.contact-us-page .submit-button:hover::before {
    left: 100%
}

.contact-us-page .submit-button:hover {
    box-shadow: 0 9px 44px 1px #776bbf38;
    transform: translateY(-1px)
}

.contact-us-page .submit-button:active {
    transform: translateY(0)
}

.contact-us-page .submit-button:focus-visible {
    outline: 3px solid #CEBBDE !important;
    outline-offset: 3px !important
}

.contact-us-page .scallop-divider {
    width: 100%;
    line-height: 0;
    overflow: hidden
}

.contact-us-page .scallop-divider svg {
    display: block;
    width: 100%
}

.contact-us-page .info-band {
    background: linear-gradient(180deg, #0d0e14 0%, #13101f 60%, #1a1530 100%);
    padding: 48px 24px 96px;
    position: relative
}

.contact-us-page .info-band-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 48px;
    align-items: center
}

.contact-us-page .info-text-column {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.contact-us-page .info-heading {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
    color: #FFF;
    margin: 0;
    text-shadow: 0 1px 10px #776bbf4d;
    text-align: center
}

.contact-us-page .info-paragraph {
    font-size: 16px;
    line-height: 1.65;
    color: #b8b0d4;
    margin: 0
}

.contact-us-page .response-grid {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.contact-us-page .response-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #776bbf12;
    border-radius: 10px;
    border-left: 3px solid #776BBF;
    border-top: 1px solid #776bbf26;
    border-right: 1px solid #776bbf1a;
    border-bottom: 1px solid #776bbf1a;
    box-shadow: 0 1px 3px 1px #776bbf0d;
    transition: background .12s ease-out
}

.contact-us-page .response-item:hover {
    background: #776bbf1f
}

.contact-us-page .response-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #776bbf4d 0%, #cebbde1a 100%);
    display: flex;
    align-items: center;
    justify-content: center
}

.contact-us-page .response-icon svg {
    width: 18px;
    height: 18px
}

.contact-us-page .response-label {
    font-size: 14px;
    color: #9088b8;
    line-height: 1.4;
    margin-bottom: 2px
}

.contact-us-page .response-value {
    font-size: 16px;
    color: #e8e4f4;
    font-weight: 600;
    line-height: 1.4
}

.contact-us-page .pattern-accent {
    position: absolute;
    right: 0;
    top: 0;
    width: 260px;
    height: 100%;
    opacity: .04;
    pointer-events: none
}

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

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

.contact-us-page .animate-right {
    animation: slide-in-right .13s ease-out both
}

.contact-us-page .animate-right.delay-1 {
    animation-delay: .06s
}

.contact-us-page .animate-right.delay-2 {
    animation-delay: .11s
}

.contact-us-page .animate-right.delay-3 {
    animation-delay: .15s
}

@media (max-width: 1280px) {
    .contact-us-page .split-area {
        grid-template-columns: 1fr 1fr;
        padding: 48px 24px
    }

    .contact-us-page .panel-heading {
        font-size: 52px
    }
}

@media (max-width: 768px) {
    .contact-us-page .split-area {
        grid-template-columns: 1fr;
        padding: 48px 24px 24px;
        gap: 24px
    }

    .contact-us-page .left-panel {
        position: static
    }

    .contact-us-page .panel-heading {
        font-size: 24px
    }

    .contact-us-page .panel-desc {
        max-width: 100%;
        margin-bottom: 24px
    }

    .contact-us-page .form-panel {
        padding: 24px
    }

    .contact-us-page .field-row {
        grid-template-columns: 1fr
    }

    .contact-us-page .info-band-inner {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .contact-us-page .info-band {
        padding: 24px 24px 48px
    }

    .contact-us-page .info-heading {
        text-align: left
    }
}

.portal-root {
    background: #0d0e14;
    color: #e8e4f0;
    overflow-x: hidden
}

.portal-root .portal-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px
}

.portal-root ::selection {
    background: #776bbf1a;
    color: #e8e4f0
}

.portal-root .title-block {
    padding: 96px 0 48px;
    position: relative;
    background: #0d0e14
}

.portal-root .title-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    z-index: 0
}

.portal-root .title-block::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(90deg, #776BBF 0px, #776BBF 8px, transparent 8px, transparent 16px, #CEBBDE 16px, #CEBBDE 20px, transparent 20px, transparent 32px)
}

.portal-root .title-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1
}

.portal-root .title-text {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.portal-root .title-label {
    font-size: 14px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #CEBBDE;
    line-height: 1.4
}

.portal-root .title-heading {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 24px #776bbf59 0 1px 0 #cebbde2e;
    margin: 0
}

.portal-root .title-heading span {
    color: #CEBBDE
}

.portal-root .title-sub {
    font-size: 16px;
    line-height: 1.65;
    color: #b8afd0;
    max-width: 440px
}

.portal-root .title-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap
}

.portal-root .button-primary {
    background: linear-gradient(135deg, #776BBF 0%, #5a4fa0 100%);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background .12s ease-out, box-shadow .12s ease-out;
    box-shadow: 0 4px 18px 1px #776bbf1c;
    position: relative;
    overflow: hidden
}

.portal-root .button-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, #ffffff14 50%, transparent 100%);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform .13s ease-out
}

.portal-root .button-primary:hover::before {
    transform: translateX(100%) skewX(-15deg)
}

.portal-root .button-primary:hover {
    box-shadow: 0 9px 44px 1px #776bbf1a
}

.portal-root .button-secondary {
    background: transparent;
    color: #CEBBDE;
    border: 1.5px solid #776BBF;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color .1s linear, color .1s linear
}

.portal-root .button-secondary:hover {
    border-color: #CEBBDE;
    color: #fff
}

.portal-root .title-image-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 9px 44px 1px #776bbf1a
}

.portal-root .title-image-wrap img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block
}

.portal-root .title-circles {
    position: absolute;
    bottom: -48px;
    right: -48px;
    width: 220px;
    height: 220px;
    pointer-events: none;
    z-index: 0
}

.portal-root .title-circles svg {
    width: 100%;
    height: 100%;
    opacity: .07
}

.portal-root .experience-block {
    padding: 96px 0 48px;
    background: #111219;
    position: relative
}

.portal-root .experience-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(160deg, #776bbf0f 0%, transparent 45%, #cebbde0a 100%);
    pointer-events: none
}

.portal-root .experience-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(90deg, transparent 0px, transparent 12px, #776BBF 12px, #776BBF 14px)
}

.portal-root .experience-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 1
}

.portal-root .experience-aside {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.portal-root .experience-tag {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #776BBF;
    border: 1px solid #776bbf4d;
    border-radius: 6px;
    padding: 6px 12px;
    width: fit-content
}

.portal-root .experience-heading {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    text-shadow: 0 1px 8px #776bbf33;
    margin: 0
}

.portal-root .experience-image-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px 1px #776bbf0d
}

.portal-root .experience-image-wrap img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform .13s ease-out
}

.portal-root .experience-image-wrap:hover img {
    transform: scale(1.03)
}

.portal-root .experience-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, #0d0e14eb 0%, transparent 100%);
    color: #CEBBDE;
    font-size: 14px;
    line-height: 1.4;
    padding: 24px 12px 12px;
    opacity: 0;
    transition: opacity .13s ease-out
}

.portal-root .experience-image-wrap:hover .experience-caption {
    opacity: 1
}

.portal-root .experience-cards {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.portal-root .experience-card {
    background: #776bbf12;
    border: 1px solid #776bbf26;
    border-radius: 10px;
    padding: 24px;
    transition: border-color .1s ease-out, background .1s ease-out
}

.portal-root .experience-card:hover {
    border-color: #776bbf66;
    background: #776bbf1c
}

.portal-root .experience-card-name {
    font-size: 14px;
    font-weight: 700;
    color: #CEBBDE;
    margin-bottom: 6px
}

.portal-root .experience-card-sign {
    font-size: 14px;
    color: #776BBF;
    margin-bottom: 12px
}

.portal-root .experience-card-text {
    font-size: 16px;
    line-height: 1.65;
    color: #c4bdd8
}

.portal-root .conditions-block {
    padding: 48px 0;
    background: #0d0e14;
    position: relative
}

.portal-root .conditions-block::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 280px;
    pointer-events: none;
    border-radius: 50%;
    border: 1px solid #776bbf0f;
    box-shadow: 0 0 0 30px #776bbf0a 0 0 0 60px #776bbf06 0 0 0 90px #776bbf04;
    transform: translate(30%, -30%)
}

.portal-root .conditions-header {
    text-align: center;
    margin-bottom: 48px
}

.portal-root .conditions-heading {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    text-shadow: 0 2px 12px #cebbde26;
    margin: 0 0 12px
}

.portal-root .conditions-sub {
    font-size: 16px;
    line-height: 1.65;
    color: #9d93b8;
    max-width: 560px;
    margin: 0 auto
}

.portal-root .conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.portal-root .condition-item {
    background: linear-gradient(160deg, #161720 0%, #111219 100%);
    border: 1px solid #cebbde1a;
    border-radius: 18px;
    padding: 24px;
    position: relative;
    transition: border-color .11s ease-out
}

.portal-root .condition-item:hover {
    border-color: #776bbf59
}

.portal-root .condition-number {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: #776bbf2e;
    position: absolute;
    top: 12px;
    right: 16px
}

.portal-root .condition-label {
    font-size: 16px;
    font-weight: 700;
    color: #CEBBDE;
    margin-bottom: 12px;
    line-height: 1.4
}

.portal-root .condition-text {
    font-size: 14px;
    line-height: 1.65;
    color: #9d93b8
}

.portal-root .belonging-block {
    padding: 96px 0;
    position: relative;
    background: #13141d
}

.portal-root .belonging-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, #776bbf14 0%, transparent 40%, #cebbde0d 100%);
    pointer-events: none
}

.portal-root .belonging-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(90deg, #CEBBDE 0px, #CEBBDE 4px, transparent 4px, transparent 10px, #776BBF 10px, #776BBF 16px, transparent 16px, transparent 24px)
}

.portal-root .belonging-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 1
}

.portal-root .belonging-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.portal-root .belonging-column-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1.5px solid
}

.portal-root .belonging-column-label.yes {
    color: #CEBBDE;
    border-color: #cebbde4d
}

.portal-root .belonging-column-label.no {
    color: #7a7090;
    border-color: #7a709033
}

.portal-root .belonging-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.portal-root .belonging-list li {
    font-size: 14px;
    line-height: 1.65;
    color: #b8afd0;
    padding-left: 16px;
    position: relative
}

.portal-root .belonging-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #776BBF
}

.portal-root .belonging-list.dim li {
    color: #6a6280
}

.portal-root .belonging-list.dim li::before {
    background: #3d3858
}

.portal-root .belonging-aside {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.portal-root .belonging-heading {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    text-shadow: 0 1px 10px #776bbf38;
    margin: 0
}

.portal-root .belonging-image-wrap {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 18px 1px #776bbf1c;
    position: relative
}

.portal-root .belonging-image-wrap img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform .11s ease-out
}

.portal-root .belonging-image-wrap:hover img {
    transform: scale(1.04)
}

.portal-root .belonging-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, #0d0e14e0 0%, transparent 100%);
    color: #CEBBDE;
    font-size: 14px;
    line-height: 1.4;
    padding: 24px 12px 12px;
    opacity: 0;
    transition: opacity .11s ease-out
}

.portal-root .belonging-image-wrap:hover .belonging-caption {
    opacity: 1
}

.portal-root .gap-block {
    padding: 96px 0 48px;
    background: #0d0e14;
    position: relative
}

.portal-root .gap-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, transparent 50%, #776bbf0d 100%);
    pointer-events: none
}

.portal-root .gap-header {
    margin-bottom: 48px
}

.portal-root .gap-heading {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    text-shadow: 0 2px 14px #776bbf33;
    margin: 0 0 12px
}

.portal-root .gap-intro {
    font-size: 16px;
    line-height: 1.65;
    color: #9d93b8;
    max-width: 480px
}

.portal-root .gap-flow {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 1
}

.portal-root .gap-step {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    gap: 24px;
    align-items: center;
    padding: 24px;
    background: #776bbf0d;
    border-radius: 10px;
    border: 1px solid #776bbf1a;
    transition: background .11s ease-out
}

.portal-root .gap-step:hover {
    background: #776bbf1a
}

.portal-root .gap-step-number {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: #776bbf40;
    text-align: center
}

.portal-root .gap-step-body {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.portal-root .gap-step-label {
    font-size: 16px;
    font-weight: 700;
    color: #CEBBDE;
    line-height: 1.4
}

.portal-root .gap-step-text {
    font-size: 14px;
    line-height: 1.65;
    color: #9d93b8
}

.portal-root .gap-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px
}

.portal-root .gap-arrow-num {
    font-size: 14px;
    font-weight: 700;
    color: #776BBF
}

.portal-root .gap-arrow-line {
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, #776BBF 0%, #CEBBDE 100%);
    border-radius: 2px
}

.portal-root .gap-arrow-head {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #CEBBDE
}

.portal-root .longterm-block {
    padding: 48px 0 96px;
    background: #111219;
    position: relative
}

.portal-root .longterm-block::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 240px;
    height: 240px;
    pointer-events: none;
    border-radius: 50%;
    border: 1px solid #cebbde0d;
    box-shadow: 0 0 0 28px #cebbde08 0 0 0 56px #cebbde04;
    transform: translate(-30%, 30%)
}

.portal-root .longterm-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(90deg, transparent 0px, transparent 8px, #776BBF 8px, #776BBF 10px, transparent 10px, transparent 18px, #CEBBDE 18px, #CEBBDE 22px, transparent 22px, transparent 32px)
}

.portal-root .longterm-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 1
}

.portal-root .longterm-text {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.portal-root .longterm-heading {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    text-shadow: 0 1px 10px #cebbde1f;
    margin: 0;
    text-align: center
}

.portal-root .longterm-para {
    font-size: 16px;
    line-height: 1.65;
    color: #9d93b8
}

.portal-root .longterm-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.portal-root .metric-box {
    background: linear-gradient(135deg, #776bbf1f 0%, #cebbde0f 100%);
    border: 1px solid #776bbf33;
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: inset 0 1px 0 #ffffff0a;
    transition: border-color .12s ease-out
}

.portal-root .metric-box:hover {
    border-color: #776bbf66
}

.portal-root .metric-value {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: #776BBF
}

.portal-root .metric-value span {
    font-size: 24px;
    color: #CEBBDE
}

.portal-root .metric-label {
    font-size: 14px;
    line-height: 1.4;
    color: #9d93b8
}

.portal-root .longterm-image-wrap {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 9px 44px 1px #776bbf1a
}

.portal-root .longterm-image-wrap img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform .14s ease-out
}

.portal-root .longterm-image-wrap:hover img {
    transform: scale(1.03)
}

.portal-root .longterm-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, #0d0e14e6 0%, transparent 100%);
    color: #CEBBDE;
    font-size: 14px;
    line-height: 1.4;
    padding: 24px 12px 12px;
    opacity: 0;
    transition: opacity .14s ease-out
}

.portal-root .longterm-image-wrap:hover .longterm-caption {
    opacity: 1
}

.portal-root .voices-block {
    padding: 96px 0;
    background: #0d0e14;
    position: relative
}

.portal-root .voices-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, #cebbde0a 0%, transparent 50%, #776bbf0f 100%);
    pointer-events: none
}

.portal-root .voices-header {
    text-align: center;
    margin-bottom: 48px
}

.portal-root .voices-heading {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    text-shadow: 0 2px 14px #776bbf2e;
    margin: 0 0 12px
}

.portal-root .voices-sub {
    font-size: 16px;
    line-height: 1.65;
    color: #9d93b8;
    max-width: 520px;
    margin: 0 auto
}

.portal-root .voices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    position: relative;
    z-index: 1
}

.portal-root .voice-card {
    background: linear-gradient(160deg, #161720 0%, #0f1018 100%);
    border: 1px solid #776bbf26;
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 1px 3px 1px #776bbf0d;
    transition: border-color .1s ease-out, box-shadow .1s ease-out
}

.portal-root .voice-card:hover {
    border-color: #776bbf59;
    box-shadow: 0 4px 18px 1px #776bbf1c
}

.portal-root .voice-quote {
    font-size: 16px;
    line-height: 1.85;
    color: #c4bdd8;
    font-style: italic
}

.portal-root .voice-divider {
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #776BBF, #CEBBDE);
    border-radius: 2px
}

.portal-root .voice-meta {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.portal-root .voice-name {
    font-size: 14px;
    font-weight: 700;
    color: #CEBBDE
}

.portal-root .voice-detail {
    font-size: 14px;
    color: #776BBF
}

.portal-root .voice-before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 6px;
    align-items: center;
    background: #776bbf12;
    border-radius: 10px;
    padding: 12px;
    margin-top: 6px
}

.portal-root .voice-state {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.portal-root .voice-state-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #6a6280
}

.portal-root .voice-state-text {
    font-size: 14px;
    line-height: 1.4;
    color: #b8afd0
}

.portal-root .voice-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px
}

.portal-root .voice-arrow-line {
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #776BBF, #CEBBDE)
}

.portal-root .voice-arrow-tip {
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #CEBBDE
}

@media (max-width: 768px) {
    .portal-root .title-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .portal-root .title-heading {
        font-size: 24px
    }

    .portal-root .experience-layout {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .portal-root .conditions-grid {
        grid-template-columns: 1fr
    }

    .portal-root .belonging-layout {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .portal-root .belonging-columns {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .portal-root .gap-step {
        grid-template-columns: 48px 1fr;
        gap: 12px
    }

    .portal-root .gap-arrow {
        display: none
    }

    .portal-root .longterm-layout {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .portal-root .longterm-metrics {
        grid-template-columns: 1fr 1fr
    }

    .portal-root .voices-grid {
        grid-template-columns: 1fr
    }

    .portal-root .title-block {
        padding: 48px 0 24px
    }

    .portal-root .experience-block,
    .portal-root .belonging-block,
    .portal-root .gap-block,
    .portal-root .voices-block {
        padding: 48px 0
    }
}

@media (min-width: 769px) and (max-width: 1280px) {
    .portal-root .title-heading {
        font-size: 52px
    }

    .portal-root .conditions-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .portal-root .voices-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@keyframes colorwash {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0 50%
    }
}

.portal-root .title-block {
    background-size: 200% 200%;
    animation: colorwash 18s ease-in-out infinite;
    background-image: linear-gradient(160deg, #0d0e14 0%, #111219 35%, #0f0f18 65%, #0d0e14 100%)
}

.about-us-page {
    background-color: #0d0f14;
    color: #c8c4d8;
    overflow-x: clip
}

.about-us-page .strip-band {
    position: relative;
    overflow: hidden;
    background: #10121a
}

.about-us-page .strip-image-bar {
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 180px;
    overflow: hidden;
    position: relative
}

.about-us-page .strip-image-bar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.3) brightness(0.55);
    display: block
}

.about-us-page .strip-image-bar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #776bbf38 0%, transparent 50%, #cebbde1a 100%);
    pointer-events: none
}

.about-us-page .strip-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    height: 100%;
    pointer-events: none
}

.about-us-page .strip-shapes::before {
    content: "";
    position: absolute;
    top: -30px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 18px;
    background: #776bbf12;
    transform: rotate(22deg)
}

.about-us-page .strip-shapes::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: 60px;
    width: 90px;
    height: 90px;
    border-radius: 10px;
    background: #cebbde0f;
    transform: rotate(-14deg)
}

.about-us-page .strip-text-zone {
    padding: 24px 48px;
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 48px
}

.about-us-page .strip-label {
    font-size: 14px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #776BBF;
    white-space: nowrap;
    line-height: 1.15
}

.about-us-page .strip-headline {
    font-size: 52px;
    line-height: 1.15;
    color: #fff;
    font-weight: 800;
    text-shadow: 0 2px 18px #776bbf47 0 1px 0 #cebbde1f;
    margin: 0
}

.about-us-page .strip-sub {
    font-size: 16px;
    line-height: 1.4;
    color: #CEBBDE;
    margin: 0;
    max-width: 480px
}

.about-us-page .about-identity {
    max-width: 1320px;
    margin: 0 auto;
    padding: 96px 48px 48px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start
}

.about-us-page .identity-anchor {
    font-size: 70px;
    line-height: 1.15;
    font-weight: 900;
    color: #776bbf1a;
    letter-spacing: -.04em;
    user-select: none;
    pointer-events: none;
    text-align: left;
    padding-top: 6px
}

.about-us-page .identity-body {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.about-us-page .identity-heading {
    font-size: 24px;
    line-height: 1.4;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 1px 6px #776bbf2e;
    margin: 0
}

.about-us-page .identity-paragraph {
    font-size: 16px;
    line-height: 1.65;
    color: #c8c4d8;
    margin: 0
}

.about-us-page .identity-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 12px
}

.about-us-page .identity-card {
    background: linear-gradient(135deg, #16192a 0%, transparent 60%, #776bbf0f 100%);
    border-radius: 10px;
    padding: 24px;
    border-top: 2px solid #776bbf38;
    border-right: 1px solid #cebbde14;
    border-bottom: 1px solid #cebbde0d;
    border-left: 1px solid #776bbf1a;
    box-shadow: 0 4px 18px 1px #776bbf1c;
    transition: border-top-color .12s ease-out, box-shadow .12s ease-out
}

.about-us-page .identity-card:hover {
    border-top-color: #776bbf99;
    box-shadow: 0 9px 44px 1px #776bbf1a;
    transform: rotate(-0.6deg)
}

.about-us-page .identity-card-label {
    font-size: 14px;
    color: #776BBF;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin: 0 0 6px;
    line-height: 1.15
}

.about-us-page .identity-card-text {
    font-size: 16px;
    color: #fff;
    line-height: 1.4;
    margin: 0
}

.about-us-page .dot-divider {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 0
}

.about-us-page .dot-divider span {
    width: 6px;
    height: 6px;
    border-radius: 0;
    background: #776bbf66;
    display: block;
    transform: rotate(45deg)
}

.about-us-page .dot-divider span:nth-child(2) {
    background: #cebbde80;
    width: 8px;
    height: 8px
}

.about-us-page .approach-zone {
    position: relative;
    overflow: hidden
}

.about-us-page .approach-diagonal {
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, #12101e 0%, #12101e 48%, #0d1020 48%, #0d1020 100%);
    pointer-events: none
}

.about-us-page .approach-inner {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    padding: 96px 48px;
    display: grid;
    grid-template-columns: 260px 1fr 260px;
    gap: 48px;
    align-items: start
}

.about-us-page .approach-sidebar-left {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.about-us-page .approach-sidebar-right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.about-us-page .approach-center {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center
}

.about-us-page .approach-heading {
    font-size: 24px;
    line-height: 1.4;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 1px 8px #776bbf38;
    margin: 0
}

.about-us-page .approach-description {
    font-size: 16px;
    line-height: 1.65;
    color: #c8c4d8;
    margin: 0
}

.about-us-page .approach-image-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #776bbf38;
    box-shadow: 0 4px 18px 1px #776bbf1c inset 0 1px 0 #cebbde1a;
    aspect-ratio: 16/9;
    transition: transform .14s ease-out, box-shadow .14s ease-out
}

.about-us-page .approach-image-frame:hover {
    transform: rotate(1deg);
    box-shadow: 0 9px 44px 1px #776bbf1a
}

.about-us-page .approach-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.about-us-page .approach-image-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #776bbf24 0%, transparent 55%);
    pointer-events: none;
    z-index: 1
}

.about-us-page .sidebar-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 12px;
    border-left: 3px solid #776bbf59;
    border-right: none;
    border-top: none;
    border-bottom: none;
    transition: border-left-color .1s linear
}

.about-us-page .sidebar-item:hover {
    border-left-color: #776BBF
}

.about-us-page .sidebar-item-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 0;
    background: #776BBF;
    transform: rotate(45deg);
    margin-bottom: 6px;
    flex-shrink: 0
}

.about-us-page .sidebar-item-title {
    font-size: 14px;
    color: #CEBBDE;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    line-height: 1.15;
    margin: 0
}

.about-us-page .sidebar-item-text {
    font-size: 14px;
    color: #c8c4d8;
    line-height: 1.65;
    margin: 0
}

.about-us-page .approach-stat-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap
}

.about-us-page .approach-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    background: #776bbf14;
    border-radius: 6px;
    border: 1px solid #776bbf26;
    box-shadow: 0 1px 3px 1px #776bbf0d
}

.about-us-page .approach-stat-number {
    font-size: 24px;
    color: #776BBF;
    font-weight: 800;
    line-height: 1.15
}

.about-us-page .approach-stat-label {
    font-size: 14px;
    color: #CEBBDE;
    line-height: 1.4;
    text-align: center
}

.about-us-page .team-zone {
    background: #0b0d16;
    padding: 96px 48px 48px
}

.about-us-page .team-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px
}

.about-us-page .team-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.about-us-page .team-heading {
    font-size: 24px;
    line-height: 1.4;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 1px 8px #776bbf38;
    margin: 0
}

.about-us-page .team-subtext {
    font-size: 16px;
    color: #c8c4d8;
    line-height: 1.65;
    max-width: 620px;
    margin: 0 auto
}

.about-us-page .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.about-us-page .team-member {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(160deg, #14172a 0%, transparent 70%, #cebbde0a 100%);
    border-radius: 18px;
    padding: 24px;
    border: 1px solid #776bbf24;
    box-shadow: 0 1px 3px 1px #776bbf0d;
    transition: transform .11s ease-out, box-shadow .11s ease-out
}

.about-us-page .team-member:hover {
    transform: rotate(-0.8deg);
    box-shadow: 0 4px 18px 1px #776bbf1c
}

.about-us-page .team-member-image {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #776bbf2e;
    box-shadow: inset 0 1px 6px #776bbf1f
}

.about-us-page .team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.about-us-page .team-member-name {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.about-us-page .team-member-name::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 0;
    background: #776BBF;
    transform: rotate(45deg);
    flex-shrink: 0
}

.about-us-page .team-member-role {
    font-size: 14px;
    color: #CEBBDE;
    letter-spacing: .1em;
    text-transform: uppercase;
    line-height: 1.15;
    margin: 0
}

.about-us-page .team-member-bio {
    font-size: 14px;
    color: #c8c4d8;
    line-height: 1.65;
    margin: 0
}

.about-us-page .team-extra {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 12px
}

.about-us-page .team-extra-image {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #cebbde24;
    box-shadow: 0 4px 18px 1px #776bbf1c inset 0 1px 0 #cebbde14;
    transition: transform .13s ease-out
}

.about-us-page .team-extra-image:hover {
    transform: rotate(0.7deg)
}

.about-us-page .team-extra-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.about-us-page .team-extra-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center
}

.about-us-page .team-extra-heading {
    font-size: 24px;
    line-height: 1.4;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 1px 6px #776bbf2e;
    margin: 0
}

.about-us-page .team-extra-paragraph {
    font-size: 16px;
    line-height: 1.65;
    color: #c8c4d8;
    margin: 0
}

.about-us-page .team-contact-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 12px
}

.about-us-page .contact-pill {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    background: #776bbf1f;
    border: 1px solid #776bbf47;
    color: #CEBBDE;
    font-size: 14px;
    line-height: 1.15;
    text-decoration: none;
    transition: background .1s linear, color .1s linear
}

.about-us-page .contact-pill:hover {
    background: #776bbf47;
    color: #fff
}

.about-us-page .contact-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 0;
    background: #776BBF;
    transform: rotate(45deg);
    flex-shrink: 0
}

@media (max-width: 1280px) {
    .about-us-page .approach-inner {
        grid-template-columns: 200px 1fr 200px;
        gap: 24px;
        padding: 48px 24px
    }

    .about-us-page .about-identity {
        padding: 48px 24px
    }

    .about-us-page .team-zone {
        padding: 48px 24px
    }

    .about-us-page .strip-text-zone {
        padding: 24px;
        gap: 24px
    }
}

@media (max-width: 768px) {
    .about-us-page .strip-text-zone {
        flex-direction: column;
        gap: 12px;
        padding: 24px
    }

    .about-us-page .strip-headline {
        font-size: 52px
    }

    .about-us-page .about-identity {
        grid-template-columns: 1fr;
        padding: 48px 24px;
        gap: 24px
    }

    .about-us-page .identity-anchor {
        font-size: 52px;
        text-align: center
    }

    .about-us-page .identity-split {
        grid-template-columns: 1fr
    }

    .about-us-page .approach-inner {
        grid-template-columns: 1fr;
        padding: 48px 24px;
        gap: 24px
    }

    .about-us-page .approach-sidebar-left,
    .about-us-page .approach-sidebar-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px
    }

    .about-us-page .approach-center {
        order: -1
    }

    .about-us-page .team-grid {
        grid-template-columns: 1fr
    }

    .about-us-page .team-extra {
        grid-template-columns: 1fr
    }

    .about-us-page .team-zone {
        padding: 48px 24px
    }
}

.success-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    background-color: #0d0f14;
    position: relative
}

.success-page .confirmation-wrapper {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px
}

.success-page .icon-orbit {
    width: 96px;
    height: 96px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.success-page .icon-orbit::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(160deg, #776BBF 0%, transparent 55%, #CEBBDE 100%);
    opacity: .18
}

.success-page .icon-orbit::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 2px solid #776BBF;
    opacity: .4;
    box-shadow: 0 0 18px 4px #776bbf38 inset 0 0 12px 2px #776bbf1f
}

.success-page .checkmark-shape {
    width: 48px;
    height: 48px;
    position: relative;
    z-index: 1
}

.success-page .checkmark-shape svg {
    width: 100%;
    height: 100%;
    display: block
}

.success-page .message-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    max-width: 640px
}

.success-page .confirmation-heading {
    font-size: 52px;
    line-height: 1.15;
    color: #FFF;
    margin: 0;
    text-shadow: 0 2px 18px #776bbf47 0 1px 0 #cebbde1f;
    font-weight: 700
}

.success-page .confirmation-subtext {
    font-size: 16px;
    line-height: 1.65;
    color: #CEBBDE;
    margin: 0;
    max-width: 480px
}

.success-page .detail-panel {
    background: linear-gradient(160deg, #776bbf17 0%, transparent 50%, #cebbde0f 100%);
    border: 1px solid #776bbf38;
    border-radius: 18px;
    padding: 24px 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 4px 18px 1px #776bbf1c
}

.success-page .detail-panel .detail-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px
}

.success-page .detail-panel .detail-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #776BBF;
    flex-shrink: 0;
    box-shadow: 0 0 6px 2px #776bbf59
}

.success-page .detail-panel .detail-text {
    font-size: 14px;
    line-height: 1.4;
    color: #CEBBDE;
    margin: 0
}

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

.success-page .primary-action {
    display: inline-block;
    padding: 12px 48px;
    background: linear-gradient(135deg, #776BBF 0%, #5a50a0 100%);
    color: #FFF;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 18px 1px #776bbf1c;
    transition: background .12s ease-out, box-shadow .12s ease-out;
    position: relative;
    overflow: hidden
}

.success-page .primary-action::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, #cebbde38 50%, transparent 100%);
    transition: left .13s ease-out
}

.success-page .primary-action:hover::before {
    left: 100%
}

.success-page .primary-action:hover {
    box-shadow: 0 9px 44px 1px #776bbf1a;
    background: linear-gradient(135deg, #8a7ed4 0%, #6a5fb8 100%)
}

.success-page .primary-action:focus {
    outline: 2px solid #CEBBDE;
    outline-offset: 3px
}

.success-page .secondary-action {
    display: inline-block;
    padding: 12px 48px;
    background: transparent;
    color: #CEBBDE;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    border-radius: 10px;
    border: 1px solid #776bbf61;
    cursor: pointer;
    text-decoration: none;
    transition: border-color .09s linear, color .09s linear
}

.success-page .secondary-action:hover {
    border-color: #776BBF;
    color: #FFF
}

.success-page .secondary-action:focus {
    outline: 2px solid #CEBBDE;
    outline-offset: 3px
}

.success-page .divider-line {
    width: 64px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #776BBF, transparent);
    border: none;
    margin: 0
}

.success-page .contact-hint {
    font-size: 14px;
    line-height: 1.4;
    color: #cebbde8c;
    margin: 0;
    text-align: center
}

.success-page .contact-hint a {
    color: #776BBF;
    text-decoration: none;
    border-bottom: 1px solid #776bbf4d;
    transition: color .08s ease-out, border-color .08s ease-out
}

.success-page .contact-hint a:hover {
    color: #CEBBDE;
    border-color: #cebbde80
}

@media (max-width: 768px) {
    .success-page {
        padding: 48px 12px
    }

    .success-page .confirmation-heading {
        font-size: 24px;
        line-height: 1.15
    }

    .success-page .detail-panel {
        padding: 24px
    }

    .success-page .action-group {
        flex-direction: column;
        align-items: stretch
    }

    .success-page .primary-action,
    .success-page .secondary-action {
        text-align: center;
        padding: 12px 24px
    }
}