body {
margin: 0;
padding: 0;
min-height: 100vh;
font-family: 'Arimo', sans-serif;
word-break: break-word;
overflow-wrap: anywhere;
}

*:focus-visible {
outline: 2px solid #616CBE;
outline-offset: 4px;
border-radius: 4px;
}

.site-header {
position: relative;
background: linear-gradient(135deg, #0d0e1a 0%, #111428 60%, #161830 100%);
border-bottom: 1px solid rgba(97, 108, 190, 0.18);
box-shadow: -1px 10px 52px 0 rgba(97, 108, 190, 0.12);
z-index: 100;
overflow: hidden;
}

.site-header::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2px;
background: linear-gradient(90deg, transparent 0%, #616CBE 40%, #9CB0CB 70%, transparent 100%);
pointer-events: none;
}

.site-header::after {
content: '';
position: absolute;
top: -60px;
right: -60px;
width: 220px;
height: 220px;
background: rgba(97, 108, 190, 0.06);
border-radius: 44px;
transform: rotate(20deg);
pointer-events: none;
}

.header-bar {
max-width: 1100px;
margin: 0 auto;
padding: 20px 40px;
display: flex;
align-items: center;
gap: 40px;
}

.brand-mark {
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
width: 88px;
height: 88px;
border-radius: 44px;
background: rgba(97, 108, 190, 0.10);
border: 1px solid rgba(97, 108, 190, 0.30);
box-shadow: -1px 7px 20px 0 rgba(97, 108, 190, 0.10), inset 0 1px 0 rgba(156, 176, 203, 0.12);
position: relative;
text-decoration: none;
}

.brand-mark::after {
content: '';
position: absolute;
right: -20px;
top: 50%;
transform: translateY(-50%);
width: 1px;
height: 44px;
background: linear-gradient(to bottom, transparent, rgba(97, 108, 190, 0.40), transparent);
}

.brand-mark img {
width: 56px;
height: 56px;
object-fit: contain;
display: block;
}

.primary-nav {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
flex-wrap: wrap;
}

.primary-nav a {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 20px;
font-family: 'Arimo', sans-serif;
font-size: 15px;
font-weight: 500;
line-height: 1.5;
color: #c8d4e8;
text-decoration: none;
border-radius: 44px;
border: 1px solid transparent;
background: transparent;
transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), background 0.18s cubic-bezier(0.4, 0, 0.2, 1);
white-space: nowrap;
min-height: 44px;
}

.primary-nav a:hover {
color: #F7F8FB;
border-color: rgba(97, 108, 190, 0.45);
background: rgba(97, 108, 190, 0.10);
}

.primary-nav a.active {
color: #F7F8FB;
border-color: rgba(97, 108, 190, 0.55);
background: rgba(97, 108, 190, 0.16);
box-shadow: -1px 1px 2px 0 rgba(97, 108, 190, 0.05), inset 0 1px 0 rgba(156, 176, 203, 0.08);
}

.primary-nav a .cil-home {
font-size: 15px;
opacity: 0.75;
}

.header-region {
flex-shrink: 0;
display: flex;
align-items: center;
gap: 8px;
padding: 8px 16px;
border-radius: 28px;
background: rgba(156, 176, 203, 0.07);
border: 1px solid rgba(156, 176, 203, 0.15);
}

.header-region svg {
flex-shrink: 0;
}

.header-region-label {
font-family: 'Arimo', sans-serif;
font-size: 15px;
font-weight: 400;
line-height: 1.5;
color: #9CB0CB;
white-space: nowrap;
}

@media (max-width: 1024px) {
.header-bar {
padding: 16px 20px;
gap: 20px;
flex-wrap: wrap;
}

.header-region {
order: 3;
flex-basis: 100%;
justify-content: center;
}

.primary-nav {
flex: 1;
}
}

@media (max-width: 768px) {
.header-bar {
padding: 16px;
gap: 16px;
}

.brand-mark {
width: 72px;
height: 72px;
}

.brand-mark img {
width: 44px;
height: 44px;
}

.primary-nav {
gap: 4px;
}

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

.header-region-label {
font-size: 15px;
}
}

@media (max-width: 360px) {
.header-bar {
padding: 16px;
gap: 16px;
}

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

.site-footer {
background: linear-gradient(160deg, #0d0e1a 0%, #111428 50%, #0f1020 100%);
border-top: 1px solid rgba(97, 108, 190, 0.18);
position: relative;
overflow: hidden;
}

.site-footer::before {
content: '';
position: absolute;
bottom: -40px;
left: -40px;
width: 180px;
height: 180px;
background: rgba(97, 108, 190, 0.05);
border-radius: 44px;
transform: rotate(-15deg);
pointer-events: none;
}

.footer-upper {
max-width: 1100px;
margin: 0 auto;
padding: 80px 40px 40px;
display: grid;
grid-template-columns: auto 1fr auto;
gap: 40px;
align-items: start;
}

.footer-brand {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 16px;
}

.footer-brand-mark {
display: flex;
align-items: center;
justify-content: center;
width: 88px;
height: 88px;
border-radius: 44px;
background: rgba(97, 108, 190, 0.10);
border: 1px solid rgba(97, 108, 190, 0.28);
box-shadow: -1px 7px 20px 0 rgba(97, 108, 190, 0.10), inset 0 1px 0 rgba(156, 176, 203, 0.10);
text-decoration: none;
flex-shrink: 0;
}

.footer-brand-mark img {
width: 56px;
height: 56px;
object-fit: contain;
display: block;
}

.footer-brand-name {
font-family: 'Arimo', sans-serif;
font-size: 19px;
font-weight: 700;
line-height: 1.1;
color: #F7F8FB;
letter-spacing: 0.02em;
}

.footer-brand-sub {
font-family: 'Arimo', sans-serif;
font-size: 15px;
font-weight: 400;
line-height: 1.5;
color: #9CB0CB;
}

.footer-links {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
padding-top: 8px;
}

.footer-links-label {
font-family: 'Arimo', sans-serif;
font-size: 15px;
font-weight: 600;
line-height: 1.5;
color: #616CBE;
text-transform: uppercase;
letter-spacing: 0.08em;
margin-bottom: 8px;
}

.footer-links a {
font-family: 'Arimo', sans-serif;
font-size: 15px;
font-weight: 400;
line-height: 1.9;
color: #9CB0CB;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 8px;
transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a::after {
content: '';
display: inline-block;
width: 12px;
height: 1px;
background: currentColor;
opacity: 0;
transform: translateX(-4px);
transition: opacity 0.18s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
color: #F7F8FB;
}

.footer-links a:hover::after {
opacity: 1;
transform: translateX(0);
}

.footer-contact {
display: flex;
flex-direction: column;
gap: 16px;
padding-top: 8px;
}

.footer-contact-label {
font-family: 'Arimo', sans-serif;
font-size: 15px;
font-weight: 600;
line-height: 1.5;
color: #616CBE;
text-transform: uppercase;
letter-spacing: 0.08em;
}

.footer-contact-item {
display: flex;
align-items: flex-start;
gap: 8px;
}

.footer-contact-item svg {
flex-shrink: 0;
margin-top: 2px;
}

.footer-contact-text {
font-family: 'Arimo', sans-serif;
font-size: 15px;
font-weight: 400;
line-height: 1.5;
color: #9CB0CB;
}

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

.footer-contact-text a:hover {
color: #F7F8FB;
}

.footer-lower {
max-width: 1100px;
margin: 0 auto;
padding: 20px 40px 40px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
border-top: 1px solid rgba(97, 108, 190, 0.10);
flex-wrap: wrap;
}

.footer-copy {
font-family: 'Arimo', sans-serif;
font-size: 15px;
font-weight: 400;
line-height: 1.5;
color: rgba(156, 176, 203, 0.55);
}

.footer-copy strong {
color: rgba(156, 176, 203, 0.75);
font-weight: 500;
}

@media (max-width: 1024px) {
.footer-upper {
grid-template-columns: 1fr 1fr;
padding: 40px 20px 20px;
}

.footer-brand {
grid-column: 1 / -1;
flex-direction: row;
align-items: center;
}

.footer-links {
align-items: flex-start;
}

.footer-lower {
padding: 20px;
}
}

@media (max-width: 768px) {
.footer-upper {
grid-template-columns: 1fr;
gap: 40px;
padding: 40px 16px 20px;
}

.footer-brand {
flex-direction: row;
align-items: center;
}

.footer-links {
align-items: flex-start;
}

.footer-lower {
padding: 16px;
flex-direction: column;
align-items: flex-start;
gap: 8px;
}
}

@media (max-width: 360px) {
.footer-upper {
padding: 40px 16px 16px;
}

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

.consent-bar {
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 2000;
background: linear-gradient(135deg, #111428 0%, #161830 100%);
border-top: 1px solid rgba(97, 108, 190, 0.28);
box-shadow: -1px 10px 52px 0 rgba(97, 108, 190, 0.12);
padding: 20px 40px;
}

.consent-bar-inner {
max-width: 1100px;
margin: 0 auto;
display: flex;
align-items: center;
gap: 40px;
flex-wrap: wrap;
}

.consent-bar-text {
flex: 1;
min-width: 200px;
}

.consent-bar-desc {
font-family: 'Arimo', sans-serif;
font-size: 15px;
font-weight: 400;
line-height: 1.5;
color: #9CB0CB;
}

.consent-bar-headline {
font-family: 'Arimo', sans-serif;
font-size: 15px;
font-weight: 600;
line-height: 1.5;
color: #F7F8FB;
margin-top: 4px;
}

.consent-bar-actions {
display: flex;
gap: 8px;
flex-shrink: 0;
flex-wrap: wrap;
}

.consent-btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 8px 20px;
min-height: 44px;
font-family: 'Arimo', sans-serif;
font-size: 15px;
font-weight: 500;
line-height: 1.5;
border-radius: 8px;
border: 1px solid rgba(97, 108, 190, 0.45);
background: rgba(97, 108, 190, 0.12);
color: #F7F8FB;
cursor: pointer;
transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
white-space: nowrap;
}

.consent-btn:hover {
border-color: #616CBE;
color: #F7F8FB;
}

.consent-btn:focus-visible {
outline: 2px solid #616CBE;
outline-offset: 4px;
}

.consent-btn.decline {
background: transparent;
border-color: rgba(156, 176, 203, 0.22);
color: #9CB0CB;
}

.consent-btn.decline:hover {
border-color: rgba(156, 176, 203, 0.50);
color: #F7F8FB;
}

@media (max-width: 768px) {
.consent-bar {
padding: 16px;
}

.consent-bar-inner {
gap: 16px;
}

.consent-bar-actions {
width: 100%;
}

.consent-btn {
flex: 1;
}
}

@media (max-width: 360px) {
.consent-bar-actions {
flex-direction: column;
}
}

.policy-block-iysj {
max-width: 1100px;
margin: 0 auto;
padding: 80px 40px;
color: #F7F8FB;
background: #0e1018;
min-height: 100vh;
}

.policy-block-iysj h1 {
font-size: 58px;
line-height: 1.1;
letter-spacing: 0.01em;
color: #F7F8FB;
margin-bottom: 40px;
margin-top: 0;
padding-bottom: 20px;
border-bottom: 1px solid rgba(97, 108, 190, 0.28);
border-left: 4px solid #616CBE;
border-right: 1px solid rgba(97, 108, 190, 0.10);
padding-left: 20px;
border-radius: 4px;
}

.policy-block-iysj h2 {
font-size: 43px;
line-height: 1.1;
color: #F7F8FB;
margin-top: 80px;
margin-bottom: 20px;
padding-left: 16px;
border-left: 3px solid rgba(97, 108, 190, 0.7);
border-right: 1px solid rgba(97, 108, 190, 0.08);
border-radius: 4px;
}

.policy-block-iysj h3 {
font-size: 23px;
line-height: 1.5;
color: #c8d4e8;
margin-top: 40px;
margin-bottom: 16px;
padding-left: 16px;
border-left: 2px solid rgba(156, 176, 203, 0.5);
border-radius: 4px;
}

.policy-block-iysj h4 {
font-size: 19px;
line-height: 1.5;
color: #b0c2d8;
margin-top: 40px;
margin-bottom: 16px;
letter-spacing: 0.02em;
}

.policy-block-iysj h5 {
font-size: 16px;
line-height: 1.5;
color: #9CB0CB;
margin-top: 20px;
margin-bottom: 8px;
text-transform: uppercase;
letter-spacing: 0.08em;
}

.policy-block-iysj h6 {
font-size: 15px;
line-height: 1.5;
color: rgba(156, 176, 203, 0.8);
margin-top: 20px;
margin-bottom: 8px;
text-transform: uppercase;
letter-spacing: 0.1em;
}

.policy-block-iysj p {
font-size: 16px;
line-height: 1.9;
color: rgba(247, 248, 251, 0.82);
margin-top: 0;
margin-bottom: 20px;
max-width: 72ch;
}

.policy-block-iysj strong,
.policy-block-iysj b {
font-weight: 700;
color: #F7F8FB;
}

.policy-block-iysj em,
.policy-block-iysj i {
font-style: italic;
color: #c8d4e8;
}

.policy-block-iysj ul,
.policy-block-iysj ol {
font-size: 16px;
line-height: 1.9;
color: rgba(247, 248, 251, 0.82);
margin-top: 0;
margin-bottom: 20px;
padding-left: 20px;
max-width: 72ch;
}

.policy-block-iysj ul li,
.policy-block-iysj ol li {
margin-bottom: 8px;
}

.policy-block-iysj a {
color: #9CB0CB;
text-decoration: underline;
text-underline-offset: 3px;
text-decoration-thickness: 1px;
transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.policy-block-iysj a:hover {
color: #F7F8FB;
}

.policy-block-iysj table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
margin-bottom: 40px;
font-size: 15px;
line-height: 1.5;
border-radius: 8px;
overflow: hidden;
box-shadow: -1px 7px 20px 0 rgba(97, 108, 190, 0.10);
}

.policy-block-iysj thead {
background: rgba(97, 108, 190, 0.18);
}

.policy-block-iysj thead tr {
border-bottom: 2px solid rgba(97, 108, 190, 0.4);
}

.policy-block-iysj th {
font-size: 15px;
line-height: 1.5;
color: #F7F8FB;
font-weight: 700;
text-align: left;
padding: 16px 20px;
text-transform: uppercase;
letter-spacing: 0.07em;
background: rgba(97, 108, 190, 0.14);
border-right: 1px solid rgba(97, 108, 190, 0.12);
}

.policy-block-iysj th:last-child {
border-right: none;
}

.policy-block-iysj tbody tr {
border-bottom: 1px solid rgba(156, 176, 203, 0.10);
transition: background 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.policy-block-iysj tbody tr:last-child {
border-bottom: none;
}

.policy-block-iysj tbody tr:nth-child(even) {
background: rgba(97, 108, 190, 0.05);
}

.policy-block-iysj tbody tr:hover {
background: rgba(97, 108, 190, 0.11);
}

.policy-block-iysj td {
font-size: 15px;
line-height: 1.9;
color: rgba(247, 248, 251, 0.82);
padding: 16px 20px;
vertical-align: top;
border-right: 1px solid rgba(156, 176, 203, 0.08);
}

.policy-block-iysj td:last-child {
border-right: none;
}

.policy-block-iysj div {
font-size: 16px;
line-height: 1.9;
color: rgba(247, 248, 251, 0.82);
}

.policy-block-iysj blockquote {
margin: 40px 0;
padding: 20px 40px;
background: rgba(97, 108, 190, 0.08);
border-left: 4px solid #616CBE;
border-right: 1px solid rgba(97, 108, 190, 0.12);
border-top: 1px solid rgba(97, 108, 190, 0.08);
border-bottom: 1px solid rgba(97, 108, 190, 0.08);
border-radius: 4px;
font-size: 16px;
line-height: 1.9;
color: rgba(247, 248, 251, 0.75);
box-shadow: inset 0 1px 0 0 rgba(97, 108, 190, 0.12), -1px 1px 2px 0 rgba(97, 108, 190, 0.05);
}

.policy-block-iysj hr {
border: none;
border-top: 1px solid rgba(97, 108, 190, 0.22);
margin: 80px 0;
}

.policy-block-iysj code {
font-size: 15px;
background: rgba(97, 108, 190, 0.14);
color: #c8d4e8;
padding: 4px 8px;
border-radius: 4px;
border: 1px solid rgba(97, 108, 190, 0.20);
}

.policy-block-iysj pre {
background: rgba(97, 108, 190, 0.09);
border: 1px solid rgba(97, 108, 190, 0.18);
border-radius: 8px;
padding: 20px;
overflow-x: auto;
margin-bottom: 40px;
box-shadow: -1px 1px 2px 0 rgba(97, 108, 190, 0.05);
}

.policy-block-iysj pre code {
background: none;
border: none;
padding: 0;
font-size: 15px;
line-height: 1.9;
color: rgba(247, 248, 251, 0.82);
}

@media (max-width: 1024px) {
.policy-block-iysj {
padding: 80px 40px;
}

.policy-block-iysj h1 {
font-size: 43px;
}

.policy-block-iysj h2 {
font-size: 23px;
}
}

@media (max-width: 768px) {
.policy-block-iysj {
padding: 40px 20px;
}

.policy-block-iysj h1 {
font-size: 43px;
padding-left: 16px;
}

.policy-block-iysj h2 {
font-size: 23px;
margin-top: 40px;
}

.policy-block-iysj h3 {
font-size: 19px;
}

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

.policy-block-iysj th,
.policy-block-iysj td {
padding: 16px;
min-width: 120px;
}

.policy-block-iysj blockquote {
padding: 20px;
margin: 20px 0;
}
}

@media (max-width: 360px) {
.policy-block-iysj {
padding: 40px 16px;
}

.policy-block-iysj h1 {
font-size: 23px;
}

.policy-block-iysj h2 {
font-size: 19px;
}

.policy-block-iysj h3 {
font-size: 16px;
}

.policy-block-iysj p,
.policy-block-iysj ul,
.policy-block-iysj ol,
.policy-block-iysj div {
font-size: 15px;
}
}

.strt {
background: #0d0e18;
color: #F7F8FB;
overflow-x: clip;
position: relative;
}

.strt .drift-spot {
position: fixed;
top: 0;
left: 0;
width: 320px;
height: 320px;
background: radial-gradient(ellipse at 30% 30%, rgba(97, 108, 190, 0.13) 0%, rgba(97, 108, 190, 0.04) 55%, transparent 80%);
pointer-events: none;
animation: spotdrift 18s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
z-index: 0;
}

@keyframes spotdrift {
0% {
transform: translate(0, 0);
opacity: 0.7;
}

40% {
transform: translate(60px, 120px);
opacity: 1;
}

100% {
transform: translate(20px, 260px);
opacity: 0.5;
}
}

.strt .pg-wrap {
max-width: 1100px;
margin: 0 auto;
padding: 0 20px;
}

.strt .dot-dash-divider {
display: flex;
align-items: center;
gap: 4px;
padding: 0 20px;
max-width: 1100px;
margin: 0 auto;
}

.strt .dot-dash-divider span {
display: inline-block;
background: rgba(156, 176, 203, 0.28);
}

.strt .dot-dash-divider span.dot {
width: 4px;
height: 4px;
border-radius: 44px;
}

.strt .dot-dash-divider span.dash {
width: 16px;
height: 2px;
border-radius: 4px;
}

.strt .tb {
position: relative;
padding: 40px 0 40px;
background: linear-gradient(135deg, rgba(97, 108, 190, 0.18) 0%, rgba(13, 14, 24, 0) 48%, rgba(13, 14, 24, 0) 100%);
}

.strt .tb-dot-grid {
position: absolute;
top: 0;
left: 0;
width: 50%;
height: 100%;
background-image: radial-gradient(circle, rgba(97, 108, 190, 0.22) 1px, transparent 1px);
background-size: 20px 20px;
pointer-events: none;
z-index: 0;
}

.strt .tb-inner {
position: relative;
z-index: 1;
display: flex;
flex-direction: row;
align-items: center;
gap: 40px;
max-width: 1100px;
margin: 0 auto;
padding: 0 20px;
}

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

.strt .tb-eyebrow {
font-size: 15px;
font-weight: 700;
letter-spacing: 0.14em;
text-transform: uppercase;
color: #9CB0CB;
margin-bottom: 16px;
display: block;
}

.strt .tb-h1 {
font-size: 58px;
font-weight: 900;
line-height: 1.1;
letter-spacing: -0.02em;
color: #F7F8FB;
margin: 0 0 16px;
}

.strt .tb-h1 em {
font-style: normal;
color: #616CBE;
}

.strt .tb-quote {
font-size: 19px;
line-height: 1.5;
color: rgba(247, 248, 251, 0.72);
margin: 0;
padding-left: 16px;
border-top: 2px solid rgba(97, 108, 190, 0.5);
padding-top: 16px;
}

.strt .tb-img-col {
flex: 0 0 320px;
position: relative;
}

.strt .tb-img-wrap {
width: 320px;
height: 220px;
border-radius: 16px;
overflow: hidden;
box-shadow: -1px 10px 52px 0 rgba(97, 108, 190, 0.12);
}

.strt .tb-img-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
filter: grayscale(100%);
display: block;
transition: filter 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.strt .tb-img-wrap:hover img {
filter: grayscale(60%);
}

.strt .tb-badge {
position: absolute;
top: -8px;
right: -8px;
background: #616CBE;
color: #F7F8FB;
font-size: 15px;
font-weight: 900;
width: 44px;
height: 44px;
border-radius: 44px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: -1px 7px 20px 0 rgba(97, 108, 190, 0.10);
z-index: 2;
letter-spacing: 0;
}

.strt .invest {
padding: 80px 0 80px;
background: #111220;
position: relative;
}

.strt .invest-circles {
position: absolute;
bottom: -60px;
right: -60px;
width: 260px;
height: 260px;
pointer-events: none;
z-index: 0;
overflow: hidden;
}

.strt .invest-circles svg {
width: 100%;
height: 100%;
opacity: 0.09;
}

.strt .invest-inner {
position: relative;
z-index: 1;
max-width: 1100px;
margin: 0 auto;
padding: 0 20px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: start;
}

.strt .invest-left {}

.strt .invest-label {
font-size: 15px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: #616CBE;
display: block;
margin-bottom: 16px;
}

.strt .invest-h2 {
font-size: 43px;
font-weight: 900;
line-height: 1.1;
color: #F7F8FB;
margin: 0 0 20px;
letter-spacing: -0.01em;
}

.strt .invest-lead {
font-size: 19px;
line-height: 1.5;
color: rgba(247, 248, 251, 0.82);
margin: 0 0 20px;
}

.strt .invest-body {
font-size: 16px;
line-height: 1.9;
color: rgba(247, 248, 251, 0.65);
margin: 0;
}

.strt .invest-body strong {
color: #9CB0CB;
font-weight: 700;
}

.strt .invest-right {
display: flex;
flex-direction: column;
gap: 16px;
}

.strt .invest-card {
background: rgba(97, 108, 190, 0.07);
border: 1px solid rgba(97, 108, 190, 0.18);
border-radius: 16px;
padding: 20px;
position: relative;
box-shadow: -1px 1px 2px 0 rgba(97, 108, 190, 0.05);
transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.strt .invest-card:hover {
border-color: rgba(97, 108, 190, 0.45);
box-shadow: -1px 7px 20px 0 rgba(97, 108, 190, 0.10);
}

.strt .invest-card-num {
position: absolute;
top: -8px;
left: 20px;
background: #616CBE;
color: #F7F8FB;
font-size: 15px;
font-weight: 900;
width: 28px;
height: 28px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
}

.strt .invest-card-title {
font-size: 16px;
font-weight: 700;
color: #F7F8FB;
margin: 8px 0 8px;
}

.strt .invest-card-desc {
font-size: 15px;
line-height: 1.5;
color: rgba(247, 248, 251, 0.6);
margin: 0;
}

.strt .invest-img-wrap {
width: 100%;
height: 200px;
border-radius: 16px;
overflow: hidden;
box-shadow: -1px 10px 52px 0 rgba(97, 108, 190, 0.12);
}

.strt .invest-img-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
transition: transform 0.28s cubic-bezier(0.0, 0, 0.2, 1), brightness 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.strt .invest-img-wrap:hover img {
transform: scale(1.04);
}

.strt .supp {
padding: 80px 0 80px;
position: relative;
background: #0d0e18;
}

.strt .supp-bg-img {
position: absolute;
inset: 0;
z-index: 0;
overflow: hidden;
}

.strt .supp-bg-img img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
filter: blur(18px) brightness(0.22);
}

.strt .supp-circles {
position: absolute;
top: -40px;
left: -40px;
width: 220px;
height: 220px;
pointer-events: none;
z-index: 1;
overflow: hidden;
}

.strt .supp-circles svg {
width: 100%;
height: 100%;
opacity: 0.08;
}

.strt .supp-inner {
position: relative;
z-index: 2;
max-width: 1100px;
margin: 0 auto;
padding: 0 20px;
}

.strt .supp-top {
display: flex;
flex-direction: row;
gap: 40px;
align-items: start;
margin-bottom: 40px;
}

.strt .supp-label {
font-size: 15px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: #9CB0CB;
display: block;
margin-bottom: 16px;
}

.strt .supp-h2 {
font-size: 43px;
font-weight: 900;
line-height: 1.1;
color: #F7F8FB;
margin: 0 0 16px;
letter-spacing: -0.01em;
}

.strt .supp-lead {
font-size: 16px;
line-height: 1.9;
color: rgba(247, 248, 251, 0.75);
margin: 0;
}

.strt .supp-text-col {
flex: 1 1 0;
min-width: 0;
}

.strt .supp-portrait-col {
flex: 0 0 180px;
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
}

.strt .supp-portrait-wrap {
width: 160px;
height: 224px;
border-radius: 28px;
overflow: hidden;
box-shadow: -1px 10px 52px 0 rgba(97, 108, 190, 0.12), inset 0 2px 12px 0 rgba(156, 176, 203, 0.10);
}

.strt .supp-portrait-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.strt .supp-portrait-wrap:hover img {
transform: scale(1.05);
}

.strt .supp-name {
font-size: 15px;
font-weight: 700;
color: #F7F8FB;
text-align: center;
}

.strt .supp-role {
font-size: 15px;
color: rgba(156, 176, 203, 0.8);
text-align: center;
margin: 0;
}

.strt .supp-strips {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}

.strt .supp-strip {
background: rgba(156, 176, 203, 0.07);
border: 1px solid rgba(156, 176, 203, 0.13);
border-radius: 16px;
padding: 20px;
position: relative;
overflow: hidden;
transition: border-color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.strt .supp-strip:hover {
border-color: rgba(97, 108, 190, 0.4);
}

.strt .supp-strip-reveal {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 20px;
background: linear-gradient(180deg, transparent 0%, rgba(13, 14, 24, 0.92) 100%);
opacity: 0;
transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.strt .supp-strip:hover .supp-strip-reveal {
opacity: 1;
}

.strt .supp-strip-icon {
width: 32px;
height: 32px;
margin-bottom: 8px;
color: #616CBE;
}

.strt .supp-strip-title {
font-size: 16px;
font-weight: 700;
color: #F7F8FB;
margin: 0 0 8px;
}

.strt .supp-strip-text {
font-size: 15px;
line-height: 1.5;
color: rgba(247, 248, 251, 0.62);
margin: 0;
}

.strt .supp-strip-reveal-text {
font-size: 15px;
line-height: 1.5;
color: #9CB0CB;
margin: 0;
}

.strt .scale {
padding: 80px 0 80px;
background: #111220;
position: relative;
}

.strt .scale-circles {
position: absolute;
top: -50px;
right: -50px;
width: 240px;
height: 240px;
pointer-events: none;
z-index: 0;
overflow: hidden;
}

.strt .scale-circles svg {
width: 100%;
height: 100%;
opacity: 0.08;
}

.strt .scale-inner {
position: relative;
z-index: 1;
max-width: 1100px;
margin: 0 auto;
padding: 0 20px;
}

.strt .scale-top {
text-align: center;
margin-bottom: 40px;
}

.strt .scale-label {
font-size: 15px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: #616CBE;
display: block;
margin-bottom: 16px;
}

.strt .scale-h2 {
font-size: 43px;
font-weight: 900;
line-height: 1.1;
color: #F7F8FB;
margin: 0 0 16px;
letter-spacing: -0.01em;
}

.strt .scale-desc {
font-size: 16px;
line-height: 1.9;
color: rgba(247, 248, 251, 0.65);
max-width: 600px;
margin: 0 auto;
}

.strt .scale-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
grid-template-rows: auto auto;
gap: 16px;
}

.strt .scale-big {
grid-column: 1;
grid-row: 1 / 3;
background: rgba(97, 108, 190, 0.10);
border: 1px solid rgba(97, 108, 190, 0.22);
border-radius: 16px;
padding: 40px;
display: flex;
flex-direction: column;
justify-content: flex-end;
position: relative;
overflow: hidden;
box-shadow: -1px 7px 20px 0 rgba(97, 108, 190, 0.10);
min-height: 280px;
}

.strt .scale-big-img {
position: absolute;
inset: 0;
z-index: 0;
}

.strt .scale-big-img img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
filter: brightness(0.28);
transition: filter 0.28s cubic-bezier(0.0, 0, 0.2, 1);
}

.strt .scale-big:hover .scale-big-img img {
filter: brightness(0.38);
}

.strt .scale-big-content {
position: relative;
z-index: 1;
}

.strt .scale-big-num {
font-size: 58px;
font-weight: 900;
line-height: 1.1;
color: #F7F8FB;
display: block;
}

.strt .scale-big-unit {
font-size: 23px;
color: #9CB0CB;
font-weight: 700;
}

.strt .scale-big-label {
font-size: 16px;
color: rgba(247, 248, 251, 0.65);
margin: 8px 0 0;
line-height: 1.5;
}

.strt .scale-stat {
background: rgba(156, 176, 203, 0.06);
border: 1px solid rgba(156, 176, 203, 0.13);
border-radius: 16px;
padding: 20px;
display: flex;
flex-direction: column;
justify-content: center;
position: relative;
transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.strt .scale-stat:hover {
border-color: rgba(97, 108, 190, 0.38);
}

.strt .scale-stat-badge {
position: absolute;
top: -8px;
right: 16px;
background: rgba(97, 108, 190, 0.85);
color: #F7F8FB;
font-size: 15px;
font-weight: 900;
padding: 4px 8px;
border-radius: 8px;
}

.strt .scale-stat-num {
font-size: 43px;
font-weight: 900;
line-height: 1.1;
color: #F7F8FB;
display: block;
}

.strt .scale-stat-unit {
font-size: 19px;
color: #616CBE;
font-weight: 700;
}

.strt .scale-stat-label {
font-size: 15px;
color: rgba(247, 248, 251, 0.58);
margin: 8px 0 0;
line-height: 1.5;
}

.strt .scale-progress-row {
grid-column: 2 / 4;
background: rgba(97, 108, 190, 0.06);
border: 1px solid rgba(97, 108, 190, 0.15);
border-radius: 16px;
padding: 20px;
}

.strt .scale-progress-title {
font-size: 15px;
font-weight: 700;
color: #9CB0CB;
margin: 0 0 16px;
text-transform: uppercase;
letter-spacing: 0.1em;
}

.strt .scale-bar-row {
display: flex;
flex-direction: column;
gap: 8px;
}

.strt .scale-bar-item {
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
}

.strt .scale-bar-name {
font-size: 15px;
color: rgba(247, 248, 251, 0.7);
flex: 0 0 100px;
}

.strt .scale-bar-track {
flex: 1 1 0;
height: 8px;
background: rgba(156, 176, 203, 0.12);
border-radius: 4px;
overflow: hidden;
}

.strt .scale-bar-fill {
height: 100%;
border-radius: 4px;
background: linear-gradient(90deg, #616CBE 0%, #9CB0CB 100%);
transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.strt .scale-bar-pct {
font-size: 15px;
font-weight: 700;
color: #9CB0CB;
flex: 0 0 36px;
text-align: right;
}

@media (max-width: 1024px) {
.strt .tb-h1 {
font-size: 43px;
}

.strt .tb-img-col {
flex: 0 0 240px;
}

.strt .tb-img-wrap {
width: 240px;
height: 180px;
}

.strt .invest-inner {
grid-template-columns: 1fr;
}

.strt .invest-img-wrap {
height: 180px;
}

.strt .scale-grid {
grid-template-columns: 1fr 1fr;
}

.strt .scale-big {
grid-column: 1 / 3;
grid-row: 1;
min-height: 200px;
}

.strt .scale-progress-row {
grid-column: 1 / 3;
}
}

@media (max-width: 768px) {
.strt .tb-inner {
flex-direction: column;
gap: 20px;
}

.strt .tb-h1 {
font-size: 43px;
}

.strt .tb-img-col {
flex: 0 0 auto;
width: 100%;
}

.strt .tb-img-wrap {
width: 100%;
height: 180px;
}

.strt .invest {
padding: 40px 0;
}

.strt .supp {
padding: 40px 0;
}

.strt .scale {
padding: 40px 0;
}

.strt .supp-top {
flex-direction: column;
gap: 20px;
}

.strt .supp-portrait-col {
flex-direction: row;
align-items: center;
gap: 16px;
}

.strt .supp-strips {
grid-template-columns: 1fr;
}

.strt .scale-grid {
grid-template-columns: 1fr;
}

.strt .scale-big {
grid-column: 1;
grid-row: auto;
min-height: 180px;
}

.strt .scale-progress-row {
grid-column: 1;
}

.strt .invest-h2 {
font-size: 23px;
}

.strt .supp-h2 {
font-size: 23px;
}

.strt .scale-h2 {
font-size: 23px;
}
}

@media (max-width: 360px) {
.strt .tb-h1 {
font-size: 23px;
}

.strt .pg-wrap {
padding: 0 8px;
}

.strt .tb-inner {
padding: 0 8px;
}

.strt .invest-inner {
padding: 0 8px;
}

.strt .supp-inner {
padding: 0 8px;
}

.strt .scale-inner {
padding: 0 8px;
}
}

.ctus {
background: #0d0e1a;
min-height: 100vh;
overflow: hidden;
position: relative;
}

.ctus .load-reveal {
animation: blurReveal 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes blurReveal {
from {
opacity: 0;
filter: blur(8px);
transform: translateY(12px);
}

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

.ctus .load-reveal-2 {
animation: blurReveal 0.55s cubic-bezier(0.4, 0, 0.2, 1) 0.18s both;
}

.ctus .load-reveal-3 {
animation: blurReveal 0.6s cubic-bezier(0.0, 0, 0.2, 1) 0.32s both;
}

.ctus .pg-wrap {
max-width: 1100px;
margin: 0 auto;
padding: 0 20px;
}

.ctus .reach-strip {
background: linear-gradient(160deg, #111226 0% 40%, #161828 40% 70%, #0d0e1a 70% 100%);
padding: 80px 0 40px;
position: relative;
overflow: hidden;
}

.ctus .reach-strip::before {
content: "";
position: absolute;
inset: 0;
background-image:
radial-gradient(circle at 18% 55%, rgba(97, 108, 190, 0.13) 0%, transparent 52%),
radial-gradient(circle at 82% 30%, rgba(156, 176, 203, 0.08) 0%, transparent 45%);
pointer-events: none;
}

.ctus .noise-overlay {
position: absolute;
inset: 0;
pointer-events: none;
opacity: 0.035;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
background-size: 200px 200px;
}

.ctus .reach-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: start;
position: relative;
z-index: 1;
}

.ctus .reach-left {
padding: 20px 0 0;
}

.ctus .reach-eyebrow {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 15px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: #9CB0CB;
margin-bottom: 20px;
}

.ctus .reach-eyebrow-dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: #616CBE;
flex-shrink: 0;
}

.ctus .reach-heading {
font-size: 43px;
font-weight: 900;
line-height: 1.1;
color: #F7F8FB;
letter-spacing: -0.02em;
margin: 0 0 20px;
}

.ctus .reach-heading em {
font-style: normal;
color: #9CB0CB;
}

.ctus .reach-desc {
font-size: 16px;
line-height: 1.9;
color: rgba(247, 248, 251, 0.72);
margin: 0 0 40px;
}

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

.ctus .fact-row {
display: flex;
align-items: flex-start;
gap: 16px;
padding: 16px 20px;
background: rgba(97, 108, 190, 0.07);
border-radius: 8px;
border-top: 1px solid rgba(97, 108, 190, 0.18);
border-right: 2px solid #616CBE;
box-shadow: -1px 1px 2px 0 rgba(97, 108, 190, 0.05), -1px 7px 20px 0 rgba(97, 108, 190, 0.10);
transition: background-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus .fact-row:hover {
background: rgba(97, 108, 190, 0.13);
border-right-color: #9CB0CB;
}

.ctus .fact-icon {
flex-shrink: 0;
width: 36px;
height: 36px;
border-radius: 8px;
background: rgba(97, 108, 190, 0.18);
display: flex;
align-items: center;
justify-content: center;
color: #9CB0CB;
font-size: 16px;
}

.ctus .fact-body {
flex: 1;
}

.ctus .fact-label {
font-size: 15px;
font-weight: 700;
color: #9CB0CB;
text-transform: uppercase;
letter-spacing: 0.08em;
margin-bottom: 4px;
}

.ctus .fact-value {
font-size: 15px;
line-height: 1.5;
color: #F7F8FB;
}

.ctus .fact-value a {
color: #F7F8FB;
text-decoration: none !important;
transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus .fact-value a:hover {
color: #9CB0CB;
}

.ctus .reach-right {
padding: 0;
}

.ctus .form-card {
background: rgba(22, 24, 40, 0.95);
border-radius: 16px;
border: 1px solid rgba(97, 108, 190, 0.22);
box-shadow: -1px 7px 20px 0 rgba(97, 108, 190, 0.10), -1px 10px 52px 0 rgba(97, 108, 190, 0.12);
padding: 40px;
position: relative;
overflow: hidden;
}

.ctus .form-card::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, #616CBE 0% 50%, #9CB0CB 50% 100%);
border-radius: 16px 16px 0 0;
}

.ctus .form-card-heading {
font-size: 23px;
font-weight: 900;
line-height: 1.1;
color: #F7F8FB;
margin: 0 0 8px;
letter-spacing: -0.01em;
}

.ctus .form-card-sub {
font-size: 15px;
line-height: 1.5;
color: rgba(247, 248, 251, 0.55);
margin: 0 0 20px;
}

.ctus .form-divider {
height: 1px;
background: rgba(97, 108, 190, 0.18);
margin: 0 0 20px;
}

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

.ctus .form-label {
font-size: 15px;
font-weight: 700;
color: #9CB0CB;
letter-spacing: 0.04em;
}

.ctus .input-wrap {
position: relative;
display: flex;
align-items: center;
}

.ctus .input-icon {
position: absolute;
left: 16px;
color: rgba(156, 176, 203, 0.6);
font-size: 15px;
pointer-events: none;
z-index: 1;
}

.ctus .form-input {
width: 100%;
padding: 16px 16px 16px 44px;
background: rgba(13, 14, 26, 0.8);
border: 1px solid rgba(97, 108, 190, 0.28);
border-radius: 8px;
color: #F7F8FB;
font-size: 15px;
line-height: 1.5;
outline: none;
box-sizing: border-box;
transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus .form-input::placeholder {
color: rgba(156, 176, 203, 0.45);
}

.ctus .form-input:focus {
border-color: #616CBE;
box-shadow: inset 0 0 0 1px rgba(97, 108, 190, 0.35), -1px 1px 2px 0 rgba(97, 108, 190, 0.05);
}

.ctus .checks-group-label {
font-size: 15px;
font-weight: 700;
color: #9CB0CB;
letter-spacing: 0.04em;
margin-bottom: 8px;
}

.ctus .checks-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px;
margin-bottom: 16px;
}

.ctus .check-item {
display: flex;
align-items: center;
gap: 8px;
padding: 12px 16px;
background: rgba(13, 14, 26, 0.6);
border-radius: 8px;
border: 1px solid rgba(97, 108, 190, 0.2);
cursor: pointer;
transition: background-color 0.18s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus .check-item:hover {
background: rgba(97, 108, 190, 0.1);
border-color: rgba(97, 108, 190, 0.45);
}

.ctus .check-input {
width: 18px;
height: 18px;
accent-color: #616CBE;
cursor: pointer;
flex-shrink: 0;
}

.ctus .check-text {
font-size: 15px;
color: rgba(247, 248, 251, 0.82);
line-height: 1.5;
}

.ctus .privacy-row {
display: flex;
align-items: flex-start;
gap: 12px;
padding: 16px;
background: rgba(97, 108, 190, 0.06);
border-radius: 8px;
border: 1px solid rgba(97, 108, 190, 0.16);
margin-bottom: 20px;
}

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

.ctus .privacy-text {
font-size: 15px;
line-height: 1.9;
color: rgba(247, 248, 251, 0.65);
}

.ctus .privacy-text a {
color: #9CB0CB;
text-decoration: underline !important;
text-underline-offset: 3px;
transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus .privacy-text a:hover {
color: #F7F8FB;
}

.ctus .submit-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 16px 40px;
background: transparent;
border: 2px solid #616CBE;
border-radius: 44px;
color: #F7F8FB;
font-size: 16px;
font-weight: 700;
letter-spacing: 0.04em;
cursor: pointer;
transition: border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}

.ctus .submit-btn:hover {
border-color: #9CB0CB;
color: #9CB0CB;
}

.ctus .submit-btn:focus {
outline: 2px solid #9CB0CB;
outline-offset: 3px;
}

.ctus .submit-btn:active {
border-color: #F7F8FB;
}

.ctus .submit-arrow {
display: inline-flex;
align-items: center;
transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus .submit-btn:hover .submit-arrow {
transform: translateX(4px);
}

.ctus .info-strip {
background: #111226;
padding: 40px 0 80px;
position: relative;
}

.ctus .strip-divider {
display: flex;
justify-content: center;
margin-bottom: 40px;
overflow: hidden;
}

.ctus .strip-divider svg {
width: 100%;
max-width: 1100px;
height: 28px;
}

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

.ctus .dots-bg::before {
content: "";
position: absolute;
inset: 0;
background-image:
radial-gradient(circle, rgba(156, 176, 203, 0.25) 1px, transparent 1px),
radial-gradient(circle, rgba(97, 108, 190, 0.18) 2px, transparent 2px),
radial-gradient(circle, rgba(247, 248, 251, 0.08) 1.5px, transparent 1.5px);
background-size: 38px 38px, 73px 73px, 55px 55px;
background-position: 0 0, 19px 19px, 9px 9px;
}

.ctus .strip-inner {
position: relative;
z-index: 1;
}

.ctus .strip-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 40px;
align-items: start;
}

.ctus .strip-about {
padding-right: 20px;
}

.ctus .strip-brand {
font-size: 19px;
font-weight: 900;
color: #F7F8FB;
letter-spacing: -0.01em;
margin-bottom: 8px;
}

.ctus .strip-tagline {
font-size: 15px;
line-height: 1.9;
color: rgba(247, 248, 251, 0.6);
margin: 0 0 16px;
}

.ctus .strip-col-head {
font-size: 15px;
font-weight: 700;
color: #9CB0CB;
text-transform: uppercase;
letter-spacing: 0.1em;
margin-bottom: 16px;
}

.ctus .strip-links {
display: flex;
flex-direction: column;
gap: 8px;
}

.ctus .strip-link {
font-size: 15px;
color: rgba(247, 248, 251, 0.7);
text-decoration: none !important;
line-height: 1.5;
transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus .strip-link:hover {
color: #F7F8FB;
}

.ctus .strip-addr {
font-size: 15px;
line-height: 1.9;
color: rgba(247, 248, 251, 0.7);
font-style: normal;
}

.ctus .dashed-frame {
border: 1.5px dashed rgba(97, 108, 190, 0.35);
border-radius: 16px;
padding: 20px;
margin-top: 16px;
}

@media (max-width: 1024px) {
.ctus .reach-grid {
gap: 40px;
}

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

.ctus .strip-grid {
grid-template-columns: 1fr 1fr;
gap: 40px;
}

.ctus .strip-about {
grid-column: 1 / -1;
padding-right: 0;
}
}

@media (max-width: 768px) {
.ctus .reach-grid {
grid-template-columns: 1fr;
gap: 40px;
}

.ctus .reach-strip {
padding: 40px 0 40px;
}

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

.ctus .form-card {
padding: 20px;
}

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

.ctus .strip-grid {
grid-template-columns: 1fr;
gap: 40px;
}

.ctus .strip-about {
grid-column: auto;
}
}

@media (max-width: 360px) {
.ctus .reach-heading {
font-size: 23px;
}

.ctus .form-card {
padding: 16px;
}

.ctus .submit-btn {
padding: 16px 20px;
font-size: 15px;
}
}

.abt {
background: #0d0e1a;
color: #F7F8FB;
overflow-x: clip;
position: relative;
}

.abt .pg-schema {
display: none;
}

.abt .strip {
width: 100%;
padding: 40px 0 40px;
position: relative;
overflow: hidden;
}

.abt .strip-row {
max-width: 1100px;
margin: 0 auto;
padding: 0 20px;
display: flex;
flex-direction: row;
align-items: center;
gap: 40px;
position: relative;
z-index: 2;
}

.abt .strip-left {
flex: 0 0 auto;
display: flex;
flex-direction: column;
gap: 8px;
}

.abt .strip-eyebrow {
font-size: 15px;
line-height: 1.5;
color: #9CB0CB;
letter-spacing: 0.12em;
text-transform: uppercase;
font-weight: 600;
}

.abt .strip-h1 {
font-size: 58px;
line-height: 1.1;
font-weight: 900;
color: #F7F8FB;
margin: 0;
letter-spacing: -0.01em;
}

.abt .strip-h1 em {
font-style: normal;
color: #616CBE;
}

.abt .strip-right {
flex: 1 1 auto;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-end;
gap: 20px;
}

.abt .strip-img-wrap {
width: 220px;
height: 220px;
flex-shrink: 0;
position: relative;
border-radius: 8px;
overflow: hidden;
box-shadow: -1px 10px 52px 0 rgba(97, 108, 190, 0.12);
}

.abt .strip-img-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
filter: grayscale(100%) contrast(1.1);
transition: filter 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt .strip-img-wrap:hover img {
filter: grayscale(60%) contrast(1.05);
}

.abt .strip-stat-col {
display: flex;
flex-direction: column;
gap: 16px;
flex-shrink: 0;
}

.abt .stat-pill {
background: linear-gradient(135deg, rgba(97, 108, 190, 0.18) 0%, rgba(97, 108, 190, 0.05) 100%);
border: 1px solid rgba(97, 108, 190, 0.28);
border-radius: 16px;
padding: 16px 20px;
display: flex;
flex-direction: column;
gap: 4px;
box-shadow: -1px 7px 20px 0 rgba(97, 108, 190, 0.10);
}

.abt .stat-num {
font-size: 43px;
line-height: 1.1;
font-weight: 900;
color: #F7F8FB;
}

.abt .stat-label {
font-size: 15px;
line-height: 1.5;
color: #9CB0CB;
}

.abt .strip-circles {
position: absolute;
top: -60px;
left: -80px;
width: 400px;
height: 400px;
pointer-events: none;
z-index: 1;
}

.abt .strip-circles svg {
width: 100%;
height: 100%;
}

.abt .about-body {
width: 100%;
padding: 80px 0;
background: linear-gradient(170deg, #111222 0%, #0d0e1a 55%, #10111f 100%);
position: relative;
}

.abt .about-body-inner {
max-width: 1100px;
margin: 0 auto;
padding: 0 20px;
display: grid;
grid-template-columns: 1fr 2fr;
gap: 80px;
align-items: start;
}

.abt .sidebar {
display: flex;
flex-direction: column;
gap: 40px;
position: sticky;
top: 40px;
}

.abt .sidebar-quote-mark {
font-size: 120px;
line-height: 0.8;
color: rgba(97, 108, 190, 0.18);
font-weight: 900;
user-select: none;
display: block;
margin-bottom: -20px;
}

.abt .sidebar-quote {
font-size: 19px;
line-height: 1.9;
color: #F7F8FB;
font-weight: 600;
margin: 0;
}

.abt .sidebar-divider {
width: 40px;
height: 2px;
background: linear-gradient(90deg, #616CBE 0%, #9CB0CB 100%);
border-radius: 4px;
flex-shrink: 0;
}

.abt .sidebar-portrait-row {
display: flex;
flex-direction: row;
align-items: center;
gap: 16px;
}

.abt .portrait-circle {
width: 64px;
height: 64px;
flex-shrink: 0;
border-radius: 50%;
overflow: hidden;
border: 2px solid rgba(97, 108, 190, 0.5);
box-shadow: -1px 7px 20px 0 rgba(97, 108, 190, 0.10);
position: relative;
}

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

.abt .portrait-dot {
position: absolute;
bottom: 2px;
right: 2px;
width: 12px;
height: 12px;
background: #616CBE;
border-radius: 50%;
border: 2px solid #111222;
}

.abt .portrait-meta {
display: flex;
flex-direction: column;
gap: 4px;
}

.abt .portrait-name {
font-size: 16px;
line-height: 1.5;
font-weight: 700;
color: #F7F8FB;
}

.abt .portrait-role {
font-size: 15px;
line-height: 1.5;
color: #9CB0CB;
}

.abt .about-main-col {
display: flex;
flex-direction: column;
gap: 40px;
}

.abt .text-block {
display: flex;
flex-direction: column;
gap: 16px;
opacity: 0;
transform: translateY(20px);
animation: abt-fadein 0.22s cubic-bezier(0.0, 0, 0.2, 1) forwards;
}

.abt .text-block:nth-child(1) {
animation-delay: 0.08s;
}

.abt .text-block:nth-child(2) {
animation-delay: 0.16s;
}

.abt .text-block:nth-child(3) {
animation-delay: 0.24s;
}

.abt .text-block:nth-child(4) {
animation-delay: 0.30s;
}

@keyframes abt-fadein {
to {
opacity: 1;
transform: translateY(0);
}
}

.abt .block-lead {
font-size: 15px;
line-height: 1.5;
font-weight: 700;
color: #616CBE;
letter-spacing: 0.08em;
text-transform: uppercase;
}

.abt .block-heading {
font-size: 23px;
line-height: 1.5;
font-weight: 900;
color: #F7F8FB;
margin: 0;
}

.abt .block-para {
font-size: 16px;
line-height: 1.9;
color: #b8c6d8;
margin: 0;
}

.abt .skills-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}

.abt .skill-item {
display: flex;
flex-direction: column;
gap: 8px;
padding: 16px;
background: rgba(97, 108, 190, 0.07);
border: 1px solid rgba(97, 108, 190, 0.15);
border-radius: 8px;
transition: border-color 0.18s cubic-bezier(0.4, 0, 0.2, 1), background 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt .skill-item:hover {
border-color: rgba(97, 108, 190, 0.4);
background: rgba(97, 108, 190, 0.12);
}

.abt .skill-name {
font-size: 15px;
line-height: 1.5;
font-weight: 700;
color: #F7F8FB;
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
}

.abt .skill-icon {
width: 18px;
height: 18px;
flex-shrink: 0;
color: #616CBE;
}

.abt .skill-bar-bg {
width: 100%;
height: 4px;
background: rgba(97, 108, 190, 0.15);
border-radius: 4px;
overflow: hidden;
}

.abt .skill-bar-fill {
height: 100%;
border-radius: 4px;
background: linear-gradient(90deg, #616CBE 0%, #9CB0CB 100%);
transform-origin: left center;
animation: abt-bar-grow 0.28s cubic-bezier(0.0, 0, 0.2, 1) 0.35s both;
}

@keyframes abt-bar-grow {
from {
transform: scaleX(0);
}

to {
transform: scaleX(1);
}
}

.abt .img-pair {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
margin-top: 8px;
}

.abt .img-frame {
border-radius: 8px;
overflow: hidden;
box-shadow: -1px 7px 20px 0 rgba(97, 108, 190, 0.10);
position: relative;
}

.abt .img-frame img {
width: 100%;
height: 180px;
object-fit: cover;
object-position: center;
display: block;
transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt .img-frame:hover img {
transform: scale(1.03);
}

.abt .img-frame-overlay {
position: absolute;
inset: 0;
background: linear-gradient(180deg, transparent 40%, rgba(13, 14, 26, 0.55) 100%);
pointer-events: none;
}

.abt .img-tall {
grid-row: span 2;
}

.abt .img-tall img {
height: 100%;
min-height: 200px;
}

.abt .img-pair-3col {
display: grid;
grid-template-columns: 2fr 1fr;
grid-template-rows: auto auto;
gap: 16px;
}

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

.abt .value-item {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 16px;
padding: 16px;
border-radius: 8px;
background: transparent;
border: 1px solid rgba(156, 176, 203, 0.12);
transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt .value-item:hover {
background: rgba(97, 108, 190, 0.08);
border-color: rgba(97, 108, 190, 0.3);
}

.abt .value-icon-wrap {
width: 36px;
height: 36px;
flex-shrink: 0;
border-radius: 8px;
background: rgba(97, 108, 190, 0.18);
display: flex;
align-items: center;
justify-content: center;
box-shadow: inset 0 1px 4px rgba(97, 108, 190, 0.25);
}

.abt .value-icon-wrap svg {
width: 18px;
height: 18px;
color: #9CB0CB;
}

.abt .value-text-col {
display: flex;
flex-direction: column;
gap: 4px;
}

.abt .value-label {
font-size: 15px;
line-height: 1.5;
font-weight: 700;
color: #F7F8FB;
}

.abt .value-desc {
font-size: 15px;
line-height: 1.5;
color: #9CB0CB;
margin: 0;
}

.abt .link-arrow {
display: inline-flex;
flex-direction: row;
align-items: center;
gap: 8px;
font-size: 15px;
line-height: 1.5;
font-weight: 700;
color: #9CB0CB;
text-decoration: none;
border-bottom: 1px solid rgba(156, 176, 203, 0.3);
padding-bottom: 4px;
transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.0, 0, 0.2, 1);
}

.abt .link-arrow:hover {
color: #F7F8FB;
border-color: rgba(97, 108, 190, 0.7);
}

.abt .link-arrow svg {
width: 16px;
height: 16px;
transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt .link-arrow:hover svg {
transform: translateX(4px);
}

@media (max-width: 1024px) {
.abt .strip-h1 {
font-size: 43px;
}

.abt .strip-img-wrap {
width: 180px;
height: 180px;
}

.abt .about-body-inner {
grid-template-columns: 1fr;
gap: 40px;
}

.abt .sidebar {
position: static;
}

.abt .strip-stat-col {
flex-direction: row;
}
}

@media (max-width: 768px) {
.abt .strip-row {
flex-direction: column;
align-items: flex-start;
gap: 20px;
}

.abt .strip-right {
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
}

.abt .strip-img-wrap {
width: 100%;
height: 200px;
}

.abt .strip-stat-col {
flex-direction: row;
flex-wrap: wrap;
}

.abt .stat-pill {
flex: 1 1 120px;
}

.abt .strip-h1 {
font-size: 43px;
}

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

.abt .img-pair-3col {
grid-template-columns: 1fr;
}

.abt .img-tall {
grid-row: span 1;
}

.abt .img-tall img {
height: 180px;
min-height: unset;
}

.abt .about-body {
padding: 40px 0;
}
}

@media (max-width: 360px) {
.abt .strip-h1 {
font-size: 43px;
}

.abt .stat-num {
font-size: 43px;
}

.abt .strip {
padding: 20px 0;
}
}

.success-page {
min-height: 80vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 80px 20px;
background: #0d0e1a;
position: relative;
overflow: hidden;
}

.success-page::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(160deg, rgba(97, 108, 190, 0.12) 0%, rgba(13, 14, 26, 0) 45%, rgba(156, 176, 203, 0.07) 100%);
pointer-events: none;
}

.success-page .success-card {
position: relative;
max-width: 560px;
width: 100%;
background: #13152a;
border: 1px solid rgba(97, 108, 190, 0.22);
border-radius: 16px;
padding: 40px;
box-shadow: -1px 10px 52px 0 rgba(97, 108, 190, 0.12), -1px 7px 20px 0 rgba(97, 108, 190, 0.10);
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}

.success-page .success-card .success-icon-wrap {
width: 72px;
height: 72px;
border-radius: 44px;
background: rgba(97, 108, 190, 0.13);
border: 1.5px solid rgba(97, 108, 190, 0.35);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-bottom: 20px;
box-shadow: inset 0 1px 12px 0 rgba(97, 108, 190, 0.18);
flex-shrink: 0;
}

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

.success-page .success-card .success-heading {
font-size: 43px;
line-height: 1.1;
font-weight: 900;
letter-spacing: -0.02em;
color: #F7F8FB;
margin: 0 0 16px 0;
}

.success-page .success-card .success-subtext {
font-size: 16px;
line-height: 1.9;
color: rgba(247, 248, 251, 0.72);
margin: 0 0 40px 0;
max-width: 420px;
}

.success-page .success-card .success-divider {
width: 100%;
height: 1px;
background: linear-gradient(90deg, rgba(97, 108, 190, 0) 0%, rgba(97, 108, 190, 0.35) 50%, rgba(97, 108, 190, 0) 100%);
margin-bottom: 40px;
}

.success-page .success-card .success-detail-list {
list-style: none;
padding: 0;
margin: 0 0 40px 0;
width: 100%;
display: flex;
flex-direction: column;
gap: 16px;
}

.success-page .success-card .success-detail-list li {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 16px;
text-align: left;
}

.success-page .success-card .success-detail-list li .detail-dot {
width: 8px;
height: 8px;
border-radius: 4px;
background: #616CBE;
flex-shrink: 0;
margin-top: 8px;
}

.success-page .success-card .success-detail-list li .detail-text {
font-size: 15px;
line-height: 1.5;
color: rgba(247, 248, 251, 0.65);
}

.success-page .success-card .success-detail-list li .detail-text strong {
color: #F7F8FB;
font-weight: 700;
}

.success-page .success-card .success-actions {
display: flex;
flex-direction: row;
gap: 16px;
flex-wrap: wrap;
justify-content: center;
width: 100%;
}

.success-page .success-card .action-btn-primary {
display: inline-flex;
flex-direction: row;
align-items: center;
gap: 8px;
padding: 16px 20px;
background: #616CBE;
color: #F7F8FB;
font-size: 15px;
font-weight: 700;
line-height: 1.1;
border: 2px solid #616CBE;
border-radius: 8px;
text-decoration: none;
cursor: pointer;
transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s cubic-bezier(0.0, 0, 0.2, 1);
box-shadow: -1px 7px 20px 0 rgba(97, 108, 190, 0.10);
}

.success-page .success-card .action-btn-primary:hover {
border-color: #9CB0CB;
}

.success-page .success-card .action-btn-primary:focus-visible {
outline: 2px solid #9CB0CB;
outline-offset: 3px;
}

.success-page .success-card .action-btn-secondary {
display: inline-flex;
flex-direction: row;
align-items: center;
gap: 8px;
padding: 16px 20px;
background: transparent;
color: #9CB0CB;
font-size: 15px;
font-weight: 700;
line-height: 1.1;
border: 2px solid rgba(156, 176, 203, 0.28);
border-radius: 8px;
text-decoration: none;
cursor: pointer;
transition: border-color 0.18s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-page .success-card .action-btn-secondary:hover {
border-color: #9CB0CB;
color: #F7F8FB;
}

.success-page .success-card .action-btn-secondary:focus-visible {
outline: 2px solid #9CB0CB;
outline-offset: 3px;
}

.success-page .success-card .action-btn-arrow {
display: inline-block;
width: 16px;
height: 16px;
flex-shrink: 0;
}

.success-page .success-tag {
display: inline-flex;
flex-direction: row;
align-items: center;
gap: 8px;
padding: 4px 16px;
background: rgba(97, 108, 190, 0.12);
border: 1px solid rgba(97, 108, 190, 0.25);
border-radius: 28px;
font-size: 15px;
font-weight: 700;
color: #9CB0CB;
letter-spacing: 0.08em;
text-transform: uppercase;
margin-bottom: 20px;
}

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

.success-page .success-card {
padding: 40px 20px;
}

.success-page .success-card .success-heading {
font-size: 23px;
}

.success-page .success-card .success-actions {
flex-direction: column;
align-items: stretch;
}

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

@media (max-width: 360px) {
.success-page .success-card {
padding: 20px 16px;
}
}