body {
    margin: 0;
    -webkit-text-size-adjust: 100%;
    word-break: break-word;
    overflow-wrap: anywhere;
    font-family: "Source Code Pro", monospace;
}

.site-header {
    position: relative;
    background: #ffffff;
    border-bottom: 2px solid #5F4FC8;
    box-shadow: 1px 7px 25px 0 rgba(95, 79, 200, 0.09);
    z-index: 100;
}

.brand-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 24px 36px 12px;
    max-width: 1440px;
    margin: 0 auto;
    border-bottom: 1px solid #DEDDE7;
}

.logo-ring {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px #B8B9E8, 1px 3px 4px 0 rgba(95, 79, 200, 0.08);
    border-radius: 4px;
    background: #ffffff;
    padding: 6px;
}

.logo-ring img {
    display: block;
    object-fit: contain;
}

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

.brand-name {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1;
    color: #1a0f6e;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand-tagline {
    font-size: 14px;
    line-height: 1.75;
    color: #3a3260;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-row {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 36px;
    background: linear-gradient(90deg, #f7f6ff 0%, #ffffff 60%, #ededf8 100%);
}

.primary-nav {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.primary-nav li {
    position: relative;
}

.primary-nav li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
    color: #2a1f80;
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
    transition: color 0.12s ease-out, border-color 0.1s ease-out, background 0.1s linear;
    min-height: 44px;
}

.primary-nav li a:hover {
    color: #5F4FC8;
    background: rgba(95, 79, 200, 0.05);
    border-bottom-color: #B8B9E8;
}

.primary-nav li a.active-link {
    color: #5F4FC8;
    border-bottom-color: #5F4FC8;
    background: rgba(95, 79, 200, 0.07);
}

.primary-nav li a:focus-visible {
    outline: 2px solid #5F4FC8;
    outline-offset: 2px;
}

.nav-arrow {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -2px;
    transition: transform 0.1s ease-out;
}

.has-submenu:hover .nav-arrow {
    transform: rotate(-135deg);
    margin-top: 2px;
}

.submenu-bridge {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 6px;
    background: transparent;
    z-index: 200;
}

.submenu-panel {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 280px;
    background: #ffffff;
    border: 1px solid #B8B9E8;
    border-top: 3px solid #5F4FC8;
    box-shadow: 1px 8px 36px 0 rgba(95, 79, 200, 0.14);
    border-radius: 0px 0px 4px 4px;
    z-index: 200;
    padding: 6px 0;
}

.has-submenu:hover .submenu-bridge,
.has-submenu:hover .submenu-panel,
.submenu-bridge:hover+.submenu-panel,
.submenu-panel:hover {
    display: block;
}

.submenu-panel a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 400;
    color: #2a1f80;
    text-decoration: none;
    letter-spacing: 0.04em;
    border-bottom: none;
    border-left: none;
    transition: background 0.09s linear, color 0.09s linear;
    min-height: 44px;
    white-space: nowrap;
}

.submenu-panel a:hover {
    background: rgba(95, 79, 200, 0.07);
    color: #5F4FC8;
    border-bottom: none;
}

.submenu-arrow {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 2px solid #5F4FC8;
    border-top: 2px solid #5F4FC8;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.site-footer {
    position: relative;
    background: #f4f3fb;
    border-top: 4px solid #5F4FC8;
}

.footer-accent-band {
    background: linear-gradient(90deg, #5F4FC8 0%, #7a6cd4 50%, #5F4FC8 100%);
    height: 6px;
    width: 100%;
}

.footer-body {
    max-width: 1440px;
    margin: 0 auto;
    padding: 72px 36px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.footer-company-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    max-width: 480px;
}

.footer-logo-ring {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    box-shadow: 0 0 0 2px #B8B9E8, 1px 3px 4px 0 rgba(95, 79, 200, 0.08);
    border-radius: 4px;
    background: #ffffff;
    padding: 6px;
}

.footer-logo-ring img {
    display: block;
    object-fit: contain;
}

.footer-brand-name {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.1;
    color: #2a1f80;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-description {
    font-size: 14px;
    line-height: 1.75;
    color: #3a3260;
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 1.75;
    color: #2a1f80;
}

.footer-contact-label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 14px;
    color: #5F4FC8;
}

.footer-contact-item a {
    color: #2a1f80;
    text-decoration: none;
    transition: color 0.1s ease-out;
}

.footer-contact-item a:hover {
    color: #5F4FC8;
}

.footer-contact-item a:focus-visible {
    outline: 2px solid #5F4FC8;
    outline-offset: 2px;
}

.footer-address {
    font-size: 14px;
    line-height: 1.75;
    color: #3a3260;
    text-align: center;
}

.footer-legal-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 24px 0 0;
    border-top: 1px solid #DEDDE7;
    width: 100%;
}

.footer-legal-nav a {
    font-size: 14px;
    line-height: 1.75;
    color: #5F4FC8;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.09s linear;
}

.footer-legal-nav a:hover {
    color: #2a1f80;
}

.footer-legal-nav a:focus-visible {
    outline: 2px solid #5F4FC8;
    outline-offset: 2px;
}

.footer-copyright {
    font-size: 14px;
    line-height: 1.75;
    color: #7a6e9e;
    text-align: center;
}

.cookie-popup {
    position: fixed;
    top: 24px;
    left: 24px;
    width: 320px;
    background: #ffffff;
    border: 1px solid #B8B9E8;
    border-top: 3px solid #5F4FC8;
    border-radius: 4px;
    box-shadow: 1px 8px 36px 0 rgba(95, 79, 200, 0.14);
    z-index: 4000;
    padding: 24px;
    display: none;
}

.cookie-icon-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
}

.cookie-text {
    font-size: 14px;
    line-height: 1.75;
    color: #2a1f80;
    font-family: "Source Code Pro", monospace;
    margin: 0 0 12px;
}

.cookie-toggle-row {
    display: none;
    padding: 12px 0 6px;
    border-top: 1px solid #DEDDE7;
    margin-bottom: 12px;
}

.cookie-toggle-row.open {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cookie-toggle-label {
    font-size: 14px;
    line-height: 1.75;
    color: #3a3260;
    font-family: "Source Code Pro", monospace;
}

.cookie-toggle-switch {
    position: relative;
    width: 36px;
    height: 20px;
    flex-shrink: 0;
}

.cookie-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.cookie-toggle-track {
    position: absolute;
    inset: 0;
    background: #DEDDE7;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.1s ease-out;
}

.cookie-toggle-track::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 14px;
    height: 14px;
    border-radius: 10px;
    background: #ffffff;
    transition: transform 0.1s ease-out;
}

.cookie-toggle-switch input:checked+.cookie-toggle-track {
    background: #5F4FC8;
}

.cookie-toggle-switch input:checked+.cookie-toggle-track::after {
    transform: translateX(16px);
}

.cookie-toggle-switch input:focus-visible+.cookie-toggle-track {
    outline: 2px solid #5F4FC8;
    outline-offset: 2px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-accept-button {
    font-family: "Source Code Pro", monospace;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #5F4FC8;
    background: transparent;
    border: 1px solid #5F4FC8;
    border-radius: 2px;
    padding: 6px 12px;
    cursor: pointer;
    min-height: 44px;
    transition: background 0.1s linear, color 0.1s linear;
}

.cookie-accept-button:hover {
    background: #5F4FC8;
    color: #ffffff;
}

.cookie-accept-button:focus-visible {
    outline: 2px solid #5F4FC8;
    outline-offset: 2px;
}

.cookie-manage-button {
    font-family: "Source Code Pro", monospace;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #3a3260;
    background: transparent;
    border: 1px solid #DEDDE7;
    border-radius: 2px;
    padding: 6px 12px;
    cursor: pointer;
    min-height: 44px;
    transition: border-color 0.1s linear, color 0.1s linear;
}

.cookie-manage-button:hover {
    border-color: #B8B9E8;
    color: #5F4FC8;
}

.cookie-manage-button:focus-visible {
    outline: 2px solid #5F4FC8;
    outline-offset: 2px;
}

@media (max-width: 600px) {
    .brand-row {
        padding: 24px 24px 12px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .brand-name {
        font-size: 21px;
    }

    .nav-row {
        padding: 0 12px;
    }

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

    .footer-body {
        padding: 36px 24px 24px;
    }

    .cookie-popup {
        left: 12px;
        right: 12px;
        width: auto;
        top: 12px;
    }
}

@media (max-width: 900px) {
    .brand-row {
        padding: 24px 24px 12px;
    }

    .nav-row {
        padding: 0 24px;
    }

    .primary-nav li a {
        padding: 12px 12px;
    }
}

@media (min-width: 1200px) {
    .primary-nav li a {
        padding: 12px 36px;
    }
}

.doc-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 72px 36px;
}

.doc-inner h1 {
    font-size: 70px;
    line-height: 1.1;
    color: #1b1630;
    margin-bottom: 36px;
    margin-top: 0;
    letter-spacing: -0.5px;
}

.doc-inner h2 {
    font-size: 38px;
    line-height: 1.1;
    color: #1b1630;
    margin-top: 72px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #DEDDE7;
}

.doc-inner h3 {
    font-size: 21px;
    line-height: 1.75;
    color: #2a2050;
    margin-top: 36px;
    margin-bottom: 12px;
    font-weight: 700;
}

.doc-inner h4 {
    font-size: 21px;
    line-height: 1.75;
    color: #3d3070;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.doc-inner h5 {
    font-size: 14px;
    line-height: 1.75;
    color: #3d3070;
    margin-top: 24px;
    margin-bottom: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.doc-inner h6 {
    font-size: 14px;
    line-height: 1.75;
    color: #5F4FC8;
    margin-top: 24px;
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.doc-inner p {
    font-size: 21px;
    line-height: 1.75;
    color: #2c2840;
    margin-top: 0;
    margin-bottom: 24px;
    max-width: 72ch;
}

.doc-inner ul {
    margin-top: 0;
    margin-bottom: 24px;
    padding-left: 24px;
    list-style: none;
}

.doc-inner ol {
    margin-top: 0;
    margin-bottom: 24px;
    padding-left: 24px;
    list-style: none;
    counter-reset: policy-counter;
}

.doc-inner ul li {
    font-size: 21px;
    line-height: 1.75;
    color: #2c2840;
    margin-bottom: 6px;
    padding-left: 18px;
    position: relative;
    max-width: 72ch;
}

.doc-inner ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #5F4FC8;
}

.doc-inner ol li {
    font-size: 21px;
    line-height: 1.75;
    color: #2c2840;
    margin-bottom: 6px;
    padding-left: 18px;
    position: relative;
    counter-increment: policy-counter;
    max-width: 72ch;
}

.doc-inner ol li::before {
    content: counter(policy-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    line-height: 1.75;
    color: #5F4FC8;
    font-weight: 700;
    transform: translateX(-100%);
    padding-right: 6px;
}

.doc-inner ul ul,
.doc-inner ol ol,
.doc-inner ul ol,
.doc-inner ol ul {
    margin-top: 6px;
    margin-bottom: 6px;
    padding-left: 24px;
}

.doc-inner a {
    color: #5F4FC8;
    text-decoration: underline;
    text-decoration-color: #B8B9E8;
    text-underline-offset: 3px;
    transition: color 0.12s ease-out, text-decoration-color 0.1s linear;
}

.doc-inner a:hover {
    color: #3d2fa8;
    text-decoration-color: #5F4FC8;
}

.doc-inner a:visited {
    color: #7a6dd4;
}

.doc-inner table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 36px;
    font-size: 14px;
    line-height: 1.75;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 1px 3px 4px 0 rgba(95, 79, 200, 0.08);
}

.doc-inner thead {
    background-color: #5F4FC8;
}

.doc-inner thead th {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.75;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 12px 24px;
    text-align: left;
    border: none;
}

.doc-inner tbody tr {
    border-bottom: 1px solid #DEDDE7;
    transition: background-color 0.09s ease-out;
}

.doc-inner tbody tr:last-child {
    border-bottom: none;
}

.doc-inner tbody tr:nth-child(even) {
    background-color: #f7f7fb;
}

.doc-inner tbody tr:hover {
    background-color: #eeedf8;
}

.doc-inner td {
    font-size: 14px;
    line-height: 1.75;
    color: #2c2840;
    padding: 12px 24px;
    vertical-align: top;
    border-right: 1px solid #DEDDE7;
}

.doc-inner td:last-child {
    border-right: none;
}

.doc-inner hr {
    border: none;
    border-top: 1px solid #DEDDE7;
    margin-top: 36px;
    margin-bottom: 36px;
    height: 0;
}

.doc-inner div {
    margin-bottom: 24px;
}

@media (max-width: 900px) {
    .doc-inner {
        padding: 36px 24px;
    }

    .doc-inner h1 {
        font-size: 38px;
    }

    .doc-inner h2 {
        font-size: 21px;
        margin-top: 36px;
    }

    .doc-inner table {
        display: none;
    }

    .doc-inner thead {
        display: none;
    }

    .doc-inner tbody {
        display: block;
        width: 100%;
    }

    .doc-inner tbody tr {
        display: block;
        border: 1px solid #DEDDE7;
        border-radius: 4px;
        margin-bottom: 12px;
        padding: 12px;
        background-color: #ffffff;
        box-shadow: 1px 3px 4px 0 rgba(95, 79, 200, 0.08);
    }

    .doc-inner tbody tr:nth-child(even) {
        background-color: #ffffff;
    }

    .doc-inner td {
        display: block;
        border-right: none;
        border-bottom: 1px solid #DEDDE7;
        padding: 6px 12px;
        font-size: 14px;
    }

    .doc-inner td:last-child {
        border-bottom: none;
    }

    .doc-inner td[data-label]::before {
        content: attr(data-label);
        display: block;
        font-size: 14px;
        font-weight: 700;
        color: #5F4FC8;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 6px;
    }
}

@media (max-width: 600px) {
    .doc-inner {
        padding: 24px 12px;
    }

    .doc-inner h1 {
        font-size: 38px;
        margin-bottom: 24px;
    }

    .doc-inner h2 {
        margin-top: 36px;
        margin-bottom: 12px;
    }

    .doc-inner p {
        font-size: 14px;
    }

    .doc-inner ul li,
    .doc-inner ol li {
        font-size: 14px;
    }

    .doc-inner hr {
        margin-top: 24px;
        margin-bottom: 24px;
    }
}

.upcoming-programs {
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
}

.upcoming-programs .programs-title-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
    padding-top: 72px;
    padding-bottom: 36px;
    position: relative;
}

.upcoming-programs .programs-text-column {
    padding: 72px 72px 36px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.upcoming-programs .programs-label {
    font-size: 14px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #5F4FC8;
    margin-bottom: 24px;
    font-weight: 400;
}

.upcoming-programs .programs-main-heading {
    font-size: 70px;
    line-height: 1.1;
    font-weight: 300;
    color: #1a1600;
    margin: 0 0 24px 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.upcoming-programs .programs-main-heading em {
    font-style: normal;
    color: #5F4FC8;
    display: block;
}

.upcoming-programs .programs-subtitle {
    font-size: 21px;
    line-height: 1.75;
    color: #3a3550;
    margin: 0 0 36px 0;
    max-width: 420px;
}

.upcoming-programs .programs-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #5F4FC8;
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.12s ease-out;
}

.upcoming-programs .programs-cta-link:hover {
    gap: 24px;
}

.upcoming-programs .programs-cta-link:focus {
    outline: 2px solid #5F4FC8;
    outline-offset: 4px;
    border-radius: 2px;
}

.upcoming-programs .cta-arrow {
    width: 20px;
    height: 2px;
    background: #5F4FC8;
    position: relative;
    flex-shrink: 0;
}

.upcoming-programs .cta-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #5F4FC8;
    border-top: 2px solid #5F4FC8;
    transform: rotate(45deg);
}

.upcoming-programs .programs-image-column {
    position: relative;
    overflow: hidden;
}

.upcoming-programs .programs-image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.9);
    transition: filter 0.14s ease-out;
}

.upcoming-programs .programs-image-column img:hover {
    filter: saturate(0);
}

.upcoming-programs .image-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(245, 243, 255, 0.92) 0%, rgba(245, 243, 255, 0.55) 40%, rgba(245, 243, 255, 0) 70%);
    pointer-events: none;
}

.upcoming-programs .decorative-shape-a {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(95, 79, 200, 0.12);
    border-radius: 0px;
    top: 36px;
    right: 36px;
    pointer-events: none;
    transform: rotate(15deg);
}

.upcoming-programs .decorative-shape-b {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(184, 185, 232, 0.2);
    border-radius: 0px;
    top: 72px;
    right: 72px;
    pointer-events: none;
    transform: rotate(30deg);
}

.upcoming-programs .corner-lines {
    position: absolute;
    bottom: 36px;
    left: 36px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    pointer-events: none;
}

.upcoming-programs .corner-lines span {
    display: block;
    height: 1px;
    background: rgba(95, 79, 200, 0.25);
}

.upcoming-programs .title-divider {
    padding: 12px 72px;
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
}

.upcoming-programs .diamond-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    width: 100%;
}

.upcoming-programs .diamond-item {
    width: 6px;
    height: 6px;
    background: #B8B9E8;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.upcoming-programs .diamond-item.accent {
    background: #5F4FC8;
}

.upcoming-programs .schedule-area {
    background: linear-gradient(158deg, #f5f3ff 0%, #eeedf8 60%, #e8e6f5 100%);
    padding: 72px;
    position: relative;
}

.upcoming-programs .schedule-area-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.upcoming-programs .schedule-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    margin-bottom: 48px;
    gap: 36px;
}

.upcoming-programs .schedule-heading {
    font-size: 38px;
    line-height: 1.1;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1a1600;
    margin: 0;
}

.upcoming-programs .schedule-note {
    font-size: 14px;
    line-height: 1.75;
    color: #5F4FC8;
    text-align: right;
    max-width: 200px;
}

.upcoming-programs .programs-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 4px;
    box-shadow: 1px 7px 25px 0 rgba(95, 79, 200, 0.09);
    overflow: hidden;
}

.upcoming-programs .programs-table thead tr {
    background: #5F4FC8;
}

.upcoming-programs .programs-table thead th {
    font-size: 14px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    font-weight: 400;
    padding: 24px;
    text-align: left;
}

.upcoming-programs .programs-table tbody tr {
    border-bottom: 1px solid #DEDDE7;
    transition: background 0.09s ease-out;
}

.upcoming-programs .programs-table tbody tr:last-child {
    border-bottom: none;
}

.upcoming-programs .programs-table tbody tr:hover {
    background: #f5f3ff;
}

.upcoming-programs .programs-table tbody td {
    font-size: 14px;
    line-height: 1.75;
    color: #2a2540;
    padding: 24px;
    vertical-align: top;
}

.upcoming-programs .program-name-cell {
    font-size: 21px;
    line-height: 1.1;
    font-weight: 600;
    color: #1a1600;
}

.upcoming-programs .program-type-badge {
    display: inline-block;
    font-size: 14px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 12px;
    border-radius: 2px;
    font-weight: 400;
}

.upcoming-programs .program-type-badge.group {
    background: rgba(95, 79, 200, 0.1);
    color: #5F4FC8;
}

.upcoming-programs .program-type-badge.individual {
    background: rgba(184, 185, 232, 0.3);
    color: #3a3550;
}

.upcoming-programs .program-spots {
    font-size: 14px;
    line-height: 1.1;
    color: #5F4FC8;
    font-weight: 600;
}

.upcoming-programs .program-spots.low {
    color: #8b5e00;
}

.upcoming-programs .enroll-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid #5F4FC8;
    border-radius: 2px;
    padding: 12px 24px;
    font-size: 14px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #5F4FC8;
    cursor: pointer;
    transition: background 0.1s ease-out, color 0.1s ease-out;
    white-space: nowrap;
}

.upcoming-programs .enroll-button:hover {
    background: #5F4FC8;
    color: #fff;
}

.upcoming-programs .enroll-button:focus {
    outline: 2px solid #5F4FC8;
    outline-offset: 4px;
}

.upcoming-programs .enroll-button:active {
    background: #4a3db0;
    border-color: #4a3db0;
    color: #fff;
}

.upcoming-programs .enroll-button.shake {
    animation: btn-shake 0.12s ease-in-out;
}

@keyframes btn-shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-4px);
    }

    75% {
        transform: translateX(4px);
    }

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

.upcoming-programs .feature-stack {
    margin-top: 72px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.upcoming-programs .feature-row {
    display: grid;
    grid-template-columns: 60px 1fr;
    align-items: start;
    padding: 24px 0;
    border-bottom: 1px solid #DEDDE7;
    gap: 24px;
}

.upcoming-programs .feature-row:last-child {
    border-bottom: none;
}

.upcoming-programs .feature-row.flipped {
    grid-template-columns: 1fr 60px;
}

.upcoming-programs .feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.upcoming-programs .feature-row.flipped .feature-icon {
    order: 2;
}

.upcoming-programs .feature-row.flipped .feature-text {
    order: 1;
    text-align: right;
}

.upcoming-programs .feature-text-label {
    font-size: 14px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #5F4FC8;
    font-weight: 600;
    margin-bottom: 6px;
}

.upcoming-programs .feature-text-desc {
    font-size: 14px;
    line-height: 1.75;
    color: #3a3550;
    margin: 0;
}

.upcoming-programs .schedule-corner-lines {
    position: absolute;
    top: 36px;
    right: 36px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    pointer-events: none;
}

.upcoming-programs .schedule-corner-lines span {
    display: block;
    height: 1px;
    background: rgba(95, 79, 200, 0.2);
}

.upcoming-programs .cards-mobile {
    display: none;
}

.upcoming-programs .blur-load {
    animation: blur-in 0.5s ease-in-out forwards;
}

@keyframes blur-in {
    from {
        filter: blur(6px) saturate(0.6);
        opacity: 0.5;
    }

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

@media (max-width: 1200px) {
    .upcoming-programs .programs-text-column {
        padding: 72px 36px 36px 36px;
    }

    .upcoming-programs .programs-main-heading {
        font-size: 38px;
    }

    .upcoming-programs .schedule-area {
        padding: 72px 36px;
    }
}

@media (max-width: 900px) {
    .upcoming-programs .programs-title-area {
        grid-template-columns: 1fr;
        padding-top: 36px;
    }

    .upcoming-programs .programs-image-column {
        height: 320px;
        order: -1;
    }

    .upcoming-programs .programs-text-column {
        padding: 36px 24px;
    }

    .upcoming-programs .programs-main-heading {
        font-size: 38px;
    }

    .upcoming-programs .schedule-area {
        padding: 36px 24px;
    }

    .upcoming-programs .schedule-header {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .upcoming-programs .schedule-note {
        text-align: left;
    }

    .upcoming-programs .programs-table {
        display: none;
    }

    .upcoming-programs .cards-mobile {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .upcoming-programs .program-card {
        background: #fff;
        border-radius: 4px;
        padding: 24px;
        box-shadow: 1px 3px 4px 0 rgba(95, 79, 200, 0.08);
    }

    .upcoming-programs .program-card-name {
        font-size: 21px;
        line-height: 1.1;
        font-weight: 600;
        color: #1a1600;
        margin-bottom: 12px;
    }

    .upcoming-programs .program-card-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 0;
        border-bottom: 1px solid #DEDDE7;
        font-size: 14px;
        line-height: 1.75;
        color: #3a3550;
    }

    .upcoming-programs .program-card-row:last-of-type {
        border-bottom: none;
        margin-bottom: 12px;
    }

    .upcoming-programs .program-card-label {
        text-transform: uppercase;
        letter-spacing: 0.06em;
        font-size: 14px;
        color: #5F4FC8;
        font-weight: 600;
    }

    .upcoming-programs .title-divider {
        padding: 12px 24px;
    }
}

@media (max-width: 600px) {
    .upcoming-programs .programs-main-heading {
        font-size: 38px;
    }

    .upcoming-programs .feature-row,
    .upcoming-programs .feature-row.flipped {
        grid-template-columns: 1fr;
    }

    .upcoming-programs .feature-row.flipped .feature-icon {
        order: 0;
    }

    .upcoming-programs .feature-row.flipped .feature-text {
        order: 0;
        text-align: left;
    }

    .upcoming-programs .corner-lines {
        display: none;
    }
}

.student-projects {
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: clip;
}

.student-projects .page-lead {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 36px;
    padding: 72px 72px 36px;
    position: relative;
    background: linear-gradient(160deg, #f5f4fc 0%, #eeedf7 60%, #d9d8ee 100%);
}

.student-projects .page-lead::before {
    content: "";
    position: absolute;
    top: 24px;
    right: 24px;
    width: 120px;
    height: 120px;
    background: none;
    border-top: 1px solid rgba(95, 79, 200, 0.18);
    border-right: 1px solid rgba(95, 79, 200, 0.18);
    pointer-events: none;
}

.student-projects .page-lead::after {
    content: "";
    position: absolute;
    bottom: 24px;
    left: 24px;
    width: 80px;
    height: 80px;
    border-bottom: 1px solid rgba(95, 79, 200, 0.14);
    border-left: 1px solid rgba(95, 79, 200, 0.14);
    pointer-events: none;
}

.student-projects .lead-image-left {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 1px 8px 36px 0 rgba(95, 79, 200, 0.14);
    align-self: start;
    margin-top: 36px;
}

.student-projects .lead-image-left img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    transition: filter 0.12s ease-out;
}

.student-projects .lead-image-left img:hover {
    filter: saturate(0);
}

.student-projects .lead-image-left::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(20, 16, 50, 0.55) 100%);
    border-radius: 4px;
    pointer-events: none;
}

.student-projects .lead-image-right {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 1px 8px 36px 0 rgba(95, 79, 200, 0.14);
    align-self: end;
    margin-bottom: 36px;
}

.student-projects .lead-image-right img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    transition: filter 0.09s linear;
}

.student-projects .lead-image-right img:hover {
    filter: saturate(0);
}

.student-projects .lead-image-right::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(20, 16, 50, 0.55) 100%);
    border-radius: 4px;
    pointer-events: none;
}

.student-projects .lead-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 36px 24px;
    position: relative;
}

.student-projects .lead-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(95, 79, 200, 0.15);
    border-radius: 2px;
    pointer-events: none;
}

.student-projects .page-eyebrow {
    font-size: 14px;
    line-height: 1.75;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #5F4FC8;
    font-weight: 500;
}

.student-projects .page-heading {
    font-size: 70px;
    line-height: 1.1;
    color: #1e1a3d;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    position: relative;
    padding-left: 18px;
}

.student-projects .page-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #5F4FC8;
}

.student-projects .page-description {
    font-size: 21px;
    line-height: 1.75;
    color: #2e2960;
    max-width: 480px;
}

.student-projects .lead-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 1.75;
    color: #5F4FC8;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: gap 0.1s ease-out;
    align-self: flex-start;
}

.student-projects .lead-link:hover {
    gap: 18px;
}

.student-projects .lead-link:focus {
    outline: 2px solid #5F4FC8;
    outline-offset: 4px;
    border-radius: 2px;
}

.student-projects .lead-link-arrow {
    width: 20px;
    height: 2px;
    background: #5F4FC8;
    position: relative;
    flex-shrink: 0;
}

.student-projects .lead-link-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -4px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #5F4FC8;
    border-right: 2px solid #5F4FC8;
    transform: rotate(45deg);
}

.student-projects .zigzag-divider {
    width: 100%;
    display: block;
    line-height: 0;
}

.student-projects .projects-grid-area {
    padding: 72px 72px 36px;
    background: #fff;
    position: relative;
}

.student-projects .projects-grid-area::before {
    content: "";
    position: absolute;
    bottom: 36px;
    right: 36px;
    width: 160px;
    height: 160px;
    background-image: repeating-linear-gradient(0deg,
            transparent,
            transparent 19px,
            rgba(95, 79, 200, 0.06) 19px,
            rgba(95, 79, 200, 0.06) 20px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 19px,
            rgba(95, 79, 200, 0.06) 19px,
            rgba(95, 79, 200, 0.06) 20px);
    pointer-events: none;
}

.student-projects .area-label {
    font-size: 14px;
    line-height: 1.75;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #5F4FC8;
    margin-bottom: 12px;
}

.student-projects .area-heading {
    font-size: 38px;
    line-height: 1.1;
    color: #1e1a3d;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 36px;
    position: relative;
    padding-left: 18px;
}

.student-projects .area-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: #B8B9E8;
}

.student-projects .projects-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.student-projects .project-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid #DEDDE7;
    transition: background 0.1s ease-out;
    position: relative;
}

.student-projects .project-item:first-child {
    border-top: 1px solid #DEDDE7;
}

.student-projects .project-item:hover {
    background: rgba(95, 79, 200, 0.03);
}

.student-projects .project-number {
    font-size: 38px;
    line-height: 1.1;
    color: #DEDDE7;
    font-weight: 300;
    text-align: right;
}

.student-projects .project-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.student-projects .project-name {
    font-size: 21px;
    line-height: 1.1;
    color: #1e1a3d;
    font-weight: 400;
}

.student-projects .project-student {
    font-size: 14px;
    line-height: 1.75;
    color: #5F4FC8;
}

.student-projects .project-description {
    font-size: 14px;
    line-height: 1.75;
    color: #4a4770;
}

.student-projects .project-tag {
    font-size: 14px;
    line-height: 1.75;
    color: #5F4FC8;
    border: 1px solid #B8B9E8;
    border-radius: 2px;
    padding: 6px 12px;
    white-space: nowrap;
    background: rgba(184, 185, 232, 0.12);
}

.student-projects .zigzag-divider-2 {
    width: 100%;
    display: block;
    line-height: 0;
}

.student-projects .depth-area {
    padding: 72px 72px;
    background: radial-gradient(ellipse at 50% 50%, #eeedf7 0%, #c8c6e2 100%);
    position: relative;
    overflow: hidden;
}

.student-projects .depth-diagonal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.student-projects .depth-diagonal svg {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.12;
}

.student-projects .depth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
    position: relative;
    z-index: 1;
}

.student-projects .depth-intro {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 12px;
}

.student-projects .depth-heading {
    font-size: 38px;
    line-height: 1.1;
    color: #1e1a3d;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    max-width: 500px;
}

.student-projects .depth-body {
    font-size: 14px;
    line-height: 1.75;
    color: #2e2960;
    max-width: 380px;
}

.student-projects .depth-card {
    background: #fff;
    border-radius: 4px;
    padding: 36px 24px;
    box-shadow: 1px 7px 25px 0 rgba(95, 79, 200, 0.09);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    transition: box-shadow 0.13s ease-out;
}

.student-projects .depth-card:hover {
    box-shadow: 1px 8px 36px 0 rgba(95, 79, 200, 0.14);
}

.student-projects .depth-card-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.student-projects .depth-card-title {
    font-size: 21px;
    line-height: 1.1;
    color: #1e1a3d;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.student-projects .depth-card-body {
    font-size: 14px;
    line-height: 1.75;
    color: #4a4770;
}

.student-projects .depth-card-student {
    font-size: 14px;
    line-height: 1.75;
    color: #5F4FC8;
    font-weight: 500;
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px solid #DEDDE7;
}

.student-projects .zigzag-divider-3 {
    width: 100%;
    display: block;
    line-height: 0;
}

.student-projects .recognition-area {
    padding: 72px 72px;
    background: #1e1a3d;
    position: relative;
}

.student-projects .recognition-area::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 24px;
    width: 100px;
    height: 100px;
    border-top: 1px solid rgba(184, 185, 232, 0.2);
    border-left: 1px solid rgba(184, 185, 232, 0.2);
    pointer-events: none;
}

.student-projects .recognition-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.student-projects .recognition-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.student-projects .recognition-eyebrow {
    font-size: 14px;
    line-height: 1.75;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #B8B9E8;
}

.student-projects .recognition-heading {
    font-size: 38px;
    line-height: 1.1;
    color: #fff;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.student-projects .recognition-body {
    font-size: 14px;
    line-height: 1.75;
    color: #B8B9E8;
}

.student-projects .recognition-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 1.75;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: gap 0.1s ease-out;
    align-self: flex-start;
    border-bottom: 2px solid #5F4FC8;
    padding-bottom: 2px;
}

.student-projects .recognition-link:hover {
    gap: 18px;
    color: #B8B9E8;
}

.student-projects .recognition-link:focus {
    outline: 2px solid #B8B9E8;
    outline-offset: 4px;
    border-radius: 2px;
}

.student-projects .recognition-link-arrow {
    width: 20px;
    height: 2px;
    background: #fff;
    position: relative;
    flex-shrink: 0;
}

.student-projects .recognition-link-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -4px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}

.student-projects .recognition-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.student-projects .recognition-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(184, 185, 232, 0.2);
}

.student-projects .recognition-item:first-child {
    border-top: 1px solid rgba(184, 185, 232, 0.2);
}

.student-projects .recognition-item-name {
    font-size: 21px;
    line-height: 1.1;
    color: #fff;
    font-weight: 300;
}

.student-projects .recognition-item-detail {
    font-size: 14px;
    line-height: 1.75;
    color: #B8B9E8;
}

.student-projects .recognition-item-tag {
    display: inline-block;
    font-size: 14px;
    line-height: 1.75;
    color: #5F4FC8;
    background: rgba(95, 79, 200, 0.15);
    border-radius: 2px;
    padding: 2px 12px;
    align-self: flex-start;
}

@keyframes grid-pulse {
    0% {
        opacity: 0.04;
    }

    50% {
        opacity: 0.09;
    }

    100% {
        opacity: 0.04;
    }
}

.student-projects .blueprint-texture {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 35px, rgba(95, 79, 200, 0.06) 35px, rgba(95, 79, 200, 0.06) 36px),
        repeating-linear-gradient(90deg, transparent, transparent 35px, rgba(95, 79, 200, 0.06) 35px, rgba(95, 79, 200, 0.06) 36px);
    animation: grid-pulse 6s ease-in-out infinite;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .student-projects .page-lead {
        grid-template-columns: 1fr 2fr 1fr;
        padding: 72px 36px 36px;
        gap: 24px;
    }

    .student-projects .page-heading {
        font-size: 38px;
    }

    .student-projects .projects-grid-area {
        padding: 72px 36px 36px;
    }

    .student-projects .depth-area {
        padding: 72px 36px;
    }

    .student-projects .recognition-area {
        padding: 72px 36px;
    }

    .student-projects .depth-grid {
        grid-template-columns: 1fr 1fr;
    }

    .student-projects .depth-intro {
        grid-column: 1 / -1;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 900px) {
    .student-projects .page-lead {
        grid-template-columns: 1fr;
        padding: 36px 24px;
        gap: 24px;
    }

    .student-projects .lead-image-left {
        margin-top: 0;
        display: none;
    }

    .student-projects .lead-image-right {
        margin-bottom: 0;
        display: none;
    }

    .student-projects .lead-text {
        padding: 24px 12px;
    }

    .student-projects .projects-grid-area {
        padding: 36px 24px;
    }

    .student-projects .project-item {
        grid-template-columns: 48px 1fr;
        grid-template-rows: auto auto;
    }

    .student-projects .project-tag {
        grid-column: 2;
    }

    .student-projects .depth-area {
        padding: 36px 24px;
    }

    .student-projects .depth-grid {
        grid-template-columns: 1fr;
    }

    .student-projects .depth-intro {
        flex-direction: column;
    }

    .student-projects .recognition-area {
        padding: 36px 24px;
    }

    .student-projects .recognition-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 600px) {
    .student-projects .page-heading {
        font-size: 38px;
    }

    .student-projects .project-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .student-projects .project-number {
        font-size: 21px;
        text-align: left;
    }

    .student-projects .project-tag {
        grid-column: 1;
        align-self: flex-start;
    }

    .student-projects .recognition-heading {
        font-size: 21px;
    }

    .student-projects .depth-heading {
        font-size: 21px;
    }

    .student-projects .area-heading {
        font-size: 21px;
    }
}

.contact-us-page {
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
}

.contact-us-page .reach-out-area {
    display: grid;
    grid-template-columns: 3fr 1fr;
    min-height: 80vh;
    position: relative;
}

.contact-us-page .reach-out-area::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #5F4FC8 0%, #B8B9E8 100%);
    z-index: 1 !important;
}

.contact-us-page .reach-out-text {
    padding: 72px 72px 72px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    position: relative;
}

.contact-us-page .reach-out-text::after {
    content: '';
    position: absolute;
    bottom: 24px;
    left: 72px;
    right: 72px;
    height: 1px;
    background: #DEDDE7;
}

.contact-us-page .eyebrow-label {
    font-size: 14px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #5F4FC8;
    margin-bottom: 24px;
    display: block;
}

.contact-us-page .reach-heading {
    font-size: 70px;
    line-height: 1.1;
    color: #1a0e4a;
    margin-bottom: 36px;
    font-weight: 300;
}

.contact-us-page .reach-subtext {
    font-size: 21px;
    line-height: 1.75;
    color: #3a3560;
    max-width: 520px;
}

.contact-us-page .image-strip {
    position: relative;
    overflow: hidden;
}

.contact-us-page .image-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.85);
    transition: filter 0.12s ease-out;
    animation: strip-drift 18s ease-in-out infinite alternate;
}

.contact-us-page .image-strip:hover img {
    filter: saturate(1.1);
}

@keyframes strip-drift {
    0% {
        transform: scale(1.08) translateY(0);
    }

    100% {
        transform: scale(1.08) translateY(-4%);
    }
}

.contact-us-page .decorative-circles {
    position: absolute;
    top: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    pointer-events: none;
    z-index: 0;
}

.contact-us-page .decorative-circles circle {
    fill: none;
    stroke: #5F4FC8;
}

.contact-us-page .form-area {
    background: #DEDDE7;
    padding: 72px;
    position: relative;
}

.contact-us-page .form-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, #5F4FC8 1px, transparent 1px);
    background-size: 28px 28px;
    background-position: 14px 0;
    opacity: 0.07;
    pointer-events: none;
}

.contact-us-page .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-us-page .form-heading {
    font-size: 38px;
    line-height: 1.1;
    color: #1a0e4a;
    margin-bottom: 36px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

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

.contact-us-page .field-group.full-width {
    grid-column: 1 / -1;
}

.contact-us-page .field-label {
    font-size: 14px;
    line-height: 1.1;
    color: #3a3560;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-us-page .field-input {
    background: #fff;
    border: 1px solid #B8B9E8;
    border-radius: 4px;
    padding: 12px 12px;
    font-size: 14px;
    line-height: 1.75;
    color: #1a0e4a;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 1px 3px 4px 0 rgba(95, 79, 200, 0.08);
    transition: border-color 0.1s ease-out, box-shadow 0.1s ease-out;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.contact-us-page .field-input::placeholder {
    font-size: 13px;
    color: #9896b0;
}

.contact-us-page .field-input:focus {
    border-color: #5F4FC8;
    box-shadow: 1px 7px 25px 0 rgba(95, 79, 200, 0.09);
}

.contact-us-page .slot-group {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-us-page .slot-label {
    font-size: 14px;
    line-height: 1.1;
    color: #3a3560;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-us-page .slot-options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-us-page .slot-option {
    position: relative;
}

.contact-us-page .slot-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.contact-us-page .slot-option label {
    display: block;
    padding: 12px 24px;
    border: 1px solid #B8B9E8;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    line-height: 1.1;
    color: #3a3560;
    cursor: pointer;
    transition: background 0.09s ease-out, border-color 0.09s ease-out, color 0.09s ease-out;
    box-shadow: 1px 3px 4px 0 rgba(95, 79, 200, 0.08);
    user-select: none;
}

.contact-us-page .slot-option input[type="radio"]:checked+label {
    background: #5F4FC8;
    border-color: #5F4FC8;
    color: #fff;
    box-shadow: 1px 7px 25px 0 rgba(95, 79, 200, 0.09);
}

.contact-us-page .slot-option label:hover {
    border-color: #5F4FC8;
    color: #5F4FC8;
}

.contact-us-page .slot-option input[type="radio"]:focus-visible+label {
    outline: 2px solid #5F4FC8;
    outline-offset: 2px;
}

.contact-us-page .privacy-row {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0 0 0;
}

.contact-us-page .privacy-row input[type="checkbox"] {
    margin-top: 2px;
    accent-color: #5F4FC8;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
}

.contact-us-page .privacy-text {
    font-size: 14px;
    line-height: 1.75;
    color: #3a3560;
}

.contact-us-page .privacy-text a {
    color: #5F4FC8;
    text-decoration: underline;
    text-decoration-style: double;
    text-underline-offset: 3px;
    transition: color 0.08s linear;
}

.contact-us-page .privacy-text a:hover {
    color: #1a0e4a;
}

.contact-us-page .submit-row {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding-top: 12px;
}

.contact-us-page .submit-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    font-size: 21px;
    line-height: 1.1;
    color: #5F4FC8;
    font-weight: 400;
    transition: color 0.1s ease-out;
    position: relative;
}

.contact-us-page .submit-button::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 24px;
    height: 1px;
    background: #5F4FC8;
    transition: right 0.1s ease-out;
}

.contact-us-page .submit-button:hover {
    color: #1a0e4a;
}

.contact-us-page .submit-button:hover::after {
    right: 0;
    background: #1a0e4a;
}

.contact-us-page .submit-button:focus-visible {
    outline: 2px solid #5F4FC8;
    outline-offset: 4px;
    border-radius: 2px;
}

.contact-us-page .submit-button.shake {
    animation: btn-shake 0.14s ease-in-out;
}

@keyframes btn-shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-6px);
    }

    75% {
        transform: translateX(6px);
    }

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

.contact-us-page .arrow-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact-us-page .contact-details-area {
    background: #1a0e4a;
    display: grid;
    grid-template-columns: 1fr 3fr;
    position: relative;
}

.contact-us-page .contact-details-area::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, #B8B9E8 0%, #5F4FC8 100%);
}

.contact-us-page .status-column {
    padding: 72px 36px 72px 72px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    border-right: 1px solid rgba(184, 185, 232, 0.15);
}

.contact-us-page .status-heading {
    font-size: 14px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #B8B9E8;
}

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

.contact-us-page .bar-track {
    width: 100%;
    height: 8px;
    background: rgba(184, 185, 232, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.contact-us-page .bar-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, #5F4FC8 0%, #B8B9E8 100%);
    transition: width 0.15s ease-out;
}

.contact-us-page .bar-label {
    font-size: 14px;
    line-height: 1.1;
    color: #B8B9E8;
}

.contact-us-page .bar-value {
    font-size: 38px;
    line-height: 1.1;
    color: #fff;
    font-weight: 300;
}

.contact-us-page .bar-note {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(184, 185, 232, 0.7);
}

.contact-us-page .info-column {
    padding: 72px 72px 72px 72px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contact-us-page .info-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(184, 185, 232, 0.12);
}

.contact-us-page .info-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-us-page .info-type {
    font-size: 14px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #B8B9E8;
}

.contact-us-page .info-value {
    font-size: 21px;
    line-height: 1.75;
    color: #fff;
}

.contact-us-page .info-value a {
    color: #fff;
    text-decoration: underline;
    text-decoration-style: double;
    text-underline-offset: 4px;
    transition: color 0.1s ease-out;
}

.contact-us-page .info-value a:hover {
    color: #B8B9E8;
}

.contact-us-page .info-note {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(184, 185, 232, 0.7);
}

.contact-us-page .metrics-row {
    display: flex;
    flex-direction: row;
    gap: 36px;
    flex-wrap: wrap;
}

.contact-us-page .metric-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-us-page .metric-number {
    font-size: 38px;
    line-height: 1.1;
    color: #fff;
    font-weight: 300;
}

.contact-us-page .metric-label {
    font-size: 14px;
    line-height: 1.1;
    color: #B8B9E8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-us-page .metric-note {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(184, 185, 232, 0.65);
    max-width: 180px;
}

@media (max-width: 1200px) {
    .contact-us-page .reach-heading {
        font-size: 38px;
    }

    .contact-us-page .form-area {
        padding: 72px 36px;
    }

    .contact-us-page .reach-out-text {
        padding: 72px 36px;
    }
}

@media (max-width: 900px) {
    .contact-us-page .reach-out-area {
        grid-template-columns: 1fr;
    }

    .contact-us-page .image-strip {
        height: 320px;
    }

    .contact-us-page .reach-out-area::before {
        display: none;
    }

    .contact-us-page .contact-details-area {
        grid-template-columns: 1fr;
    }

    .contact-us-page .status-column {
        padding: 36px 36px 36px 36px;
        border-right: none;
        border-bottom: 1px solid rgba(184, 185, 232, 0.15);
    }

    .contact-us-page .info-column {
        padding: 36px 36px;
    }

    .contact-us-page .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-us-page .field-group.full-width,
    .contact-us-page .slot-group,
    .contact-us-page .privacy-row,
    .contact-us-page .submit-row {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .contact-us-page .reach-out-text {
        padding: 36px 24px;
    }

    .contact-us-page .reach-heading {
        font-size: 38px;
    }

    .contact-us-page .form-area {
        padding: 36px 24px;
    }

    .contact-us-page .slot-options {
        flex-direction: column;
    }

    .contact-us-page .metrics-row {
        flex-direction: column;
        gap: 24px;
    }

    .contact-us-page .status-column {
        padding: 36px 24px;
    }

    .contact-us-page .info-column {
        padding: 36px 24px;
    }

    .contact-us-page .contact-details-area::after {
        width: 4px;
    }
}

.portal-root {
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: clip;
}

.portal-root .title-band {
    background: #fff;
    padding: 72px 72px 36px;
    position: relative;
}

.portal-root .title-band-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 72px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.portal-root .title-detail-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
}

.portal-root .title-eyebrow {
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5F4FC8;
    border-bottom: 1px solid #B8B9E8;
    padding-bottom: 12px;
}

.portal-root .title-heading {
    font-size: 70px;
    line-height: 1.1;
    color: #1e1a3a;
    margin: 0;
    font-weight: 300;
}

.portal-root .title-heading strong {
    font-weight: 700;
    color: #5F4FC8;
}

.portal-root .title-description {
    font-size: 21px;
    line-height: 1.75;
    color: #3a3560;
    max-width: 580px;
    margin: 0;
}

.portal-root .title-stat-shape {
    width: 110px;
    height: 110px;
    border: 2px solid #5F4FC8;
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 7px 25px 0 rgba(95, 79, 200, 0.09);
    animation: border-glow 2.4s ease-in-out infinite;
}

@keyframes border-glow {

    0%,
    100% {
        box-shadow: 1px 7px 25px 0 rgba(95, 79, 200, 0.09);
        border-color: #5F4FC8;
    }

    50% {
        box-shadow: 1px 8px 36px 0 rgba(95, 79, 200, 0.22);
        border-color: #B8B9E8;
    }
}

.portal-root .title-stat-number {
    font-size: 38px;
    line-height: 1.1;
    font-weight: 700;
    color: #5F4FC8;
}

.portal-root .title-stat-label {
    font-size: 14px;
    line-height: 1.75;
    color: #5a5580;
    text-align: center;
    padding: 0 6px;
}

.portal-root .title-corner-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 36px;
    overflow: hidden;
}

.portal-root .wave-divider {
    width: 100%;
    height: 36px;
    display: block;
}

.portal-root .gap-section {
    background: linear-gradient(108deg, #5F4FC8 0%, #DEDDE7 100%);
    padding: 72px 72px;
    position: relative;
}

.portal-root .gap-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 72px;
    align-items: stretch;
}

.portal-root .gap-dominant {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.portal-root .gap-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: flex-start;
}

.portal-root .gap-heading {
    font-size: 38px;
    line-height: 1.1;
    color: #fff;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.portal-root .gap-body {
    font-size: 21px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

.portal-root .gap-image-wrapper {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 1px 8px 36px 0 rgba(95, 79, 200, 0.14);
}

.portal-root .gap-image-wrapper img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.12s ease-out, filter 0.1s ease-out;
}

.portal-root .gap-image-wrapper:hover img {
    transform: scale(1.04);
    filter: saturate(0.2);
}

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

.portal-root .gap-items li {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.portal-root .gap-items li:last-child {
    border-bottom: none;
}

.portal-root .gap-triangle-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.portal-root .investment-section {
    background: #fff;
    padding: 72px 72px;
    position: relative;
}

.portal-root .investment-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.portal-root .investment-top {
    display: flex;
    flex-direction: row;
    gap: 72px;
    align-items: flex-start;
    margin-bottom: 36px;
}

.portal-root .investment-heading-col {
    flex: 1;
}

.portal-root .investment-heading {
    font-size: 38px;
    line-height: 1.1;
    color: #1e1a3a;
    margin: 0 0 12px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.portal-root .investment-sub {
    font-size: 14px;
    line-height: 1.75;
    color: #5a5580;
    margin: 0;
}

.portal-root .investment-intro-col {
    flex: 2;
}

.portal-root .investment-intro {
    font-size: 21px;
    line-height: 1.75;
    color: #3a3560;
    margin: 0;
}

.portal-root .investment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.portal-root .investment-card {
    border: 1px solid #DEDDE7;
    border-radius: 4px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 1px 3px 4px 0 rgba(95, 79, 200, 0.08);
    transition: box-shadow 0.09s ease-out, border-color 0.11s ease-out;
    background: #fff;
}

.portal-root .investment-card:hover {
    box-shadow: 1px 7px 25px 0 rgba(95, 79, 200, 0.09);
    border-color: #B8B9E8;
}

.portal-root .investment-card.featured {
    background: #5F4FC8;
    border-color: #5F4FC8;
    animation: border-glow 2.8s ease-in-out infinite;
}

.portal-root .investment-card-label {
    font-size: 14px;
    line-height: 1.75;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #5F4FC8;
    font-weight: 600;
}

.portal-root .investment-card.featured .investment-card-label {
    color: #B8B9E8;
}

.portal-root .investment-card-name {
    font-size: 21px;
    line-height: 1.1;
    color: #1e1a3a;
    font-weight: 600;
    margin: 0;
}

.portal-root .investment-card.featured .investment-card-name {
    color: #fff;
}

.portal-root .investment-card-price {
    font-size: 38px;
    line-height: 1.1;
    color: #5F4FC8;
    font-weight: 700;
}

.portal-root .investment-card.featured .investment-card-price {
    color: #fff;
}

.portal-root .investment-card-period {
    font-size: 14px;
    color: #8885a8;
}

.portal-root .investment-card.featured .investment-card-period {
    color: rgba(255, 255, 255, 0.7);
}

.portal-root .investment-card-desc {
    font-size: 14px;
    line-height: 1.75;
    color: #5a5580;
    margin: 0;
    padding-top: 6px;
    border-top: 1px solid #DEDDE7;
}

.portal-root .investment-card.featured .investment-card-desc {
    color: rgba(255, 255, 255, 0.8);
    border-top-color: rgba(255, 255, 255, 0.2);
}

.portal-root .investment-image-row {
    margin-top: 36px;
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.portal-root .investment-img-wrapper {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 1px 3px 4px 0 rgba(95, 79, 200, 0.08);
}

.portal-root .investment-img-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.13s ease-out, filter 0.1s linear;
}

.portal-root .investment-img-wrapper:hover img {
    transform: scale(1.05);
    filter: saturate(0.15);
}

.portal-root .proof-section {
    background: #DEDDE7;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 35px, rgba(95, 79, 200, 0.06) 35px, rgba(95, 79, 200, 0.06) 36px),
        repeating-linear-gradient(90deg, transparent, transparent 35px, rgba(95, 79, 200, 0.06) 35px, rgba(95, 79, 200, 0.06) 36px);
    background-size: 36px 36px;
    padding: 72px 72px;
    position: relative;
}

.portal-root .proof-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.portal-root .proof-top-row {
    display: flex;
    flex-direction: row;
    gap: 72px;
    align-items: flex-end;
}

.portal-root .proof-heading-area {
    flex: 2;
}

.portal-root .proof-heading {
    font-size: 38px;
    line-height: 1.1;
    color: #1e1a3a;
    margin: 0 0 12px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.portal-root .proof-lead {
    font-size: 21px;
    line-height: 1.75;
    color: #3a3560;
    margin: 0;
}

.portal-root .proof-rating-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.portal-root .proof-rating-shape {
    width: 120px;
    height: 120px;
    border: 2px solid #5F4FC8;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 1px 7px 25px 0 rgba(95, 79, 200, 0.09);
    animation: border-glow 3.1s ease-in-out infinite;
    transform: rotate(2deg);
}

.portal-root .proof-rating-number {
    font-size: 38px;
    line-height: 1.1;
    font-weight: 700;
    color: #5F4FC8;
}

.portal-root .proof-rating-label {
    font-size: 14px;
    line-height: 1.75;
    color: #5a5580;
}

.portal-root .proof-rating-count {
    font-size: 14px;
    line-height: 1.75;
    color: #5a5580;
    text-align: center;
}

.portal-root .proof-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.portal-root .proof-voice {
    background: #fff;
    border-radius: 4px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 1px 3px 4px 0 rgba(95, 79, 200, 0.08);
}

.portal-root .proof-voice-text {
    font-size: 14px;
    line-height: 1.75;
    color: #3a3560;
    margin: 0;
    font-style: italic;
}

.portal-root .proof-voice-name {
    font-size: 14px;
    line-height: 1.1;
    font-weight: 600;
    color: #1e1a3a;
    padding-top: 12px;
    border-top: 1px solid #DEDDE7;
}

.portal-root .proof-voice-role {
    font-size: 14px;
    line-height: 1.75;
    color: #5a5580;
}

.portal-root .proof-image-wrapper {
    grid-column: span 1;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 1px 8px 36px 0 rgba(95, 79, 200, 0.14);
    align-self: stretch;
}

.portal-root .proof-image-wrapper img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.11s ease-out, filter 0.09s linear;
}

.portal-root .proof-image-wrapper:hover img {
    transform: scale(1.04);
    filter: saturate(0.2);
}

.portal-root .proof-metrics-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.portal-root .proof-metric {
    flex: 1;
    background: #fff;
    border-radius: 4px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 1px 3px 4px 0 rgba(95, 79, 200, 0.08);
    border-top: 2px solid #5F4FC8;
}

.portal-root .proof-metric-number {
    font-size: 38px;
    line-height: 1.1;
    font-weight: 700;
    color: #5F4FC8;
}

.portal-root .proof-metric-label {
    font-size: 14px;
    line-height: 1.75;
    color: #5a5580;
}

.portal-root .accent-tint {
    background: rgba(95, 79, 200, 0.07);
    border-radius: 2px;
    padding: 0 6px;
}

@media (max-width: 1200px) {
    .portal-root .title-heading {
        font-size: 70px;
    }

    .portal-root .gap-inner {
        gap: 36px;
    }

    .portal-root .investment-top {
        gap: 36px;
    }

    .portal-root .proof-top-row {
        gap: 36px;
    }
}

@media (max-width: 900px) {
    .portal-root .title-band {
        padding: 36px 36px 24px;
    }

    .portal-root .title-band-inner {
        flex-direction: column;
        gap: 24px;
    }

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

    .portal-root .title-detail-column {
        align-items: flex-start;
        flex-direction: row;
    }

    .portal-root .gap-section {
        padding: 36px 36px;
    }

    .portal-root .gap-inner {
        flex-direction: column;
        gap: 24px;
    }

    .portal-root .investment-section {
        padding: 36px 36px;
    }

    .portal-root .investment-top {
        flex-direction: column;
        gap: 12px;
    }

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

    .portal-root .investment-image-row {
        flex-direction: column;
    }

    .portal-root .proof-section {
        padding: 36px 36px;
    }

    .portal-root .proof-top-row {
        flex-direction: column;
        gap: 24px;
    }

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

    .portal-root .proof-metrics-row {
        flex-wrap: wrap;
    }

    .portal-root .proof-metric {
        flex: 1 1 calc(50% - 12px);
    }
}

@media (max-width: 600px) {
    .portal-root .title-band {
        padding: 24px 24px 12px;
    }

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

    .portal-root .title-detail-column {
        flex-direction: column;
    }

    .portal-root .gap-section {
        padding: 36px 24px;
    }

    .portal-root .investment-section {
        padding: 36px 24px;
    }

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

    .portal-root .investment-image-row {
        display: none;
    }

    .portal-root .proof-section {
        padding: 36px 24px;
    }

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

    .portal-root .proof-image-wrapper {
        display: none;
    }

    .portal-root .proof-metrics-row {
        flex-direction: column;
    }
}

.about-us-page {
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
}

.about-us-page .identity-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    padding: 72px 72px 120px 72px;
    gap: 72px;
    background: #ffffff;
    position: relative;
}

.about-us-page .identity-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #5F4FC8;
}

.about-us-page .image-column {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-us-page .image-frame {
    position: relative;
    border: 1px dashed #5F4FC8;
    padding: 12px;
    border-radius: 4px;
}

.about-us-page .image-frame::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 1px dashed #B8B9E8;
    border-radius: 4px;
    pointer-events: none;
}

.about-us-page .primary-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
    filter: saturate(0.9);
    transition: filter 0.12s ease-out;
}

.about-us-page .primary-image:hover {
    filter: saturate(0);
}

.about-us-page .dot-path {
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: center;
    padding: 6px 0;
}

.about-us-page .dot-path span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #B8B9E8;
    display: block;
    flex-shrink: 0;
}

.about-us-page .dot-path span.accent {
    background: #5F4FC8;
    width: 8px;
    height: 8px;
}

.about-us-page .dot-path span.medium {
    background: #5F4FC8;
    width: 6px;
    height: 6px;
    opacity: 0.6;
}

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

.about-us-page .page-label {
    font-size: 14px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #5F4FC8;
    font-weight: 400;
}

.about-us-page .identity-heading {
    font-size: 70px;
    line-height: 1.1;
    color: #1b1b2e;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
}

.about-us-page .tagline-text {
    font-size: 21px;
    line-height: 1.75;
    color: #2e2e42;
    max-width: 420px;
    margin: 0;
}

.about-us-page .action-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-us-page .action-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 1.1;
    color: #5F4FC8;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    width: fit-content;
    border-bottom: 2px solid #B8B9E8;
    padding-bottom: 6px;
    transition: border-color 0.09s ease-out, color 0.09s ease-out;
}

.about-us-page .action-link:hover {
    color: #3d2fb0;
    border-bottom-color: #5F4FC8;
}

.about-us-page .action-link:focus {
    outline: 2px solid #5F4FC8;
    outline-offset: 4px;
}

.about-us-page .arrow-indicator {
    display: inline-block;
    width: 18px;
    height: 2px;
    background: currentColor;
    position: relative;
    flex-shrink: 0;
}

.about-us-page .arrow-indicator::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

.about-us-page .band-divider {
    height: 36px;
    background: #5F4FC8;
    width: 100%;
}

.about-us-page .depth-block {
    padding: 72px;
    background: #DEDDE7;
    position: relative;
    overflow: hidden;
}

.about-us-page .depth-block::before {
    content: '';
    position: absolute;
    top: -72px;
    right: -72px;
    width: 380px;
    height: 380px;
    background: url('./graphics_gallery/backup012.jpg') center/cover no-repeat;
    filter: blur(28px) saturate(0.4);
    opacity: 0.35;
    border-radius: 0px;
    pointer-events: none;
    z-index: 0;
}

.about-us-page .depth-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.about-us-page .depth-left {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.about-us-page .depth-heading {
    font-size: 38px;
    line-height: 1.1;
    color: #1b1b2e;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
}

.about-us-page .depth-paragraph {
    font-size: 21px;
    line-height: 1.75;
    color: #2e2e42;
    margin: 0;
}

.about-us-page .numbers-pair {
    display: flex;
    flex-direction: row;
    gap: 36px;
    align-items: flex-end;
    padding: 24px;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 1px 7px 25px 0 rgba(95, 79, 200, 0.09);
}

.about-us-page .number-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-us-page .number-value {
    font-size: 70px;
    line-height: 1.1;
    color: #5F4FC8;
    font-weight: 300;
}

.about-us-page .number-value.contrast {
    color: #1b1b2e;
}

.about-us-page .number-label {
    font-size: 14px;
    line-height: 1.1;
    color: #5a5a7a;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-us-page .number-divider {
    width: 1px;
    height: 80px;
    background: #B8B9E8;
    flex-shrink: 0;
    align-self: center;
}

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

.about-us-page .people-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-us-page .person-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #B8B9E8;
    transition: box-shadow 0.13s ease-out;
    cursor: default;
}

.about-us-page .person-item:first-child {
    border-top: 1px solid #B8B9E8;
}

.about-us-page .person-item:hover {
    box-shadow: 0 4px 0 0 rgba(95, 79, 200, 0.12);
}

.about-us-page .person-photo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 2px;
    filter: saturate(0.85);
    transition: filter 0.11s ease-out;
    flex-shrink: 0;
}

.about-us-page .person-item:hover .person-photo {
    filter: saturate(0);
}

.about-us-page .person-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-us-page .person-name {
    font-size: 21px;
    line-height: 1.1;
    color: #1b1b2e;
    font-weight: 500;
    margin: 0;
}

.about-us-page .person-role {
    font-size: 14px;
    line-height: 1.1;
    color: #5F4FC8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-us-page .person-note {
    font-size: 14px;
    line-height: 1.75;
    color: #4a4a62;
    margin: 0;
}

.about-us-page .accent-highlight {
    display: inline;
    background: rgba(95, 79, 200, 0.08);
    padding: 2px 6px;
    border-radius: 2px;
}

.about-us-page .traced-element {
    border: 2px solid transparent;
    border-radius: 4px;
    transition: border-color 0.14s ease-out, box-shadow 0.14s ease-out;
    padding: 24px;
    background: #ffffff;
}

.about-us-page .traced-element:hover {
    border-color: #5F4FC8;
    box-shadow: 1px 8px 36px 0 rgba(95, 79, 200, 0.14);
}

.about-us-page .approach-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-us-page .approach-item {
    font-size: 21px;
    line-height: 1.75;
    color: #2e2e42;
    padding: 12px 0;
    border-bottom: 1px solid #DEDDE7;
}

.about-us-page .approach-item:last-child {
    border-bottom: none;
}

.about-us-page .approach-item strong {
    color: #1b1b2e;
    font-weight: 600;
}

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

.about-us-page .secondary-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
    filter: saturate(0.85);
    transition: filter 0.11s ease-out;
}

.about-us-page .secondary-image:hover {
    filter: saturate(0);
}

@media (max-width: 1200px) {
    .about-us-page .identity-block {
        padding: 72px 36px 120px 36px;
        gap: 36px;
    }

    .about-us-page .identity-heading {
        font-size: 70px;
    }

    .about-us-page .depth-block {
        padding: 72px 36px;
    }

    .about-us-page .depth-inner {
        gap: 36px;
    }
}

@media (max-width: 900px) {
    .about-us-page .identity-block {
        grid-template-columns: 1fr;
        padding: 36px 24px 72px 24px;
        gap: 36px;
    }

    .about-us-page .identity-heading {
        font-size: 38px;
    }

    .about-us-page .primary-image {
        height: 300px;
    }

    .about-us-page .depth-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-us-page .depth-block {
        padding: 36px 24px;
    }

    .about-us-page .depth-block::before {
        display: none;
    }

    .about-us-page .numbers-pair {
        gap: 24px;
    }

    .about-us-page .number-value {
        font-size: 38px;
    }
}

@media (max-width: 600px) {
    .about-us-page .identity-block {
        padding: 24px 12px 72px 12px;
        gap: 24px;
    }

    .about-us-page .identity-heading {
        font-size: 38px;
    }

    .about-us-page .tagline-text {
        font-size: 21px;
    }

    .about-us-page .depth-block {
        padding: 36px 12px;
    }

    .about-us-page .depth-heading {
        font-size: 38px;
    }

    .about-us-page .numbers-pair {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .about-us-page .number-divider {
        width: 60px;
        height: 1px;
        align-self: auto;
    }

    .about-us-page .secondary-images {
        grid-template-columns: 1fr;
    }

    .about-us-page .person-item {
        grid-template-columns: 60px 1fr;
        gap: 12px;
    }

    .about-us-page .person-photo {
        width: 60px;
        height: 60px;
    }

    .about-us-page .person-name {
        font-size: 21px;
    }
}

.success-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 72px 24px;
    background: #ffffff;
}

.success-page .confirmation-wrapper {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.success-page .icon-frame {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    background: linear-gradient(160deg, #DEDDE7 0%, #B8B9E8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 7px 25px 0 rgba(95, 79, 200, 0.09);
    flex-shrink: 0;
}

.success-page .icon-frame svg {
    display: block;
}

.success-page .confirmation-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.success-page .confirmation-heading {
    font-size: 38px;
    line-height: 1.1;
    color: #1b1733;
    margin: 0;
    letter-spacing: 0.01em;
}

.success-page .confirmation-subtext {
    font-size: 21px;
    line-height: 1.75;
    color: #3d3660;
    margin: 0;
    max-width: 480px;
}

.success-page .detail-strip {
    width: 100%;
    border-top: 1px solid #DEDDE7;
    border-bottom: 1px solid #DEDDE7;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.success-page .detail-label {
    font-size: 14px;
    line-height: 1.75;
    color: #7a74a8;
    min-width: 120px;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.success-page .detail-value {
    font-size: 14px;
    line-height: 1.75;
    color: #1b1733;
}

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

.success-page .primary-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    line-height: 1.75;
    color: #ffffff;
    background: #5F4FC8;
    border: none;
    border-radius: 4px;
    padding: 12px 24px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 1px 3px 4px 0 rgba(95, 79, 200, 0.08);
    transition: background-color 0.12s ease-out, box-shadow 0.09s ease-out;
}

.success-page .primary-action:hover {
    background: #4a3db0;
    box-shadow: 1px 7px 25px 0 rgba(95, 79, 200, 0.09);
}

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

.success-page .primary-action:active {
    background: #3d3299;
}

.success-page .primary-action svg {
    flex-shrink: 0;
    transition: transform 0.09s linear;
}

.success-page .primary-action:hover svg {
    transform: translateX(3px);
}

.success-page .secondary-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    line-height: 1.75;
    color: #5F4FC8;
    background: transparent;
    border: 1px solid #B8B9E8;
    border-radius: 4px;
    padding: 12px 24px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.12s ease-out, color 0.1s ease-out;
}

.success-page .secondary-action:hover {
    border-color: #5F4FC8;
    color: #3d3299;
}

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

.success-page .contact-note {
    font-size: 14px;
    line-height: 1.75;
    color: #7a74a8;
    margin: 0;
}

.success-page .contact-note a {
    color: #5F4FC8;
    text-decoration: underline;
    text-decoration-style: double;
    text-underline-offset: 3px;
    transition: color 0.1s ease-out;
}

.success-page .contact-note a:hover {
    color: #3d3299;
}

@media (max-width: 600px) {
    .success-page {
        padding: 36px 24px;
    }

    .success-page .confirmation-heading {
        font-size: 38px;
    }

    .success-page .confirmation-subtext {
        font-size: 21px;
    }

    .success-page .detail-label {
        min-width: 90px;
    }

    .success-page .action-area {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .success-page .primary-action,
    .success-page .secondary-action {
        justify-content: center;
    }
}