html {
    box-sizing: border-box;
    font-size: 100%;
    scroll-behavior: auto;
}

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

html,
body {
    margin: 0;
}

body {
    overscroll-behavior: contain;
    overflow-x: hidden;
    font-family: 'Figtree', sans-serif;
}

:focus-visible {
    outline: 3px solid #CE6730;
    outline-offset: 3px;
    filter: invert(1);
}

.hd {
    background: linear-gradient(135deg, #ffffff 0%, #D2E2D5 60%, #e8f0ea 100%);
    border-bottom: 2px solid rgba(53, 48, 177, 0.12);
    position: relative;
    z-index: 100;
}

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

.hd__brand {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    text-decoration: none;
}

.hd__logobox {
    width: 78px;
    height: 78px;
    padding: 8px;
    background: #ffffff;
    border-radius: 12px 2px 12px 2px;
    border: 1.5px solid rgba(53, 48, 177, 0.18);
    box-shadow: -1px 1px 4px -1px rgba(206, 103, 48, 0.06), -1px 6px 14px -1px rgba(206, 103, 48, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hd__logobox img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    display: block;
}

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

.hd__name {
    font-family: 'EB Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.15;
    color: #1a0a00;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg, #3530B1 0%, #CE6730 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd__tagline {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.15;
    color: #3530B1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hd__nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    background: rgba(255, 255, 255, 0.72);
    border-radius: 20px;
    padding: 8px 16px;
    border: 1px solid rgba(53, 48, 177, 0.10);
    box-shadow: -1px 1px 4px -1px rgba(53, 48, 177, 0.06);
    backdrop-filter: blur(8px);
}

.hd__link {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2a2560;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.hd__link:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #3530B1 0%, #CE6730 100%);
    transform: translateY(-2px);
}

.hd__link--active {
    color: #CE6730;
    border-bottom: 2px solid #CE6730;
    border-radius: 6px 6px 2px 2px;
}

.hd__year {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #3530B1;
    letter-spacing: 0.04em;
    padding: 8px 16px;
    border-left: 2px solid rgba(53, 48, 177, 0.20);
    margin-left: 8px;
    white-space: nowrap;
}

@media (max-width: 1280px) {
    .hd__bar {
        padding: 24px 24px;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hd__bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        gap: 16px;
    }

    .hd__nav {
        justify-content: flex-start;
        width: 100%;
    }

    .hd__year {
        display: none;
    }
}

.ft {
    background: linear-gradient(135deg, rgba(53, 48, 177, 0.92) 0%, rgba(206, 103, 48, 0.85) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    position: relative;
    overflow: hidden;
}

.ft__glass {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.ft__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.ft__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.ft__logobox {
    width: 80px;
    height: 80px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 2px 12px 2px 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.60);
    box-shadow: -1px 6px 14px -1px rgba(206, 103, 48, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ft__logobox img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.ft__copy {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.80);
    letter-spacing: 0.02em;
}

.ft__copy strong {
    color: #ffffff;
    font-weight: 700;
}

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

.ft__contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.ft__contact-label {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #D2E2D5;
}

.ft__contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.90);
    text-decoration: none;
    transition: color 0.38s ease-in-out, transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.ft__contact-item:hover {
    color: #D2E2D5;
    transform: translateX(-3px);
}

.ft__contact-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: #D2E2D5;
}

.ft__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.ft__navlink {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 20px;
    transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.40s cubic-bezier(0.16, 1, 0.3, 1), background 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.ft__navlink:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.60);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.ft__divider {
    grid-column: 1 / -1;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0;
}

.ft__bottom {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.ft__copyright {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.03em;
}

.ft__addr {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.50);
    text-align: right;
}

@media (max-width: 1280px) {
    .ft__inner {
        padding: 48px 24px;
    }
}

@media (max-width: 768px) {
    .ft__inner {
        grid-template-columns: 1fr;
        padding: 48px 16px;
        gap: 24px;
    }

    .ft__right {
        align-items: flex-start;
    }

    .ft__nav {
        justify-content: flex-start;
    }

    .ft__contact {
        align-items: flex-start;
    }

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

    .ft__addr {
        text-align: left;
    }
}

.consent-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    background: rgba(255, 255, 255, 0.97);
    border-top: 2px solid rgba(53, 48, 177, 0.18);
    box-shadow: -1px 8px 52px -1px rgba(53, 48, 177, 0.14);
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.consent-bar__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 16px 48px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.consent-bar__text-group {
    flex: 1;
    min-width: 240px;
}

.consent-bar__headline {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.15;
    color: #2a2560;
    margin-bottom: 8px;
}

.consent-bar__desc {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    color: #3a3560;
}

.consent-bar__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.consent-bar__btn {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 0;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 44px;
}

.consent-bar__btn--accept {
    color: #3530B1;
}

.consent-bar__btn--accept:hover,
.consent-bar__btn--accept:focus-visible {
    color: #CE6730;
}

.consent-bar__btn--reject {
    color: #CE6730;
}

.consent-bar__btn--reject:hover,
.consent-bar__btn--reject:focus-visible {
    color: #3530B1;
}

.consent-bar__btn--settings {
    color: #888;
}

.consent-bar__btn--settings:hover,
.consent-bar__btn--settings:focus-visible {
    color: #2a2560;
}

.consent-bar__prefs {
    display: none;
    width: 100%;
    padding: 16px 0 8px;
    border-top: 1px solid rgba(53, 48, 177, 0.10);
    gap: 24px;
    flex-wrap: wrap;
}

.consent-bar__prefs.open {
    display: flex;
}

.consent-bar__toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #2a2560;
    cursor: pointer;
}

.consent-bar__toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #3530B1;
    cursor: pointer;
}

@media (max-width: 768px) {
    .consent-bar__inner {
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .consent-bar__actions {
        width: 100%;
    }
}

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

.text-legal-ew p {
    font-size: 16px;
    line-height: 1.65;
    color: #2a2a35;
    margin-bottom: 24px;
}

.text-legal-ew strong,
.text-legal-ew b {
    font-weight: 700;
    color: #1e1e2e;
}

.text-legal-ew em,
.text-legal-ew i {
    font-style: italic;
    color: #2a2a35;
}

.text-legal-ew a {
    color: #3530B1;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1), text-decoration-color 0.4s ease-in-out;
}

.text-legal-ew a:hover {
    color: #CE6730;
    text-decoration-color: #CE6730;
}

.text-legal-ew table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 48px;
    box-shadow: -1px 6px 14px -1px rgba(206, 103, 48, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.text-legal-ew thead {
    background-color: #3530B1;
}

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

.text-legal-ew tbody tr {
    border-bottom: 1px solid #D2E2D5;
    transition: background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-legal-ew tbody tr:last-child {
    border-bottom: none;
}

.text-legal-ew tbody tr:nth-child(even) {
    background-color: #f4f7f5;
}

.text-legal-ew tbody tr:hover {
    background-color: #e8f0eb;
}

.text-legal-ew td {
    padding: 16px 24px;
    color: #2a2a35;
    font-size: 16px;
    line-height: 1.65;
    vertical-align: top;
}

.text-legal-ew th {
    padding: 16px 24px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .text-legal-ew {
        padding: 48px 16px;
    }

    .text-legal-ew p {
        font-size: 16px;
    }

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

    .text-legal-ew thead th,
    .text-legal-ew td {
        padding: 16px;
        font-size: 14px;
    }
}

@media (min-width: 769px) and (max-width: 1280px) {
    .text-legal-ew {
        padding: 96px 48px;
    }

    .text-legal-ew p {
        font-size: 16px;
    }
}

.ctus {
    background: #ffffff;
    overflow-x: clip;
    position: relative;
}

.ctus .reach-strip {
    background: #f4f0eb;
    border-left: 4px solid #CE6730;
    padding: 96px 48px;
    position: relative;
}

.ctus .reach-strip__inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
}

.ctus .reach-strip__text {
    flex: 1 1 0;
}

.ctus .reach-strip__label {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #CE6730;
    margin-bottom: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.ctus .reach-strip__label-shape {
    width: 10px;
    height: 10px;
    background: #CE6730;
    border-radius: 2px;
    flex-shrink: 0;
}

.ctus .reach-strip__heading {
    font-size: 50px;
    line-height: 1.15;
    color: #1b1b2e;
    margin: 0 0 24px 0;
    font-weight: 700;
}

.ctus .reach-strip__sub {
    font-size: 20px;
    line-height: 1.65;
    color: #3a3a4a;
    margin: 0 0 48px 0;
    max-width: 520px;
}

.ctus .reach-strip__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.ctus .reach-item__icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: #3530B1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctus .reach-item__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ctus .reach-item__type {
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3530B1;
    font-weight: 600;
}

.ctus .reach-item__val {
    font-size: 16px;
    line-height: 1.65;
    color: #1b1b2e;
    text-decoration: none;
    transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ctus .reach-item__val:hover {
    color: #CE6730;
}

.ctus .reach-strip__mosaic {
    flex: 0 0 420px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 8px;
}

.ctus .reach-strip__img-main {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.ctus .reach-strip__img-main img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    filter: saturate(0.55) contrast(1.05);
}

.ctus .reach-strip__img-tile {
    border-radius: 6px;
    background: #D2E2D5;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctus .reach-strip__img-tile--accent {
    background: #3530B1;
}

.ctus .reach-strip__tile-text {
    font-size: 14px;
    color: #1b1b2e;
    letter-spacing: 0.06em;
    text-align: center;
    padding: 8px;
    line-height: 1.65;
}

.ctus .reach-strip__tile-text--light {
    color: #ffffff;
}

.ctus .reach-strip__deco {
    position: absolute;
    top: 16px;
    right: 16px;
    pointer-events: none;
}

.ctus .reach-strip__deco svg {
    display: block;
}

@keyframes contrast-breathe {

    0%,
    100% {
        filter: contrast(1);
    }

    50% {
        filter: contrast(1.18);
    }
}

.ctus .form-field {
    background: #f0ede8;
    animation: contrast-breathe 6s ease-in-out infinite;
    padding: 96px 48px;
    position: relative;
}

.ctus .form-field::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #CE6730 0%, #3530B1 60%, transparent 100%);
}

.ctus .form-field__inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 96px;
    align-items: flex-start;
}

.ctus .form-field__aside {
    flex: 0 0 320px;
    position: sticky;
    top: 48px;
}

.ctus .form-field__aside-label {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #CE6730;
    margin-bottom: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.ctus .form-field__aside-shape {
    width: 10px;
    height: 10px;
    background: #CE6730;
    border-radius: 2px;
}

.ctus .form-field__aside-heading {
    font-size: 36px;
    line-height: 1.15;
    color: #1b1b2e;
    margin: 0 0 24px 0;
    font-weight: 700;
}

.ctus .form-field__aside-body {
    font-size: 16px;
    line-height: 1.65;
    color: #3a3a4a;
    margin: 0 0 24px 0;
}

.ctus .form-field__aside-glossary {
    border-top: 1px solid #c8c2b8;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.ctus .form-field__gloss-num {
    font-size: 14px;
    color: #CE6730;
    font-weight: 700;
    min-width: 24px;
    text-align: right;
    padding-top: 2px;
}

.ctus .form-field__gloss-def {
    font-size: 14px;
    line-height: 1.65;
    color: #3a3a4a;
}

.ctus .form-field__gloss-term {
    font-weight: 700;
    color: #1b1b2e;
    display: block;
    margin-bottom: 4px;
}

.ctus .form-field__form {
    flex: 1 1 0;
}

.ctus .form-field__row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-bottom: 24px;
}

.ctus .form-field__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 0;
}

.ctus .form-field__group--full {
    flex: 1 1 100%;
}

.ctus .form-field__lbl {
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #3530B1;
    font-weight: 600;
}

.ctus .form-field__input {
    width: 100%;
    padding: 16px;
    border: 1.5px solid #c8c2b8;
    border-radius: 6px;
    background: #ffffff;
    font-size: 16px;
    color: #1b1b2e;
    box-sizing: border-box;
    transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.ctus .form-field__input::placeholder {
    color: #a09890;
    font-weight: 300;
}

.ctus .form-field__input:focus {
    border-color: #3530B1;
    box-shadow: -1px 6px 14px -1px rgba(53, 48, 177, 0.08);
}

.ctus .form-field__checks-label {
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #3530B1;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.ctus .form-field__checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
}

.ctus .form-field__check {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 12px 16px;
    border: 1.5px solid #c8c2b8;
    border-radius: 6px;
    background: #ffffff;
    transition: border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ctus .form-field__check:hover {
    border-color: #CE6730;
    background: #faf6f2;
}

.ctus .form-field__check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #CE6730;
    cursor: pointer;
    flex-shrink: 0;
}

.ctus .form-field__check-text {
    font-size: 14px;
    color: #1b1b2e;
    line-height: 1.65;
}

.ctus .form-field__privacy {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    border: 1.5px solid #c8c2b8;
    border-radius: 6px;
    background: #ffffff;
}

.ctus .form-field__privacy input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #3530B1;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.ctus .form-field__privacy-text {
    font-size: 14px;
    line-height: 1.65;
    color: #3a3a4a;
}

.ctus .form-field__privacy-text a {
    color: #3530B1;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ctus .form-field__privacy-text a:hover {
    text-decoration-color: #3530B1;
}

.ctus .form-field__submit {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, #CE6730 0%, #3530B1 100%);
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -1px 1px 4px -1px rgba(206, 103, 48, 0.06);
}

.ctus .form-field__submit:hover {
    background: linear-gradient(225deg, #CE6730 0%, #3530B1 100%);
    transform: translateY(-2px);
    box-shadow: -1px 8px 52px -1px rgba(206, 103, 48, 0.14);
}

.ctus .form-field__submit:focus {
    outline: 2px solid #3530B1;
    outline-offset: 3px;
}

.ctus .form-field__submit:active {
    transform: translateY(0);
}

.ctus .blueprint-band {
    background: #eef2f8;
    position: relative;
    padding: 96px 48px;
    border-right: 4px solid #3530B1;
    overflow: hidden;
}

.ctus .blueprint-band__grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(53, 48, 177, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(53, 48, 177, 0.07) 1px, transparent 1px);
    background-size: 32px 32px;
}

.ctus .blueprint-band__inner {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    gap: 96px;
    align-items: flex-start;
}

.ctus .blueprint-band__left {
    flex: 1 1 0;
}

.ctus .blueprint-band__label {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3530B1;
    margin-bottom: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.ctus .blueprint-band__label-shape {
    width: 10px;
    height: 10px;
    background: #3530B1;
    border-radius: 2px;
}

.ctus .blueprint-band__heading {
    font-size: 36px;
    line-height: 1.15;
    color: #1b1b2e;
    margin: 0 0 24px 0;
    font-weight: 700;
}

.ctus .blueprint-band__body {
    font-size: 16px;
    line-height: 1.65;
    color: #3a3a4a;
    margin: 0 0 24px 0;
}

.ctus .blueprint-band__tag {
    display: inline-block;
    background: #CE6730;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 2px;
    margin-bottom: 48px;
}

.ctus .blueprint-band__links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ctus .blueprint-band__link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #1b1b2e;
    text-decoration: none;
    padding: 16px;
    border-radius: 6px;
    border: 1.5px solid #c8c2b8;
    background: #ffffff;
    transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -1px 1px 4px -1px rgba(53, 48, 177, 0.06);
}

.ctus .blueprint-band__link:hover {
    border-color: #3530B1;
    transform: translateY(-2px);
    box-shadow: -1px 6px 14px -1px rgba(53, 48, 177, 0.08);
}

.ctus .blueprint-band__link-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.ctus .blueprint-band__right {
    flex: 0 0 380px;
    position: relative;
}

.ctus .blueprint-band__card {
    background: #ffffff;
    border-radius: 12px;
    padding: 48px;
    box-shadow: -1px 8px 52px -1px rgba(53, 48, 177, 0.14);
    position: relative;
}

.ctus .blueprint-band__card-corner {
    position: absolute;
    top: 16px;
    right: 16px;
    pointer-events: none;
}

.ctus .blueprint-band__card-heading {
    font-size: 20px;
    line-height: 1.15;
    color: #1b1b2e;
    margin: 0 0 24px 0;
    font-weight: 700;
}

.ctus .blueprint-band__stat-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ctus .blueprint-band__stat {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-radius: 6px;
    background: #eef2f8;
    transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ctus .blueprint-band__stat:hover {
    background: #D2E2D5;
    transform: translateX(4px);
}

.ctus .blueprint-band__stat-label {
    font-size: 14px;
    color: #3a3a4a;
    line-height: 1.65;
}

.ctus .blueprint-band__stat-val {
    font-size: 16px;
    color: #3530B1;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.ctus .blueprint-band__divider {
    height: 1px;
    background: linear-gradient(to right, #CE6730 0%, transparent 100%);
    margin: 48px 0 0 0;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

.ctus .reach-strip__concentric {
    position: absolute;
    bottom: 24px;
    right: 24px;
    pointer-events: none;
}

@media (max-width: 1280px) {
    .ctus .reach-strip__mosaic {
        flex: 0 0 340px;
    }

    .ctus .form-field__inner {
        gap: 48px;
    }

    .ctus .form-field__aside {
        flex: 0 0 260px;
    }

    .ctus .blueprint-band__right {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .ctus .reach-strip {
        padding: 48px 24px;
    }

    .ctus .reach-strip__inner {
        flex-direction: column;
    }

    .ctus .reach-strip__mosaic {
        flex: none;
        width: 100%;
    }

    .ctus .reach-strip__heading {
        font-size: 36px;
    }

    .ctus .form-field {
        padding: 48px 24px;
    }

    .ctus .form-field__inner {
        flex-direction: column;
        gap: 48px;
    }

    .ctus .form-field__aside {
        flex: none;
        position: static;
    }

    .ctus .form-field__row {
        flex-direction: column;
        gap: 16px;
    }

    .ctus .form-field__checks {
        grid-template-columns: 1fr;
    }

    .ctus .blueprint-band {
        padding: 48px 24px;
        border-right: none;
        border-left: 4px solid #3530B1;
    }

    .ctus .blueprint-band__inner {
        flex-direction: column;
        gap: 48px;
    }

    .ctus .blueprint-band__right {
        flex: none;
        width: 100%;
    }

    .ctus .blueprint-band__heading {
        font-size: 26px;
    }

    .ctus .form-field__aside-heading {
        font-size: 26px;
    }
}

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

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

.jrnl__schema {
    display: none;
}

.jrnl__title-block {
    position: relative;
    padding: 96px 0 48px;
    background-color: #f5f3ee;
    overflow: hidden;
}

.jrnl__stripe-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.jrnl__stripe-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-28deg,
            transparent,
            transparent 18px,
            rgba(206, 103, 48, 0.045) 18px,
            rgba(206, 103, 48, 0.045) 20px);
}

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

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

.jrnl__label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #CE6730;
    margin-bottom: 16px;
}

.jrnl__h1 {
    font-size: 66px;
    line-height: 1.15;
    font-weight: 800;
    color: #1b1837;
    margin: 0 0 24px;
}

.jrnl__tagline {
    font-size: 20px;
    line-height: 1.65;
    color: #3d3a5c;
    max-width: 480px;
    margin: 0;
}

.jrnl__title-img-col {
    flex: 0 0 420px;
    max-width: 420px;
    position: relative;
}

.jrnl__img-shape {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 20px 2px 20px 2px;
}

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

.jrnl__img-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to bottom, transparent 0%, rgba(27, 24, 55, 0.68) 100%);
    pointer-events: none;
}

.jrnl__divider {
    height: 2px;
    background: linear-gradient(to right,
            transparent 0%,
            #D2E2D5 20%,
            #D2E2D5 80%,
            transparent 100%);
    margin: 0;
    border: none;
}

.jrnl__about {
    background-color: #ffffff;
    padding: 96px 0;
}

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

.jrnl__shape-anchor {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.jrnl__geo {
    width: 16px;
    height: 16px;
    background-color: #CE6730;
    border-radius: 2px;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.jrnl__h2 {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    color: #1b1837;
    margin: 0;
}

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

.jrnl__about-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 8px;
}

.jrnl__para {
    font-size: 16px;
    line-height: 1.65;
    color: #2e2c4a;
    margin: 0;
}

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

.jrnl__scope-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    border-bottom: 1px solid #D2E2D5;
    padding-bottom: 16px;
}

.jrnl__scope-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.jrnl__scope-text {
    font-size: 16px;
    line-height: 1.65;
    color: #2e2c4a;
}

.jrnl__scope-num {
    font-size: 26px;
    font-weight: 700;
    color: #3530B1;
    flex-shrink: 0;
    text-align: right;
}

.jrnl__pubs {
    background-color: #D2E2D5;
    padding: 96px 0;
    position: relative;
}

.jrnl__pubs-pulse {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.jrnl__pubs-pulse::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border: 2px solid rgba(53, 48, 177, 0.12);
    border-radius: 20px;
    animation: jrnl-pulse 4s ease-in-out infinite;
}

.jrnl__pubs-pulse::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    border: 1px solid rgba(206, 103, 48, 0.08);
    border-radius: 20px;
    animation: jrnl-pulse 4s ease-in-out 1.2s infinite;
}

@keyframes jrnl-pulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

.jrnl__pubs-head {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 24px;
}

.jrnl__pubs-intro {
    max-width: 520px;
}

.jrnl__h2--alt {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    color: #1b1837;
    margin: 0 0 16px;
}

.jrnl__pubs-desc {
    font-size: 16px;
    line-height: 1.65;
    color: #2e2c4a;
    margin: 0;
}

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

.jrnl__pub-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: -1px 6px 14px -1px rgba(206, 103, 48, 0.08);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.jrnl__pub-card:hover {
    transform: translateY(-4px);
    box-shadow: -1px 8px 52px -1px rgba(206, 103, 48, 0.14);
}

.jrnl__pub-card:focus-within .jrnl__pub-tooltip {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.jrnl__pub-topic {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #CE6730;
}

.jrnl__pub-title {
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
    color: #1b1837;
    margin: 0;
}

.jrnl__pub-authors {
    font-size: 14px;
    line-height: 1.65;
    color: #5a5780;
}

.jrnl__pub-abstract {
    font-size: 16px;
    line-height: 1.65;
    color: #2e2c4a;
    margin: 0;
    flex: 1;
}

.jrnl__pub-source {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid #D2E2D5;
}

.jrnl__pub-source-dot {
    width: 8px;
    height: 8px;
    background-color: #3530B1;
    border-radius: 2px;
    flex-shrink: 0;
}

.jrnl__pub-source-text {
    font-size: 14px;
    color: #3530B1;
    font-weight: 600;
}

.jrnl__pub-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #1b1837;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.65;
    padding: 8px 16px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out;
    z-index: 10;
}

.jrnl__guide {
    background-color: #1b1837;
    padding: 96px 0;
    position: relative;
}

.jrnl__guide-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.jrnl__guide-bg::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(210, 226, 213, 0.1);
    border-radius: 20px;
    transform: rotate(18deg);
    animation: jrnl-pulse 5s ease-in-out 0.6s infinite;
}

.jrnl__guide-inner {
    position: relative;
}

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

.jrnl__h2--light {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px;
}

.jrnl__para--light {
    font-size: 16px;
    line-height: 1.65;
    color: #b8b5d4;
    margin: 0;
}

.jrnl__geo--light {
    width: 16px;
    height: 16px;
    background-color: #D2E2D5;
    border-radius: 2px;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.jrnl__guide-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    counter-reset: step-counter;
}

.jrnl__guide-step {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(210, 226, 213, 0.12);
    transition: background 0.4s ease-in-out, border-color 0.4s ease-in-out;
    counter-increment: step-counter;
}

.jrnl__guide-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(210, 226, 213, 0.28);
}

.jrnl__step-text {
    font-size: 16px;
    line-height: 1.65;
    color: #d4d1ec;
}

.jrnl__step-num {
    font-size: 26px;
    font-weight: 700;
    color: #CE6730;
    flex-shrink: 0;
}

.jrnl__guide-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding-top: 48px;
    border-top: 1px solid rgba(210, 226, 213, 0.15);
}

.jrnl__guide-cta-text {
    font-size: 20px;
    line-height: 1.65;
    color: #b8b5d4;
    flex: 1;
}

.jrnl__btn {
    display: inline-block;
    padding: 16px 24px;
    background: linear-gradient(135deg, #CE6730 0%, #3530B1 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.jrnl__btn:hover {
    background: linear-gradient(315deg, #CE6730 0%, #3530B1 100%);
    transform: translateY(-3px);
}

.jrnl__btn:focus {
    outline: 2px solid #D2E2D5;
    outline-offset: 4px;
}

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

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

    80% {
        transform: translateY(4px);
    }

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

.jrnl__title-text {
    animation: jrnl-bounce-in 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.jrnl__title-img-col {
    animation: jrnl-bounce-in 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

@media (max-width: 1280px) {
    .jrnl__h1 {
        font-size: 50px;
    }

    .jrnl__title-img-col {
        flex: 0 0 340px;
        max-width: 340px;
    }

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

    .jrnl__guide-top {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .jrnl__title-block {
        padding: 48px 0 48px;
    }

    .jrnl__title-grid {
        flex-direction: column;
        gap: 24px;
    }

    .jrnl__title-img-col {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .jrnl__img-shape {
        height: 260px;
    }

    .jrnl__h1 {
        font-size: 36px;
    }

    .jrnl__about {
        padding: 48px 0;
    }

    .jrnl__about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .jrnl__pubs {
        padding: 48px 0;
    }

    .jrnl__pubs-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 24px;
    }

    .jrnl__pubs-grid {
        grid-template-columns: 1fr;
    }

    .jrnl__guide {
        padding: 48px 0;
    }

    .jrnl__guide-top {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 24px;
    }

    .jrnl__guide-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-top: 24px;
    }

    .jrnl__h2 {
        font-size: 26px;
    }

    .jrnl__h2--alt {
        font-size: 26px;
    }

    .jrnl__h2--light {
        font-size: 26px;
    }
}

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

.frnt .pg-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.frnt .ttl-blk {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    position: relative;
    background: #f5f3ef;
}

.frnt .ttl-blk__img-side {
    position: relative;
    overflow: hidden;
}

.frnt .ttl-blk__img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.frnt .ttl-blk__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transform: scaleX(1.08);
    transform-origin: left center;
    animation: img-wipe 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes img-wipe {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0% 0 0);
    }
}

.frnt .ttl-blk__geo {
    position: absolute;
    opacity: 0.08;
    pointer-events: none;
}

.frnt .ttl-blk__geo--a {
    width: 180px;
    height: 180px;
    border: 2px solid #3530B1;
    border-radius: 2px;
    top: 48px;
    right: -48px;
    transform: rotate(22deg);
}

.frnt .ttl-blk__geo--b {
    width: 90px;
    height: 90px;
    background: #CE6730;
    border-radius: 20px;
    bottom: 96px;
    left: 24px;
    transform: rotate(-15deg);
}

.frnt .ttl-blk__text-side {
    padding: 96px 48px 96px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.frnt .ttl-blk__label {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #CE6730;
    margin-bottom: 24px;
    font-weight: 600;
}

.frnt .ttl-blk__h1 {
    font-size: 66px;
    line-height: 1.15;
    color: #1b1b2e;
    margin-bottom: 16px;
    font-weight: 800;
}

.frnt .ttl-blk__h2 {
    font-size: 36px;
    line-height: 1.15;
    color: #3530B1;
    margin-bottom: 24px;
    font-weight: 500;
}

.frnt .ttl-blk__sub {
    font-size: 20px;
    line-height: 1.65;
    color: #3a3a4a;
    margin-bottom: 48px;
    max-width: 480px;
}

.frnt .ttl-blk__arrow {
    display: flex;
    align-items: center;
    gap: 8px;
}

.frnt .ttl-blk__arrow-icon {
    width: 24px;
    height: 24px;
    opacity: 0.35;
}

.frnt .ttl-blk__arrow-text {
    font-size: 14px;
    color: #888;
    letter-spacing: 0.08em;
}

.frnt .avail {
    padding: 96px 0;
    background: #fff;
}

.frnt .avail__head {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
}

.frnt .avail__heading-wrap {
    max-width: 520px;
}

.frnt .avail__shape {
    width: 10px;
    height: 10px;
    background: #CE6730;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 16px;
}

.frnt .avail__h2 {
    font-size: 36px;
    line-height: 1.15;
    color: #1b1b2e;
    margin-bottom: 16px;
}

.frnt .avail__desc {
    font-size: 16px;
    line-height: 1.65;
    color: #4a4a5a;
    max-width: 380px;
}

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

.frnt .avail__card {
    border: 1px solid #D2E2D5;
    border-radius: 12px;
    padding: 24px;
    background: #fff;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.frnt .avail__card:hover {
    transform: translateY(-4px);
    box-shadow: -1px 6px 14px -1px rgba(206, 103, 48, 0.08);
}

.frnt .avail__card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 16px;
    overflow: hidden;
    display: block;
    transition: transform 0.55s ease-in-out;
}

.frnt .avail__card:hover .avail__card-img {
    transform: translateX(6px);
}

.frnt .avail__card-tag {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #CE6730;
    margin-bottom: 8px;
    font-weight: 600;
}

.frnt .avail__card-h3 {
    font-size: 20px;
    line-height: 1.15;
    color: #1b1b2e;
    margin-bottom: 8px;
}

.frnt .avail__card-p {
    font-size: 16px;
    line-height: 1.65;
    color: #4a4a5a;
}

.frnt .avail__card-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 14px;
    color: #3530B1;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.35s ease-in-out;
    letter-spacing: 0.06em;
}

.frnt .avail__card-link:hover {
    text-decoration-color: #3530B1;
}

.frnt .rep {
    padding: 96px 0;
    background: #D2E2D5;
    position: relative;
}

.frnt .rep__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.frnt .rep__shape {
    width: 10px;
    height: 10px;
    background: #3530B1;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 16px;
}

.frnt .rep__h2 {
    font-size: 36px;
    line-height: 1.15;
    color: #1b1b2e;
    margin-bottom: 24px;
}

.frnt .rep__p {
    font-size: 16px;
    line-height: 1.65;
    color: #2a2a3a;
    margin-bottom: 16px;
}

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

.frnt .rep__ref-item {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid #CE6730;
    border-top: 1px solid rgba(53, 48, 177, 0.08);
    border-right: 1px solid rgba(53, 48, 177, 0.08);
    border-bottom: 1px solid rgba(53, 48, 177, 0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.frnt .rep__ref-item:hover {
    transform: translateX(4px);
}

.frnt .rep__ref-quote {
    font-size: 16px;
    line-height: 1.65;
    color: #2a2a3a;
    margin-bottom: 8px;
}

.frnt .rep__ref-attr {
    font-size: 14px;
    color: #CE6730;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.frnt .rep__img-wrap {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.frnt .rep__img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease-in-out;
}

.frnt .rep__img-wrap:hover img {
    transform: translateY(-6px);
}

.frnt .divider-tri {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    background: #fff;
    position: relative;
}

.frnt .divider-tri--green {
    background: #D2E2D5;
}

.frnt .divider-tri svg {
    display: block;
}

.frnt .hesit {
    padding: 96px 0;
    background: #1b1b2e;
}

.frnt .hesit__inner {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    align-items: start;
}

.frnt .hesit__shape {
    width: 10px;
    height: 10px;
    background: #D2E2D5;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 16px;
}

.frnt .hesit__h2 {
    font-size: 36px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 24px;
}

.frnt .hesit__p {
    font-size: 16px;
    line-height: 1.65;
    color: #c0c0d0;
    margin-bottom: 16px;
}

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

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

.frnt .hesit__num {
    font-size: 26px;
    font-weight: 800;
    color: #CE6730;
    line-height: 1.15;
    min-width: 36px;
    text-align: right;
}

.frnt .hesit__point-text {
    flex: 1;
}

.frnt .hesit__point-h {
    font-size: 20px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 8px;
}

.frnt .hesit__point-p {
    font-size: 16px;
    line-height: 1.65;
    color: #c0c0d0;
}

.frnt .conds {
    padding: 96px 0;
    background: #fff;
}

.frnt .conds__top {
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
}

.frnt .conds__shape {
    width: 10px;
    height: 10px;
    background: #3530B1;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 16px;
}

.frnt .conds__h2 {
    font-size: 36px;
    line-height: 1.15;
    color: #1b1b2e;
    margin-bottom: 16px;
}

.frnt .conds__intro {
    font-size: 16px;
    line-height: 1.65;
    color: #4a4a5a;
}

.frnt .conds__split {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 48px;
    align-items: start;
}

.frnt .conds__divline {
    width: 1px;
    background: #D2E2D5;
    align-self: stretch;
}

.frnt .conds__col-h {
    font-size: 20px;
    line-height: 1.15;
    color: #1b1b2e;
    margin-bottom: 24px;
    font-weight: 700;
}

.frnt .conds__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.frnt .conds__list li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    font-size: 16px;
    line-height: 1.65;
    color: #4a4a5a;
    border-bottom: 1px solid #D2E2D5;
    padding-bottom: 16px;
}

.frnt .conds__list li span {
    font-size: 14px;
    font-weight: 700;
    color: #3530B1;
    text-align: right;
    white-space: nowrap;
}

.frnt .conds__img-wrap {
    margin-top: 48px;
    border-radius: 12px;
    overflow: hidden;
}

.frnt .conds__img-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease-in-out;
}

.frnt .conds__img-wrap:hover img {
    transform: translateX(6px);
}

.frnt .curr {
    padding: 96px 0;
    background: #3530B1;
    position: relative;
}

.frnt .curr__bg-img {
    position: absolute;
    inset: 0;
    background-image: url('./img_assets/file-h.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    border-radius: 0;
}

.frnt .curr__inner {
    position: relative;
}

.frnt .curr__head {
    max-width: 600px;
    margin-bottom: 48px;
}

.frnt .curr__shape {
    width: 10px;
    height: 10px;
    background: #D2E2D5;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 16px;
}

.frnt .curr__h2 {
    font-size: 36px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
}

.frnt .curr__p {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.8);
}

.frnt .curr__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.frnt .curr__stat {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease-in-out;
}

.frnt .curr__stat:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.16);
}

.frnt .curr__stat-num {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.15;
    color: #D2E2D5;
    margin-bottom: 8px;
}

.frnt .curr__stat-label {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.06em;
}

.frnt .curr__topics {
    margin-top: 48px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}

.frnt .curr__topic-tag {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    color: #fff;
    letter-spacing: 0.06em;
    transition: background 0.35s ease-in-out, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.frnt .curr__topic-tag:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.frnt .appr {
    padding: 96px 0;
    background: #f5f3ef;
}

.frnt .appr__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.frnt .appr__shape {
    width: 10px;
    height: 10px;
    background: #CE6730;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 16px;
}

.frnt .appr__h2 {
    font-size: 36px;
    line-height: 1.15;
    color: #1b1b2e;
    margin-bottom: 16px;
}

.frnt .appr__p {
    font-size: 16px;
    line-height: 1.65;
    color: #4a4a5a;
    margin-bottom: 16px;
}

.frnt .appr__steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.frnt .appr__step {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid #D2E2D5;
}

.frnt .appr__step:last-child {
    border-bottom: none;
}

.frnt .appr__step-num {
    font-size: 26px;
    font-weight: 800;
    color: #CE6730;
    line-height: 1.15;
    min-width: 36px;
    text-align: right;
}

.frnt .appr__step-body {
    flex: 1;
}

.frnt .appr__step-h {
    font-size: 20px;
    line-height: 1.15;
    color: #1b1b2e;
    margin-bottom: 8px;
}

.frnt .appr__step-p {
    font-size: 16px;
    line-height: 1.65;
    color: #4a4a5a;
}

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

.frnt .appr__img-wrap {
    border-radius: 12px;
    overflow: hidden;
}

.frnt .appr__img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease-in-out;
}

.frnt .appr__img-wrap:hover img {
    transform: translateX(-6px);
}

.frnt .appr__accent {
    background: #CE6730;
    border-radius: 12px;
    padding: 24px;
}

.frnt .appr__accent-h {
    font-size: 20px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 8px;
}

.frnt .appr__accent-p {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
}

@keyframes gentle-shake {

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

    92% {
        transform: translateX(-3px);
    }

    94% {
        transform: translateX(3px);
    }

    96% {
        transform: translateX(-2px);
    }

    98% {
        transform: translateX(2px);
    }
}

.frnt .avail__card--featured {
    animation: gentle-shake 5s ease-in-out infinite;
    background: #f9f5f0;
    border-color: #CE6730;
}

@media (max-width: 1280px) {
    .frnt .ttl-blk__h1 {
        font-size: 50px;
    }

    .frnt .curr__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .frnt .ttl-blk {
        grid-template-columns: 1fr;
    }

    .frnt .ttl-blk__img-side {
        height: 280px;
    }

    .frnt .ttl-blk__text-side {
        padding: 48px 24px;
    }

    .frnt .ttl-blk__h1 {
        font-size: 36px;
    }

    .frnt .ttl-blk__h2 {
        font-size: 26px;
    }

    .frnt .avail__grid {
        grid-template-columns: 1fr;
    }

    .frnt .avail__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .frnt .rep__inner {
        grid-template-columns: 1fr;
    }

    .frnt .hesit__inner {
        grid-template-columns: 1fr;
    }

    .frnt .conds__split {
        grid-template-columns: 1fr;
    }

    .frnt .conds__divline {
        display: none;
    }

    .frnt .curr__grid {
        grid-template-columns: 1fr 1fr;
    }

    .frnt .appr__inner {
        grid-template-columns: 1fr;
    }

    .frnt .curr__stat-num {
        font-size: 36px;
    }
}

.abt-pg {
    background: #ffffff;
    overflow-x: clip;
}

.abt-pg .pulse-bg {
    animation: bgpulse 6s ease-in-out infinite;
}

@keyframes bgpulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.82;
    }
}

.abt-pg .seg-one {
    position: relative;
    padding: 96px 24px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.abt-pg .seg-one__bloom {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 30%, rgba(206, 103, 48, 0.10) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 80% 70%, rgba(53, 48, 177, 0.08) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 55% 15%, rgba(210, 226, 213, 0.35) 0%, transparent 60%);
    pointer-events: none;
    overflow: hidden;
}

.abt-pg .seg-one__shape-a {
    position: absolute;
    top: 48px;
    left: 8%;
    width: 64px;
    height: 64px;
    border: 2px solid rgba(206, 103, 48, 0.18);
    border-radius: 12px;
    transform: rotate(18deg);
    pointer-events: none;
}

.abt-pg .seg-one__shape-b {
    position: absolute;
    bottom: 96px;
    right: 6%;
    width: 40px;
    height: 40px;
    background: rgba(53, 48, 177, 0.07);
    border-radius: 20px;
    pointer-events: none;
}

.abt-pg .seg-one__shape-c {
    position: absolute;
    top: 120px;
    right: 14%;
    width: 18px;
    height: 18px;
    background: rgba(206, 103, 48, 0.22);
    border-radius: 2px;
    transform: rotate(30deg);
    pointer-events: none;
}

.abt-pg .seg-one__label {
    font-size: 14px;
    letter-spacing: 0.12em;
    color: #CE6730;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600;
}

.abt-pg .seg-one__hed {
    font-size: 66px;
    line-height: 1.15;
    color: #16133a;
    text-align: center;
    max-width: 820px;
    margin: 0 auto 24px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.abt-pg .seg-one__sub {
    font-size: 20px;
    line-height: 1.65;
    color: #2d2a5e;
    text-align: center;
    max-width: 580px;
    margin: 0 auto 48px;
}

.abt-pg .seg-one__link {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(120deg, #CE6730 0%, #3530B1 100%);
    padding: 16px 48px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-position 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    background-size: 200% 200%;
    background-position: 0% 50%;
}

.abt-pg .seg-one__link:hover {
    background-position: 100% 50%;
    transform: translateY(-3px);
}

.abt-pg .seg-one__img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 860px;
    width: 100%;
    margin-top: 48px;
}

.abt-pg .seg-one__img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: -1px 6px 14px -1px rgba(206, 103, 48, 0.08);
}

.abt-pg .seg-one__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: 100%;
}

.abt-pg .seg-one__img-dot {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 14px;
    height: 14px;
    background: #CE6730;
    border-radius: 20px;
    border: 2px solid #ffffff;
}

.abt-pg .seg-one__img-icon {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: #3530B1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abt-pg .seg-one__img-icon svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

.abt-pg .seg-one__img-dot-indicator {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 10px;
    height: 10px;
    background: #CE6730;
    border-radius: 20px;
}

.abt-pg .seg-one__texture {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 3px,
            rgba(255, 255, 255, 0.04) 3px,
            rgba(255, 255, 255, 0.04) 6px);
    pointer-events: none;
}

.abt-pg .seg-one__stat-row {
    display: flex;
    flex-direction: row;
    gap: 48px;
    margin-top: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

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

.abt-pg .stat-item__num {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    color: #CE6730;
}

.abt-pg .stat-item__desc {
    font-size: 14px;
    line-height: 1.65;
    color: #2d2a5e;
    text-align: center;
    letter-spacing: 0.04em;
}

.abt-pg .divider-mono {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
    gap: 16px;
}

.abt-pg .divider-mono__line {
    height: 1px;
    width: 80px;
    background: rgba(53, 48, 177, 0.14);
    flex-shrink: 0;
}

.abt-pg .divider-mono__sym {
    font-size: 26px;
    font-weight: 700;
    color: #3530B1;
    opacity: 0.22;
    letter-spacing: -0.02em;
    line-height: 1.15;
    font-style: italic;
}

.abt-pg .seg-two {
    position: relative;
    padding: 96px 24px;
}

.abt-pg .seg-two__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 10% 20%, rgba(210, 226, 213, 0.55) 0%, transparent 60%),
        radial-gradient(ellipse 55% 70% at 90% 80%, rgba(53, 48, 177, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 45% 45% at 60% 40%, rgba(206, 103, 48, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 35% 35% at 30% 90%, rgba(210, 226, 213, 0.40) 0%, transparent 55%);
    pointer-events: none;
    overflow: hidden;
}

.abt-pg .seg-two__inner {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
}

.abt-pg .seg-two__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: start;
    margin-bottom: 96px;
}

.abt-pg .seg-two__anchor-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.abt-pg .seg-two__anchor-shape {
    width: 8px;
    height: 8px;
    background: #CE6730;
    border-radius: 2px;
    flex-shrink: 0;
}

.abt-pg .seg-two__anchor-txt {
    font-size: 14px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #CE6730;
    font-weight: 600;
}

.abt-pg .seg-two__hed {
    font-size: 36px;
    line-height: 1.15;
    color: #16133a;
    font-weight: 700;
    margin-bottom: 24px;
}

.abt-pg .seg-two__para {
    font-size: 16px;
    line-height: 1.65;
    color: #2d2a5e;
    margin-bottom: 16px;
}

.abt-pg .seg-two__para:last-child {
    margin-bottom: 0;
}

.abt-pg .seg-two__img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: -1px 8px 52px -1px rgba(53, 48, 177, 0.14);
}

.abt-pg .seg-two__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: 100%;
}

.abt-pg .seg-two__img-dot {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 12px;
    height: 12px;
    background: #CE6730;
    border-radius: 20px;
    border: 2px solid #ffffff;
}

.abt-pg .seg-two__texture-overlay {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg,
            transparent,
            transparent 4px,
            rgba(53, 48, 177, 0.03) 4px,
            rgba(53, 48, 177, 0.03) 8px);
    pointer-events: none;
}

.abt-pg .seg-two__flow {
    margin-bottom: 96px;
}

.abt-pg .seg-two__flow-hed {
    font-size: 26px;
    line-height: 1.15;
    color: #16133a;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
}

.abt-pg .flow-track {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
}

.abt-pg .flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 16px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: -1px 1px 4px -1px rgba(206, 103, 48, 0.06), -1px 6px 14px -1px rgba(206, 103, 48, 0.08);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.abt-pg .flow-node:hover {
    transform: translateY(-4px);
    box-shadow: -1px 8px 52px -1px rgba(206, 103, 48, 0.14);
}

.abt-pg .flow-node__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.abt-pg .flow-node__icon svg {
    width: 22px;
    height: 22px;
}

.abt-pg .flow-node__icon--orange {
    background: rgba(206, 103, 48, 0.12);
}

.abt-pg .flow-node__icon--blue {
    background: rgba(53, 48, 177, 0.10);
}

.abt-pg .flow-node__icon--green {
    background: rgba(210, 226, 213, 0.80);
}

.abt-pg .flow-node__dot {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 9px;
    height: 9px;
    background: #CE6730;
    border-radius: 20px;
    border: 2px solid #ffffff;
}

.abt-pg .flow-node__label {
    font-size: 14px;
    line-height: 1.65;
    color: #16133a;
    font-weight: 600;
    text-align: center;
}

.abt-pg .flow-node__desc {
    font-size: 14px;
    line-height: 1.65;
    color: #2d2a5e;
    text-align: center;
}

.abt-pg .flow-conn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
}

.abt-pg .flow-conn__line {
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, rgba(206, 103, 48, 0.30), rgba(53, 48, 177, 0.30));
    border-radius: 2px;
    position: relative;
}

.abt-pg .flow-conn__line::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 7px solid rgba(53, 48, 177, 0.40);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.abt-pg .seg-two__team {
    margin-bottom: 0;
}

.abt-pg .seg-two__team-hed {
    font-size: 26px;
    line-height: 1.15;
    color: #16133a;
    font-weight: 700;
    margin-bottom: 48px;
}

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

.abt-pg .team-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: -1px 1px 4px -1px rgba(206, 103, 48, 0.06), -1px 6px 14px -1px rgba(206, 103, 48, 0.08);
    transition: transform 0.40s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.abt-pg .team-card:hover {
    transform: translateY(-3px);
}

.abt-pg .team-card--anchor {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.abt-pg .team-card__img-wrap {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    position: relative;
}

.abt-pg .team-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: 100%;
}

.abt-pg .team-card__img-dot {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 10px;
    height: 10px;
    background: #CE6730;
    border-radius: 20px;
    border: 2px solid #ffffff;
}

.abt-pg .team-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.abt-pg .team-card__name {
    font-size: 20px;
    line-height: 1.15;
    color: #16133a;
    font-weight: 700;
}

.abt-pg .team-card__role {
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #CE6730;
    font-weight: 600;
}

.abt-pg .team-card__bio {
    font-size: 14px;
    line-height: 1.65;
    color: #2d2a5e;
    margin-top: 8px;
}

.abt-pg .team-card__compact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.abt-pg .team-card__monogram {
    width: 48px;
    height: 48px;
    border-radius: 20px;
    background: linear-gradient(135deg, #3530B1 0%, #CE6730 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.abt-pg .seg-two__zigzag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 24px;
    overflow: hidden;
    pointer-events: none;
}

.abt-pg .seg-two__zigzag svg {
    display: block;
    width: 100%;
    height: 24px;
}

.abt-pg .seg-one__zigzag-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 24px;
    overflow: hidden;
    pointer-events: none;
}

.abt-pg .seg-one__zigzag-top svg {
    display: block;
    width: 100%;
    height: 24px;
}

.abt-pg .seg-two__values {
    margin-top: 96px;
}

.abt-pg .seg-two__values-hed {
    font-size: 26px;
    line-height: 1.15;
    color: #16133a;
    font-weight: 700;
    margin-bottom: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.abt-pg .seg-two__values-shape {
    width: 10px;
    height: 10px;
    background: #3530B1;
    border-radius: 2px;
    flex-shrink: 0;
}

.abt-pg .values-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.abt-pg .val-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 12px;
    border: 1px solid rgba(210, 226, 213, 0.70);
    transition: border-color 0.40s ease-in-out, transform 0.40s cubic-bezier(0.16, 1, 0.3, 1);
}

.abt-pg .val-item:hover {
    border-color: rgba(206, 103, 48, 0.35);
    transform: translateY(-2px);
}

.abt-pg .val-item__num {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    color: rgba(206, 103, 48, 0.18);
    flex-shrink: 0;
    min-width: 48px;
    text-align: right;
}

.abt-pg .val-item__txt {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.abt-pg .val-item__title {
    font-size: 16px;
    line-height: 1.15;
    font-weight: 700;
    color: #16133a;
}

.abt-pg .val-item__desc {
    font-size: 14px;
    line-height: 1.65;
    color: #2d2a5e;
}

@media (max-width: 1280px) {
    .abt-pg .seg-two__top {
        gap: 48px;
    }

    .abt-pg .flow-track {
        grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
        gap: 0;
    }

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

    .abt-pg .team-card--anchor {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .abt-pg .seg-one__hed {
        font-size: 36px;
    }

    .abt-pg .seg-one__sub {
        font-size: 16px;
    }

    .abt-pg .seg-one__img-row {
        grid-template-columns: 1fr;
    }

    .abt-pg .seg-one__stat-row {
        gap: 24px;
    }

    .abt-pg .seg-two__top {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .abt-pg .flow-track {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .abt-pg .flow-conn {
        transform: rotate(90deg);
        padding: 0;
    }

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

    .abt-pg .team-card--anchor {
        grid-template-columns: 1fr;
    }

    .abt-pg .values-list {
        grid-template-columns: 1fr;
    }

    .abt-pg .seg-two__top {
        margin-bottom: 48px;
    }

    .abt-pg .seg-two__flow {
        margin-bottom: 48px;
    }

    .abt-pg .seg-two__values {
        margin-top: 48px;
    }
}

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

.int-std__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

@keyframes maskReveal {
    from {
        clip-path: inset(50% 50% 50% 50%);
    }

    to {
        clip-path: inset(0% 0% 0% 0%);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.int-std__reveal {
    animation: maskReveal 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.int-std__fadein {
    animation: fadeUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.int-std__fadein--d1 {
    animation-delay: 0.1s;
}

.int-std__fadein--d2 {
    animation-delay: 0.22s;
}

.int-std__fadein--d3 {
    animation-delay: 0.34s;
}

::selection {
    background: #3530B1;
    color: #fff;
}

.int-std a:focus-visible,
.int-std button:focus-visible {
    outline: 3px solid #CE6730 !important;
    outline-offset: 3px !important;
}

.ttl-blk {
    background: #1b1b2e;
    padding-top: 48px;
    padding-bottom: 96px;
    position: relative;
}

.ttl-blk__corner {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    pointer-events: none;
}

.ttl-blk__corner--br {
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
}

.ttl-blk__grid {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
}

.ttl-blk__text {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ttl-blk__eyebrow {
    font-size: 14px;
    letter-spacing: 0.18em;
    color: #CE6730;
    text-transform: uppercase;
    font-weight: 600;
}

.ttl-blk__h1 {
    font-size: 66px;
    line-height: 1.15;
    color: #fff;
    margin: 0;
}

.ttl-blk__h1 em {
    font-style: normal;
    background: linear-gradient(112deg, #CE6730 20%, #D2E2D5 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ttl-blk__sub {
    font-size: 20px;
    line-height: 1.65;
    color: #b0b8cc;
    max-width: 520px;
    margin: 0;
}

.ttl-blk__cta {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(112deg, #CE6730, #b85520);
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: background-position 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    background-size: 200% 200%;
    background-position: 0% 50%;
    align-self: flex-start;
}

.ttl-blk__cta:hover {
    background-position: 100% 50%;
    transform: translateY(-3px);
}

.ttl-blk__img-wrap {
    flex: 0 0 420px;
    max-width: 420px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.ttl-blk__img-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, #1b1b2e 0%, transparent 100%);
    pointer-events: none;
}

.ttl-blk__img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    filter: blur(0px);
    transition: filter 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.ttl-blk__img-wrap:hover .ttl-blk__img {
    filter: blur(0px) saturate(1.2);
}

@media (max-width: 1280px) {
    .ttl-blk__h1 {
        font-size: 50px;
    }

    .ttl-blk__img-wrap {
        flex: 0 0 320px;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .ttl-blk {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .ttl-blk__grid {
        flex-direction: column;
        gap: 24px;
    }

    .ttl-blk__h1 {
        font-size: 36px;
    }

    .ttl-blk__img-wrap {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }
}

.div-wave {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #1b1b2e;
}

.div-wave--inv {
    background: #fff;
}

.topic-grid {
    background: #fff;
    padding: 96px 0;
}

.topic-grid__head {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    margin-bottom: 48px;
}

.topic-grid__anchor {
    width: 6px;
    height: 6px;
    background: #CE6730;
    border-radius: 2px;
    margin-top: 10px;
    flex-shrink: 0;
}

.topic-grid__h2 {
    font-size: 36px;
    line-height: 1.15;
    color: #1b1b2e;
    margin: 0 0 16px;
}

.topic-grid__lead {
    font-size: 16px;
    line-height: 1.65;
    color: #3d3d5c;
    max-width: 620px;
    margin: 0;
}

.topic-grid__mosaic {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.topic-card {
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.topic-card:hover {
    transform: translateY(-4px);
    box-shadow: -1px 8px 52px -1px rgba(206, 103, 48, 0.14);
}

.topic-card--a {
    background: #D2E2D5;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.topic-card--b {
    background: #1b1b2e;
    grid-column: 2 / 4;
    grid-row: 1 / 2;
    color: #fff;
}

.topic-card--c {
    background: #CE6730;
    grid-column: 4 / 5;
    grid-row: 1 / 2;
    color: #fff;
}

.topic-card--d {
    background: #f3f0eb;
    grid-column: 1 / 3;
    grid-row: 2 / 3;
}

.topic-card--e {
    background: #3530B1;
    grid-column: 3 / 5;
    grid-row: 2 / 3;
    color: #fff;
}

.topic-card__num {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 800;
    opacity: 0.18;
    align-self: flex-end;
    margin-top: auto;
}

.topic-card__label {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.7;
}

.topic-card__h4 {
    font-size: 20px;
    line-height: 1.15;
    margin: 0;
}

.topic-card__p {
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
    opacity: 0.88;
}

@media (max-width: 1280px) {
    .topic-grid__mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .topic-card--a {
        grid-column: 1/2;
        grid-row: 1/2;
    }

    .topic-card--b {
        grid-column: 2/3;
        grid-row: 1/2;
    }

    .topic-card--c {
        grid-column: 1/2;
        grid-row: 2/3;
    }

    .topic-card--d {
        grid-column: 2/3;
        grid-row: 2/3;
    }

    .topic-card--e {
        grid-column: 1/3;
        grid-row: 3/4;
    }
}

@media (max-width: 768px) {
    .topic-grid {
        padding: 48px 0;
    }

    .topic-grid__head {
        flex-direction: column;
        gap: 16px;
    }

    .topic-grid__mosaic {
        grid-template-columns: 1fr;
    }

    .topic-card--a,
    .topic-card--b,
    .topic-card--c,
    .topic-card--d,
    .topic-card--e {
        grid-column: 1/2;
        grid-row: auto;
    }
}

.div-wave2 {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #fff;
}

.res-blk {
    background: linear-gradient(155deg, #e8eaf6 0%, #D2E2D5 40%, #f5ede6 100%);
    padding: 96px 0;
    position: relative;
}

.res-blk__entry {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.res-blk__entry-line {
    width: 40px;
    height: 3px;
    background: #3530B1;
    border-radius: 2px;
}

.res-blk__entry-label {
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #3530B1;
    font-weight: 700;
}

.res-blk__body {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
}

.res-blk__left {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.res-blk__h2 {
    font-size: 36px;
    line-height: 1.15;
    color: #1b1b2e;
    margin: 0;
}

.res-blk__intro {
    font-size: 16px;
    line-height: 1.65;
    color: #3d3d5c;
    margin: 0;
}

.res-blk__rating {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: -1px 6px 14px -1px rgba(53, 48, 177, 0.08);
}

.res-blk__rating-val {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 800;
    color: #CE6730;
}

.res-blk__rating-stars {
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.res-blk__star {
    width: 18px;
    height: 18px;
}

.res-blk__rating-meta {
    font-size: 14px;
    color: #6b6b8a;
}

.res-blk__right {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.res-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    border-top: 3px solid transparent;
    box-shadow: -1px 1px 4px -1px rgba(206, 103, 48, 0.06);
    transition: border-color 0.38s ease-in-out, transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.res-item:hover {
    border-color: #CE6730;
    transform: translateX(6px);
    box-shadow: -1px 6px 14px -1px rgba(206, 103, 48, 0.08);
}

.res-item__idx {
    font-size: 26px;
    line-height: 1.15;
    font-weight: 800;
    color: #D2E2D5;
    flex-shrink: 0;
    min-width: 40px;
    text-align: right;
}

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

.res-item__h5 {
    font-size: 16px;
    line-height: 1.15;
    margin: 0;
    color: #1b1b2e;
    font-weight: 700;
}

.res-item__p {
    font-size: 14px;
    line-height: 1.65;
    color: #3d3d5c;
    margin: 0;
}

.res-blk__exit {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
    justify-content: flex-end;
}

.res-blk__exit-label {
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #3530B1;
    font-weight: 700;
}

.res-blk__exit-line {
    width: 40px;
    height: 3px;
    background: #3530B1;
    border-radius: 2px;
}

.res-blk__link {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1b1b2e;
    text-decoration: underline;
    text-decoration-color: #CE6730;
    font-weight: 600;
    transition: color 0.38s ease-in-out, text-decoration-color 0.38s ease-in-out;
}

.res-blk__link:hover {
    color: #CE6730;
    text-decoration-color: #1b1b2e;
}

@media (max-width: 1280px) {
    .res-blk__left {
        flex: 0 0 280px;
    }
}

@media (max-width: 768px) {
    .res-blk {
        padding: 48px 0;
    }

    .res-blk__body {
        flex-direction: column;
        gap: 24px;
    }

    .res-blk__left {
        flex: 0 0 auto;
        width: 100%;
    }

    .res-item {
        flex-direction: column;
        gap: 8px;
    }
}

.deco-punct {
    position: absolute;
    right: 24px;
    top: 48px;
    font-size: 200px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px rgba(53, 48, 177, 0.08);
    pointer-events: none;
    user-select: none;
    font-weight: 900;
}

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

.success-pg .success-pg__card {
    max-width: 560px;
    width: 100%;
    background: #ffffff;
    border: 1px solid #D2E2D5;
    border-radius: 12px;
    padding: 48px;
    box-shadow: -1px 6px 14px -1px rgba(206, 103, 48, 0.08);
}

.success-pg .success-pg__icon {
    width: 56px;
    height: 56px;
    margin: 0 0 24px 0;
    display: block;
}

.success-pg .success-pg__label {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #CE6730;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.15;
}

.success-pg .success-pg__heading {
    font-size: 36px;
    line-height: 1.15;
    color: #1b1b2e;
    margin: 0 0 16px 0;
    font-weight: 700;
}

.success-pg .success-pg__body {
    font-size: 16px;
    line-height: 1.65;
    color: #2e2e4a;
    margin: 0 0 48px 0;
}

.success-pg .success-pg__divider {
    width: 40px;
    height: 2px;
    background: #D2E2D5;
    border-radius: 2px;
    margin: 0 0 48px 0;
}

.success-pg .success-pg__action {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(112deg, #CE6730 0%, #3530B1 100%);
    border-radius: 6px;
    padding: 16px 24px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.38s cubic-bezier(0.16, 1, 0.3, 1), transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.38s ease-in-out;
}

.success-pg .success-pg__action:hover {
    background: linear-gradient(220deg, #CE6730 0%, #3530B1 100%);
    transform: translateY(-2px);
    box-shadow: -1px 8px 52px -1px rgba(53, 48, 177, 0.14);
}

.success-pg .success-pg__action:focus {
    outline: 3px solid #3530B1;
    outline-offset: 3px;
}

.success-pg .success-pg__secondary {
    margin: 24px 0 0 0;
    font-size: 14px;
    line-height: 1.65;
    color: #2e2e4a;
}

.success-pg .success-pg__secondary-link {
    color: #3530B1;
    text-decoration: underline;
    text-decoration-color: #D2E2D5;
    text-underline-offset: 3px;
    transition: text-decoration-color 0.35s ease-in-out, color 0.35s ease-in-out;
}

.success-pg .success-pg__secondary-link:hover {
    color: #CE6730;
    text-decoration-color: #CE6730;
}

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

    .success-pg .success-pg__card {
        padding: 24px;
    }

    .success-pg .success-pg__heading {
        font-size: 26px;
    }
}