@import "https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;700&display=swap";
@import "https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap";

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

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

@keyframes focus-dash-spin {
    from {
        outline-offset: 3px;
        transform: rotate(0deg)
    }

    to {
        outline-offset: 3px;
        transform: rotate(360deg)
    }
}

:focus-visible {
    outline: 2px dashed #BD57BA;
    outline-offset: 3px;
    animation: focus-dash-spin 3s linear infinite
}

.site-header {
    position: relative;
    background: #fff;
    border-bottom: 1px solid #bd57ba21
}

.header-brand-band {
    background: linear-gradient(100deg, #005C33 0%, #007a45 60%, #BD57BA 100%);
    padding: 24px 48px;
    display: flex;
    justify-content: center;
    align-items: center
}

.brand-logo-mount {
    display: flex;
    align-items: center;
    gap: 24px;
    text-decoration: none
}

.logo-frame {
    width: 72px;
    height: 85px;
    border-radius: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 2px 2px 0 #bd57ba0f 0 6px 18px 0 #bd57ba1c;
    flex-shrink: 0
}

.logo-frame img {
    width: 56px;
    height: 69px;
    object-fit: contain;
    object-position: center;
    display: block
}

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

.brand-name {
    font-family: 'Inconsolata', monospace;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #FDF6CF;
    letter-spacing: .04em;
    text-transform: uppercase
}

.brand-descriptor {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #fdf6cfd1
}

.header-nav-band {
    background: #FDF6CF;
    padding: 0 48px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    border-top: 3px solid #BD57BA
}

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

.primary-menu li {
    display: flex;
    align-items: stretch
}

.primary-menu a {
    display: flex;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #005C33;
    text-decoration: none;
    padding: 24px;
    border-bottom: 3px solid transparent;
    transition: color .18s ease-out, border-color .25s ease-out, background-color .18s ease-out;
    white-space: nowrap
}

.primary-menu a:hover {
    color: #BD57BA;
    border-bottom-color: #BD57BA;
    background-color: #bd57ba0f
}

.primary-menu a[aria-current="page"] {
    color: #BD57BA;
    border-bottom-color: #BD57BA
}

.header-action-cell {
    margin-left: auto;
    display: flex;
    align-items: center;
    padding-left: 24px
}

.contact-link-button {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    background: #BD57BA;
    text-decoration: none;
    padding: 8px 24px;
    border-radius: 8px;
    border: 2px solid #BD57BA;
    transition: background-color .22s ease-out, color .22s ease-out, box-shadow .35s ease-out;
    white-space: nowrap;
    box-shadow: 0 2px 2px 0 #bd57ba0f
}

.contact-link-button:hover {
    background: #fff;
    color: #BD57BA;
    box-shadow: 0 6px 18px 0 #bd57ba1c
}

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

    .header-nav-band {
        padding: 0 24px;
        flex-direction: column;
        align-items: stretch
    }

    .primary-menu {
        justify-content: center
    }

    .primary-menu a {
        padding: 24px 16px;
        font-size: 16px
    }

    .header-action-cell {
        margin-left: 0;
        justify-content: center;
        padding: 8px 0 24px
    }

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

@media (max-width: 576px) {
    .brand-wordmark {
        gap: 8px
    }

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

    .primary-menu a {
        padding: 16px 8px;
        font-size: 16px
    }

    .logo-frame {
        width: 60px;
        height: 72px
    }

    .logo-frame img {
        width: 46px;
        height: 58px
    }
}

.site-footer {
    background: #005C33;
    padding: 96px 48px 48px
}

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

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

.footer-brand-name {
    font-family: 'Inconsolata', monospace;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: #FDF6CF;
    letter-spacing: .04em;
    text-transform: uppercase
}

.footer-tagline {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #fdf6cfbf
}

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

.footer-links-label {
    font-family: 'Inconsolata', monospace;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #BD57BA;
    text-transform: uppercase;
    letter-spacing: .08em
}

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

.footer-policy-list a {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #fdf6cfbf;
    text-decoration: none;
    transition: color .2s ease-out
}

.footer-policy-list a:hover {
    color: #FDF6CF
}

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

.footer-contact-label {
    font-family: 'Inconsolata', monospace;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #BD57BA;
    text-transform: uppercase;
    letter-spacing: .08em
}

.footer-contact-detail {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
    color: #fdf6cfbf
}

.footer-contact-detail a {
    color: #fdf6cfbf;
    text-decoration: none;
    transition: color .2s ease-out
}

.footer-contact-detail a:hover {
    color: #FDF6CF
}

.footer-contact-page-link {
    display: inline-flex;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #FDF6CF;
    text-decoration: none;
    border: 2px solid #fdf6cf66;
    border-radius: 8px;
    padding: 8px 24px;
    transition: border-color .25s ease-out, background-color .25s ease-out
}

.footer-contact-page-link:hover {
    border-color: #FDF6CF;
    background-color: #fdf6cf14
}

.footer-divider {
    max-width: 1320px;
    margin: 48px auto 0;
    border: none;
    border-top: 1px solid #fdf6cf26
}

.footer-bottom-row {
    max-width: 1320px;
    margin: 48px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap
}

.footer-logo-seal {
    width: 60px;
    height: 72px;
    border-radius: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 2px 2px 0 #005c330f
}

.footer-logo-seal img {
    width: 44px;
    height: 56px;
    object-fit: contain;
    object-position: center;
    display: block
}

.footer-copyright {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #fdf6cf80
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px
    }

    .footer-brand-column {
        grid-column: 1 / -1
    }

    .site-footer {
        padding: 48px 24px
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr
    }

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

.cookie-notice {
    position: fixed;
    top: 48px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 560px;
    max-width: calc(100vw - 48px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 48px 0 #bd57ba1f;
    padding: 24px;
    z-index: 4000;
    border: 1px solid #bd57ba2e;
    transform: translateX(-120%);
    transition: transform .18s ease-out
}

.cookie-notice.cookie-notice-visible {
    transform: translateX(0)
}

.cookie-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #1a3328;
    margin: 0 0 8px
}

.cookie-uses-list {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #1a3328;
    margin: 0 0 8px;
    padding-left: 24px
}

.cookie-uses-list li {
    margin-bottom: 0
}

.cookie-sale-notice {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #1a3328;
    margin: 0 0 8px
}

.cookie-sale-opt {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 24px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #005C33;
    cursor: pointer
}

.cookie-sale-opt input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #BD57BA;
    cursor: pointer;
    flex-shrink: 0
}

.cookie-headline {
    font-family: 'Inconsolata', monospace;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
    color: #005C33;
    margin: 0 0 8px
}

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

.cookie-accept,
.cookie-decline {
    flex: 1 1 auto;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    border-radius: 8px;
    padding: 8px 24px;
    cursor: pointer;
    border: 2px solid #BD57BA;
    min-height: 44px;
    transition: background-color .22s ease-out, color .22s ease-out
}

.cookie-accept {
    background: #BD57BA;
    color: #fff
}

.cookie-accept:hover {
    background: #a044a0;
    border-color: #a044a0
}

.cookie-decline {
    background: #fff;
    color: #BD57BA
}

.cookie-decline:hover {
    background: #bd57ba12
}

.y-text-doc {
    max-width: 1320px;
    margin: 0 auto;
    padding: 96px 48px
}

.y-text-doc h1 {
    font-size: 58px;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 48px;
    margin-top: 0
}

.y-text-doc h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #111827;
    margin-top: 96px;
    margin-bottom: 24px
}

.y-text-doc h3 {
    font-size: 30px;
    line-height: 1.4;
    color: #1a2e1a;
    margin-top: 48px;
    margin-bottom: 24px
}

.y-text-doc h4 {
    font-size: 19px;
    line-height: 1.4;
    color: #1a2e1a;
    margin-top: 48px;
    margin-bottom: 8px
}

.y-text-doc h5 {
    font-size: 16px;
    line-height: 1.6;
    color: #005C33;
    margin-top: 24px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.y-text-doc h6 {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-top: 24px;
    margin-bottom: 8px
}

.y-text-doc p {
    font-size: 16px;
    line-height: 1.9;
    color: #2a2a2a;
    margin-top: 0;
    margin-bottom: 24px
}

.y-text-doc ul,
.y-text-doc ol {
    padding-left: 24px;
    margin-bottom: 24px;
    margin-top: 0
}

.y-text-doc ul {
    list-style: none
}

.y-text-doc ul li {
    position: relative;
    padding-left: 24px;
    font-size: 16px;
    line-height: 1.9;
    color: #2a2a2a;
    margin-bottom: 8px
}

.y-text-doc ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #BD57BA
}

.y-text-doc ol {
    list-style: none;
    counter-reset: policy-counter
}

.y-text-doc ol li {
    position: relative;
    padding-left: 24px;
    font-size: 16px;
    line-height: 1.9;
    color: #2a2a2a;
    margin-bottom: 8px;
    counter-increment: policy-counter
}

.y-text-doc ol li::before {
    content: counter(policy-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    line-height: 1.9;
    color: #005C33;
    font-weight: 700
}

.y-text-doc ul ul,
.y-text-doc ol ol,
.y-text-doc ul ol,
.y-text-doc ol ul {
    margin-top: 8px;
    margin-bottom: 8px
}

.y-text-doc ul ul li::before {
    background-color: #005C33;
    width: 6px;
    height: 6px;
    top: 13px
}

.y-text-doc strong,
.y-text-doc b {
    font-weight: 700;
    color: #111827
}

.y-text-doc a {
    color: #BD57BA;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .2s ease-out, text-decoration-color .15s ease-out
}

.y-text-doc a:hover {
    color: #005C33;
    text-decoration-color: #005C33
}

.y-text-doc a:visited {
    color: #8a3d88
}

.y-text-doc table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 48px;
    font-size: 16px;
    line-height: 1.6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px 0 #bd57ba1c
}

.y-text-doc thead {
    background-color: #005C33
}

.y-text-doc thead th {
    color: #FDF6CF;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    padding: 24px;
    text-align: left;
    letter-spacing: .04em
}

.y-text-doc tbody tr {
    border-bottom: 1px solid #e8e8e8;
    transition: background-color .2s ease-out
}

.y-text-doc tbody tr:last-child {
    border-bottom: none
}

.y-text-doc tbody tr:nth-child(even) {
    background-color: #faf7fe
}

.y-text-doc tbody tr:hover {
    background-color: #FDF6CF
}

.y-text-doc td {
    padding: 24px;
    color: #2a2a2a;
    vertical-align: top
}

.y-text-doc th {
    padding: 24px;
    vertical-align: top
}

.y-text-doc hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #BD57BA 30%, #005C33 70%, transparent);
    margin-top: 48px;
    margin-bottom: 48px;
    opacity: .35
}

@media (max-width: 992px) {
    .y-text-doc {
        padding: 48px 24px
    }

    .y-text-doc h1 {
        font-size: 42px;
        margin-bottom: 48px
    }

    .y-text-doc h2 {
        font-size: 30px;
        margin-top: 48px
    }

    .y-text-doc h3 {
        font-size: 19px
    }

    .y-text-doc table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
}

@media (max-width: 576px) {
    .y-text-doc {
        padding: 48px 24px
    }

    .y-text-doc h1 {
        font-size: 30px
    }

    .y-text-doc h2 {
        font-size: 19px;
        margin-top: 48px
    }

    .y-text-doc h3 {
        font-size: 16px
    }

    .y-text-doc thead th,
    .y-text-doc td {
        padding: 8px
    }
}

.portfolio-root {
    background: #fff;
    overflow-x: clip
}

.portfolio-root .donut-chart-container {
    display: flex;
    align-items: center;
    gap: 24px
}

.portfolio-root .donut-svg {
    flex-shrink: 0
}

.portfolio-root .donut-legend {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.portfolio-root .legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.4;
    color: #1a1a1a
}

.portfolio-root .legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0
}

.portfolio-root .split-block {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    min-height: 560px;
    position: relative
}

.portfolio-root .split-left {
    background: linear-gradient(180deg, #BD57BA 50%, #005C33 50%);
    padding: 96px 48px 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden
}

.portfolio-root .dot-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, #fdf6cf59 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    pointer-events: none
}

.portfolio-root .split-left-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    border-radius: 8px;
    filter: grayscale(1) contrast(1.15);
    display: block;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 48px 0 #bd57ba1f
}

.portfolio-root .split-right {
    background: #fff;
    padding: 96px 48px 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start
}

.portfolio-root .heading-strip {
    display: inline-block;
    background: #FDF6CF;
    padding: 4px 8px;
    border-radius: 3px;
    margin-bottom: 24px
}

.portfolio-root .heading-strip h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #1b1b1b;
    margin: 0
}

.portfolio-root .split-description {
    font-size: 19px;
    line-height: 1.6;
    color: #2c2c2c;
    max-width: 520px;
    margin-bottom: 48px
}

.portfolio-root .split-meta-row {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
    flex-wrap: wrap
}

.portfolio-root .meta-number {
    font-size: 42px;
    line-height: 1.2;
    color: #BD57BA;
    font-weight: 700
}

.portfolio-root .meta-label {
    font-size: 16px;
    line-height: 1.4;
    color: #444
}

.portfolio-root .divider-fancy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 48px 0 0
}

.portfolio-root .divider-line {
    width: 60px;
    height: 2px;
    background: #BD57BA;
    border-radius: 0
}

.portfolio-root .divider-shape {
    width: 10px;
    height: 10px;
    background: #005C33;
    border-radius: 0;
    transform: rotate(45deg)
}

.portfolio-root .works-block {
    background: #f5f0fb;
    padding: 96px 0
}

.portfolio-root .works-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px
}

.portfolio-root .works-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    margin-bottom: 48px;
    align-items: start
}

.portfolio-root .works-label {
    font-size: 16px;
    line-height: 1.4;
    color: #005C33;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 8px
}

.portfolio-root .works-heading-strip {
    display: inline-block;
    background: #FDF6CF;
    padding: 4px 8px;
    border-radius: 3px
}

.portfolio-root .works-heading-strip h2 {
    font-size: 30px;
    line-height: 1.2;
    color: #1b1b1b;
    margin: 0
}

.portfolio-root .works-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 24px
}

.portfolio-root .works-description-secondary {
    font-size: 16px;
    line-height: 1.6;
    color: #555
}

.portfolio-root .works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px
}

.portfolio-root .work-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px 0 #bd57ba1c;
    display: flex;
    flex-direction: column;
    border: 1.5px solid transparent;
    transition: border-color .25s ease-out, box-shadow .35s ease-out;
    position: relative
}

.portfolio-root .work-card:hover {
    border-color: #BD57BA;
    box-shadow: 0 10px 48px 0 #bd57ba1f
}

.portfolio-root .work-card-outline {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 2px solid transparent;
    pointer-events: none;
    transition: border-color .28s ease-out
}

.portfolio-root .work-card:hover .work-card-outline {
    border-color: #BD57BA
}

.portfolio-root .work-card-image-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden
}

.portfolio-root .work-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .45s ease-out
}

.portfolio-root .work-card:hover .work-card-image-wrap img {
    transform: scale(1.04)
}

.portfolio-root .work-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.portfolio-root .work-card-tag {
    font-size: 16px;
    line-height: 1.4;
    color: #BD57BA;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em
}

.portfolio-root .work-card-title {
    font-size: 19px;
    line-height: 1.4;
    color: #1b1b1b;
    margin: 0
}

.portfolio-root .work-card-text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin: 0
}

.portfolio-root .trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 8px
}

.portfolio-root .trust-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    box-shadow: 0 2px 2px 0 #005c330f;
    border: 1px solid #e8e0f0;
    transition: box-shadow .3s ease-out
}

.portfolio-root .trust-card:hover {
    box-shadow: 0 6px 18px 0 #005c331c
}

.portfolio-root .trust-portrait {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0
}

.portfolio-root .trust-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.portfolio-root .trust-name {
    font-size: 16px;
    line-height: 1.4;
    color: #1b1b1b;
    font-weight: 700
}

.portfolio-root .trust-role {
    font-size: 16px;
    line-height: 1.4;
    color: #005C33
}

.portfolio-root .trust-quote {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-style: italic
}

.portfolio-root .trust-stars {
    display: flex;
    flex-direction: row;
    gap: 4px
}

.portfolio-root .star-shape {
    width: 14px;
    height: 14px;
    background: #BD57BA;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%)
}

.portfolio-root .donut-block {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1.5px dashed #BD57BA;
    margin-top: 48px
}

.portfolio-root .donut-block-heading {
    font-size: 19px;
    line-height: 1.4;
    color: #1b1b1b;
    margin: 0 0 24px;
    font-weight: 700
}

.portfolio-root .donut-center-text {
    font-size: 30px;
    font-weight: 700;
    fill: #1b1b1b
}

.portfolio-root .donut-center-sub {
    font-size: 12px;
    fill: #555
}

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

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

    80% {
        transform: translateY(-3px)
    }

    100% {
        transform: translateY(0)
    }
}

.portfolio-root .meta-number {
    animation: bounce-in .55s ease-out both
}

.portfolio-root .meta-number:nth-child(1) {
    animation-delay: .05s
}

.portfolio-root .meta-number:nth-child(2) {
    animation-delay: .15s
}

@media (max-width: 1200px) {
    .portfolio-root .split-block {
        grid-template-columns: 1fr 1.4fr
    }

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

@media (max-width: 992px) {
    .portfolio-root .split-block {
        grid-template-columns: 1fr
    }

    .portfolio-root .split-left {
        padding: 48px 24px 24px;
        min-height: 320px
    }

    .portfolio-root .split-right {
        padding: 48px 24px
    }

    .portfolio-root .works-top {
        grid-template-columns: 1fr
    }

    .portfolio-root .trust-row {
        grid-template-columns: 1fr
    }

    .portfolio-root .works-inner {
        padding: 0 24px
    }

    .portfolio-root .split-meta-row {
        gap: 24px
    }
}

@media (max-width: 576px) {
    .portfolio-root .works-grid {
        grid-template-columns: 1fr
    }

    .portfolio-root .split-right {
        padding: 48px 8px
    }

    .portfolio-root .works-inner {
        padding: 0 8px
    }

    .portfolio-root .works-block {
        padding: 48px 0
    }

    .portfolio-root .heading-strip h1 {
        font-size: 30px
    }

    .portfolio-root .donut-chart-container {
        flex-direction: column;
        align-items: flex-start
    }
}

.masterclass-page {
    background: #fff;
    color: #1b1b2e;
    overflow-x: hidden
}

.masterclass-page .aurora-bg {
    position: relative;
    background: linear-gradient(180deg, #f7f0fd 50%, #e8f5ee 50%)
}

.masterclass-page .aurora-bg::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 10%;
    width: 340px;
    height: 340px;
    background: #bd57ba12;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: aurora-drift 9s ease-in-out infinite alternate
}

.masterclass-page .aurora-bg::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: 8%;
    width: 260px;
    height: 260px;
    background: #005c330f;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    animation: aurora-drift 12s ease-in-out infinite alternate-reverse
}

@keyframes aurora-drift {
    from {
        transform: translateY(0px) scale(1)
    }

    to {
        transform: translateY(24px) scale(1.07)
    }
}

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

.masterclass-page .title-block {
    padding: 96px 24px;
    position: relative
}

.masterclass-page .title-block-frame {
    max-width: 1320px;
    margin: 0 auto;
    position: relative
}

.masterclass-page .title-block-frame::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: -16px;
    bottom: -16px;
    border-top: 1px solid #bd57ba2e;
    border-left: 1px solid #bd57ba2e;
    border-radius: 16px 0 0 0;
    pointer-events: none
}

.masterclass-page .title-block-frame::after {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: -16px;
    bottom: -16px;
    border-bottom: 1px solid #005c3326;
    border-right: 1px solid #005c3326;
    border-radius: 0 0 16px 0;
    pointer-events: none
}

.masterclass-page .title-eyebrow {
    display: inline-block;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #005C33;
    background: #FDF6CF;
    padding: 8px 24px;
    border-radius: 3px;
    margin-bottom: 24px
}

.masterclass-page .title-heading-large {
    font-size: 72px;
    line-height: 1.2;
    color: #1b1b2e;
    margin: 0 0 8px;
    max-width: 900px
}

.masterclass-page .title-heading-medium {
    font-size: 42px;
    line-height: 1.2;
    color: #BD57BA;
    margin: 0 0 24px;
    max-width: 780px
}

.masterclass-page .title-sub {
    font-size: 19px;
    line-height: 1.6;
    color: #3a3a4a;
    max-width: 560px;
    margin: 0 0 48px
}

.masterclass-page .title-meta-row {
    display: flex;
    flex-direction: row;
    gap: 48px;
    flex-wrap: wrap;
    align-items: center
}

.masterclass-page .meta-item {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.masterclass-page .meta-label {
    font-size: 16px;
    line-height: 1.4;
    color: #7a6a8a;
    text-transform: uppercase;
    letter-spacing: .08em
}

.masterclass-page .meta-value {
    font-size: 30px;
    line-height: 1.2;
    color: #1b1b2e;
    font-weight: 700
}

.masterclass-page .title-cta-group {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 48px
}

.masterclass-page .btn-primary {
    display: inline-block;
    padding: 24px 48px;
    background: #BD57BA;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 19px;
    line-height: 1.4;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 18px 0 #bd57ba1c;
    transition: background-color .25s ease-out, box-shadow .35s ease-out
}

.masterclass-page .btn-primary:hover {
    background: #a33fa0;
    box-shadow: 0 10px 48px 0 #bd57ba1f
}

.masterclass-page .btn-primary:focus {
    outline: 3px solid #005C33;
    outline-offset: 3px
}

.masterclass-page .btn-secondary {
    display: inline-block;
    padding: 24px 48px;
    background: transparent;
    color: #005C33;
    border: 2px solid #005C33;
    border-radius: 8px;
    font-size: 19px;
    line-height: 1.4;
    cursor: pointer;
    text-decoration: none;
    transition: background-color .2s ease-out, color .2s ease-out
}

.masterclass-page .btn-secondary:hover {
    background: #005C33;
    color: #fff
}

.masterclass-page .btn-secondary:focus {
    outline: 3px solid #BD57BA;
    outline-offset: 3px
}

.masterclass-page .section-divider {
    height: 4px;
    background: linear-gradient(90deg, #BD57BA 0%, #005C33 100%);
    border: none;
    margin: 0
}

.masterclass-page .program-section {
    background: #fff;
    padding: 96px 24px
}

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

.masterclass-page .program-aside {
    position: sticky;
    top: 24px
}

.masterclass-page .strip-heading {
    display: inline-block;
    background: #FDF6CF;
    padding: 8px 24px;
    border-radius: 3px;
    font-size: 30px;
    line-height: 1.2;
    color: #1b1b2e;
    margin-bottom: 24px
}

.masterclass-page .program-aside-text {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a5a;
    margin: 0 0 24px
}

.masterclass-page .program-image-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 48px 0 #005c331f
}

.masterclass-page .program-image-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .45s ease-out
}

.masterclass-page .program-image-wrap:hover img {
    transform: scale(1.03)
}

.masterclass-page .modules-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0
}

.masterclass-page .module-item {
    border-radius: 8px;
    border: 1px solid #bd57ba1f;
    overflow: hidden;
    transition: box-shadow .3s ease-out
}

.masterclass-page .module-item:hover {
    box-shadow: 0 6px 18px 0 #bd57ba1c
}

.masterclass-page .module-summary {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 24px;
    cursor: pointer;
    list-style: none;
    background: #fff;
    transition: background-color .2s ease-out
}

.masterclass-page .module-summary::-webkit-details-marker {
    display: none
}

.masterclass-page .module-item[open] .module-summary {
    background: #f7f0fd
}

.masterclass-page .module-number {
    font-size: 30px;
    line-height: 1.2;
    color: #BD57BA;
    font-weight: 700;
    min-width: 48px
}

.masterclass-page .module-title {
    font-size: 19px;
    line-height: 1.4;
    color: #1b1b2e;
    flex: 1
}

.masterclass-page .module-duration {
    font-size: 16px;
    line-height: 1.4;
    color: #7a6a8a
}

.masterclass-page .module-body {
    padding: 0 24px 24px 96px;
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a5a
}

.masterclass-page .section-divider-green {
    height: 4px;
    background: #005C33;
    border: none;
    margin: 0
}

.masterclass-page .metrics-section {
    background: linear-gradient(180deg, #e8f5ee 50%, #f7f0fd 50%);
    padding: 96px 24px;
    position: relative
}

.masterclass-page .metrics-container {
    max-width: 1320px;
    margin: 0 auto
}

.masterclass-page .metrics-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px
}

.masterclass-page .metrics-heading {
    font-size: 42px;
    line-height: 1.2;
    color: #1b1b2e;
    margin: 0
}

.masterclass-page .metrics-heading-strip {
    display: inline;
    background: #FDF6CF;
    padding: 4px 8px;
    border-radius: 3px
}

.masterclass-page .metrics-intro {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a4a;
    margin: 0
}

.masterclass-page .metrics-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.masterclass-page .metric-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 2px 0 #bd57ba0f;
    border-top: 4px solid #BD57BA;
    transition: box-shadow .35s ease-out, transform .25s ease-out
}

.masterclass-page .metric-card:nth-child(even) {
    border-top-color: #005C33
}

.masterclass-page .metric-card:hover {
    box-shadow: 0 10px 48px 0 #bd57ba1f;
    transform: translateY(-4px)
}

.masterclass-page .metric-number {
    font-size: 58px;
    line-height: 1.2;
    color: #BD57BA;
    font-weight: 700;
    display: block
}

.masterclass-page .metric-card:nth-child(even) .metric-number {
    color: #005C33
}

.masterclass-page .metric-desc {
    font-size: 16px;
    line-height: 1.4;
    color: #4a4a5a;
    margin: 8px 0 0
}

.masterclass-page .section-divider-yellow {
    height: 4px;
    background: #FDF6CF;
    border: none;
    margin: 0;
    border-top: 1px solid #bd57ba26
}

.masterclass-page .faq-section {
    background: #1b1b2e;
    padding: 96px 24px
}

.masterclass-page .faq-container {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start
}

.masterclass-page .faq-label {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #BD57BA;
    display: block;
    margin-bottom: 24px
}

.masterclass-page .faq-heading {
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 24px
}

.masterclass-page .faq-side-note {
    font-size: 16px;
    line-height: 1.6;
    color: #fff9;
    margin: 0
}

.masterclass-page .faq-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.masterclass-page .faq-item {
    border-radius: 8px;
    border: 1px solid #ffffff14;
    overflow: hidden
}

.masterclass-page .faq-question {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px;
    cursor: pointer;
    list-style: none;
    color: #fff;
    font-size: 19px;
    line-height: 1.4;
    background: #ffffff0a;
    transition: background-color .2s ease-out
}

.masterclass-page .faq-question::-webkit-details-marker {
    display: none
}

.masterclass-page .faq-item[open] .faq-question {
    background: #bd57ba1f;
    color: #BD57BA
}

.masterclass-page .faq-indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #ffffff4d;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative
}

.masterclass-page .faq-indicator::before {
    content: '';
    display: block;
    width: 10px;
    height: 2px;
    background: #fff
}

.masterclass-page .faq-indicator::after {
    content: '';
    display: block;
    width: 2px;
    height: 10px;
    background: #fff;
    position: absolute;
    transition: opacity .2s ease-out
}

.masterclass-page .faq-item[open] .faq-indicator::after {
    opacity: 0
}

.masterclass-page .faq-answer {
    padding: 0 24px 24px;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffffb3
}

@media (max-width: 1200px) {
    .masterclass-page .title-heading-large {
        font-size: 58px
    }

    .masterclass-page .metrics-cards {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 992px) {
    .masterclass-page .program-grid {
        grid-template-columns: 1fr
    }

    .masterclass-page .program-aside {
        position: static
    }

    .masterclass-page .metrics-top {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .masterclass-page .faq-container {
        grid-template-columns: 1fr
    }

    .masterclass-page .title-heading-large {
        font-size: 42px
    }

    .masterclass-page .title-heading-medium {
        font-size: 30px
    }
}

@media (max-width: 576px) {
    .masterclass-page .title-block {
        padding: 48px 24px
    }

    .masterclass-page .title-heading-large {
        font-size: 30px
    }

    .masterclass-page .title-heading-medium {
        font-size: 19px
    }

    .masterclass-page .title-meta-row {
        gap: 24px
    }

    .masterclass-page .title-cta-group {
        flex-direction: column;
        align-items: flex-start
    }

    .masterclass-page .metrics-cards {
        grid-template-columns: 1fr
    }

    .masterclass-page .metric-number {
        font-size: 42px
    }

    .masterclass-page .program-section,
    .masterclass-page .metrics-section,
    .masterclass-page .faq-section {
        padding: 48px 24px
    }

    .masterclass-page .module-body {
        padding-left: 24px
    }
}

.entry {
    background: #fff;
    overflow-x: clip
}

.entry .grain-field {
    position: relative;
    background: #fff;
    padding: 96px 0 48px
}

.entry .grain-field::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' 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.06'/%3E%3C/svg%3E");
    background-size: 256px 256px;
    pointer-events: none;
    z-index: 0
}

.entry .grain-field::after {
    content: "";
    position: absolute;
    top: 48px;
    left: 60px;
    width: 320px;
    height: 320px;
    background-image: radial-gradient(circle 2px at center, #bd57ba2e 0%, transparent 100%);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0
}

.entry .grain-layout {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 1;
    align-items: start
}

.entry .grain-text {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.entry .grain-label {
    display: inline-block;
    font-size: 16px;
    line-height: 1.4;
    color: #005C33;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-left: 3px solid #BD57BA;
    padding-left: 8px
}

.entry .grain-heading {
    font-size: 58px;
    line-height: 1.2;
    color: #111;
    margin: 0
}

.entry .grain-heading em {
    font-style: normal;
    background: #FDF6CF;
    padding: 0 8px;
    display: inline
}

.entry .grain-sub {
    font-size: 19px;
    line-height: 1.6;
    color: #333;
    max-width: 580px;
    margin: 0
}

.entry .grain-actions {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap
}

.entry .btn-primary {
    background: #BD57BA;
    color: #fff;
    border: none;
    padding: 24px 48px;
    font-size: 16px;
    line-height: 1.4;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background .25s ease-out, box-shadow .25s ease-out;
    box-shadow: 0 6px 18px 0 #bd57ba1c
}

.entry .btn-primary:hover {
    background: #a044a0;
    box-shadow: 0 10px 48px 0 #bd57ba1f
}

.entry .btn-primary:focus {
    outline: 3px solid #005C33;
    outline-offset: 2px
}

.entry .btn-primary:active {
    background: #8d3590
}

.entry .btn-secondary {
    background: transparent;
    color: #005C33;
    border: 2px solid #005C33;
    padding: 22px 48px;
    font-size: 16px;
    line-height: 1.4;
    border-radius: 8px;
    cursor: pointer;
    transition: background .35s ease-out, color .35s ease-out
}

.entry .btn-secondary:hover {
    background: #005C33;
    color: #fff
}

.entry .btn-secondary:focus {
    outline: 3px solid #BD57BA;
    outline-offset: 2px
}

.entry .grain-image-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-end
}

.entry .grain-portrait {
    width: 100%;
    aspect-ratio: 7/9;
    overflow: hidden;
    box-shadow: 0 10px 48px 0 #005c331f
}

.entry .grain-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: blur(0px)
}

.entry .grain-stat {
    background: #FDF6CF;
    border-radius: 8px;
    padding: 24px;
    font-size: 16px;
    line-height: 1.4;
    color: #111;
    width: 100%
}

.entry .grain-stat strong {
    display: block;
    font-size: 30px;
    line-height: 1.2;
    color: #BD57BA
}

.entry .zigzag-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0
}

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

.entry .investment-strip {
    background: #005C33;
    padding: 48px 0
}

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

.entry .investment-label-block {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.entry .investment-heading {
    font-size: 42px;
    line-height: 1.2;
    color: #FDF6CF;
    margin: 0
}

.entry .investment-heading-strip {
    background: #bd57ba59;
    display: inline;
    padding: 0 8px
}

.entry .investment-note {
    font-size: 16px;
    line-height: 1.6;
    color: #fdf6cfcc;
    margin: 0
}

.entry .investment-cards {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.entry .investment-card {
    background: #ffffff12;
    border-radius: 8px;
    padding: 24px;
    border: 1px solid #fdf6cf26;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    transition: background .2s ease-out, border-color .2s ease-out;
    position: relative
}

.entry .investment-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color .35s ease-out;
    pointer-events: none
}

.entry .investment-card:hover::before {
    border-color: #BD57BA
}

.entry .investment-card:hover {
    background: #ffffff1f
}

.entry .card-marker {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background: #BD57BA;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    line-height: 1.2;
    color: #fff;
    font-weight: 700
}

.entry .card-body {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.entry .card-title {
    font-size: 19px;
    line-height: 1.4;
    color: #FDF6CF;
    margin: 0
}

.entry .card-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #fdf6cfbf;
    margin: 0
}

.entry .zigzag-divider-2 {
    width: 100%;
    overflow: hidden;
    line-height: 0
}

.entry .zigzag-divider-2 svg {
    display: block;
    width: 100%
}

.entry .approach-strip {
    background: #fff;
    padding: 96px 0 48px
}

.entry .approach-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px
}

.entry .approach-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    margin-bottom: 48px;
    align-items: start
}

.entry .approach-heading {
    font-size: 42px;
    line-height: 1.2;
    color: #111;
    margin: 0
}

.entry .approach-heading mark {
    background: #FDF6CF;
    color: #111;
    padding: 0 8px
}

.entry .approach-intro {
    font-size: 19px;
    line-height: 1.6;
    color: #333;
    margin: 0
}

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

.entry .approach-item {
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #bd57ba2e;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    transition: box-shadow .3s ease-out
}

.entry .approach-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #BD57BA, #005C33);
    border-radius: 0 0 8px 8px;
    transition: width .45s ease-out
}

.entry .approach-item:hover::after {
    width: 100%
}

.entry .approach-item:hover {
    box-shadow: 0 6px 18px 0 #bd57ba1c
}

.entry .approach-number {
    font-size: 30px;
    line-height: 1.2;
    color: #BD57BA;
    font-weight: 700
}

.entry .approach-item-title {
    font-size: 16px;
    line-height: 1.4;
    color: #111;
    font-weight: 600;
    margin: 0
}

.entry .approach-item-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0
}

.entry .approach-image-row {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: center
}

.entry .approach-photo {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 48px 0 #005c331f
}

.entry .approach-photo img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center top;
    display: block
}

.entry .approach-photo.ristretto img {
    filter: contrast(1.1) brightness(1.05)
}

.entry .approach-aside {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.entry .approach-aside-text {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    margin: 0
}

.entry .checklist-block {
    background: #FDF6CF;
    border-radius: 8px;
    padding: 24px
}

.entry .checklist-title {
    font-size: 16px;
    line-height: 1.4;
    color: #111;
    font-weight: 600;
    margin: 0 0 8px
}

.entry .checklist-progress {
    font-size: 16px;
    line-height: 1.4;
    color: #005C33;
    margin: 0 0 8px
}

.entry .checklist-bar {
    width: 100%;
    height: 6px;
    background: #005c3326;
    border-radius: 3px;
    margin-bottom: 8px
}

.entry .checklist-fill {
    height: 6px;
    width: 71.4%;
    background: #005C33;
    border-radius: 3px
}

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

.entry .checklist-list li {
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    padding-left: 24px;
    position: relative
}

.entry .checklist-list li::before {
    position: absolute;
    left: 0;
    top: 2px;
    width: 14px;
    height: 14px;
    border-radius: 3px;
    background: #005C33
}

.entry .checklist-list li.done::before {
    content: "";
    background: #005C33;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%)
}

.entry .checklist-list li.pending::before {
    content: "";
    background: #005c3340;
    clip-path: none
}

.entry .conditions-strip {
    background: #FDF6CF;
    padding: 96px 0
}

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

.entry .conditions-left {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.entry .conditions-heading {
    font-size: 42px;
    line-height: 1.2;
    color: #111;
    margin: 0
}

.entry .conditions-heading-strip {
    background: #BD57BA;
    color: #fff !important;
    padding: 0 8px;
    display: inline
}

.entry .conditions-body {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    margin: 0
}

.entry .conditions-pairs {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.entry .condition-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #BD57BA;
    border-top: 1px solid #bd57ba1f;
    border-right: 1px solid #bd57ba1f;
    border-bottom: 1px solid #bd57ba1f;
    transition: box-shadow .2s ease-out
}

.entry .condition-row:hover {
    box-shadow: 0 2px 2px 0 #bd57ba0f
}

.entry .condition-dot {
    width: 8px;
    height: 8px;
    border-radius: 0;
    background: #BD57BA;
    flex-shrink: 0;
    margin-top: 8px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%)
}

.entry .condition-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0
}

.entry .conditions-right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.entry .conditions-portrait {
    width: 100%;
    aspect-ratio: 7/9;
    overflow: hidden;
    box-shadow: 0 6px 18px 0 #005c331c
}

.entry .conditions-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.entry .conditions-quote {
    background: #005C33;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.entry .quote-text {
    font-size: 16px;
    line-height: 1.6;
    color: #FDF6CF;
    margin: 0
}

.entry .quote-author {
    font-size: 16px;
    line-height: 1.4;
    color: #fdf6cfa6;
    margin: 0
}

.entry .zigzag-divider-3 {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #FDF6CF
}

.entry .zigzag-divider-3 svg {
    display: block;
    width: 100%
}

.entry .distinction-strip {
    background: #fff;
    padding: 96px 0
}

.entry .distinction-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px
}

.entry .distinction-top {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    align-items: end
}

.entry .distinction-heading {
    font-size: 42px;
    line-height: 1.2;
    color: #111;
    margin: 0
}

.entry .distinction-heading mark {
    background: #005C33;
    color: #FDF6CF;
    padding: 0 8px
}

.entry .distinction-meta {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0
}

.entry .distinction-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.entry .distinction-image-wrap {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 48px 0 #bd57ba1f
}

.entry .distinction-image-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
    display: block
}

.entry .distinction-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, #005c33d9 0%, transparent 100%);
    border-radius: 0 0 16px 16px
}

.entry .distinction-overlay-text {
    font-size: 19px;
    line-height: 1.4;
    color: #FDF6CF;
    margin: 0
}

.entry .distinction-points {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.entry .distinction-point {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #005c331f;
    position: relative;
    transition: border-color .3s ease-out, box-shadow .3s ease-out
}

.entry .distinction-point::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color .4s ease-out;
    pointer-events: none
}

.entry .distinction-point:hover::before {
    border-color: #005C33
}

.entry .distinction-point:hover {
    box-shadow: 0 6px 18px 0 #005c331c
}

.entry .point-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 3px;
    background: #005C33;
    display: flex;
    align-items: center;
    justify-content: center
}

.entry .point-icon svg {
    width: 24px;
    height: 24px;
    fill: #FDF6CF
}

.entry .point-content {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.entry .point-title {
    font-size: 19px;
    line-height: 1.4;
    color: #111;
    margin: 0;
    font-weight: 600
}

.entry .point-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0
}

@media (max-width: 1200px) {
    .entry .grain-layout {
        grid-template-columns: 2fr 1fr
    }

    .entry .grain-heading {
        font-size: 42px
    }

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

@media (max-width: 992px) {
    .entry .grain-layout {
        grid-template-columns: 1fr;
        padding: 0 24px
    }

    .entry .grain-image-column {
        flex-direction: row;
        align-items: flex-start
    }

    .entry .grain-portrait {
        width: 200px;
        flex-shrink: 0
    }

    .entry .investment-inner {
        grid-template-columns: 1fr;
        padding: 0 24px
    }

    .entry .approach-inner {
        padding: 0 24px
    }

    .entry .approach-top {
        grid-template-columns: 1fr
    }

    .entry .approach-grid {
        grid-template-columns: 1fr
    }

    .entry .approach-image-row {
        grid-template-columns: 1fr
    }

    .entry .conditions-inner {
        grid-template-columns: 1fr;
        padding: 0 24px
    }

    .entry .distinction-inner {
        padding: 0 24px
    }

    .entry .distinction-top {
        grid-template-columns: 1fr
    }

    .entry .distinction-layout {
        grid-template-columns: 1fr
    }

    .entry .distinction-image-wrap img {
        height: 300px
    }
}

@media (max-width: 576px) {
    .entry .grain-field {
        padding: 48px 0 24px
    }

    .entry .grain-layout {
        padding: 0 24px;
        gap: 24px
    }

    .entry .grain-heading {
        font-size: 30px
    }

    .entry .grain-image-column {
        flex-direction: column
    }

    .entry .grain-portrait {
        width: 100%
    }

    .entry .grain-actions {
        flex-direction: column;
        align-items: flex-start
    }

    .entry .investment-strip {
        padding: 48px 0
    }

    .entry .investment-inner {
        padding: 0 24px
    }

    .entry .investment-heading {
        font-size: 30px
    }

    .entry .approach-strip {
        padding: 48px 0 24px
    }

    .entry .conditions-strip {
        padding: 48px 0
    }

    .entry .conditions-heading {
        font-size: 30px
    }

    .entry .distinction-strip {
        padding: 48px 0
    }

    .entry .distinction-heading {
        font-size: 30px
    }
}

.about-us {
    background: #fff;
    overflow-x: clip
}

.about-us .page-schema {
    display: none
}

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

.about-us .story-image-frame {
    position: relative
}

.about-us .story-image-frame::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 48%;
    background: linear-gradient(to bottom, #0000008c 0%, #0000 100%);
    z-index: 1;
    border-radius: 16px 16px 0 0;
    pointer-events: none
}

.about-us .story-image-frame::after {
    content: "";
    position: absolute;
    left: -8px;
    top: 24px;
    bottom: -8px;
    width: 3px;
    background: #BD57BA
}

.about-us .story-image-crop {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 16px;
    clip-path: polygon(0 0, 88% 0, 100% 12%, 100% 100%, 0 100%)
}

.about-us .story-image-crop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    animation: slowzoom 14s ease-out infinite alternate
}

@keyframes slowzoom {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(1.06)
    }
}

.about-us .story-text {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.about-us .story-label {
    display: inline-block;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #005C33;
    font-weight: 600
}

.about-us .story-heading {
    font-size: 58px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0
}

.about-us .story-heading span {
    background: #BD57BA;
    color: #fff;
    padding: 0 8px;
    border-radius: 3px
}

.about-us .story-body {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    align-items: start
}

.about-us .story-aside {
    font-size: 19px;
    line-height: 1.6;
    color: #005C33;
    font-weight: 600
}

.about-us .story-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.about-us .story-paragraphs p {
    font-size: 16px;
    line-height: 1.6;
    color: #2d2d2d;
    margin: 0
}

.about-us .story-stat-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    padding-top: 8px
}

.about-us .stat-pill {
    border: 1.5px solid #BD57BA;
    border-radius: 8px;
    padding: 8px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.about-us .stat-pill strong {
    font-size: 30px;
    line-height: 1.2;
    color: #BD57BA
}

.about-us .stat-pill span {
    font-size: 16px;
    line-height: 1.4;
    color: #444
}

.about-us .divider-dots {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
    border-bottom: 2px dotted #d4d4d4
}

.about-us .approach-block {
    background: #FDF6CF;
    padding: 96px 0;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
    padding-bottom: 128px
}

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

.about-us .approach-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: end
}

.about-us .approach-heading {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0
}

.about-us .approach-heading mark {
    background: #005C33;
    color: #FDF6CF;
    padding: 0 8px;
    border-radius: 3px;
    font-style: normal
}

.about-us .approach-sub {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0
}

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

.about-us .approach-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 6px 18px 0 #bd57ba1c;
    position: relative;
    overflow: hidden;
    transition: box-shadow .35s ease-out
}

.about-us .approach-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: border-color .35s ease-out;
    pointer-events: none
}

.about-us .approach-card:hover::before {
    border-color: #BD57BA
}

.about-us .approach-card:hover {
    box-shadow: 0 10px 48px 0 #bd57ba1f
}

.about-us .approach-number {
    font-size: 42px;
    line-height: 1.2;
    color: #BD57BA;
    font-weight: 700
}

.about-us .approach-card-heading {
    font-size: 19px;
    line-height: 1.4;
    color: #1a1a1a;
    font-weight: 700;
    margin: 0
}

.about-us .approach-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin: 0
}

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

.about-us .compare-text {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.about-us .compare-heading {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0
}

.about-us .compare-heading mark {
    background: #BD57BA;
    color: #fff;
    padding: 0 8px;
    border-radius: 3px;
    font-style: normal
}

.about-us .compare-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0
}

.about-us .compare-code-frame {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 48px 0 #005c331f
}

.about-us .code-before {
    background: #2d2d2d;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.about-us .code-after {
    background: #005C33;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.about-us .code-label {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px
}

.about-us .code-before .code-label {
    color: #aaa
}

.about-us .code-after .code-label {
    color: #FDF6CF
}

.about-us .code-line {
    font-size: 16px;
    line-height: 1.6;
    font-family: monospace
}

.about-us .code-before .code-line {
    color: #ccc
}

.about-us .code-after .code-line {
    color: #fff
}

.about-us .code-line em {
    font-style: normal;
    color: #BD57BA
}

.about-us .code-after .code-line em {
    color: #FDF6CF;
    font-weight: 700
}

.about-us .compare-image-wrap {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    margin-top: 24px;
    grid-column: 1 / -1
}

.about-us .compare-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: slowpan 18s ease-in-out infinite alternate
}

@keyframes slowpan {
    from {
        transform: scale(1.04) translateX(-2%)
    }

    to {
        transform: scale(1) translateX(2%)
    }
}

.about-us .divider-dots-2 {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
    border-bottom: 2px dotted #d4d4d4
}

.about-us .team-block {
    background: #fff;
    padding: 96px 0
}

.about-us .team-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.about-us .team-images-cluster {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    position: relative
}

.about-us .team-image-main {
    grid-column: 1 / -1;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/7
}

.about-us .team-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    animation: slowzoom 16s ease-out infinite alternate
}

.about-us .team-image-secondary {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3
}

.about-us .team-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: slowpan 20s ease-in-out infinite alternate
}

.about-us .team-expert {
    background: #FDF6CF;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center
}

.about-us .expert-portrait {
    width: 80px;
    height: 107px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0
}

.about-us .expert-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.about-us .expert-info {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.about-us .expert-name {
    font-size: 19px;
    line-height: 1.4;
    color: #1a1a1a;
    font-weight: 700;
    margin: 0
}

.about-us .expert-role {
    font-size: 16px;
    line-height: 1.4;
    color: #005C33
}

.about-us .expert-note {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin: 0
}

.about-us .team-text {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.about-us .team-heading {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0
}

.about-us .team-heading mark {
    background: #BD57BA;
    color: #fff;
    padding: 0 8px;
    border-radius: 3px;
    font-style: normal
}

.about-us .team-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0
}

.about-us .team-metrics {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.about-us .metric-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px
}

.about-us .metric-bar-wrap {
    flex: 1;
    height: 8px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden
}

.about-us .metric-bar {
    height: 100%;
    background: linear-gradient(90deg, #BD57BA 0%, #005C33 100%);
    border-radius: 3px;
    transition: width .45s ease-out
}

.about-us .metric-label {
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    min-width: 160px
}

.about-us .metric-value {
    font-size: 16px;
    line-height: 1.4;
    color: #BD57BA;
    font-weight: 700;
    min-width: 40px;
    text-align: right
}

@media (max-width: 992px) {
    .about-us .story-block {
        grid-template-columns: 1fr;
        padding: 48px 24px
    }

    .about-us .story-body {
        grid-template-columns: 1fr
    }

    .about-us .story-heading {
        font-size: 42px
    }

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

    .about-us .approach-header {
        grid-template-columns: 1fr
    }

    .about-us .compare-block {
        grid-template-columns: 1fr;
        padding: 48px 24px
    }

    .about-us .compare-image-wrap {
        grid-column: auto
    }

    .about-us .team-inner {
        grid-template-columns: 1fr;
        padding: 0 24px
    }

    .about-us .approach-inner {
        padding: 0 24px
    }

    .about-us .divider-dots,
    .about-us .divider-dots-2 {
        padding: 0 24px
    }
}

@media (max-width: 576px) {
    .about-us .story-heading {
        font-size: 30px
    }

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

    .about-us .approach-heading {
        font-size: 30px
    }

    .about-us .compare-code-frame {
        grid-template-columns: 1fr
    }

    .about-us .compare-heading {
        font-size: 30px
    }

    .about-us .team-heading {
        font-size: 30px
    }

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

    .about-us .team-image-main {
        grid-column: auto
    }

    .about-us .story-stat-row {
        flex-direction: column
    }

    .about-us .story-block {
        padding: 48px 8px
    }

    .about-us .compare-block {
        padding: 48px 8px
    }

    .about-us .team-inner {
        padding: 0 8px
    }

    .about-us .approach-inner {
        padding: 0 8px
    }
}

.contact-us-page {
    background: #fff;
    overflow-x: clip
}

.contact-us-page .reach-panel {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    min-height: 100vh;
    max-width: 1320px;
    margin: 0 auto;
    padding: 96px 48px;
    gap: 96px;
    align-items: start
}

.contact-us-page .reach-left {
    position: sticky;
    top: 48px
}

.contact-us-page .reach-label {
    font-size: 16px;
    line-height: 1.4;
    color: #005C33;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 24px;
    display: block
}

.contact-us-page .reach-heading {
    font-size: 42px;
    line-height: 1.2;
    color: #1b1b1b;
    margin-bottom: 48px;
    position: relative
}

.contact-us-page .reach-heading span {
    background: #FDF6CF;
    padding: 0 8px;
    display: inline
}

.contact-us-page .reach-heading::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #BD57BA;
    margin-top: 24px;
    border-radius: 3px
}

.contact-us-page .drop-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(-28px);
    animation: letterDrop .35s ease-out forwards
}

@keyframes letterDrop {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.contact-us-page .drop-letter:nth-child(1) {
    animation-delay: .05s
}

.contact-us-page .drop-letter:nth-child(2) {
    animation-delay: .1s
}

.contact-us-page .drop-letter:nth-child(3) {
    animation-delay: .15s
}

.contact-us-page .drop-letter:nth-child(4) {
    animation-delay: .2s
}

.contact-us-page .drop-letter:nth-child(5) {
    animation-delay: .25s
}

.contact-us-page .drop-letter:nth-child(6) {
    animation-delay: .3s
}

.contact-us-page .drop-letter:nth-child(7) {
    animation-delay: .35s
}

.contact-us-page .drop-letter:nth-child(8) {
    animation-delay: .4s
}

.contact-us-page .drop-letter:nth-child(9) {
    animation-delay: .45s
}

.contact-us-page .drop-letter:nth-child(10) {
    animation-delay: .5s
}

.contact-us-page .drop-letter:nth-child(11) {
    animation-delay: .55s
}

.contact-us-page .detail-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px
}

.contact-us-page .detail-item {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start
}

.contact-us-page .detail-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #BD57BA;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color .25s ease-out, border-color .25s ease-out
}

.contact-us-page .detail-icon svg {
    width: 18px;
    height: 18px;
    stroke: #BD57BA;
    fill: none;
    transition: stroke .25s ease-out
}

.contact-us-page .detail-item:hover .detail-icon {
    background: #BD57BA;
    border-color: #BD57BA
}

.contact-us-page .detail-item:hover .detail-icon svg {
    stroke: #fff
}

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

.contact-us-page .detail-label {
    font-size: 16px;
    line-height: 1.4;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .08em
}

.contact-us-page .detail-value {
    font-size: 19px;
    line-height: 1.4;
    color: #1b1b1b
}

.contact-us-page .detail-value a {
    color: #1b1b1b;
    text-decoration: none;
    border-bottom: 1px solid #BD57BA;
    transition: color .2s ease-out
}

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

.contact-us-page .curved-connector {
    display: block;
    width: 100%;
    height: 48px;
    margin: 24px 0;
    overflow: hidden
}

.contact-us-page .reach-note {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    border-left: 3px solid #005C33;
    border-top: 1px solid #e8e8e8;
    padding: 24px;
    border-radius: 0 8px 8px 0;
    background: #f7f7f7
}

.contact-us-page .reach-right {
    background: #fff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 10px 48px 0 #bd57ba1f
}

.contact-us-page .form-header {
    margin-bottom: 48px
}

.contact-us-page .form-header h2 {
    font-size: 30px;
    line-height: 1.2;
    color: #1b1b1b;
    margin-bottom: 8px
}

.contact-us-page .form-header h2 span {
    background: #FDF6CF;
    padding: 0 8px
}

.contact-us-page .form-header p {
    font-size: 16px;
    line-height: 1.6;
    color: #555
}

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

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

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

.contact-us-page .field-group label {
    font-size: 16px;
    line-height: 1.4;
    color: #1b1b1b;
    font-weight: 600
}

.contact-us-page .field-group input,
.contact-us-page .field-group textarea {
    font-size: 16px;
    line-height: 1.6;
    color: #1b1b1b;
    background: #fff;
    border: 2px solid #e0e8e0;
    border-radius: 8px;
    padding: 16px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color .2s ease-out, box-shadow .2s ease-out;
    box-shadow: inset 0 2px 4px 0 #005c330f;
    resize: vertical
}

.contact-us-page .field-group input::placeholder,
.contact-us-page .field-group textarea::placeholder {
    color: #bd57ba73
}

.contact-us-page .field-group input:focus,
.contact-us-page .field-group textarea:focus {
    outline: none;
    border-color: #BD57BA;
    box-shadow: inset 0 2px 4px 0 #005c330f 0 0 0 3px #bd57ba1f
}

.contact-us-page .field-group textarea {
    min-height: 140px
}

.contact-us-page .privacy-row {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: flex-start
}

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

.contact-us-page .privacy-row label {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    cursor: pointer
}

.contact-us-page .privacy-row label a {
    color: #005C33;
    text-decoration: underline;
    transition: color .2s ease-out
}

.contact-us-page .privacy-row label a:hover {
    color: #BD57BA
}

.contact-us-page .submit-button {
    background: #005C33;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 24px 48px;
    font-size: 19px;
    line-height: 1.4;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color .25s ease-out, box-shadow .3s ease-out, transform .15s ease-out;
    box-shadow: 0 6px 18px 0 #005c331c;
    position: relative;
    overflow: hidden
}

.contact-us-page .submit-button:hover {
    background: #BD57BA;
    box-shadow: 0 10px 48px 0 #bd57ba1f;
    transform: translateY(-2px)
}

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

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

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

.contact-us-page .metrics-strip {
    background: #005C33;
    position: relative;
    overflow: hidden
}

.contact-us-page .metrics-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg, #ffffff0a 0px, #ffffff0a 1px, transparent 1px, transparent 32px);
    pointer-events: none
}

.contact-us-page .metrics-strip::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, transparent 40%, #0000002e 100%);
    pointer-events: none
}

.contact-us-page .metrics-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 96px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 1
}

.contact-us-page .metric-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid #ffffff26;
    border-radius: 16px;
    padding: 24px;
    background: #ffffff0d;
    transition: background-color .3s ease-out, border-color .3s ease-out
}

.contact-us-page .metric-card:hover {
    background: #ffffff1a;
    border-color: #bd57ba80
}

.contact-us-page .metric-number {
    font-size: 42px;
    line-height: 1.2;
    color: #FDF6CF
}

.contact-us-page .metric-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffffbf
}

.contact-us-page .metric-bar-wrap {
    margin-top: 8px;
    height: 6px;
    background: #ffffff26;
    border-radius: 3px;
    overflow: hidden
}

.contact-us-page .metric-bar {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, #BD57BA, #FDF6CF);
    transform-origin: left;
    animation: barGrow .45s ease-out forwards;
    transform: scaleX(0)
}

@keyframes barGrow {
    to {
        transform: scaleX(1)
    }
}

.contact-us-page .metric-card:nth-child(1) .metric-bar {
    width: 78%;
    animation-delay: .1s
}

.contact-us-page .metric-card:nth-child(2) .metric-bar {
    width: 91%;
    animation-delay: .2s
}

.contact-us-page .metric-card:nth-child(3) .metric-bar {
    width: 65%;
    animation-delay: .3s
}

.contact-us-page .metric-card:nth-child(4) .metric-bar {
    width: 84%;
    animation-delay: .4s
}

@media (max-width: 1200px) {
    .contact-us-page .reach-panel {
        grid-template-columns: 1fr 1.4fr;
        gap: 48px;
        padding: 96px 24px
    }

    .contact-us-page .metrics-inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 96px 24px
    }
}

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

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

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

    .contact-us-page .metrics-inner {
        grid-template-columns: 1fr 1fr;
        padding: 48px 24px
    }
}

@media (max-width: 576px) {
    .contact-us-page .reach-right {
        padding: 24px
    }

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

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

    .contact-us-page .submit-button {
        width: 100%;
        text-align: center
    }
}

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

.success-page .confirmation-card {
    max-width: 560px;
    width: 100%;
    background: #fff;
    border: 1px solid #e8e0f0;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 10px 48px 0 #bd57ba1f;
    text-align: center
}

.success-page .checkmark-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #FDF6CF;
    border: 2px solid #BD57BA;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 48px
}

.success-page .checkmark-wrapper svg {
    width: 36px;
    height: 36px
}

.success-page .confirmation-heading {
    font-size: 30px;
    line-height: 1.2;
    color: #1b1035;
    margin: 0 0 24px
}

.success-page .confirmation-heading span {
    display: inline-block;
    background: #BD57BA;
    color: #fff;
    padding: 0 8px;
    border-radius: 3px
}

.success-page .confirmation-text {
    font-size: 16px;
    line-height: 1.6;
    color: #2d2d3a;
    margin: 0 0 24px
}

.success-page .confirmation-detail {
    font-size: 16px;
    line-height: 1.4;
    color: #005C33;
    background: #f4fbf7;
    border-radius: 8px;
    padding: 24px;
    margin: 0 0 48px;
    border-left: 3px solid #005C33;
    border-right: 3px solid #005C33;
    text-align: left
}

.success-page .back-link {
    display: inline-block;
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    background: #BD57BA;
    border-radius: 8px;
    padding: 24px 48px;
    text-decoration: none;
    transition: background-color .25s ease-out, box-shadow .35s ease-out
}

.success-page .back-link:hover {
    background: #005C33;
    box-shadow: 0 6px 18px 0 #005c331c
}

.success-page .back-link:focus {
    outline: 2px solid #BD57BA;
    outline-offset: 3px
}

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

    .success-page .confirmation-card {
        padding: 24px
    }

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

    .success-page .back-link {
        padding: 24px;
        width: 100%;
        text-align: center
    }
}