@import "https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&display=swap";
@import "https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;700&display=swap";

html {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    margin: 0;
    background-color: #0e1410;
    color: #FFF;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6
}

body:focus-visible {
    outline: 2px solid #1DB759
}

:focus-visible {
    outline: 2px solid #1DB759;
    outline-offset: 2px
}

:focus:not(:focus-visible) {
    outline: none
}

::selection {
    background-color: #1DB759;
    color: #0e1410
}

.site-header {
    background: linear-gradient(135deg, #0b1209 0%, #152010 55%, #1a2b14 100%);
    border-bottom: 1px solid #1db7592e;
    box-shadow: 0 6px 25px 0 #1db75917;
    padding: 24px 48px;
    position: relative
}

.site-header__top {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #1db7591a
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0
}

.brand-mark__img-wrap {
    width: 56px;
    height: 56px;
    border-radius: 13px 4px 13px 4px;
    background-color: #ffffff12;
    border: 1px solid #1db7594d;
    box-shadow: inset 0 3px 5px 0 #1db7590f 0 3px 5px 0 #1db7590f;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4px
}

.brand-mark__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    max-width: 100%
}

.brand-mark__name {
    font-family: 'Roboto Slab', serif;
    font-size: 23px;
    font-weight: 700;
    color: #FFF;
    letter-spacing: -.03em;
    line-height: 1.2
}

.brand-mark__name span {
    color: #1DB759
}

.header-tagline {
    font-size: 15px;
    color: #ffffff8c;
    line-height: 1.4;
    font-family: 'IBM Plex Sans', sans-serif;
    margin-left: auto;
    text-align: right;
    font-weight: 400
}

.site-header__nav-row {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 24px
}

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

.primary-nav__item {
    display: flex
}

.primary-nav__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 22px;
    text-decoration: none;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #fffc;
    background-color: transparent;
    border: 1px solid transparent;
    transition: color .18s ease-out, background-color .18s ease-out, border-color .18s ease-out;
    position: relative;
    overflow: hidden;
    min-height: 44px
}

.primary-nav__link::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: #1db7591f;
    transition: width .15s cubic-bezier(0.4, 0, 0.6, 1);
    z-index: 0
}

.primary-nav__link:hover::after {
    width: 100%;
    left: 0;
    right: auto
}

.primary-nav__link:hover {
    color: #1DB759;
    border-color: #1db75940
}

.primary-nav__link i {
    font-size: 15px;
    color: #1DB759;
    position: relative;
    z-index: 1;
    flex-shrink: 0
}

.primary-nav__link-text {
    position: relative;
    z-index: 1
}

.primary-nav__link--contact {
    background-color: #1db7591a;
    border-color: #1db7594d;
    color: #1DB759
}

.primary-nav__link--contact:hover {
    background-color: #1db75933;
    border-color: #1db75980
}

.site-footer {
    background: linear-gradient(180deg, #0e1410 0%, #080d08 60%, #040704 100%);
    border-top: 1px solid #1db7591f;
    padding: 48px 48px 24px
}

.footer-upper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #ffffff12
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1 1 220px
}

.footer-logo-wrap {
    width: 50px;
    height: 50px;
    border-radius: 4px 13px 4px 13px;
    background-color: #ffffff0f;
    border: 1px solid #1db75938;
    box-shadow: inset 0 3px 5px 0 #1db7590f;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    overflow: hidden
}

.footer-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    max-width: 100%
}

.footer-brand__name {
    font-family: 'Roboto Slab', serif;
    font-size: 23px;
    font-weight: 700;
    color: #FFF;
    letter-spacing: -.03em;
    line-height: 1.2
}

.footer-brand__desc {
    font-size: 15px;
    color: #ffffff80;
    line-height: 1.6;
    max-width: 280px
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #1DB759;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color .14s ease-out;
    margin-top: 4px
}

.footer-contact-link:hover {
    color: #FFF
}

.footer-contact-link i {
    font-size: 15px;
    flex-shrink: 0
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 0 1 auto
}

.footer-links-group__label {
    font-family: 'Roboto Slab', serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff6;
    letter-spacing: .06em;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 4px
}

.footer-links-group__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.footer-links-group__item a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffffa6;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.6;
    padding: 4px 0;
    transition: color .16s ease-out;
    min-height: 44px
}

.footer-links-group__item a:hover {
    color: #1DB759
}

.footer-links-group__item a i {
    font-size: 15px;
    color: #1db75999;
    flex-shrink: 0;
    transition: color .16s ease-out
}

.footer-links-group__item a:hover i {
    color: #1DB759
}

.footer-lower {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.footer-copy {
    font-size: 15px;
    color: #ffffff4d;
    line-height: 1.4
}

.footer-addr {
    font-size: 15px;
    color: #ffffff40;
    line-height: 1.4;
    text-align: right
}

.consent-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    display: none;
    transform: translateX(100%);
    transition: transform .18s ease-out
}

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

.consent-bar__card {
    background: linear-gradient(135deg, #152010 0%, #0e1410 100%);
    border-bottom: 1px solid #1db75938;
    box-shadow: 0 12px 60px 0 #1db7591c;
    padding: 24px 48px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 24px;
    max-width: 100%
}

.consent-bar__body {
    flex: 1 1 320px
}

.consent-bar__icon {
    width: 36px;
    height: 36px;
    border-radius: 13px;
    background-color: #1db7591f;
    border: 1px solid #1db75940;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px
}

.consent-bar__icon i {
    font-size: 15px;
    color: #1DB759
}

.consent-bar__intro {
    font-size: 15px;
    color: #fffc;
    line-height: 1.6;
    margin: 0 0 12px
}

.consent-bar__uses {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.consent-bar__uses li {
    font-size: 15px;
    color: #ffffff80;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 12px
}

.consent-bar__uses li i {
    font-size: 15px;
    color: #1db7598c;
    flex-shrink: 0
}

.consent-bar__settings {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #ffffff14
}

.consent-bar__settings.pref-open {
    display: flex
}

.consent-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.consent-toggle__label {
    font-size: 15px;
    color: #ffffffb3;
    line-height: 1.4
}

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0
}

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

.toggle-track {
    position: absolute;
    inset: 0;
    background-color: #ffffff1f;
    border-radius: 22px;
    border: 1px solid #ffffff2e;
    cursor: pointer;
    transition: background-color .15s ease-out, border-color .15s ease-out
}

.toggle-track::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #ffffff80;
    transition: transform .15s ease-out, background-color .15s ease-out
}

.toggle-switch input:checked+.toggle-track {
    background-color: #1db7594d;
    border-color: #1db75980
}

.toggle-switch input:checked+.toggle-track::after {
    transform: translateX(20px);
    background-color: #1DB759
}

.toggle-switch input:focus-visible+.toggle-track {
    outline: 2px solid #1DB759;
    outline-offset: 2px
}

.consent-bar__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    flex-shrink: 0
}

.consent-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 22px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    border: 1px solid #1db75966;
    background-color: transparent;
    color: #fffc;
    min-height: 44px;
    min-width: 120px;
    position: relative;
    overflow: hidden;
    transition: color .15s ease-out, border-color .15s ease-out
}

.consent-btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: #1db75926;
    transition: width .13s cubic-bezier(0.4, 0, 0.6, 1)
}

.consent-btn:hover::after {
    width: 100%;
    left: 0;
    right: auto
}

.consent-btn:hover {
    color: #1DB759;
    border-color: #1db759b3
}

.consent-btn:focus-visible {
    outline: 2px solid #1DB759;
    outline-offset: 2px
}

.consent-btn-pref {
    background: none;
    border: none;
    padding: 0;
    color: #ffffff59;
    font-size: 15px;
    font-family: 'IBM Plex Sans', sans-serif;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    min-height: 44px;
    transition: color .14s ease-out
}

.consent-btn-pref:hover {
    color: #ffffffb3
}

.consent-btn-pref:focus-visible {
    outline: 2px solid #1DB759;
    outline-offset: 2px
}

@media (max-width: 960px) {
    .site-header {
        padding: 24px
    }

    .site-header__top {
        flex-wrap: wrap;
        gap: 12px
    }

    .header-tagline {
        margin-left: 0;
        text-align: left;
        width: 100%
    }

    .primary-nav__link {
        padding: 12px
    }

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

    .consent-bar__card {
        padding: 24px
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 12px
    }

    .brand-mark__name {
        font-size: 23px
    }

    .primary-nav {
        gap: 4px
    }

    .primary-nav__link {
        padding: 12px;
        font-size: 15px
    }

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

    .footer-addr {
        text-align: left
    }

    .consent-bar__card {
        padding: 12px;
        flex-direction: column
    }

    .consent-bar__actions {
        width: 100%
    }

    .consent-btn {
        width: 100%
    }
}

.terms-sjc-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 96px 48px;
    color: #d4cfc8;
    background: #111009
}

.terms-sjc-content p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 24px;
    color: #d4cfc8
}

.terms-sjc-content strong,
.terms-sjc-content b {
    font-weight: 700;
    color: #fff
}

.terms-sjc-content em,
.terms-sjc-content i {
    font-style: italic;
    color: #c8c2ba
}

.terms-sjc-content a {
    color: #1DB759;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color .18s ease-out, text-decoration-color .14s cubic-bezier(0.4, 0, 0.6, 1)
}

.terms-sjc-content a:hover {
    color: #fff;
    text-decoration-color: #1DB759
}

.terms-sjc-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 48px;
    font-size: 15px;
    line-height: 1.6;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 6px 25px 0 #1db75917
}

.terms-sjc-content thead {
    background: #1a1408
}

.terms-sjc-content thead tr {
    border-bottom: 2px solid #67440E
}

.terms-sjc-content tbody tr {
    border-bottom: 1px solid #2a2318;
    transition: background .16s ease-out
}

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

.terms-sjc-content tbody tr:hover {
    background: #1a1408
}

.terms-sjc-content th {
    padding: 12px 24px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.01em;
    line-height: 1.4
}

.terms-sjc-content td {
    padding: 12px 24px;
    color: #d4cfc8;
    line-height: 1.6;
    vertical-align: top
}

@media (max-width: 960px) {
    .terms-sjc-content {
        padding: 48px 24px
    }

    .terms-sjc-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
}

@media (max-width: 480px) {
    .terms-sjc-content {
        padding: 48px 12px
    }

    .terms-sjc-content th,
    .terms-sjc-content td {
        padding: 12px
    }
}

.tm-pg {
    background: #111;
    color: #fff;
    overflow-x: clip
}

.tm-pg script {
    display: none
}

.tm-pg .pg-cap {
    padding: 96px 24px;
    max-width: 1400px;
    margin: 0 auto
}

.tm-pg .cap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.tm-pg .cap-txt {
    padding: 48px 0
}

.tm-pg .cap-overline {
    display: block;
    font-size: 15px;
    letter-spacing: .12em;
    color: #1DB759;
    margin-bottom: 24px;
    text-transform: uppercase;
    line-height: 1.4
}

.tm-pg .cap-overline::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background: #1DB759;
    vertical-align: middle;
    margin-right: 12px
}

.tm-pg .cap-h1 {
    font-size: 72px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #fff;
    margin: 0 0 24px
}

.tm-pg .cap-h1 em {
    font-style: normal;
    color: #1DB759
}

.tm-pg .cap-desc {
    font-size: 15px;
    line-height: 1.9;
    color: #b0b0b0;
    margin: 0;
    text-indent: 1.5em
}

.tm-pg .cap-img-wrap {
    position: relative;
    border-radius: 22px;
    overflow: hidden
}

.tm-pg .cap-img-wrap img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    filter: brightness(0.88) saturate(1.1);
    transition: filter .18s ease-out
}

.tm-pg .cap-img-wrap:hover img {
    filter: brightness(0.95) saturate(1.2)
}

.tm-pg .cap-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #1db75914 0%, transparent 60%);
    pointer-events: none;
    border-radius: 22px
}

.tm-pg .cap-dots {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: grid;
    grid-template-columns: repeat(5, 8px);
    grid-template-rows: repeat(4, 8px);
    gap: 6px;
    pointer-events: none
}

.tm-pg .cap-dot {
    width: 5px;
    height: 5px;
    border-radius: 36px;
    background: #1db75973
}

.tm-pg .cap-dot:nth-child(even) {
    background: #ffffff2e
}

.tm-pg .divider-a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto
}

.tm-pg .divider-a::before,
.tm-pg .divider-a::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to left, #1db75959, transparent)
}

.tm-pg .divider-a::before {
    background: linear-gradient(to right, #1db75959, transparent)
}

.tm-pg .div-gem {
    width: 10px;
    height: 10px;
    background: #1DB759;
    border-radius: 4px;
    transform: rotate(45deg);
    box-shadow: 0 6px 25px 0 #1db75917
}

.tm-pg .ethos-band {
    background: #161a17;
    padding: 96px 24px
}

.tm-pg .ethos-inner {
    max-width: 1400px;
    margin: 0 auto
}

.tm-pg .ethos-head {
    text-align: center;
    margin-bottom: 48px
}

.tm-pg .ethos-label {
    display: block;
    font-size: 15px;
    letter-spacing: .1em;
    color: #67440E;
    text-transform: uppercase;
    margin-bottom: 12px
}

.tm-pg .ethos-h2 {
    font-size: 43px;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -.02em;
    margin: 0
}

.tm-pg .ethos-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px
}

.tm-pg .ethos-card {
    background: #1a1f1c;
    border-radius: 13px;
    padding: 48px 24px;
    box-shadow: inset 0 3px 5px 0 #1db7590f;
    transition: box-shadow .16s ease-out
}

.tm-pg .ethos-card:hover {
    box-shadow: inset 0 3px 5px 0 #1db7590f 0 12px 60px 0 #1db7591c
}

.tm-pg .ethos-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(to left, #1DB759, #1db75966);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 6px 25px 0 #1db75917
}

.tm-pg .ethos-icon i {
    font-size: 23px;
    color: #fff
}

.tm-pg .ethos-card-h {
    font-size: 23px;
    line-height: 1.4;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -.01em
}

.tm-pg .ethos-card-p {
    font-size: 15px;
    line-height: 1.9;
    color: #9a9a9a;
    margin: 0
}

.tm-pg .roster-band {
    padding: 96px 24px;
    max-width: 1400px;
    margin: 0 auto
}

.tm-pg .roster-head {
    margin-bottom: 48px
}

.tm-pg .roster-label {
    display: block;
    font-size: 15px;
    letter-spacing: .1em;
    color: #1DB759;
    text-transform: uppercase;
    margin-bottom: 12px
}

.tm-pg .roster-h2 {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #fff;
    margin: 0 0 12px
}

.tm-pg .roster-sub {
    font-size: 15px;
    line-height: 1.6;
    color: #9a9a9a;
    margin: 0;
    max-width: 520px
}

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

.tm-pg .member-card {
    background: #151515;
    border-radius: 13px;
    padding: 48px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    box-shadow: 0 3px 5px 0 #1db7590f;
    transition: box-shadow .2s cubic-bezier(0.4, 0, 0.6, 1)
}

.tm-pg .member-card:hover {
    box-shadow: 0 12px 60px 0 #1db7591c
}

.tm-pg .member-avatar {
    width: 72px;
    height: 72px;
    border-radius: 36px;
    background: linear-gradient(to left, #1DB759, #67440e99);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.tm-pg .member-avatar i {
    font-size: 43px;
    color: #fff
}

.tm-pg .member-body {
    flex: 1
}

.tm-pg .member-name {
    font-size: 23px;
    line-height: 1.4;
    color: #fff;
    margin: 0 0 4px;
    letter-spacing: -.01em
}

.tm-pg .member-role {
    font-size: 15px;
    line-height: 1.4;
    color: #1DB759;
    margin: 0 0 12px
}

.tm-pg .member-bio {
    font-size: 15px;
    line-height: 1.9;
    color: #9a9a9a;
    margin: 0 0 12px;
    text-indent: 1.5em
}

.tm-pg .member-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px
}

.tm-pg .m-tag {
    font-size: 15px;
    line-height: 1.4;
    color: #1DB759;
    background: #1db75914;
    border-radius: 4px;
    padding: 4px 12px
}

.tm-pg .divider-b {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto
}

.tm-pg .divider-b::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to left, #67440e66, transparent)
}

.tm-pg .div-sq {
    width: 8px;
    height: 8px;
    border: 2px solid #67440E;
    border-radius: 4px;
    flex-shrink: 0
}

.tm-pg .join-band {
    background: linear-gradient(to left, #1a2e1e, #111);
    padding: 96px 24px
}

.tm-pg .join-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center
}

.tm-pg .join-txt-label {
    display: block;
    font-size: 15px;
    letter-spacing: .1em;
    color: #67440E;
    text-transform: uppercase;
    margin-bottom: 12px
}

.tm-pg .join-h2 {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #fff;
    margin: 0 0 24px
}

.tm-pg .join-p {
    font-size: 15px;
    line-height: 1.9;
    color: #b0b0b0;
    margin: 0 0 24px;
    text-indent: 1.5em
}

.tm-pg .join-p-plain {
    font-size: 15px;
    line-height: 1.9;
    color: #b0b0b0;
    margin: 0 0 48px
}

.tm-pg .join-link {
    display: inline-block;
    font-size: 15px;
    color: #fff;
    background: #1DB759;
    border-radius: 4px;
    padding: 12px 48px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color .18s ease-out
}

.tm-pg .join-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #67440E;
    transform: translateX(100%);
    transition: transform .16s ease-out;
    border-radius: 4px
}

.tm-pg .join-link:hover::before {
    transform: translateX(0)
}

.tm-pg .join-link span {
    position: relative;
    z-index: 1
}

.tm-pg .join-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.tm-pg .stat-box {
    background: #ffffff0a;
    border-radius: 13px;
    padding: 48px 24px;
    text-align: center;
    box-shadow: inset 0 3px 5px 0 #ffffff0f
}

.tm-pg .stat-num {
    font-size: 43px;
    line-height: 1.2;
    color: #1DB759;
    letter-spacing: -.03em;
    display: block;
    margin-bottom: 12px
}

.tm-pg .stat-lbl {
    font-size: 15px;
    line-height: 1.6;
    color: #9a9a9a
}

@media (max-width: 960px) {
    .tm-pg .cap-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .tm-pg .cap-h1 {
        font-size: 43px
    }

    .tm-pg .cap-img-wrap img {
        height: 360px
    }

    .tm-pg .ethos-cols {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .tm-pg .roster-list {
        grid-template-columns: 1fr
    }

    .tm-pg .join-inner {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .tm-pg .join-stats {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 480px) {
    .tm-pg .cap-h1 {
        font-size: 43px
    }

    .tm-pg .ethos-h2,
    .tm-pg .roster-h2,
    .tm-pg .join-h2 {
        font-size: 23px
    }

    .tm-pg .member-card {
        flex-direction: column;
        padding: 24px
    }

    .tm-pg .join-stats {
        grid-template-columns: 1fr
    }

    .tm-pg .pg-cap {
        padding: 48px 24px
    }

    .tm-pg .ethos-band {
        padding: 48px 24px
    }

    .tm-pg .roster-band {
        padding: 48px 24px
    }

    .tm-pg .join-band {
        padding: 48px 24px
    }
}

.tm-pg .cap-img-wrap {
    clip-path: inset(0 100% 0 0);
    animation: wipe-in .2s .1s cubic-bezier(0.4, 0, 0.6, 1) forwards
}

@keyframes wipe-in {
    to {
        clip-path: inset(0 0% 0 0)
    }
}

.lnch-pg {
    background: #0d1008;
    color: #FFF;
    overflow-x: hidden;
    position: relative
}

.lnch-pg .max-w {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px
}

.lnch-pg ::selection {
    background: #1DB759;
    color: #0d1008
}

.lnch-pg a {
    color: inherit;
    text-decoration: none !important
}

.lnch-pg a:hover {
    text-decoration: none !important
}

.lnch-pg .ttl-blk {
    position: relative;
    padding-top: 96px;
    padding-bottom: 96px;
    background: linear-gradient(180deg, #1a3a20 0%, #0d1008 100%);
    overflow: hidden
}

.lnch-pg .ttl-blk-bg-spot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse 60% 40% at 50% 50%, #1db75921 0%, transparent 70%);
    border-radius: 50%;
    animation: spotpulse 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0
}

@keyframes spotpulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .7
    }

    50% {
        transform: translate(-50%, -50%) scale(1.18);
        opacity: 1
    }
}

.lnch-pg .ttl-grid {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 48px;
    position: relative;
    z-index: 1
}

.lnch-pg .ttl-txt-zone {
    flex: 1 1 0;
    padding: 48px 48px 48px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.lnch-pg .ttl-img-zone {
    flex: 0 0 420px;
    padding: 24px 24px 24px 0;
    position: relative;
    display: flex;
    align-items: center
}

.lnch-pg .ttl-overline {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .12em;
    color: #1DB759;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: block
}

.lnch-pg .ttl-overline::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background: #1DB759;
    vertical-align: middle;
    margin-right: 12px
}

.lnch-pg .ttl-h1 {
    font-size: 72px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #FFF;
    margin: 0 0 24px
}

.lnch-pg .ttl-h1 .word-accent {
    position: relative;
    display: inline-block
}

.lnch-pg .ttl-h1 .word-accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1DB759, transparent);
    border-radius: 4px
}

.lnch-pg .ttl-desc {
    font-size: 23px;
    line-height: 1.6;
    color: #ffffffc7;
    margin: 0 0 48px;
    max-width: 480px
}

.lnch-pg .ttl-cta {
    display: inline-block;
    font-size: 15px;
    line-height: 1.4;
    padding: 12px 48px;
    background: #1DB759;
    color: #0d1008;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: color .18s ease-out;
    box-shadow: 0 6px 25px 0 #1db75917
}

.lnch-pg .ttl-cta::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    background: #67440E;
    transition: width .18s cubic-bezier(0.4, 0, 0.6, 1);
    z-index: 0
}

.lnch-pg .ttl-cta:hover::after {
    width: 100%
}

.lnch-pg .ttl-cta:hover {
    color: #FFF
}

.lnch-pg .ttl-cta span {
    position: relative;
    z-index: 1
}

.lnch-pg .ttl-img-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 13px;
    overflow: hidden
}

.lnch-pg .ttl-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    mix-blend-mode: luminosity;
    opacity: .85
}

.lnch-pg .ttl-img-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1db75938 0%, #67440e2e 100%);
    z-index: 1;
    border-radius: 13px
}

.lnch-pg .corner-br {
    position: absolute;
    pointer-events: none
}

.lnch-pg .corner-br-tl {
    top: 8px;
    left: 8px;
    width: 28px;
    height: 28px;
    border-top: 2px solid #1DB759;
    border-left: 2px solid #1DB759;
    border-radius: 4px 0 0 0
}

.lnch-pg .corner-br-br {
    bottom: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-bottom: 2px solid #1DB759;
    border-right: 2px solid #1DB759;
    border-radius: 0 0 4px 0
}

.lnch-pg .curved-connector {
    position: absolute;
    left: -32px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 80px;
    pointer-events: none
}

.lnch-pg .geo-div {
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
    height: 24px;
    background: #0d1008
}

.lnch-pg .geo-div-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: max-content;
    animation: geo-scroll 18s linear infinite
}

@keyframes geo-scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.lnch-pg .geo-shape {
    width: 8px;
    height: 8px;
    border: 1px solid #1db7594d;
    border-radius: 4px;
    transform: rotate(45deg);
    flex-shrink: 0
}

.lnch-pg .geo-line {
    width: 24px;
    height: 1px;
    background: #1db75926;
    flex-shrink: 0
}

.lnch-pg .inv-sig {
    padding-top: 96px;
    padding-bottom: 96px;
    background: #111508;
    position: relative
}

.lnch-pg .inv-sig::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1DB759 0%, transparent 100%)
}

.lnch-pg .inv-sig-layout {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start
}

.lnch-pg .inv-sig-left {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lnch-pg .inv-sig-center {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lnch-pg .inv-sig-right {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lnch-pg .sec-overline {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .1em;
    color: #1DB759;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px
}

.lnch-pg .sec-overline::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: #1DB759
}

.lnch-pg .inv-h2 {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #FFF;
    margin: 0
}

.lnch-pg .inv-lead {
    font-size: 15px;
    line-height: 1.9;
    color: #ffffffb8;
    margin: 0
}

.lnch-pg .inv-img-wrap {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 12px 60px 0 #1db7591c
}

.lnch-pg .inv-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.lnch-pg .inv-stat-card {
    background: #1db75912;
    border: 1px solid #1db7592e;
    border-radius: 13px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: inset 0 3px 5px 0 #1db7590f;
    transition: box-shadow .16s ease-out, border-color .16s ease-out
}

.lnch-pg .inv-stat-card:hover {
    border-color: #1db75973;
    box-shadow: inset 0 3px 5px 0 #1db7590f 0 0 0 3px #1db7591f
}

.lnch-pg .inv-stat-num {
    font-size: 43px;
    line-height: 1.2;
    color: #1DB759;
    letter-spacing: -.03em;
    font-weight: 700
}

.lnch-pg .inv-stat-lbl {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffffa6
}

.lnch-pg .inv-format-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.lnch-pg .inv-format-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #ffffffc7
}

.lnch-pg .inv-format-item i {
    color: #1DB759;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px
}

.lnch-pg .inv-price-strip {
    background: linear-gradient(90deg, #67440e38, transparent);
    border-radius: 13px;
    padding: 24px;
    border: 1px solid #67440e4d
}

.lnch-pg .inv-price-label {
    font-size: 15px;
    line-height: 1.4;
    color: #ffffff8c;
    margin-bottom: 4px
}

.lnch-pg .inv-price-val {
    font-size: 43px;
    line-height: 1.2;
    color: #FFF;
    font-weight: 700;
    letter-spacing: -.02em
}

.lnch-pg .inv-price-note {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff80;
    margin-top: 4px
}

.lnch-pg .env-blk {
    padding-top: 96px;
    padding-bottom: 96px;
    background: #0d1008;
    position: relative
}

.lnch-pg .env-blk::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, #67440E 50%, transparent 100%)
}

.lnch-pg .fib-bg {
    position: absolute;
    top: 50%;
    right: 48px;
    transform: translateY(-50%);
    width: 320px;
    height: 320px;
    opacity: .04;
    pointer-events: none
}

.lnch-pg .env-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 48px
}

.lnch-pg .env-top-txt {
    flex: 1 1 0
}

.lnch-pg .env-h2 {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #FFF;
    margin: 0 0 12px
}

.lnch-pg .env-sub {
    font-size: 15px;
    line-height: 1.9;
    color: #ffffffad;
    margin: 0;
    max-width: 520px
}

.lnch-pg .env-link {
    flex-shrink: 0;
    font-size: 15px;
    line-height: 1.4;
    color: #1DB759;
    display: flex;
    align-items: center;
    gap: 4px;
    border-bottom: 1px solid #1db75966;
    padding-bottom: 4px;
    transition: border-color .14s ease-out
}

.lnch-pg .env-link:hover {
    border-color: transparent
}

.lnch-pg .env-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    position: relative;
    z-index: 1
}

.lnch-pg .env-card {
    background: #ffffff08;
    border: 1px solid #ffffff14;
    border-radius: 22px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: inset 0 3px 5px 0 #ffffff0f;
    transition: border-color .2s ease-out, box-shadow .2s ease-out
}

.lnch-pg .env-card:hover {
    border-color: #1db7594d;
    box-shadow: inset 0 3px 5px 0 #ffffff0f 0 0 0 4px #1db75914
}

.lnch-pg .env-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: #1db7591f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.lnch-pg .env-card-icon i {
    font-size: 22px;
    color: #1DB759
}

.lnch-pg .env-card-h {
    font-size: 23px;
    line-height: 1.4;
    color: #FFF;
    margin: 0
}

.lnch-pg .env-card-p {
    font-size: 15px;
    line-height: 1.9;
    color: #ffffffa6;
    margin: 0
}

.lnch-pg .env-img-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 48px
}

.lnch-pg .env-img-a {
    flex: 0 0 260px;
    aspect-ratio: 1/1;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 6px 25px 0 #1db75917
}

.lnch-pg .env-img-a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.lnch-pg .env-quote-blk {
    flex: 1 1 0;
    background: #67440e1f;
    border-radius: 22px;
    padding: 48px;
    border: 1px solid #67440e38;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px
}

.lnch-pg .env-quote-txt {
    font-size: 23px;
    line-height: 1.6;
    color: #ffffffe0;
    margin: 0;
    font-style: italic
}

.lnch-pg .env-quote-attr {
    font-size: 15px;
    line-height: 1.4;
    color: #ffffff73
}

.lnch-pg .appr-blk {
    padding-top: 96px;
    padding-bottom: 96px;
    background: #0f1a0c;
    position: relative
}

.lnch-pg .appr-blk::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #1db75940, transparent)
}

.lnch-pg .appr-double-sidebar {
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    gap: 48px;
    align-items: start
}

.lnch-pg .appr-sidebar-l {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 48px
}

.lnch-pg .appr-sidebar-r {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 48px
}

.lnch-pg .appr-center {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lnch-pg .appr-h2 {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #FFF;
    margin: 0;
    text-align: center
}

.lnch-pg .appr-h2 .word-u {
    position: relative;
    display: inline-block
}

.lnch-pg .appr-h2 .word-u::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #1DB759, transparent);
    border-radius: 4px
}

.lnch-pg .appr-body {
    font-size: 15px;
    line-height: 1.9;
    color: #ffffffb3;
    margin: 0;
    text-indent: 1.5em
}

.lnch-pg .appr-body+.appr-body {
    margin-top: 0
}

.lnch-pg .appr-img-main {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 12px 60px 0 #1db7591c
}

.lnch-pg .appr-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.lnch-pg .appr-step {
    background: #1db7590f;
    border-radius: 13px;
    padding: 24px;
    border: 1px solid #1db7591f;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: inset 0 3px 5px 0 #1db7590f;
    transition: border-color .15s ease-out, box-shadow .15s ease-out
}

.lnch-pg .appr-step:hover {
    border-color: #1db75959;
    box-shadow: inset 0 3px 5px 0 #1db7590f 0 0 0 3px #1db7591a
}

.lnch-pg .appr-step-num {
    font-size: 43px;
    line-height: 1.2;
    color: #1db75940;
    font-weight: 700;
    letter-spacing: -.04em
}

.lnch-pg .appr-step-h {
    font-size: 15px;
    line-height: 1.4;
    color: #FFF;
    font-weight: 600;
    margin: 0
}

.lnch-pg .appr-step-p {
    font-size: 15px;
    line-height: 1.6;
    color: #fff9;
    margin: 0
}

.lnch-pg .appr-aside-card {
    background: #67440e1a;
    border-radius: 13px;
    padding: 24px;
    border: 1px solid #67440e33;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.lnch-pg .appr-aside-icon {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    background: #67440e38;
    display: flex;
    align-items: center;
    justify-content: center
}

.lnch-pg .appr-aside-icon i {
    font-size: 20px;
    color: #d4a050
}

.lnch-pg .appr-aside-h {
    font-size: 15px;
    line-height: 1.4;
    color: #FFF;
    font-weight: 600;
    margin: 0
}

.lnch-pg .appr-aside-p {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff94;
    margin: 0
}

@media (max-width: 960px) {
    .lnch-pg .ttl-grid {
        flex-direction: column
    }

    .lnch-pg .ttl-img-zone {
        flex: unset;
        width: 100%;
        max-width: 400px;
        align-self: center
    }

    .lnch-pg .ttl-txt-zone {
        padding: 24px
    }

    .lnch-pg .ttl-h1 {
        font-size: 43px
    }

    .lnch-pg .inv-sig-layout {
        flex-direction: column
    }

    .lnch-pg .inv-sig-left,
    .lnch-pg .inv-sig-right {
        flex: unset;
        width: 100%
    }

    .lnch-pg .env-cards {
        grid-template-columns: 1fr 1fr
    }

    .lnch-pg .env-img-row {
        flex-direction: column
    }

    .lnch-pg .env-img-a {
        flex: unset;
        width: 100%;
        max-width: 300px
    }

    .lnch-pg .appr-double-sidebar {
        grid-template-columns: 1fr
    }

    .lnch-pg .appr-sidebar-l,
    .lnch-pg .appr-sidebar-r {
        padding-top: 0;
        flex-direction: row;
        flex-wrap: wrap
    }

    .lnch-pg .appr-step,
    .lnch-pg .appr-aside-card {
        flex: 1 1 220px
    }

    .lnch-pg .env-top {
        flex-direction: column;
        align-items: flex-start
    }
}

@media (max-width: 480px) {
    .lnch-pg .ttl-h1 {
        font-size: 43px
    }

    .lnch-pg .env-cards {
        grid-template-columns: 1fr
    }

    .lnch-pg .inv-h2,
    .lnch-pg .env-h2,
    .lnch-pg .appr-h2 {
        font-size: 43px
    }

    .lnch-pg .ttl-blk,
    .lnch-pg .inv-sig,
    .lnch-pg .env-blk,
    .lnch-pg .appr-blk {
        padding-top: 48px;
        padding-bottom: 48px
    }

    .lnch-pg .env-quote-blk {
        padding: 24px
    }
}

.abt-pg {
    background: #0d1a12;
    color: #FFF;
    overflow-x: clip;
    position: relative
}

.abt-pg ::selection {
    background: #1DB759;
    color: #0d1a12
}

.abt-pg a {
    color: #1DB759;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: text-decoration-color .18s ease-out
}

.abt-pg a:hover {
    text-decoration-color: transparent
}

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

.abt-pg .title-blk {
    padding: 96px 24px;
    position: relative;
    background: #0d1a12;
    overflow: hidden
}

.abt-pg .title-blk::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, #1db75912 0%, transparent 70%);
    pointer-events: none;
    animation: bg-breathe 8s ease-in-out infinite
}

@keyframes bg-breathe {

    0%,
    100% {
        opacity: .6
    }

    50% {
        opacity: 1
    }
}

.abt-pg .title-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px
}

.abt-pg .title-img-col {
    flex: 0 0 220px;
    position: relative
}

.abt-pg .title-img-col img {
    width: 220px;
    height: 320px;
    object-fit: cover;
    border-radius: 13px;
    display: block
}

.abt-pg .bracket-wrap {
    position: relative;
    display: inline-block
}

.abt-pg .bracket-wrap::before,
.abt-pg .bracket-wrap::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: #1DB759;
    border-style: solid;
    pointer-events: none
}

.abt-pg .bracket-wrap::before {
    top: -8px;
    left: -8px;
    border-width: 2px 0 0 2px;
    border-radius: 4px 0 0 0
}

.abt-pg .bracket-wrap::after {
    bottom: -8px;
    right: -8px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 4px 0
}

.abt-pg .title-txt {
    flex: 1;
    text-align: center
}

.abt-pg .title-overline {
    display: block;
    font-size: 15px;
    letter-spacing: .12em;
    color: #1DB759;
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 1.4
}

.abt-pg .title-h1 {
    font-size: 72px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #FFF;
    margin: 0 0 24px
}

.abt-pg .title-desc {
    font-size: 23px;
    line-height: 1.6;
    color: #ffffffbf;
    text-align: left;
    margin: 0 0 48px
}

.abt-pg .title-actions {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center
}

.abt-pg .btn-pri {
    display: inline-block;
    padding: 12px 48px;
    background: #1DB759;
    color: #0d1a12;
    font-size: 15px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color .18s ease-out;
    box-shadow: 0 6px 25px 0 #1db75917
}

.abt-pg .btn-pri::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #67440E;
    transform: translateX(100%);
    transition: transform .18s ease-out;
    z-index: 0
}

.abt-pg .btn-pri:hover::after {
    transform: translateX(0)
}

.abt-pg .btn-pri span {
    position: relative;
    z-index: 1
}

.abt-pg .btn-sec {
    display: inline-block;
    padding: 12px 48px;
    background: transparent;
    color: #FFF;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    border: 1.5px solid #ffffff4d;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color .22s ease-out, border-color .22s ease-out
}

.abt-pg .btn-sec::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff14;
    transform: translateX(100%);
    transition: transform .22s ease-out;
    z-index: 0
}

.abt-pg .btn-sec:hover::after {
    transform: translateX(0)
}

.abt-pg .btn-sec span {
    position: relative;
    z-index: 1
}

.abt-pg .title-img-col-r {
    flex: 0 0 220px
}

.abt-pg .title-img-col-r img {
    width: 220px;
    height: 320px;
    object-fit: cover;
    border-radius: 13px;
    display: block
}

.abt-pg .div-curve {
    width: 100%;
    line-height: 0;
    overflow: hidden
}

.abt-pg .div-curve svg {
    display: block;
    width: 100%
}

.abt-pg .who-blk {
    background: #111d16;
    padding: 96px 24px;
    position: relative
}

.abt-pg .who-blk::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 50% 50%, #67440e14 0%, transparent 65%);
    pointer-events: none;
    animation: bg-breathe 8s ease-in-out infinite
}

.abt-pg .who-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 96px;
    align-items: flex-start
}

.abt-pg .who-big-txt {
    flex: 0 0 340px
}

.abt-pg .who-big-q {
    font-size: 72px;
    line-height: 1.2;
    color: #1db7591f;
    font-weight: 900;
    letter-spacing: -.04em;
    pointer-events: none;
    user-select: none;
    display: block;
    margin-bottom: 24px
}

.abt-pg .who-h2 {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #FFF;
    margin: 0 0 24px
}

.abt-pg .who-sub {
    font-size: 15px;
    line-height: 1.9;
    color: #fff9;
    text-align: left
}

.abt-pg .who-blocks {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.abt-pg .who-card {
    background: #0d1a12;
    border-radius: 13px;
    padding: 24px;
    box-shadow: inset 0 3px 5px 0 #1db7590f;
    position: relative
}

.abt-pg .who-card-shadow {
    position: relative
}

.abt-pg .who-card-shadow::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 13px;
    border: 1.5px solid #1DB759;
    transform: translate(6px, 6px);
    z-index: 0;
    pointer-events: none
}

.abt-pg .who-card-shadow .who-card {
    position: relative;
    z-index: 1
}

.abt-pg .who-card-icon {
    width: 36px;
    height: 36px;
    background: #1db7591f;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px
}

.abt-pg .who-card-icon i {
    font-size: 20px;
    color: #1DB759
}

.abt-pg .who-card-h {
    font-size: 15px;
    font-weight: 700;
    color: #FFF;
    margin: 0 0 12px;
    line-height: 1.4
}

.abt-pg .who-card-p {
    font-size: 15px;
    line-height: 1.9;
    color: #ffffffa6;
    margin: 0
}

.abt-pg .div-curve-2 {
    width: 100%;
    line-height: 0;
    overflow: hidden
}

.abt-pg .team-blk {
    background: #0d1a12;
    padding: 96px 24px;
    position: relative
}

.abt-pg .team-blk::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, #1db7590d 0%, transparent 70%);
    pointer-events: none;
    animation: bg-breathe 8s ease-in-out infinite
}

.abt-pg .team-inner {
    max-width: 1400px;
    margin: 0 auto
}

.abt-pg .team-hd {
    text-align: center;
    margin-bottom: 48px
}

.abt-pg .team-overline {
    display: block;
    font-size: 15px;
    letter-spacing: .1em;
    color: #1DB759;
    text-transform: uppercase;
    margin-bottom: 12px
}

.abt-pg .team-h2 {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #FFF;
    margin: 0
}

.abt-pg .team-grid {
    display: flex;
    flex-direction: row;
    gap: 24px
}

.abt-pg .team-person {
    flex: 1;
    background: #111d16;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 6px 25px 0 #1db75917;
    transition: box-shadow .18s ease-out
}

.abt-pg .team-person:hover {
    box-shadow: 0 12px 60px 0 #1db7591c
}

.abt-pg .team-img-wrap {
    width: 100%;
    height: 240px;
    overflow: hidden
}

.abt-pg .team-img-wrap img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform .22s ease-out
}

.abt-pg .team-person:hover .team-img-wrap img {
    transform: scale(1.04)
}

.abt-pg .team-info {
    padding: 24px
}

.abt-pg .team-name {
    font-size: 23px;
    line-height: 1.4;
    color: #FFF;
    margin: 0 0 4px
}

.abt-pg .team-role {
    font-size: 15px;
    color: #1DB759;
    margin: 0 0 12px;
    line-height: 1.4
}

.abt-pg .team-bio {
    font-size: 15px;
    line-height: 1.9;
    color: #ffffffa6;
    margin: 0
}

.abt-pg .div-line {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px
}

.abt-pg .div-line-el {
    border: none;
    border-top: 1px solid #1db75926;
    margin: 0
}

.abt-pg .form-blk {
    background: #111d16;
    padding: 96px 24px;
    position: relative
}

.abt-pg .form-blk::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, #67440e0f 0%, transparent 65%);
    pointer-events: none;
    animation: bg-breathe 8s ease-in-out infinite
}

.abt-pg .form-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 96px;
    align-items: flex-start;
    position: relative;
    z-index: 1
}

.abt-pg .form-left {
    flex: 1
}

.abt-pg .form-overline {
    display: block;
    font-size: 15px;
    letter-spacing: .1em;
    color: #1DB759;
    text-transform: uppercase;
    margin-bottom: 12px
}

.abt-pg .form-h2 {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #FFF;
    margin: 0 0 24px
}

.abt-pg .form-desc {
    font-size: 15px;
    line-height: 1.9;
    color: #ffffffa6;
    margin: 0 0 48px
}

.abt-pg .form-metrics {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-pg .form-metric {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px
}

.abt-pg .form-metric-num {
    font-size: 43px;
    line-height: 1.2;
    font-weight: 800;
    color: #1DB759;
    letter-spacing: -.02em
}

.abt-pg .form-metric-lbl {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffffa6
}

.abt-pg .form-right {
    flex: 1
}

.abt-pg .contact-form {
    background: #0d1a12;
    border-radius: 22px;
    padding: 48px;
    box-shadow: 0 12px 60px 0 #1db7591c
}

.abt-pg .cf-field {
    margin-bottom: 24px
}

.abt-pg .cf-label {
    display: block;
    font-size: 15px;
    color: #fffc;
    margin-bottom: 12px;
    line-height: 1.4
}

.abt-pg .cf-input {
    width: 100%;
    background: #111d16;
    border: 1.5px solid #1db75933;
    border-radius: 4px;
    padding: 12px;
    color: #FFF;
    font-size: 15px;
    line-height: 1.6;
    outline: none;
    transition: border-color .18s ease-out, box-shadow .18s ease-out;
    box-sizing: border-box
}

.abt-pg .cf-input::placeholder {
    color: #ffffff4d;
    font-weight: 300
}

.abt-pg .cf-input:focus {
    border-color: #1DB759;
    box-shadow: 0 3px 5px 0 #1db7590f
}

.abt-pg .cf-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.abt-pg .cf-radio-opt {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    cursor: pointer
}

.abt-pg .cf-radio-opt input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1.5px solid #1db75966;
    border-radius: 36px;
    background: #111d16;
    flex-shrink: 0;
    cursor: pointer;
    transition: border-color .18s ease-out, background .18s ease-out;
    position: relative
}

.abt-pg .cf-radio-opt input[type="radio"]:checked {
    border-color: #1DB759;
    background: #1DB759
}

.abt-pg .cf-radio-opt input[type="radio"]:focus-visible {
    outline: 2px solid #1DB759;
    outline-offset: 2px
}

.abt-pg .cf-radio-lbl {
    font-size: 15px;
    color: #ffffffbf;
    line-height: 1.4;
    cursor: pointer
}

.abt-pg .cf-privacy {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px
}

.abt-pg .cf-privacy input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1.5px solid #1db75966;
    border-radius: 4px;
    background: #111d16;
    flex-shrink: 0;
    cursor: pointer;
    margin-top: 2px;
    transition: border-color .18s ease-out, background .18s ease-out
}

.abt-pg .cf-privacy input[type="checkbox"]:checked {
    border-color: #1DB759;
    background: #1DB759
}

.abt-pg .cf-privacy input[type="checkbox"]:focus-visible {
    outline: 2px solid #1DB759;
    outline-offset: 2px
}

.abt-pg .cf-privacy-txt {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff8c
}

.abt-pg .cf-submit {
    width: 100%;
    padding: 12px 48px;
    background: #1DB759;
    color: #0d1a12;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .18s ease-out;
    box-shadow: 0 6px 25px 0 #1db75917
}

.abt-pg .cf-submit::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #67440E;
    transform: translateX(100%);
    transition: transform .18s ease-out;
    z-index: 0
}

.abt-pg .cf-submit:hover::after {
    transform: translateX(0)
}

.abt-pg .cf-submit-lbl {
    position: relative;
    z-index: 1
}

.abt-pg .cf-submit:focus-visible {
    outline: 2px solid #FFF;
    outline-offset: 2px
}

@media (max-width: 960px) {
    .abt-pg .title-inner {
        flex-direction: column;
        align-items: center;
        gap: 24px
    }

    .abt-pg .title-img-col,
    .abt-pg .title-img-col-r {
        flex: none;
        width: 100%;
        max-width: 320px
    }

    .abt-pg .title-img-col img,
    .abt-pg .title-img-col-r img {
        width: 100%;
        height: 220px
    }

    .abt-pg .title-h1 {
        font-size: 43px
    }

    .abt-pg .who-inner {
        flex-direction: column;
        gap: 48px
    }

    .abt-pg .who-big-txt {
        flex: none;
        width: 100%
    }

    .abt-pg .who-blocks {
        grid-template-columns: 1fr
    }

    .abt-pg .team-grid {
        flex-direction: column
    }

    .abt-pg .form-inner {
        flex-direction: column;
        gap: 48px
    }

    .abt-pg .contact-form {
        padding: 24px
    }
}

@media (max-width: 480px) {
    .abt-pg .title-h1 {
        font-size: 43px
    }

    .abt-pg .title-blk,
    .abt-pg .who-blk,
    .abt-pg .team-blk,
    .abt-pg .form-blk {
        padding: 48px 12px
    }

    .abt-pg .title-actions {
        flex-direction: column;
        align-items: center
    }

    .abt-pg .who-h2,
    .abt-pg .team-h2,
    .abt-pg .form-h2 {
        font-size: 23px
    }

    .abt-pg .form-metric-num {
        font-size: 23px
    }
}

.ctus-pg {
    background: #0e0e0f;
    color: #FFF;
    overflow-x: clip;
    position: relative
}

.ctus-pg .reach-band {
    background: linear-gradient(to left, #1DB759, transparent), linear-gradient(160deg, #67440E 0%, #0e0e0f 60%);
    padding: 96px 24px;
    position: relative;
    overflow: hidden
}

.ctus-pg .reach-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 18px, #ffffff06 18px, #ffffff06 19px);
    pointer-events: none
}

.ctus-pg .reach-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px
}

.ctus-pg .reach-left {
    flex: 0 0 40%
}

.ctus-pg .reach-overline {
    display: block;
    font-size: 15px;
    letter-spacing: .18em;
    color: #1DB759;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 300
}

.ctus-pg .reach-heading {
    font-size: 72px;
    line-height: 1.2;
    letter-spacing: -.03em;
    font-weight: 800;
    margin: 0 0 24px;
    color: #FFF
}

.ctus-pg .reach-sub {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffffb8;
    margin: 0
}

.ctus-pg .reach-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ctus-pg .reach-stat {
    background: #ffffff0a;
    border: 1px solid #ffffff14;
    border-radius: 13px;
    padding: 24px;
    box-shadow: 0 6px 25px 0 #1db75917;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    transition: background .18s ease-out
}

.ctus-pg .reach-stat:hover {
    background: #1db75912
}

.ctus-pg .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: linear-gradient(to left, #1DB759, #1db75966);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: float-icon 3.4s ease-in-out infinite
}

@keyframes float-icon {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }
}

.ctus-pg .stat-icon i {
    font-size: 23px;
    color: #FFF
}

.ctus-pg .stat-text {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ctus-pg .stat-label {
    font-size: 15px;
    color: #ffffff80;
    line-height: 1.4
}

.ctus-pg .stat-val {
    font-size: 23px;
    font-weight: 700;
    color: #FFF;
    line-height: 1.2
}

.ctus-pg .form-band {
    background: #111214;
    padding: 96px 24px;
    position: relative
}

.ctus-pg .form-band::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to left, #1DB759, transparent)
}

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

.ctus-pg .form-aside {
    flex: 0 0 38%
}

.ctus-pg .aside-overline {
    display: block;
    font-size: 15px;
    letter-spacing: .18em;
    color: #1DB759;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 300
}

.ctus-pg .aside-heading {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: -.02em;
    font-weight: 700;
    margin: 0 0 24px;
    color: #FFF
}

.ctus-pg .aside-body {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffffad;
    margin: 0 0 48px;
    text-indent: 1.4em
}

.ctus-pg .progress-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 48px
}

.ctus-pg .prog-row {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ctus-pg .prog-label {
    font-size: 15px;
    color: #fff9;
    line-height: 1.4
}

.ctus-pg .prog-bar {
    display: flex;
    flex-direction: row;
    gap: 4px;
    height: 8px
}

.ctus-pg .prog-seg {
    flex: 1;
    border-radius: 4px;
    background: #ffffff14
}

.ctus-pg .prog-seg.filled {
    background: #1DB759 !important
}

.ctus-pg .prog-seg.half {
    background: #1db75966
}

.ctus-pg .quote-block {
    position: relative;
    padding: 24px;
    background: #67440e26;
    border-radius: 13px;
    border: 1px solid #67440e4d
}

.ctus-pg .quote-mark {
    font-size: 72px;
    line-height: 1;
    color: #67440E;
    font-weight: 900;
    position: absolute;
    top: 12px;
    left: 24px;
    opacity: .6;
    pointer-events: none;
    user-select: none
}

.ctus-pg .quote-text {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffffbf;
    padding-top: 24px;
    margin: 0
}

.ctus-pg .quote-attr {
    font-size: 15px;
    color: #1DB759;
    margin-top: 12px;
    display: block
}

.ctus-pg .form-col {
    flex: 1
}

.ctus-pg .ctform {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ctus-pg .field-grp {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ctus-pg .field-lbl {
    font-size: 15px;
    color: #fff9;
    line-height: 1.4
}

.ctus-pg .field-inp {
    background: #ffffff0d;
    border: 1px solid #ffffff1a;
    border-radius: 13px;
    padding: 12px 24px;
    color: #FFF;
    font-size: 15px;
    line-height: 1.6;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    transition: border-color .16s ease-out, background .16s ease-out
}

.ctus-pg .field-inp::placeholder {
    color: #ffffff47;
    font-weight: 300
}

.ctus-pg .field-inp:focus {
    border-color: #1DB759;
    background: #1db7590d
}

.ctus-pg .checks-grp {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ctus-pg .checks-lbl {
    font-size: 15px;
    color: #fff9;
    line-height: 1.4;
    margin-bottom: 12px
}

.ctus-pg .checks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.ctus-pg .chk-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    background: #ffffff0a;
    border: 1px solid #ffffff14;
    border-radius: 13px;
    padding: 12px;
    cursor: pointer;
    transition: background .16s ease-out, border-color .16s ease-out;
    position: relative;
    overflow: hidden
}

.ctus-pg .chk-item:hover {
    background: #1db75912;
    border-color: #1db7594d
}

.ctus-pg .chk-input {
    width: 18px;
    height: 18px;
    accent-color: #1DB759;
    flex-shrink: 0;
    cursor: pointer
}

.ctus-pg .chk-text {
    font-size: 15px;
    color: #fffc;
    line-height: 1.4
}

.ctus-pg .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px
}

.ctus-pg .priv-check {
    width: 18px;
    height: 18px;
    accent-color: #1DB759;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer
}

.ctus-pg .priv-text {
    font-size: 15px;
    color: #ffffff8c;
    line-height: 1.6;
    margin: 0
}

.ctus-pg .priv-link {
    color: #1DB759;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: text-decoration-color .14s ease-out
}

.ctus-pg .priv-link:hover {
    text-decoration-color: transparent
}

.ctus-pg .submit-btn {
    background: #1DB759;
    color: #FFF;
    border: none;
    border-radius: 13px;
    padding: 24px 48px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .06em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
    transition: color .18s ease-out
}

.ctus-pg .submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #67440E;
    transform: translateX(100%);
    transition: transform .2s cubic-bezier(0.4, 0, 0.6, 1);
    border-radius: 13px
}

.ctus-pg .submit-btn:hover::before {
    transform: translateX(0)
}

.ctus-pg .submit-btn:focus {
    outline: 2px solid #1DB759;
    outline-offset: 3px
}

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

.ctus-pg .detail-band {
    background: #0e0e0f;
    padding: 96px 24px;
    position: relative
}

.ctus-pg .detail-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to left, transparent, #67440E, transparent)
}

.ctus-pg .detail-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 60% 1fr;
    gap: 48px;
    align-items: start
}

.ctus-pg .detail-img-wrap {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 1/1;
    max-width: 480px;
    box-shadow: 0 12px 60px 0 #1db7591c
}

.ctus-pg .detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.ctus-pg .detail-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #67440e8c, transparent 60%);
    pointer-events: none
}

.ctus-pg .detail-txt-col {
    display: flex;
    flex-direction: column;
    gap: 48px
}

.ctus-pg .detail-heading-wrap {
    text-align: center
}

.ctus-pg .detail-overline {
    display: block;
    font-size: 15px;
    letter-spacing: .18em;
    color: #1DB759;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 12px
}

.ctus-pg .detail-heading {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: -.02em;
    font-weight: 700;
    color: #FFF;
    margin: 0 0 4px
}

.ctus-pg .detail-caption {
    display: block;
    font-size: 15px;
    letter-spacing: .22em;
    color: #ffffff59;
    text-transform: uppercase;
    border-top: 1px solid #ffffff26;
    padding-top: 12px;
    margin-top: 12px
}

.ctus-pg .contact-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0
}

.ctus-pg .contact-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px
}

.ctus-pg .ci-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: #1db7591f;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 5px 0 #1db7590f
}

.ctus-pg .ci-icon i {
    font-size: 23px;
    color: #1DB759
}

.ctus-pg .ci-data {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ctus-pg .ci-type {
    font-size: 15px;
    color: #ffffff73;
    line-height: 1.4
}

.ctus-pg .ci-val {
    font-size: 15px;
    color: #FFF;
    line-height: 1.4;
    text-decoration: none;
    transition: color .14s ease-out
}

.ctus-pg .ci-val:hover {
    color: #1DB759
}

.ctus-pg .expand-row {
    display: flex;
    flex-direction: row;
    justify-content: center
}

.ctus-pg .expand-chip {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    background: #ffffff0a;
    border: 1px solid #ffffff1a;
    border-radius: 36px;
    padding: 12px 24px;
    font-size: 15px;
    color: #ffffffa6;
    line-height: 1.4;
    width: auto;
    transition: width .2s cubic-bezier(0.4, 0, 0.6, 1), padding .2s cubic-bezier(0.4, 0, 0.6, 1), background .18s ease-out;
    white-space: nowrap;
    overflow: hidden
}

.ctus-pg .expand-chip:hover {
    background: #1db75914;
    padding-left: 48px;
    padding-right: 48px
}

.ctus-pg .expand-chip i {
    color: #1DB759;
    font-size: 23px
}

@media (max-width: 960px) {
    .ctus-pg .reach-inner {
        flex-direction: column
    }

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

    .ctus-pg .reach-heading {
        font-size: 43px
    }

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

    .ctus-pg .form-aside {
        flex: none;
        width: 100%
    }

    .ctus-pg .detail-inner {
        grid-template-columns: 1fr
    }

    .ctus-pg .detail-img-wrap {
        max-width: 100%
    }
}

@media (max-width: 480px) {
    .ctus-pg .reach-heading {
        font-size: 43px
    }

    .ctus-pg .checks-grid {
        grid-template-columns: 1fr
    }

    .ctus-pg .reach-band,
    .ctus-pg .form-band,
    .ctus-pg .detail-band {
        padding: 48px 24px
    }

    .ctus-pg .submit-btn {
        width: 100%;
        text-align: center
    }
}

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

.success-pg .success-wrap {
    max-width: 560px;
    width: 100%;
    text-align: center
}

.success-pg .check-ring {
    width: 80px;
    height: 80px;
    margin: 0 auto 48px;
    border-radius: 50%;
    background: linear-gradient(to left, #1DB759, transparent);
    background-color: #0d2318;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px 0 #1db75917
}

.success-pg .check-ring svg {
    width: 36px;
    height: 36px
}

.success-pg .success-label {
    display: block;
    font-size: 15px;
    letter-spacing: .12em;
    color: #1DB759;
    text-transform: uppercase;
    margin-bottom: 12px
}

.success-pg .success-heading {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #FFF;
    margin: 0 0 24px
}

.success-pg .success-body {
    font-size: 15px;
    line-height: 1.6;
    color: #a8bfb0;
    margin: 0 0 48px
}

.success-pg .divider-line {
    width: 48px;
    height: 2px;
    background: linear-gradient(to left, #1DB759, transparent);
    margin: 0 auto 48px;
    border-radius: 4px
}

.success-pg .meta-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap
}

.success-pg .meta-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    background: #111f16;
    border-radius: 13px;
    padding: 12px 24px;
    box-shadow: inset 0 3px 5px 0 #1db7590f
}

.success-pg .meta-item i {
    font-size: 18px;
    color: #1DB759
}

.success-pg .meta-item span {
    font-size: 15px;
    line-height: 1.4;
    color: #c8ddd0
}

.success-pg .back-btn {
    display: inline-block;
    font-size: 15px;
    line-height: 1.4;
    color: #FFF;
    background: #1DB759;
    padding: 12px 48px;
    border-radius: 4px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color .18s ease-out;
    box-shadow: 0 6px 25px 0 #1db75917
}

.success-pg .back-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #67440E;
    transform: translateX(100%);
    transition: transform .16s cubic-bezier(0.4, 0, 0.6, 1);
    z-index: 0
}

.success-pg .back-btn:hover::before {
    transform: translateX(0)
}

.success-pg .back-btn:focus-visible {
    outline: 2px solid #1DB759;
    outline-offset: 4px
}

.success-pg .back-btn-text {
    position: relative;
    z-index: 1
}

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

    .success-pg .success-heading {
        font-size: 43px
    }

    .success-pg .meta-row {
        flex-direction: column;
        align-items: center
    }

    .success-pg .meta-item {
        width: 100%;
        justify-content: center
    }
}