html {
    box-sizing: border-box
}

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

body {
    margin: 0;
    padding: 0;
    min-height: 100svh;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%
}

.site-header {
    background: #1E1D1D;
    position: relative;
    z-index: 100
}

.brand-strip {
    border-bottom: 1px solid #18daff2e;
    padding: 24px 40px
}

.brand-strip-pod {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand-identity {
    display: flex;
    align-items: center;
    gap: 16px
}

.logo-shield {
    background: #fff;
    border-radius: 8px;
    padding: 8px;
    box-shadow: -1px 2px 5px 1px #18daff0f -1px 7px 28px 1px #18daff14;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex-shrink: 0
}

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

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

.brand-wordmark {
    font-family: 'Noto Sans', sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .04em;
    background: linear-gradient(90deg, #fff 0%, #18DAFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    display: inline-block
}

.brand-descriptor {
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff9e;
    letter-spacing: .12em;
    text-transform: uppercase
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 16px
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #18daff14;
    border: 1px solid #18daff38;
    border-radius: 8px;
    padding: 8px 16px
}

.trust-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #18DAFF;
    flex-shrink: 0
}

.trust-label {
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    color: #18DAFF;
    letter-spacing: .06em;
    white-space: nowrap
}

.contact-quick {
    display: flex;
    align-items: center;
    gap: 8px
}

.contact-link {
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffffc7;
    text-decoration: none;
    letter-spacing: .03em;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #ffffff24;
    transition: color .22s cubic-bezier(0.4, 0, 0.2, 1), border-color .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap
}

.contact-link:hover {
    color: #18DAFF;
    border-color: #18daff80;
    box-shadow: inset 0 2px 4px #18daff14
}

.contact-link:focus {
    outline: 2px solid #18DAFF;
    outline-offset: 3px
}

.nav-strip {
    padding: 0 40px;
    background: linear-gradient(180deg, #18daff0f 0%, transparent 100%)
}

.nav-pod {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0
}

.nav-item {
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffffd1;
    text-decoration: none;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    position: relative;
    transition: color .25s cubic-bezier(0.0, 0, 0.2, 1);
    white-space: nowrap
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: #18DAFF;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.nav-item:hover {
    color: #18DAFF;
    box-shadow: inset 0 -3px 8px #18daff12
}

.nav-item:hover::after {
    transform: scaleX(1)
}

.nav-item:focus {
    outline: 2px solid #18DAFF;
    outline-offset: -2px
}

.nav-item.active {
    color: #18DAFF
}

.nav-item.active::after {
    transform: scaleX(1)
}

.site-footer {
    background: #1E1D1D;
    position: relative
}

.footer-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px 24px
}

.footer-deck {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 40px
}

.footer-about {
    flex: 1 1 320px;
    max-width: 440px
}

.footer-about-name {
    font-family: 'Noto Sans', sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: .03em
}

.footer-about-desc {
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    color: #fff9
}

.footer-links-cell {
    flex: 0 0 auto
}

.footer-links-label {
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff6;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 16px
}

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

.footer-link-list a {
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
    color: #ffffffa6;
    text-decoration: none;
    letter-spacing: .03em;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    padding: 4px 0
}

.footer-link-list a:hover {
    color: #18DAFF
}

.footer-link-list a:focus {
    outline: 2px solid #18DAFF;
    outline-offset: 2px
}

.footer-contact-cell {
    flex: 0 0 auto
}

.footer-contact-label {
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff6;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 16px
}

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

.footer-contact-list li {
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    color: #fff9
}

.footer-contact-list a {
    color: #fff9;
    text-decoration: none;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.footer-contact-list a:hover {
    color: #18DAFF
}

.footer-contact-list a:focus {
    outline: 2px solid #18DAFF;
    outline-offset: 2px
}

.footer-rule {
    border: none;
    border-top: 1px solid #ffffff1a;
    margin: 0 0 24px
}

.footer-logo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 24px
}

.footer-logo-shield {
    background: #fff;
    border-radius: 8px;
    padding: 6px;
    box-shadow: -1px 2px 5px 1px #18daff0f -1px 7px 28px 1px #18daff14;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0
}

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

.footer-copy {
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff61;
    letter-spacing: .03em
}

.footer-bottom-rule {
    border: none;
    border-top: 1px solid #ffffff0f;
    margin: 0
}

.footer-base {
    padding: 16px 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center
}

.footer-address {
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff4d;
    letter-spacing: .04em;
    text-align: center
}

.consent-tray {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 2000;
    background: #fff;
    border-radius: 8px;
    box-shadow: -1px 7px 28px 1px #1e1d1d14 -1px 12px 48px 1px #1e1d1d1a;
    max-width: 360px;
    width: calc(100vw - 48px);
    padding: 24px;
    display: none
}

.consent-headline {
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    color: #1E1D1D;
    letter-spacing: .04em;
    margin-bottom: 8px
}

.consent-body {
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    color: #3a3939;
    margin-bottom: 8px
}

.consent-uses {
    list-style: none;
    padding: 0;
    margin: 0 0 16px
}

.consent-uses li {
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    color: #3a3939;
    padding-left: 16px;
    position: relative
}

.consent-uses li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #18DAFF
}

.consent-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.consent-accept {
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    color: #1E1D1D;
    background: transparent;
    border: 2px solid #1E1D1D;
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    letter-spacing: .04em;
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), color .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 44px
}

.consent-accept:hover {
    background: #1E1D1D;
    color: #fff;
    box-shadow: inset 0 2px 4px #1e1d1d1f
}

.consent-accept:focus {
    outline: 2px solid #1E1D1D;
    outline-offset: 3px
}

.consent-decline {
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    color: #3a3939;
    background: transparent;
    border: 2px solid #1e1d1d40;
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    letter-spacing: .04em;
    transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), color .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 44px
}

.consent-decline:hover {
    border-color: #1E1D1D;
    color: #1E1D1D;
    box-shadow: inset 0 2px 4px #1e1d1d12
}

.consent-decline:focus {
    outline: 2px solid #1E1D1D;
    outline-offset: 3px
}

@media (max-width: 768px) {
    .brand-strip {
        padding: 16px
    }

    .brand-strip-pod {
        flex-wrap: wrap;
        gap: 16px
    }

    .trust-badge {
        flex-wrap: wrap;
        gap: 8px
    }

    .nav-strip {
        padding: 0 16px
    }

    .nav-pod {
        justify-content: flex-start
    }

    .nav-item {
        padding: 16px;
        font-size: 13px
    }

    .footer-body {
        padding: 40px 16px 16px
    }

    .footer-base {
        padding: 16px
    }

    .footer-deck {
        gap: 24px
    }
}

.policy-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 72px 40px
}

.policy-area p {
    font-size: 13px;
    line-height: 2;
    color: #1E1D1D;
    margin-bottom: 16px
}

.policy-area ul,
.policy-area ol {
    font-size: 13px;
    line-height: 2;
    color: #1E1D1D;
    padding-left: 24px;
    margin-bottom: 24px
}

.policy-area li {
    margin-bottom: 8px
}

.policy-area strong,
.policy-area b {
    font-weight: 700;
    color: #1E1D1D
}

.policy-area em,
.policy-area i {
    font-style: italic;
    color: #1E1D1D
}

.policy-area a {
    color: #1E1D1D;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: #18DAFF;
    text-decoration-thickness: 2px;
    transition: color .22s cubic-bezier(0.4, 0, 0.2, 1), text-decoration-color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.policy-area a:hover {
    color: #18DAFF;
    text-decoration-color: #18DAFF
}

.policy-area table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    font-size: 13px;
    line-height: 1.6;
    box-shadow: -1px 7px 28px 1px #1e1d1d14;
    border-radius: 8px;
    overflow: hidden
}

.policy-area thead {
    background-color: #1E1D1D
}

.policy-area thead th {
    color: #FFF;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 16px 24px;
    text-align: left
}

.policy-area tbody tr {
    border-bottom: 1px solid #1e1d1d14;
    transition: background-color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.policy-area tbody tr:last-child {
    border-bottom: none
}

.policy-area tbody tr:hover {
    background-color: #18daff0f
}

.policy-area td {
    color: #1E1D1D;
    padding: 16px 24px;
    vertical-align: top
}

.policy-area hr {
    border: none;
    border-top: 2px solid #18daff66;
    margin: 40px 0;
    border-radius: 8px
}

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

    .policy-area table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .policy-area thead th,
    .policy-area td {
        padding: 16px
    }
}

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

.prm * {
    box-sizing: border-box
}

.prm .pw {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px
}

.prm .tb {
    padding-top: 40px;
    padding-bottom: 72px;
    position: relative
}

.prm .tb-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    align-items: end
}

.prm .tb-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 16px
}

.prm .tb-label {
    font-size: 13px;
    letter-spacing: .12em;
    color: #1E1D1D;
    opacity: .55;
    text-transform: uppercase
}

.prm .tb-h1 {
    font-size: 62px;
    line-height: 1.2;
    font-weight: 800;
    color: #1E1D1D;
    margin: 0
}

.prm .tb-h1 .acc {
    color: #18DAFF
}

.prm .tb-sub {
    font-size: 25px;
    line-height: 1.6;
    color: #1E1D1D;
    font-weight: 300;
    margin: 0;
    max-width: 420px
}

.prm .tb-stripe {
    width: 48px;
    height: 4px;
    background: #18DAFF;
    border-radius: 8px;
    margin-top: 8px
}

.prm .tb-right {
    position: relative
}

.prm .tb-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: -1px 12px 48px 1px #18daff1a;
    position: relative
}

.prm .tb-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: filter .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.prm .tb-img-wrap:hover img {
    filter: saturate(0)
}

.prm .tb-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to bottom, #1e1d1d61 0%, #1e1d1d00 100%);
    pointer-events: none
}

.prm .tb-deco-band {
    position: absolute;
    top: 0;
    right: -8px;
    width: 6px;
    height: 100%;
    background: conic-gradient(from 90deg at 50% 50%, #18daff2e, #1e1d1d0f, #18daff1f, #ffffff14, #18daff2e);
    border-radius: 8px;
    pointer-events: none
}

@keyframes wrd-in {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

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

.prm .tb-h1 .w1 {
    animation: wrd-in .22s cubic-bezier(0.0, 0, 0.2, 1) .05s both
}

.prm .tb-h1 .w2 {
    animation: wrd-in .22s cubic-bezier(0.0, 0, 0.2, 1) .12s both
}

.prm .tb-h1 .w3 {
    animation: wrd-in .22s cubic-bezier(0.0, 0, 0.2, 1) .19s both
}

.prm .tb-h1 .w4 {
    animation: wrd-in .22s cubic-bezier(0.0, 0, 0.2, 1) .26s both
}

.prm .dvd {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px 0
}

.prm .dvd-line {
    height: 1px;
    flex: 1;
    background: #1e1d1d1a
}

.prm .dvd-shape {
    width: 10px;
    height: 10px;
    background: #18DAFF;
    border-radius: 8px;
    transform: rotate(45deg)
}

.prm .prereq {
    padding-top: 72px;
    padding-bottom: 72px;
    background: #18daff0a
}

.prm .prereq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 72px;
    align-items: start
}

.prm .prereq-label-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 8px
}

.prm .side-tag {
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #18DAFF;
    font-weight: 700
}

.prm .prereq-label-col h2 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: #1E1D1D;
    margin: 0
}

.prm .prereq-label-col h2 .acc {
    color: #18DAFF
}

.prm .prereq-body {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.prm .prereq-body p {
    font-size: 25px;
    line-height: 1.6;
    color: #1E1D1D;
    margin: 0;
    font-weight: 300
}

.prm .prereq-body p strong {
    font-weight: 700
}

.prm .prereq-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: -1px 7px 28px 1px #1e1d1d14;
    margin-top: 24px
}

.prm .prereq-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: filter .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.prm .prereq-img:hover img {
    filter: saturate(0)
}

.prm .outcomes {
    padding-top: 72px;
    padding-bottom: 72px
}

.prm .outcomes-head {
    margin-bottom: 40px
}

.prm .outcomes-head h2 {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 800;
    color: #1E1D1D;
    margin: 0 0 16px
}

.prm .outcomes-head h2 .acc {
    color: #18DAFF
}

.prm .outcomes-head p {
    font-size: 25px;
    line-height: 1.6;
    color: #1E1D1D;
    font-weight: 300;
    margin: 0;
    max-width: 640px
}

.prm .outcomes-cols {
    display: grid;
    grid-template-columns: 60px 1fr 60px 1fr;
    gap: 16px 24px;
    align-items: start
}

.prm .oc-num {
    font-size: 34px;
    font-weight: 800;
    color: #18DAFF;
    line-height: 1.2;
    padding-top: 4px
}

.prm .oc-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 24px;
    border-bottom: 1px solid #1e1d1d14
}

.prm .oc-text h4 {
    font-size: 25px;
    font-weight: 700;
    color: #1E1D1D;
    margin: 0;
    line-height: 1.2
}

.prm .oc-text p {
    font-size: 13px;
    line-height: 2;
    color: #1E1D1D;
    opacity: .7;
    margin: 0
}

.prm .commit {
    padding-top: 72px;
    padding-bottom: 72px;
    background: #18daff0a
}

.prm .commit-wrap {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 72px;
    align-items: center
}

.prm .commit-text {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.prm .commit-text h2 {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 800;
    color: #1E1D1D;
    margin: 0
}

.prm .commit-text h2 .acc {
    color: #18DAFF
}

.prm .commit-text p {
    font-size: 25px;
    line-height: 1.6;
    font-weight: 300;
    color: #1E1D1D;
    margin: 0
}

.prm .commit-text p strong {
    font-weight: 700
}

.prm .commit-note {
    font-size: 13px !important;
    line-height: 2 !important;
    opacity: .65
}

.prm .commit-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: -1px 12px 48px 1px #18daff1a
}

.prm .commit-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: filter .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.prm .commit-img:hover img {
    filter: saturate(0)
}

.prm .sits {
    padding-top: 72px;
    padding-bottom: 72px
}

.prm .sits h2 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: #1E1D1D;
    margin: 0 0 40px;
    text-align: center
}

.prm .sits h2 .acc {
    color: #18DAFF
}

.prm .sits-list {
    display: flex;
    flex-direction: column;
    gap: 0
}

.prm .sit-row {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 24px;
    align-items: start;
    padding-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #1e1d1d14;
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.prm .sit-row:hover {
    background: #18daff0d
}

.prm .sit-idx {
    font-size: 13px;
    letter-spacing: .1em;
    color: #18DAFF;
    font-weight: 700;
    text-transform: uppercase;
    padding-top: 4px
}

.prm .sit-h {
    font-size: 25px;
    font-weight: 700;
    color: #1E1D1D;
    line-height: 1.2;
    margin: 0
}

.prm .sit-p {
    font-size: 13px;
    line-height: 2;
    color: #1E1D1D;
    opacity: .7;
    margin: 0
}

.prm .pattern {
    padding-top: 72px;
    padding-bottom: 72px;
    background: #18daff0a
}

.prm .pattern-top {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 72px;
    align-items: start;
    margin-bottom: 40px
}

.prm .pattern-top h2 {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 800;
    color: #1E1D1D;
    margin: 0 0 16px
}

.prm .pattern-top h2 .acc {
    color: #18DAFF
}

.prm .pattern-top p {
    font-size: 25px;
    line-height: 1.6;
    font-weight: 300;
    color: #1E1D1D;
    margin: 0
}

.prm .pattern-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: -1px 7px 28px 1px #1e1d1d14
}

.prm .pattern-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: filter .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.prm .pattern-img:hover img {
    filter: saturate(0)
}

.prm .quotes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px
}

.prm .qcard {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: -1px 7px 28px 1px #18daff14;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.prm .qcard:hover {
    box-shadow: inset -1px 2px 5px 1px #18daff14 -1px 2px 5px 1px #18daff0f
}

.prm .qcard-text {
    font-size: 13px;
    line-height: 2;
    color: #1E1D1D;
    margin: 0;
    flex: 1
}

.prm .qcard-name {
    font-size: 13px;
    font-weight: 700;
    color: #1E1D1D;
    letter-spacing: .06em
}

.prm .qcard-role {
    font-size: 13px;
    color: #1E1D1D;
    opacity: .5;
    margin-top: 4px
}

@keyframes flkr {
    0% {
        outline-color: #18daff00
    }

    48% {
        outline-color: #18daff00
    }

    50% {
        outline-color: #18daff73
    }

    54% {
        outline-color: #18daff00
    }

    56% {
        outline-color: #18daff40
    }

    60% {
        outline-color: #18daff00
    }

    100% {
        outline-color: #18daff00
    }
}

.prm .sit-idx {
    outline: 2px solid #18daff00;
    outline-offset: 4px;
    border-radius: 8px;
    animation: flkr 5s cubic-bezier(0.4, 0, 0.2, 1) infinite
}

.prm .pill-link {
    display: inline;
    color: #1E1D1D;
    font-weight: 700;
    text-decoration: none;
    background-image: linear-gradient(to right, #18daff40 100%, #18daff40 100%);
    background-size: 0 100%;
    background-repeat: no-repeat;
    background-position: left center;
    transition: background-size .22s cubic-bezier(0.4, 0, 0.2, 1), color .22s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    padding-left: 4px;
    padding-right: 4px
}

.prm .pill-link:hover {
    background-size: 100% 100%
}

.prm .btn-prim {
    display: inline-block;
    font-size: 25px;
    font-weight: 700;
    color: #1E1D1D;
    background: #18DAFF;
    border: none;
    border-radius: 48px;
    padding: 16px 40px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: -1px 7px 28px 1px #18daff1a;
    transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1), color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.prm .btn-prim::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: #1e1d1d1f;
    transition: bottom .24s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none
}

.prm .btn-prim:hover::after {
    bottom: 0
}

.prm .btn-prim:hover {
    box-shadow: inset -1px 3px 4px 1px #1e1d1d1a -1px 2px 5px 1px #18daff0f
}

.prm .btn-prim:focus {
    outline: 3px solid #1E1D1D;
    outline-offset: 4px
}

.prm .btn-sec {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #1E1D1D;
    background: transparent;
    border: 2px solid #1e1d1d40;
    border-radius: 48px;
    padding: 8px 24px;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: .06em;
    position: relative;
    overflow: hidden;
    transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.prm .btn-sec::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: #18daff24;
    transition: bottom .22s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none
}

.prm .btn-sec:hover::after {
    bottom: 0
}

.prm .btn-sec:hover {
    border-color: #18DAFF;
    box-shadow: inset -1px 2px 4px 1px #18daff14
}

.prm .btn-sec:focus {
    outline: 3px solid #1E1D1D;
    outline-offset: 4px
}

.prm input[type="text"],
.prm input[type="email"],
.prm textarea {
    border: 1px solid #1e1d1d33 !important;
    border-radius: 8px;
    padding: 16px;
    font-size: 13px;
    color: #1E1D1D;
    background: #fff;
    width: 100%;
    box-shadow: inset -1px 2px 4px 1px #1e1d1d0a;
    transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none
}

.prm input[type="text"]:focus,
.prm input[type="email"]:focus,
.prm textarea:focus {
    border-color: #18DAFF !important;
    box-shadow: inset -1px 2px 4px 1px #18daff14
}

.prm input::placeholder,
.prm textarea::placeholder {
    font-size: 13px;
    color: #1e1d1d66
}

@media (max-width: 900px) {
    .prm .tb-grid {
        grid-template-columns: 1fr
    }

    .prm .prereq-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .prm .outcomes-cols {
        grid-template-columns: 48px 1fr
    }

    .prm .commit-wrap {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .prm .sits h2 {
        text-align: left
    }

    .prm .sit-row {
        grid-template-columns: 48px 1fr
    }

    .prm .sit-p {
        grid-column: 2
    }

    .prm .pattern-top {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .prm .quotes-grid {
        grid-template-columns: 1fr
    }

    .prm .pw {
        padding-left: 24px;
        padding-right: 24px
    }

    .prm .tb-h1 {
        font-size: 46px
    }
}

@media (max-width: 600px) {
    .prm .tb-h1 {
        font-size: 34px
    }

    .prm .outcomes-head h2 {
        font-size: 34px
    }

    .prm .commit-text h2 {
        font-size: 34px
    }

    .prm .pattern-top h2 {
        font-size: 34px
    }
}

.srvs-pg {
    background: #FFF;
    overflow-x: clip
}

.srvs-pg .diamond-sep {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #18DAFF;
    transform: rotate(45deg);
    margin: 0 8px;
    vertical-align: middle
}

.srvs-pg .grad-line {
    width: 100%;
    height: 1px;
    background: radial-gradient(ellipse at center, #18DAFF 0%, transparent 70%);
    border: none;
    margin: 0
}

.srvs-pg .title-strip {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    gap: 40px;
    position: relative
}

.srvs-pg .strip-img-col {
    width: 120px;
    flex-shrink: 0;
    position: relative;
    border-radius: 8px;
    overflow: hidden
}

.srvs-pg .strip-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.srvs-pg .strip-img-col img:hover {
    filter: saturate(0)
}

.srvs-pg .strip-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1e1d1d8c 0%, #18daff2e 100%);
    pointer-events: none
}

.srvs-pg .strip-geo {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    pointer-events: none
}

.srvs-pg .strip-geo-line {
    position: absolute;
    background: #18daff73
}

.srvs-pg .strip-geo-line.h {
    width: 32px;
    height: 1px;
    top: 0;
    right: 0
}

.srvs-pg .strip-geo-line.v {
    width: 1px;
    height: 32px;
    top: 0;
    right: 0
}

.srvs-pg .strip-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px
}

.srvs-pg .strip-label {
    font-size: 13px;
    letter-spacing: .12em;
    color: #1E1D1D;
    opacity: .55;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 0
}

.srvs-pg .strip-h1 {
    font-size: 62px;
    line-height: 1.2;
    font-weight: 800;
    color: #1E1D1D;
    margin: 0
}

.srvs-pg .strip-h1 .accent-word {
    font-weight: 800;
    color: #18DAFF;
    -webkit-background-clip: unset
}

.srvs-pg .strip-desc {
    font-size: 25px;
    font-weight: 300;
    line-height: 1.6;
    color: #1E1D1D;
    max-width: 640px;
    margin: 0
}

.srvs-pg .strip-bottom-geo {
    position: absolute;
    bottom: 16px;
    left: 24px;
    pointer-events: none
}

.srvs-pg .strip-bottom-geo svg {
    opacity: .18
}

.srvs-pg .split-section {
    background: #f5feff;
    padding: 72px 24px;
    position: relative
}

.srvs-pg .split-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 40px;
    align-items: start
}

.srvs-pg .split-left {
    position: relative;
    padding-right: 40px
}

.srvs-pg .split-accent-line {
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: conic-gradient(from 180deg at 50% 50%, #18DAFF 0deg, #FFF 180deg, #18DAFF 360deg);
    opacity: .6
}

.srvs-pg .split-left-label {
    font-size: 13px;
    letter-spacing: .1em;
    color: #1E1D1D;
    opacity: .5;
    line-height: 1.2;
    margin-bottom: 16px
}

.srvs-pg .split-h2 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    color: #1E1D1D;
    margin: 0 0 16px
}

.srvs-pg .split-h2 .aw {
    color: #18DAFF
}

.srvs-pg .split-sub {
    font-size: 13px;
    font-weight: 300;
    line-height: 2;
    color: #1E1D1D;
    opacity: .7
}

.srvs-pg .split-right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.srvs-pg .svc-item {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
    border-radius: 8px;
    background: #FFF;
    box-shadow: -1px 2px 5px 1px #1e1d1d0f;
    transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default
}

.srvs-pg .svc-item:hover {
    box-shadow: inset -1px 2px 8px 2px #18daff1a -1px 7px 28px 1px #1e1d1d14
}

.srvs-pg .svc-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #18daff1f
}

.srvs-pg .svc-text {
    flex: 1
}

.srvs-pg .svc-name {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    color: #1E1D1D;
    margin: 0 0 8px
}

.srvs-pg .svc-desc {
    font-size: 13px;
    line-height: 2;
    color: #1E1D1D;
    opacity: .75;
    margin: 0
}

.srvs-pg .concentric-deco {
    position: absolute;
    bottom: -40px;
    right: -40px;
    pointer-events: none;
    opacity: .07
}

.srvs-pg .metrics-section {
    background: #FFF;
    padding: 72px 24px;
    position: relative
}

.srvs-pg .metrics-inner {
    max-width: 1200px;
    margin: 0 auto
}

.srvs-pg .metrics-head {
    text-align: center;
    margin-bottom: 40px
}

.srvs-pg .metrics-h3 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    color: #1E1D1D;
    margin: 0 0 16px
}

.srvs-pg .metrics-h3 .aw {
    color: #18DAFF
}

.srvs-pg .metrics-intro {
    font-size: 25px;
    font-weight: 300;
    line-height: 1.6;
    color: #1E1D1D;
    max-width: 560px;
    margin: 0 auto;
    opacity: .8
}

.srvs-pg .metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px
}

.srvs-pg .metric-card {
    border-radius: 8px;
    padding: 40px 24px;
    background: #FFF;
    box-shadow: -1px 7px 28px 1px #18daff14;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: box-shadow .25s cubic-bezier(0.0, 0, 0.2, 1)
}

.srvs-pg .metric-card:active {
    box-shadow: inset -1px 3px 8px 2px #18daff26
}

.srvs-pg .metric-card:hover {
    box-shadow: -1px 12px 48px 1px #18daff1a
}

.srvs-pg .metric-bg {
    position: absolute;
    inset: 0;
    background: conic-gradient(from 90deg at 80% 20%, #18daff0f 0deg, #fff0 120deg, #18daff0a 240deg, #fff0 360deg);
    pointer-events: none;
    border-radius: 8px
}

.srvs-pg .metric-num {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.2;
    color: #18DAFF;
    display: block
}

.srvs-pg .metric-label {
    font-size: 13px;
    letter-spacing: .08em;
    line-height: 1.6;
    color: #1E1D1D;
    opacity: .65;
    margin-top: 8px;
    display: block
}

.srvs-pg .metrics-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center
}

.srvs-pg .metrics-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    position: relative
}

.srvs-pg .metrics-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: filter .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.srvs-pg .metrics-img-wrap img:hover {
    filter: saturate(0)
}

.srvs-pg .metrics-text-col {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.srvs-pg .metrics-text-col p {
    font-size: 13px;
    line-height: 2;
    color: #1E1D1D;
    opacity: .8;
    margin: 0
}

.srvs-pg .process-section {
    background: #1E1D1D;
    padding: 72px 24px;
    position: relative
}

.srvs-pg .process-inner {
    max-width: 1200px;
    margin: 0 auto
}

.srvs-pg .process-top {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px
}

.srvs-pg .process-left-label {
    font-size: 13px;
    letter-spacing: .12em;
    color: #ffffff73;
    line-height: 1.2
}

.srvs-pg .process-h4 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    color: #FFF;
    margin: 0 0 16px
}

.srvs-pg .process-h4 .aw {
    color: #18DAFF
}

.srvs-pg .process-intro {
    font-size: 13px;
    font-weight: 300;
    line-height: 2;
    color: #ffffffa6;
    margin: 0
}

.srvs-pg .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.srvs-pg .step-card {
    border-radius: 8px;
    padding: 24px;
    background: #ffffff0a;
    border: 1px solid #18daff26;
    position: relative;
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), border-color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.srvs-pg .step-card:hover {
    background: #18daff12;
    border-color: #18daff59
}

.srvs-pg .step-card:active {
    box-shadow: inset 0 2px 6px 1px #18daff1f
}

.srvs-pg .step-num {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    color: #18daff2e;
    display: block;
    margin-bottom: 8px
}

.srvs-pg .step-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    color: #FFF;
    line-height: 1.6;
    margin: 0 0 8px
}

.srvs-pg .step-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 2;
    color: #fff9;
    margin: 0
}

.srvs-pg .process-img-strip {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    position: relative
}

.srvs-pg .process-img-strip img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: filter .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.srvs-pg .process-img-strip img:hover {
    filter: saturate(0)
}

.srvs-pg .process-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1e1d1db8 0%, #18daff1f 100%);
    pointer-events: none
}

.srvs-pg .process-img-text {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px
}

.srvs-pg .process-img-text p {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.6;
    color: #FFF;
    margin: 0;
    max-width: 600px
}

.srvs-pg .process-img-text p .aw {
    color: #18DAFF
}

.srvs-pg .process-concentric {
    position: absolute;
    top: -40px;
    left: -40px;
    pointer-events: none;
    opacity: .06
}

.srvs-pg .cta-section {
    background: #FFF;
    padding: 72px 24px;
    position: relative
}

.srvs-pg .cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 30%;
    gap: 40px;
    align-items: center
}

.srvs-pg .cta-text {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.srvs-pg .cta-label {
    font-size: 13px;
    letter-spacing: .1em;
    color: #1E1D1D;
    opacity: .5;
    display: flex;
    align-items: center;
    gap: 0
}

.srvs-pg .cta-h5 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    color: #1E1D1D;
    margin: 0
}

.srvs-pg .cta-h5 .aw {
    color: #18DAFF
}

.srvs-pg .cta-body {
    font-size: 13px;
    line-height: 2;
    color: #1E1D1D;
    opacity: .75;
    max-width: 520px;
    margin: 0
}

.srvs-pg .cta-links {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px
}

.srvs-pg .btn-primary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    color: #1E1D1D;
    background: #18DAFF;
    border-radius: 48px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1), color .22s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -1px 7px 28px 1px #18daff2e
}

.srvs-pg .btn-primary::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: #1E1D1D;
    transition: bottom .25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 48px;
    z-index: 0
}

.srvs-pg .btn-primary:hover::before {
    bottom: 0
}

.srvs-pg .btn-primary:hover {
    color: #18DAFF;
    box-shadow: inset -1px 2px 4px 1px #18daff2e
}

.srvs-pg .btn-primary span {
    position: relative;
    z-index: 1
}

.srvs-pg .btn-primary:active {
    box-shadow: inset -1px 3px 8px 2px #18daff38
}

.srvs-pg .btn-secondary {
    display: inline-block;
    padding: 16px 24px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    color: #1E1D1D;
    background: transparent;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid #1e1d1d33;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: border-color .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.srvs-pg .btn-secondary::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: #18daff1a;
    transition: bottom .22s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0
}

.srvs-pg .btn-secondary:hover::before {
    bottom: 0
}

.srvs-pg .btn-secondary:hover {
    border-color: #18DAFF;
    box-shadow: inset -1px 2px 4px 1px #18daff1f
}

.srvs-pg .btn-secondary span {
    position: relative;
    z-index: 1
}

.srvs-pg .cta-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end
}

.srvs-pg .cta-stat-box {
    border-radius: 8px;
    padding: 24px;
    background: #18daff12;
    border: 1px solid #18daff33;
    width: 100%;
    box-shadow: -1px 2px 5px 1px #18daff0f
}

.srvs-pg .cta-stat-title {
    font-size: 13px;
    letter-spacing: .08em;
    color: #1E1D1D;
    opacity: .55;
    line-height: 1.2;
    margin-bottom: 8px
}

.srvs-pg .cta-stat-val {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    color: #1E1D1D
}

.srvs-pg .cta-stat-val .aw {
    color: #18DAFF
}

.srvs-pg .cta-contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%
}

.srvs-pg .cta-contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: #1E1D1D;
    text-decoration: none;
    padding: 8px;
    border-radius: 8px;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden
}

.srvs-pg .cta-contact-item::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #18daff1a;
    transition: left .22s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px
}

.srvs-pg .cta-contact-item:hover::before {
    left: 0
}

.srvs-pg .cta-contact-item span {
    position: relative;
    z-index: 1
}

.srvs-pg .contact-ico {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    position: relative;
    z-index: 1
}

@keyframes bg-shift {
    0% {
        background-position: 0 0%, 100% 100%
    }

    50% {
        background-position: 5% 5%, 95% 95%
    }

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

.srvs-pg .split-section {
    background-image: radial-gradient(circle at 5% 5%, #18daff0f 0%, transparent 40%), radial-gradient(circle at 95% 95%, #1e1d1d0a 0%, transparent 40%);
    background-size: 100% 100%, 100% 100%;
    animation: bg-shift 8s ease-in-out infinite
}

@media (max-width: 900px) {
    .srvs-pg .title-strip {
        flex-direction: column;
        gap: 16px
    }

    .srvs-pg .strip-img-col {
        width: 100%;
        height: 160px
    }

    .srvs-pg .strip-h1 {
        font-size: 46px
    }

    .srvs-pg .split-inner {
        grid-template-columns: 1fr
    }

    .srvs-pg .split-left {
        padding-right: 0
    }

    .srvs-pg .split-accent-line {
        display: none
    }

    .srvs-pg .metrics-grid {
        grid-template-columns: 1fr 1fr
    }

    .srvs-pg .metrics-img-row {
        grid-template-columns: 1fr
    }

    .srvs-pg .process-top {
        grid-template-columns: 1fr
    }

    .srvs-pg .process-steps {
        grid-template-columns: 1fr 1fr
    }

    .srvs-pg .cta-inner {
        grid-template-columns: 1fr
    }

    .srvs-pg .cta-visual {
        align-items: flex-start
    }
}

@media (max-width: 600px) {
    .srvs-pg .strip-h1 {
        font-size: 34px
    }

    .srvs-pg .split-h2 {
        font-size: 34px
    }

    .srvs-pg .metrics-h3 {
        font-size: 34px
    }

    .srvs-pg .process-h4 {
        font-size: 34px
    }

    .srvs-pg .cta-h5 {
        font-size: 34px
    }

    .srvs-pg .metrics-grid {
        grid-template-columns: 1fr
    }

    .srvs-pg .process-steps {
        grid-template-columns: 1fr
    }

    .srvs-pg .cta-links {
        flex-direction: column
    }

    .srvs-pg .btn-primary {
        font-size: 13px;
        padding: 16px 24px
    }
}

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

.prtns .frm-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.prtns .reveal {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(16px);
    animation: clarify .26s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

.prtns .reveal-1 {
    animation-delay: .08s
}

.prtns .reveal-2 {
    animation-delay: .16s
}

.prtns .reveal-3 {
    animation-delay: .24s
}

.prtns .reveal-4 {
    animation-delay: .32s
}

.prtns .reveal-5 {
    animation-delay: .4s
}

@keyframes clarify {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0)
    }
}

.prtns .pg-lead {
    padding: 72px 0 40px;
    position: relative;
    background: conic-gradient(from 210deg at 8% 18%, #e8feff 0deg, #f4f4f4 60deg, #fff 120deg, #e0feff 180deg, #f7f7f7 240deg, #fff 300deg, #e8feff 360deg)
}

.prtns .pg-lead::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    bottom: 24px;
    border-top: 1px solid #18daff47;
    border-left: 1px solid #18daff47;
    pointer-events: none
}

.prtns .pg-lead::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    bottom: 24px;
    border-bottom: 1px solid #18daff47;
    border-right: 1px solid #18daff47;
    pointer-events: none
}

.prtns .lead-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 72px
}

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

.prtns .lead-dash {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: #18DAFF;
    margin-right: 16px;
    vertical-align: middle;
    margin-bottom: 3px
}

.prtns .lead-eyebrow {
    font-size: 13px;
    letter-spacing: .12em;
    color: #18DAFF;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    flex-direction: row;
    align-items: center
}

.prtns .lead-h1 {
    font-size: 62px;
    line-height: 1.2;
    font-weight: 800;
    color: #1E1D1D;
    margin-bottom: 24px
}

.prtns .lead-h1 em {
    font-style: normal;
    color: #18DAFF
}

.prtns .lead-sub {
    font-size: 25px;
    line-height: 1.6;
    color: #1E1D1D;
    font-weight: 300;
    max-width: 520px
}

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

.prtns .lead-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: -1px 12px 48px 1px #18daff1a;
    position: relative
}

.prtns .lead-img-wrap img {
    width: 420px;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: filter .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.prtns .lead-img-wrap:hover img {
    filter: saturate(0)
}

.prtns .lead-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #ffffff1f;
    pointer-events: none
}

.prtns .glow-dot {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 48px;
    background: #18daff21;
    top: -24px;
    right: -24px;
    pointer-events: none
}

.prtns .diag-div {
    width: 100%;
    height: 2px;
    background: linear-gradient(118deg, transparent 0%, #18DAFF 40%, #1E1D1D 70%, transparent 100%);
    margin: 0
}

.prtns .plist-sec {
    padding: 72px 0;
    background: #fff
}

.prtns .plist-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 40px
}

.prtns .plist-h2 {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;
    color: #1E1D1D;
    flex: 1 1 0
}

.prtns .plist-h2 strong {
    color: #18DAFF;
    font-weight: 800
}

.prtns .plist-intro {
    flex: 0 0 380px;
    font-size: 13px;
    line-height: 1.6;
    color: #444;
    padding-bottom: 8px
}

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

.prtns .p-card {
    border-radius: 8px;
    background: #f5feff;
    padding: 40px 24px 24px;
    position: relative;
    box-shadow: -1px 2px 5px 1px #18daff0f;
    transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1), background .22s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default
}

.prtns .p-card:hover {
    background: #eafcff;
    box-shadow: -1px 7px 28px 1px #18daff14 inset 0 2px 4px #18daff1a
}

.prtns .p-card-corner {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 16px;
    height: 16px;
    border-top: 2px solid #18daff80;
    border-left: 2px solid #18daff80;
    pointer-events: none
}

.prtns .p-card-corner-br {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 16px;
    height: 16px;
    border-bottom: 2px solid #18daff80;
    border-right: 2px solid #18daff80;
    pointer-events: none
}

.prtns .p-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #18DAFF;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px
}

.prtns .p-icon svg {
    width: 20px;
    height: 20px;
    fill: #1E1D1D
}

.prtns .p-card-name {
    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
    color: #1E1D1D;
    margin-bottom: 8px
}

.prtns .p-card-role {
    font-size: 13px;
    letter-spacing: .08em;
    color: #18DAFF;
    font-weight: 600;
    margin-bottom: 16px
}

.prtns .p-card-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #1E1D1D
}

.prtns .p-card-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: #1E1D1D;
    text-decoration: none;
    padding: 4px 16px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.prtns .p-card-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #18DAFF;
    transition: height .24s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0
}

.prtns .p-card-link:hover::before {
    height: 100%
}

.prtns .p-card-link span {
    position: relative;
    z-index: 1
}

.prtns .diag-div-2 {
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, transparent 0%, #1E1D1D 35%, #18DAFF 65%, transparent 100%)
}

.prtns .cert-sec {
    padding: 72px 0;
    background: conic-gradient(from 30deg at 92% 80%, #e8feff 0deg, #f4f4f4 80deg, #fff 160deg, #e0feff 230deg, #f7f7f7 290deg, #fff 360deg);
    position: relative
}

.prtns .cert-sec-img-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.prtns .cert-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 72px
}

.prtns .cert-left {
    flex: 1 1 0;
    min-width: 0
}

.prtns .cert-label {
    font-size: 13px;
    letter-spacing: .12em;
    color: #18DAFF;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.prtns .cert-h2 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 300;
    color: #1E1D1D;
    margin-bottom: 24px
}

.prtns .cert-h2 strong {
    font-weight: 800
}

.prtns .cert-body {
    font-size: 13px;
    line-height: 1.6;
    color: #1E1D1D;
    margin-bottom: 24px;
    max-width: 480px
}

.prtns .cert-stats {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-top: 8px
}

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

.prtns .stat-num {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 800;
    color: #1E1D1D
}

.prtns .stat-num span {
    color: #18DAFF
}

.prtns .stat-lbl {
    font-size: 13px;
    line-height: 1.6;
    color: #444;
    max-width: 120px
}

.prtns .cert-right {
    flex: 0 0 440px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.prtns .cert-frame {
    border-radius: 8px;
    border: 2px solid #18daff66;
    padding: 40px 40px 32px;
    background: #fff;
    box-shadow: -1px 7px 28px 1px #18daff14;
    position: relative;
    width: 100%;
    max-width: 400px;
    text-align: center
}

.prtns .cert-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid #18daff2e;
    border-radius: 8px;
    pointer-events: none
}

.prtns .cert-frame-top {
    width: 48px;
    height: 4px;
    background: #18DAFF;
    border-radius: 8px;
    margin: 0 auto 24px
}

.prtns .cert-org {
    font-size: 13px;
    letter-spacing: .14em;
    color: #18DAFF;
    font-weight: 700;
    margin-bottom: 8px
}

.prtns .cert-title-text {
    font-size: 25px;
    line-height: 1.2;
    font-weight: 800;
    color: #1E1D1D;
    margin-bottom: 16px
}

.prtns .cert-recip {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 300;
    color: #1E1D1D;
    margin-bottom: 8px;
    font-style: italic
}

.prtns .cert-detail {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 24px
}

.prtns .cert-seal {
    width: 56px;
    height: 56px;
    border-radius: 48px;
    background: conic-gradient(from 0deg, #18DAFF 0deg, #1E1D1D 180deg, #18DAFF 360deg);
    margin: 0 auto 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

.prtns .cert-seal-inner {
    width: 40px;
    height: 40px;
    border-radius: 48px;
    background: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

.prtns .cert-seal-inner svg {
    width: 20px;
    height: 20px
}

.prtns .cert-sign {
    font-size: 13px;
    color: #888;
    letter-spacing: .06em
}

.prtns .cert-frame-bot {
    width: 48px;
    height: 4px;
    background: #1E1D1D;
    border-radius: 8px;
    margin: 16px auto 0
}

@media (max-width: 900px) {
    .prtns .lead-grid {
        flex-direction: column;
        gap: 40px
    }

    .prtns .lead-visual {
        flex: none;
        width: 100%
    }

    .prtns .lead-img-wrap img {
        width: 100%;
        height: 220px
    }

    .prtns .lead-h1 {
        font-size: 46px
    }

    .prtns .p-grid {
        grid-template-columns: 1fr 1fr
    }

    .prtns .plist-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .prtns .plist-intro {
        flex: none
    }

    .prtns .cert-layout {
        flex-direction: column;
        gap: 40px
    }

    .prtns .cert-right {
        flex: none;
        width: 100%
    }

    .prtns .cert-stats {
        gap: 24px
    }
}

@media (max-width: 600px) {
    .prtns .lead-h1 {
        font-size: 34px
    }

    .prtns .p-grid {
        grid-template-columns: 1fr
    }

    .prtns .plist-h2 {
        font-size: 34px
    }

    .prtns .cert-stats {
        flex-direction: column;
        gap: 16px
    }

    .prtns .cert-frame {
        padding: 24px 16px 16px
    }
}

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

.lp-prog .band-divider {
    display: flex;
    justify-content: center;
    padding: 8px 0
}

.lp-prog .band-divider span {
    display: block;
    width: 120px;
    height: 4px;
    background: #18DAFF;
    border-radius: 48px
}

.lp-prog .title-split {
    display: flex;
    flex-direction: row;
    min-height: 0;
    padding: 72px 0;
    max-width: 1200px;
    margin: 0 auto;
    gap: 0
}

.lp-prog .title-left {
    width: 38%;
    background: #1E1D1D;
    border-radius: 8px 0 0 8px;
    padding: 72px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative
}

.lp-prog .title-left .dot-path {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    bottom: 40px;
    right: 24px
}

.lp-prog .title-left .dot-path span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background: #18DAFF;
    opacity: .5
}

.lp-prog .title-left .dot-path span:nth-child(2) {
    opacity: .7;
    width: 12px;
    height: 12px
}

.lp-prog .title-left .dot-path span:nth-child(3) {
    opacity: 1;
    width: 16px;
    height: 16px
}

.lp-prog .title-left .dot-path span:nth-child(4) {
    opacity: .6;
    width: 10px;
    height: 10px
}

.lp-prog .title-left .dot-path span:nth-child(5) {
    opacity: .3;
    width: 6px;
    height: 6px
}

.lp-prog .left-label {
    font-size: 13px;
    letter-spacing: .18em;
    color: #18DAFF;
    line-height: 1.6;
    text-transform: uppercase;
    margin-bottom: 24px
}

.lp-prog .left-manifesto {
    font-size: 34px;
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    margin: 0 0 24px
}

.lp-prog .left-manifesto em {
    font-style: normal;
    color: #18DAFF
}

.lp-prog .left-sub {
    font-size: 13px;
    line-height: 1.6;
    color: #ffffffa6;
    margin: 0
}

.lp-prog .title-right {
    width: 62%;
    background: #f4f9fb;
    border-radius: 0 8px 8px 0;
    padding: 72px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.lp-prog .title-right .thin-lines {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.lp-prog .title-right .thin-lines span {
    display: block;
    height: 1px;
    background: #18DAFF;
    opacity: .35
}

.lp-prog .title-right .thin-lines span:nth-child(1) {
    width: 64px
}

.lp-prog .title-right .thin-lines span:nth-child(2) {
    width: 48px
}

.lp-prog .title-right .thin-lines span:nth-child(3) {
    width: 80px
}

.lp-prog .title-right .thin-lines span:nth-child(4) {
    width: 40px
}

.lp-prog .right-img-wrap {
    width: 100%;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px
}

.lp-prog .right-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.lp-prog .right-img-wrap img:hover {
    filter: saturate(0)
}

.lp-prog .right-declare {
    font-size: 25px;
    line-height: 1.2;
    color: #1E1D1D;
    font-weight: 300;
    margin: 0 0 16px
}

.lp-prog .right-declare strong {
    font-weight: 700;
    color: #1E1D1D
}

.lp-prog .right-body {
    font-size: 13px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0;
    max-width: 520px
}

.lp-prog .prog-structure {
    padding: 72px 0;
    max-width: 1200px;
    margin: 0 auto
}

.lp-prog .struct-header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px
}

.lp-prog .struct-heading-col {
    width: 30%;
    flex-shrink: 0
}

.lp-prog .struct-h2 {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;
    color: #1E1D1D;
    margin: 0 0 8px
}

.lp-prog .struct-h2 em {
    font-style: normal;
    color: #18DAFF
}

.lp-prog .struct-caption {
    display: block;
    font-size: 13px;
    letter-spacing: .14em;
    color: #888;
    border-top: 1px solid #18DAFF;
    padding-top: 8px;
    margin-top: 16px;
    text-transform: uppercase
}

.lp-prog .struct-intro-col {
    width: 70%;
    padding-top: 8px
}

.lp-prog .struct-intro {
    font-size: 25px;
    font-weight: 300;
    line-height: 1.6;
    color: #1E1D1D;
    margin: 0
}

.lp-prog .modules-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px
}

.lp-prog .mod-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: -1px 7px 28px 1px #1e1d1d14;
    transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative
}

.lp-prog .mod-card:hover {
    box-shadow: inset -1px 2px 4px 1px #18daff1f -1px 7px 28px 1px #1e1d1d14
}

.lp-prog .mod-card.featured {
    grid-row: span 2;
    background: #1E1D1D
}

.lp-prog .mod-num {
    font-size: 62px;
    line-height: 1.2;
    font-weight: 700;
    color: #18daff2e;
    display: block;
    margin-bottom: 16px
}

.lp-prog .mod-card.featured .mod-num {
    color: #18daff40
}

.lp-prog .mod-h {
    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
    color: #1E1D1D;
    margin: 0 0 16px
}

.lp-prog .mod-card.featured .mod-h {
    color: #fff
}

.lp-prog .mod-body {
    font-size: 13px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0
}

.lp-prog .mod-card.featured .mod-body {
    color: #ffffffb3
}

.lp-prog .mod-tag {
    display: inline-block;
    font-size: 13px;
    letter-spacing: .1em;
    color: #18DAFF;
    background: #18daff1a;
    border-radius: 48px;
    padding: 8px 16px;
    margin-top: 24px
}

.lp-prog .mod-small-h {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
    color: #1E1D1D;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: .1em
}

.lp-prog .mod-small-body {
    font-size: 13px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0
}

.lp-prog .atmos-wrap {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    position: relative
}

.lp-prog .atmos-bg {
    background-image: url(./promo_images/btn-modified-10.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    animation: contrast-breathe 6s ease-in-out infinite
}

@keyframes contrast-breathe {
    0% {
        filter: brightness(0.38) contrast(1.05)
    }

    50% {
        filter: brightness(0.45) contrast(1.22)
    }

    100% {
        filter: brightness(0.38) contrast(1.05)
    }
}

.lp-prog .atmos-inner {
    padding: 72px 40px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px
}

.lp-prog .atmos-left {
    width: 55%
}

.lp-prog .atmos-h {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px
}

.lp-prog .atmos-h em {
    font-style: normal;
    color: #18DAFF
}

.lp-prog .atmos-body {
    font-size: 13px;
    line-height: 1.6;
    color: #fffc;
    margin: 0 0 40px
}

.lp-prog .atmos-btn {
    display: inline-block;
    font-size: 25px;
    font-weight: 700;
    color: #1E1D1D;
    background: #18DAFF;
    border-radius: 8px;
    padding: 16px 40px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.lp-prog .atmos-btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #1E1D1D;
    transition: height .22s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: 0
}

.lp-prog .atmos-btn:hover {
    color: #18DAFF;
    box-shadow: inset 0 2px 4px 1px #18daff33
}

.lp-prog .atmos-btn:hover::after {
    height: 100%
}

.lp-prog .atmos-btn span {
    position: relative;
    z-index: 1
}

.lp-prog .atmos-right {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.lp-prog .atmos-stat {
    background: #ffffff14;
    border-radius: 8px;
    padding: 24px;
    border: 1px solid #18daff33
}

.lp-prog .stat-num {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    color: #18DAFF;
    display: block
}

.lp-prog .stat-label {
    font-size: 13px;
    line-height: 1.6;
    color: #ffffffa6
}

.lp-prog .qa-section {
    padding: 72px 0;
    max-width: 1200px;
    margin: 0 auto
}

.lp-prog .qa-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 40px
}

.lp-prog .qa-h {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    color: #1E1D1D;
    margin: 0
}

.lp-prog .qa-h em {
    font-style: normal;
    color: #18DAFF
}

.lp-prog .qa-sub {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    max-width: 400px;
    margin: 0;
    text-align: right
}

.lp-prog .qa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.lp-prog .qa-card {
    background: #f4f9fb;
    border-radius: 8px;
    padding: 40px;
    box-shadow: -1px 2px 5px 1px #1e1d1d0f;
    transition: box-shadow .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.lp-prog .qa-card:hover {
    box-shadow: inset 0 1px 4px 1px #18daff1a -1px 2px 5px 1px #1e1d1d0f
}

.lp-prog .qa-card.wide {
    grid-column: span 2;
    background: #fff;
    box-shadow: -1px 12px 48px 1px #1e1d1d1a
}

.lp-prog .qa-q {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    color: #1E1D1D;
    margin: 0 0 16px
}

.lp-prog .qa-a {
    font-size: 13px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0
}

.lp-prog .qa-a strong {
    color: #1E1D1D
}

.lp-prog .qa-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #18daff26;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0
}

.lp-prog .qa-icon svg {
    width: 16px;
    height: 16px
}

.lp-prog .qa-card.wide .qa-inner {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start
}

.lp-prog .qa-card.wide .qa-q-col {
    width: 35%;
    flex-shrink: 0
}

.lp-prog .qa-card.wide .qa-a-col {
    width: 65%
}

.lp-prog .qa-card.wide .qa-a-col .qa-a-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.lp-prog .qa-card.wide .qa-a-col .qa-a-list li {
    font-size: 13px;
    line-height: 1.6;
    color: #3a3a3a;
    padding-left: 16px;
    border-left: none;
    position: relative
}

.lp-prog .qa-card.wide .qa-a-col .qa-a-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    border-radius: 48px;
    background: #18DAFF
}

.lp-prog .qa-link {
    display: inline-block;
    font-size: 13px;
    color: #1E1D1D;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 48px;
    background: transparent;
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), padding-left .22s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 24px;
    font-weight: 700;
    letter-spacing: .06em
}

.lp-prog .qa-link:hover {
    background: #18daff26;
    padding-left: 24px
}

@media (max-width: 900px) {
    .lp-prog .title-split {
        flex-direction: column;
        padding: 40px 16px
    }

    .lp-prog .title-left,
    .lp-prog .title-right {
        width: 100%;
        border-radius: 8px
    }

    .lp-prog .prog-structure {
        padding: 40px 16px
    }

    .lp-prog .struct-header {
        flex-direction: column;
        gap: 16px
    }

    .lp-prog .struct-heading-col,
    .lp-prog .struct-intro-col {
        width: 100%
    }

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

    .lp-prog .mod-card.featured {
        grid-row: span 1
    }

    .lp-prog .atmos-inner {
        flex-direction: column;
        padding: 40px 24px
    }

    .lp-prog .atmos-left,
    .lp-prog .atmos-right {
        width: 100%
    }

    .lp-prog .atmos-wrap {
        margin: 0 16px
    }

    .lp-prog .qa-section {
        padding: 40px 16px
    }

    .lp-prog .qa-top {
        flex-direction: column;
        align-items: flex-start
    }

    .lp-prog .qa-sub {
        text-align: left
    }

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

    .lp-prog .qa-card.wide {
        grid-column: span 1
    }

    .lp-prog .qa-card.wide .qa-inner {
        flex-direction: column
    }

    .lp-prog .qa-card.wide .qa-q-col,
    .lp-prog .qa-card.wide .qa-a-col {
        width: 100%
    }
}

@media (max-width: 600px) {
    .lp-prog .title-left {
        padding: 40px 24px
    }

    .lp-prog .title-right {
        padding: 40px 24px
    }

    .lp-prog .left-manifesto {
        font-size: 25px
    }

    .lp-prog .struct-h2 {
        font-size: 34px
    }

    .lp-prog .atmos-h {
        font-size: 34px
    }

    .lp-prog .right-img-wrap {
        height: 200px
    }
}

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

.abt-us .strip-img {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden
}

.abt-us .strip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    filter: saturate(0.7) brightness(0.85);
    transition: filter .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us .strip-img:hover img {
    filter: saturate(0) brightness(0.75)
}

.abt-us .scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(180deg, transparent, transparent 3px, #1e1d1d14 3px, #1e1d1d14 4px);
    pointer-events: none;
    z-index: 1
}

.abt-us .strip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #18daff2e 0%, #1e1d1d8c 100%);
    z-index: 2;
    pointer-events: none
}

.abt-us .title-zone {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    position: relative
}

.abt-us .quote-mark {
    position: absolute;
    top: 8px;
    left: 24px;
    font-size: 160px;
    line-height: 1.2;
    color: #18daff1a;
    font-weight: 900;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    letter-spacing: -8px
}

.abt-us .title-label {
    font-size: 13px;
    letter-spacing: .18em;
    color: #18DAFF;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    z-index: 1
}

.abt-us .title-h1 {
    font-size: 62px;
    line-height: 1.2;
    color: #1E1D1D;
    font-weight: 900;
    margin: 0 0 16px;
    position: relative;
    z-index: 1;
    max-width: 700px
}

.abt-us .title-h1 .accent {
    color: #18DAFF
}

.abt-us .title-sub {
    font-size: 25px;
    line-height: 1.6;
    color: #1E1D1D;
    font-weight: 300;
    max-width: 560px;
    position: relative;
    z-index: 1;
    margin: 0
}

.abt-us .crosses-divider {
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    height: 24px;
    background: #f4f4f4
}

.abt-us .crosses-divider .cross-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: 16px;
    padding: 0 16px
}

.abt-us .cross-item {
    width: 10px;
    height: 10px;
    position: relative;
    flex-shrink: 0
}

.abt-us .cross-item::before,
.abt-us .cross-item::after {
    content: "";
    position: absolute;
    background: #1e1d1d33
}

.abt-us .cross-item::before {
    width: 2px;
    height: 10px;
    top: 0;
    left: 4px
}

.abt-us .cross-item::after {
    width: 10px;
    height: 2px;
    top: 4px;
    left: 0
}

.abt-us .identity-band {
    position: relative;
    overflow: hidden;
    background: #1E1D1D
}

.abt-us .wave-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0
}

.abt-us .wave-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: conic-gradient(from 0deg at 30% 60%, #18daff00 0deg, #18daff0f 60deg, #18daff00 120deg, #18daff0a 200deg, #18daff00 300deg, #18daff00 360deg);
    animation: colorwave 9s linear infinite
}

@keyframes colorwave {
    0% {
        opacity: .6
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: .6
    }
}

.abt-us .identity-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 72px 40px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    gap: 72px;
    align-items: flex-start
}

.abt-us .identity-left {
    flex: 1 1 0;
    min-width: 0
}

.abt-us .identity-right {
    flex: 0 0 380px;
    min-width: 0
}

.abt-us .id-eyebrow {
    font-size: 13px;
    letter-spacing: .16em;
    color: #18DAFF;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: block
}

.abt-us .id-heading {
    font-size: 46px;
    line-height: 1.2;
    color: #fff;
    font-weight: 800;
    margin: 0 0 24px
}

.abt-us .id-heading .accent {
    color: #18DAFF
}

.abt-us .id-para {
    font-size: 25px;
    line-height: 1.6;
    color: #ffffffbf;
    font-weight: 300;
    margin: 0 0 24px
}

.abt-us .id-para-sm {
    font-size: 13px;
    line-height: 2;
    color: #ffffff8c;
    margin: 0
}

.abt-us .metrics-list {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-us .metric-row {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.abt-us .metric-label {
    font-size: 13px;
    letter-spacing: .12em;
    color: #ffffff8c;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.abt-us .metric-val {
    color: #18DAFF;
    font-weight: 700;
    font-size: 13px
}

.abt-us .metric-track {
    width: 100%;
    height: 4px;
    background: #ffffff1a;
    border-radius: 8px;
    overflow: hidden
}

.abt-us .metric-fill {
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(90deg, #18DAFF 0%, #18daff80 100%);
    transition: width .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us .dots-border {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 40px;
    background: #f4f4f4;
    overflow: hidden
}

.abt-us .dot-item {
    border-radius: 48px;
    background: #1e1d1d26;
    flex-shrink: 0
}

.abt-us .dot-s {
    width: 4px;
    height: 4px
}

.abt-us .dot-m {
    width: 7px;
    height: 7px
}

.abt-us .dot-l {
    width: 10px;
    height: 10px
}

.abt-us .dot-xl {
    width: 5px;
    height: 5px
}

.abt-us .team-band {
    background: #f4f4f4;
    position: relative
}

.abt-us .team-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 72px 40px
}

.abt-us .team-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 40px
}

.abt-us .team-heading {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 800;
    color: #1E1D1D;
    margin: 0
}

.abt-us .team-heading .accent {
    color: #18DAFF
}

.abt-us .team-desc {
    font-size: 13px;
    line-height: 2;
    color: #1e1d1d99;
    max-width: 360px;
    margin: 0
}

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

.abt-us .member-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: -1px 2px 5px 1px #1e1d1d0f;
    transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative
}

.abt-us .member-card:hover {
    box-shadow: -1px 7px 28px 1px #1e1d1d14 inset 0 2px 4px 0 #1e1d1d0f
}

.abt-us .member-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative
}

.abt-us .member-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: saturate(0.85);
    transition: filter .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us .member-card:hover .member-img-wrap img {
    filter: saturate(0)
}

.abt-us .member-reveal {
    position: absolute;
    inset: 0;
    background: #18daffe0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    clip-path: circle(0% at 50% 50%);
    transition: clip-path .28s cubic-bezier(0.0, 0, 0.2, 1)
}

.abt-us .member-card:hover .member-reveal {
    clip-path: circle(75% at 50% 50%)
}

.abt-us .reveal-text {
    font-size: 13px;
    line-height: 2;
    color: #1E1D1D;
    text-align: center;
    font-weight: 500
}

.abt-us .member-info {
    padding: 16px 24px 24px
}

.abt-us .member-name {
    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
    color: #1E1D1D;
    margin: 0 0 8px
}

.abt-us .member-role {
    font-size: 13px;
    letter-spacing: .1em;
    color: #18DAFF;
    text-transform: uppercase;
    margin: 0
}

.abt-us .crosses-divider2 {
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 24px;
    background: #fff
}

.abt-us .crosses-divider2 .cross-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: 16px;
    padding: 0 16px
}

.abt-us .approach-band {
    background: #fff;
    position: relative
}

.abt-us .approach-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 72px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center
}

.abt-us .approach-img-col {
    position: relative
}

.abt-us .approach-img-frame {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: -1px 12px 48px 1px #18daff1a;
    position: relative
}

.abt-us .approach-img-frame img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    filter: saturate(0.8);
    transition: filter .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us .approach-img-frame:hover img {
    filter: saturate(0)
}

.abt-us .approach-img-frame .img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, #18daff38 0%, #1e1d1d73 100%);
    pointer-events: none;
    mix-blend-mode: multiply
}

.abt-us .dots-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    pointer-events: none;
    z-index: 0
}

.abt-us .dots-accent-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    width: 80px;
    height: 80px
}

.abt-us .dot-acc {
    border-radius: 48px;
    background: #18daff4d
}

.abt-us .dot-acc.sm {
    width: 4px;
    height: 4px
}

.abt-us .dot-acc.md {
    width: 6px;
    height: 6px
}

.abt-us .approach-text-col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-us .approach-eyebrow {
    font-size: 13px;
    letter-spacing: .16em;
    color: #18DAFF;
    text-transform: uppercase
}

.abt-us .approach-h2 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: #1E1D1D;
    margin: 0
}

.abt-us .approach-h2 .accent {
    color: #18DAFF
}

.abt-us .approach-p {
    font-size: 13px;
    line-height: 2;
    color: #1e1d1db3;
    margin: 0
}

.abt-us .pillars {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abt-us .pillar-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 8px;
    background: #f4f4f4;
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us .pillar-item:hover {
    background: #18daff14;
    box-shadow: inset 0 2px 4px 0 #18daff1a
}

.abt-us .pillar-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.abt-us .pillar-icon svg {
    width: 24px;
    height: 24px
}

.abt-us .pillar-text {
    flex: 1;
    min-width: 0
}

.abt-us .pillar-title {
    font-size: 13px;
    font-weight: 700;
    color: #1E1D1D;
    margin: 0 0 8px;
    letter-spacing: .06em;
    text-transform: uppercase
}

.abt-us .pillar-desc {
    font-size: 13px;
    line-height: 2;
    color: #1e1d1da6;
    margin: 0
}

@media (max-width: 900px) {
    .abt-us .identity-inner {
        flex-direction: column;
        gap: 40px;
        padding: 40px 24px
    }

    .abt-us .identity-right {
        flex: 0 0 auto;
        width: 100%
    }

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

    .abt-us .team-top {
        flex-direction: column;
        align-items: flex-start
    }

    .abt-us .approach-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 24px
    }

    .abt-us .title-h1 {
        font-size: 46px
    }

    .abt-us .title-zone {
        padding: 40px 24px
    }

    .abt-us .team-inner {
        padding: 40px 24px
    }
}

@media (max-width: 600px) {
    .abt-us .team-grid {
        grid-template-columns: 1fr
    }

    .abt-us .title-h1 {
        font-size: 34px
    }

    .abt-us .id-heading {
        font-size: 34px
    }

    .abt-us .team-heading {
        font-size: 34px
    }

    .abt-us .strip-img {
        height: 120px
    }
}

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

.ctus .pg-wrap {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px
}

.ctus .reach-band {
    padding-top: 72px;
    padding-bottom: 72px;
    position: relative
}

.ctus .reach-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: conic-gradient(from 200deg at 30% 60%, #f4feff 0deg, #e8fdff 40deg, #f0f8f8 90deg, #fff 180deg, #f7feff 260deg, #eafaff 320deg, #f4feff 360deg);
    z-index: 0
}

.ctus .reach-band::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 52%;
    height: 100%;
    background: linear-gradient(148deg, #18daff12 0%, transparent 70%);
    z-index: 0;
    pointer-events: none
}

.ctus .reach-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    gap: 72px;
    align-items: flex-start
}

.ctus .reach-left {
    flex: 0 0 420px;
    max-width: 420px
}

.ctus .reach-right {
    flex: 1 1 0;
    min-width: 0
}

.ctus .page-label {
    display: inline-block;
    font-size: 13px;
    letter-spacing: .12em;
    color: #1E1D1D;
    background: #18daff21;
    border-radius: 48px;
    padding: 8px 16px;
    margin-bottom: 24px;
    font-weight: 600;
    text-transform: uppercase
}

.ctus .reach-h1 {
    font-size: 62px;
    line-height: 1.2;
    font-weight: 800;
    color: #1E1D1D;
    margin: 0 0 24px
}

.ctus .reach-h1 .accent-word {
    color: #18DAFF
}

.ctus .reach-desc {
    font-size: 25px;
    line-height: 1.6;
    color: #1E1D1D;
    margin: 0 0 40px;
    font-weight: 300
}

.ctus .curved-connector {
    display: block;
    margin-bottom: 40px
}

.ctus .contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ctus .ccard {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: -1px 7px 28px 1px #1e1d1d14;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .ccard:hover {
    box-shadow: inset -1px 2px 4px 1px #18daff1f -1px 7px 28px 1px #1e1d1d0f
}

.ctus .ccard-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #18daff26;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

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

.ctus .ccard-label {
    font-size: 13px;
    letter-spacing: .08em;
    color: #1E1D1D;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px
}

.ctus .ccard-val {
    font-size: 25px;
    line-height: 1.2;
    color: #1E1D1D;
    font-weight: 400
}

.ctus .ccard-val a {
    color: #1E1D1D;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .ccard-val a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: #18daff2e;
    border-radius: 48px;
    transition: width .25s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: -1
}

.ctus .ccard-val a:hover::before {
    width: 100%
}

.ctus .ccard-sub {
    font-size: 13px;
    color: #555;
    margin-top: 8px;
    line-height: 1.6
}

.ctus .form-shell {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: -1px 12px 48px 1px #18daff1a
}

.ctus .form-title {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    color: #1E1D1D;
    margin: 0 0 8px
}

.ctus .form-sub {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 40px
}

.ctus .field-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 16px
}

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

.ctus .field-group.full {
    flex: 1 1 100%
}

.ctus .field-label {
    font-size: 13px;
    font-weight: 600;
    color: #1E1D1D;
    letter-spacing: .06em
}

.ctus .field-req {
    color: #18DAFF;
    font-weight: 800
}

.ctus .finput {
    width: 100%;
    border: 1.5px solid #1e1d1d26;
    border-radius: 8px;
    padding: 16px;
    font-size: 13px;
    color: #1E1D1D;
    background: #f9feff;
    box-shadow: inset -1px 2px 4px 1px #18daff0d;
    transition: border-color .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-sizing: border-box
}

.ctus .finput::placeholder {
    font-size: 13px;
    color: #999
}

.ctus .finput:focus {
    border-color: #18DAFF;
    box-shadow: inset -1px 2px 4px 1px #18daff1a -1px 2px 5px 1px #18daff0f
}

.ctus .fselect {
    width: 100%;
    border: 1.5px solid #1e1d1d26;
    border-radius: 8px;
    padding: 16px;
    font-size: 13px;
    color: #1E1D1D;
    background: #f9feff;
    box-shadow: inset -1px 2px 4px 1px #18daff0d;
    transition: border-color .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-sizing: border-box;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231E1D1D' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px
}

.ctus .fselect:focus {
    border-color: #18DAFF;
    box-shadow: inset -1px 2px 4px 1px #18daff1a
}

.ctus .ftextarea {
    width: 100%;
    border: 1.5px solid #1e1d1d26;
    border-radius: 8px;
    padding: 16px;
    font-size: 13px;
    color: #1E1D1D;
    background: #f9feff;
    box-shadow: inset -1px 2px 4px 1px #18daff0d;
    transition: border-color .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-sizing: border-box;
    resize: vertical;
    min-height: 120px;
    line-height: 1.6
}

.ctus .ftextarea::placeholder {
    font-size: 13px;
    color: #999
}

.ctus .ftextarea:focus {
    border-color: #18DAFF;
    box-shadow: inset -1px 2px 4px 1px #18daff1a
}

.ctus .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    margin-top: 8px
}

.ctus .privacy-check {
    width: 18px;
    height: 18px;
    border-radius: 8px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #18DAFF;
    cursor: pointer
}

.ctus .privacy-text {
    font-size: 13px;
    color: #555;
    line-height: 1.6
}

.ctus .privacy-text a {
    color: #1E1D1D;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .privacy-text a:hover {
    color: #18DAFF
}

.ctus .submit-btn {
    position: relative;
    font-size: 25px;
    font-weight: 700;
    color: #1E1D1D;
    background: #18DAFF;
    border: none;
    border-radius: 8px;
    padding: 16px 40px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: -1px 7px 28px 1px #18daff2e;
    transition: box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1), color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .submit-btn::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: #1E1D1D;
    transition: bottom .25s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: 0
}

.ctus .submit-btn:hover::before {
    bottom: 0
}

.ctus .submit-btn:hover {
    color: #18DAFF !important;
    box-shadow: inset -1px 2px 4px 1px #18daff14 -1px 7px 28px 1px #18daff1a
}

.ctus .submit-btn span {
    position: relative;
    z-index: 1
}

.ctus .submit-btn:focus-visible {
    outline: 2px solid #18DAFF;
    outline-offset: 3px
}

.ctus .divider-dbl {
    border: none;
    border-top: 1.5px solid #1e1d1d1a;
    margin: 0;
    position: relative
}

.ctus .divider-dbl::after {
    content: '';
    display: block;
    border-top: 1.5px solid #18daff2e;
    margin-top: 4px
}

.ctus .info-band {
    padding-top: 72px;
    padding-bottom: 72px;
    background: #1E1D1D;
    position: relative;
    overflow: hidden
}

.ctus .info-band::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 480px;
    height: 480px;
    border-radius: 48px;
    background: conic-gradient(from 90deg at 50% 50%, #18daff0a 0deg, #18daff1a 90deg, #18daff05 200deg, #18daff12 360deg);
    pointer-events: none
}

.ctus .info-band::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 5%;
    width: 320px;
    height: 320px;
    border-radius: 48px;
    background: conic-gradient(from 270deg at 50% 50%, #18daff08 0deg, #18daff14 120deg, #18daff05 360deg);
    pointer-events: none
}

.ctus .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1
}

.ctus .info-col {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ctus .info-col-label {
    font-size: 13px;
    letter-spacing: .12em;
    color: #18daffb3;
    font-weight: 700;
    text-transform: uppercase
}

.ctus .info-col-val {
    font-size: 25px;
    line-height: 1.6;
    color: #fff;
    font-weight: 300
}

.ctus .info-col-val a {
    color: #18DAFF;
    text-decoration: none;
    transition: opacity .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .info-col-val a:hover {
    opacity: .75
}

.ctus .info-col-note {
    font-size: 13px;
    color: #ffffff73;
    line-height: 1.6
}

.ctus .info-col-center {
    border-left: none;
    padding-left: 0
}

.ctus .info-sep {
    width: 1px;
    background: #ffffff14;
    align-self: stretch
}

.ctus .info-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    height: 220px;
    margin-bottom: 16px
}

.ctus .info-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.6) blur(1px);
    transition: filter .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .info-img-wrap:hover img {
    filter: saturate(1) blur(0px)
}

.ctus .info-col-mid {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ctus .contrast-anim {
    animation: contrast-breath 4s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate
}

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

    100% {
        filter: contrast(1.18)
    }
}

.ctus .field-mb {
    margin-bottom: 16px
}

@media (max-width: 900px) {
    .ctus .reach-inner {
        flex-direction: column;
        gap: 40px
    }

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

    .ctus .reach-h1 {
        font-size: 46px
    }

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

    .ctus .info-sep {
        display: none
    }

    .ctus .field-row {
        flex-direction: column
    }
}

@media (max-width: 600px) {
    .ctus .pg-wrap {
        padding-left: 16px;
        padding-right: 16px
    }

    .ctus .reach-h1 {
        font-size: 34px
    }

    .ctus .form-shell {
        padding: 24px 16px
    }

    .ctus .reach-band {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .ctus .info-band {
        padding-top: 40px;
        padding-bottom: 40px
    }
}

.success-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 72px 24px;
    background: linear-gradient(conic-gradient(from 180deg at 60% 40%, #f0feff 0deg, #fff 120deg, #e8f9fc 240deg, #f0feff 360deg))
}

.success-page .confirm-wrap {
    max-width: 600px;
    width: 100%;
    text-align: center
}

.success-page .icon-mark {
    width: 64px;
    height: 64px;
    margin: 0 auto 40px;
    border-radius: 48px;
    background: #18DAFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -1px 7px 28px 1px #18daff14
}

.success-page .icon-mark svg {
    display: block
}

.success-page .confirm-heading {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;
    color: #1E1D1D;
    margin: 0 0 24px;
    letter-spacing: -.5px
}

.success-page .confirm-heading span {
    color: #18DAFF
}

.success-page .confirm-text {
    font-size: 25px;
    line-height: 1.6;
    color: #1E1D1D;
    margin: 0 0 40px;
    font-weight: 300
}

.success-page .confirm-note {
    font-size: 13px;
    line-height: 2;
    color: #555;
    letter-spacing: .04em;
    margin: 0 0 40px
}

.success-page .divider-line {
    width: 48px;
    height: 2px;
    background: #18DAFF;
    margin: 0 auto 40px;
    border-radius: 8px
}

.success-page .back-link {
    display: inline-block;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 600;
    color: #1E1D1D;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 8px;
    border: 2px solid #1E1D1D;
    position: relative;
    overflow: hidden;
    transition: color .22s cubic-bezier(0.4, 0, 0.2, 1), border-color .22s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: .06em
}

.success-page .back-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #18DAFF;
    transition: height .26s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: 0
}

.success-page .back-link:hover::before {
    height: 100%
}

.success-page .back-link:hover {
    border-color: #18DAFF;
    box-shadow: inset 0 2px 4px #18daff2e
}

.success-page .back-link-text {
    position: relative;
    z-index: 1
}

.success-page .back-link:focus-visible {
    outline: 2px solid #18DAFF;
    outline-offset: 4px
}