.pricing,
.text-center {
    text-align: center
}

.footer-column a,
.social-links a {
    transition: color var(--transition-fast)
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('/static/fonts/SFPRODISPLAYREGULAR.OTF') format('opentype');
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('/static/fonts/SFPRODISPLAYMEDIUM.OTF') format('opentype');
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('/static/fonts/SFPRODISPLAYBOLD.OTF') format('opentype');
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('/static/fonts/SFPRODISPLAYBLACKITALIC.OTF') format('opentype');
    font-weight: 900;
    font-style: italic
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('/static/fonts/SFPRODISPLAYHEAVYITALIC.OTF') format('opentype');
    font-weight: 800;
    font-style: italic
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('/static/fonts/SFPRODISPLAYLIGHTITALIC.OTF') format('opentype');
    font-weight: 300;
    font-style: italic
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('/static/fonts/SFPRODISPLAYSEMIBOLDITALIC.OTF') format('opentype');
    font-weight: 600;
    font-style: italic
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('/static/fonts/SFPRODISPLAYTHINITALIC.OTF') format('opentype');
    font-weight: 100;
    font-style: italic
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('/static/fonts/SFPRODISPLAYULTRALIGHTITALIC.OTF') format('opentype');
    font-weight: 200;
    font-style: italic
}

:root {
    --primary-blue: #0059FF;
    --primary-red: #ff0000;
    --text-dark: #202124;
    --text-light: #5f6368;
    --bg-light: #f8f9fa;
    --bg-blue: #0059FF;
    --bg-light-gray: #f1f3f4;
    --border-color: #dadce0;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 17px;
    --border-radius-xl: 512px;
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.1)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'SF Pro Display', sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg)
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

body::-webkit-scrollbar {
    width: 10px
}

body::-webkit-scrollbar-track {
    background: 0 0
}

body::-webkit-scrollbar-thumb {
    background-color: var(--bg-blue);
    border-radius: 20px;
    border: 2px solid transparent
}

.btn,
.nav-item {
    border-radius: var(--border-radius-xl)
}

header {
    padding: var(--spacing-lg) 0
}

nav {
    display: flex;
    align-items: center
}

.nav-items,
.social-links {
    display: flex;
    gap: var(--spacing-md)
}

.nav-item {
    padding: var(--spacing-sm) var(--spacing-md);
    font-weight: 500;
    transition: background-color var(--transition-fast);
    color: #9c9c9c
}

.btn-primary,
.nav-item.active,
.nav-item:hover {
    background-color: var(--primary-blue);
    color: #fff
}

.btn-outline.red,
.btn-text.red {
    color: var(--primary-red)
}

.hero {
    position: relative;
    padding: var(--spacing-xxl) 0
}

.hero-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-xxl)
}

.culture-sidebar .culture-card,
.hero-text {
    flex: 1
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: end
}

.hero-actions,
.trust-badge {
    align-items: center;
    display: flex
}

.hero h1 {
    font-size: clamp(2rem, 5.5vw, 3.3rem);
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    line-height: 1.2
}

.hero p {
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: #00000035;
    margin-bottom: var(--spacing-xl)
}

.crypto-type,
.feature-card h2,
.pricing h2 {
    margin-bottom: var(--spacing-md)
}

.hero-actions {
    gap: var(--spacing-lg)
}

.hero-actions .btn {
    min-height: 63px;
    font-size: 25px
}

.trust-badge {
    gap: var(--spacing-sm);
    font-size: .875rem;
    color: var(--text-light)
}

.footer-column a:hover,
.icon-shield,
.social-links a:hover,
.trust-badge span {
    color: var(--primary-blue)
}

.trust-badge span {
    font-size: 1.5rem;
    line-height: 2rem
}

.icon-shield {
    display: flex;
    align-items: center;
    justify-content: center
}

@media (max-width:993px) {
    .hero h1 {
        font-weight: 600
    }

    .hide-mobile {
        display: none !important
    }

    .hero-content {
        flex-direction: column
    }

    .hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: .1;
        z-index: 0;
        justify-content: center;
        align-items: center;
        pointer-events: none
    }

    .hero-image img {
        width: 100%;
        height: auto;
        object-fit: cover
    }

    .hero-text {
        position: relative;
        z-index: 1
    }
}

.btn,
.crypto-type,
.pricing h2 {
    font-weight: 500
}

.btn,
.btn-text {
    display: inline-flex;
    align-items: center
}

.btn {
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-xl);
    transition: all var(--transition-fast);
    cursor: pointer
}

.btn-primary:hover {
    background-color: #0d62d0;
    box-shadow: var(--shadow-md)
}

.btn-outline:hover,
.btn-text:hover,
.feature-card.light {
    background-color: var(--bg-light-gray)
}

.btn-outline {
    border: 1px solid var(--border-color);
    color: var(--text-dark)
}

.feature-card,
.pricing-card {
    border-radius: var(--border-radius-lg)
}

.btn-text,
.faq-answer p {
    color: var(--text-light)
}

.btn-outline.red {
    border-color: var(--primary-red)
}

.btn-outline.red:hover {
    background-color: rgba(255, 0, 0, .05)
}

.btn-text {
    padding: var(--spacing-sm) var(--spacing-md);
    gap: var(--spacing-xs)
}

.btn-text:hover {
    border-radius: var(--border-radius-sm)
}

.icon-fast {
    display: flex;
    align-items: center;
    justify-content: center
}

.faq,
.features,
.team {
    padding: var(--spacing-xxl) 0
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--spacing-md)
}

.features-grid>:first-child {
    grid-column: 1;
    grid-row: 1
}

.features-grid>:nth-child(2) {
    grid-column: 1;
    grid-row: 2
}

.features-grid>:nth-child(3) {
    grid-column: 2;
    grid-row: 1/span 2
}

.feature-card {
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column
}

.culture-card.blue,
.feature-card.blue {
    background-color: var(--bg-blue);
    color: #fff
}

.feature-card.red {
    background-color: var(--primary-red)
}

.feature-content {
    padding: var(--spacing-xl);
    flex: 1
}

.feature-card h2 {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 500
}

.feature-card p {
    font-size: clamp(1rem, 2.2vw, 1.375rem);
    opacity: .35
}

.feature-image {
    height: 200px;
    overflow: hidden
}

.feature-image.full {
    height: 100%
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.pricing {
    padding: var(--spacing-xxl) 0
}

.pricing h2 {
    font-size: clamp(2rem, 5.5vw, 3.3rem);
    line-height: 1.2
}

.faq h2,
.pricing p {
    margin-bottom: var(--spacing-xl)
}

.pricing p {
    font-size: clamp(1.25rem, 4vw, 2.1875rem);
    line-height: 1.1;
    opacity: .35;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl)
}

.pricing-card {
    background-color: #fff;
    padding: var(--spacing-xl);
    min-width: 240px;
    text-align: left
}

.pc-menu,
footer {
    background-color: #f0f0f0
}

.faq h2,
.faq-answer,
.faq-question h3,
.team-title {
    text-align: center
}

.pricing-card.eth {
    background-color: #627eea12
}

.pricing-card.trx {
    background-color: #ff202012
}

.crypto-icon.eth,
.pricing-card.eth .btn {
    background-color: #627eea;
    color: #fff
}

.pricing-card.eth .btn {
    height: 40px;
    font-size: 18px;
    max-width: 105px;
    margin-top: 10px
}

.pricing-card.trx .btn {
    background-color: #ff2020;
    height: 40px;
    font-size: 18px;
    color: #fff;
    max-width: 105px;
    margin-top: 10px
}

.pricing-card.eth .fast,
.pricing-card.trx .fast {
    height: 40px;
    font-size: 18px;
    max-width: 78px;
    display: flex;
    align-items: center;
    border-radius: 500px;
    gap: 5px;
    width: 100%;
    margin-top: 10px
}

.pricing-card.eth .fast {
    background-color: #627EEA12;
    color: #627eea;
    justify-content: center
}

.pricing-card.trx .fast {
    background-color: #ff202012;
    color: #ff2020;
    justify-content: center
}

.crypto-icon,
.crypto-type {
    display: flex;
    align-items: center
}

.crypto-type {
    gap: var(--spacing-sm);
    font-size: .875rem
}

.crypto-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    justify-content: center;
    font-weight: 700
}

.crypto-actions,
.faq-question {
    align-items: center;
    gap: var(--spacing-md);
    display: flex
}

.crypto-icon.trx {
    background-color: var(--primary-red);
    color: #fff
}

.crypto-price {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: var(--spacing-xs)
}

.crypto-per {
    font-size: clamp(1.125rem, 3vw, 1.3rem);
    font-weight: 500;
    color: #aba9b0;
    margin-bottom: var(--spacing-lg)
}

.faq h2 {
    font-size: clamp(2rem, 5.5vw, 3.3rem);
    font-weight: 700
}

.faq-list {
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-lg) 0
}

.faq-question {
    justify-content: center;
    cursor: pointer
}

.faq-question h3 {
    font-size: clamp(1.25rem, 3vw, 1.8rem);
    font-weight: 600
}

.icon-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast)
}

.faq-item.active .icon-arrow {
    transform: rotate(180deg)
}

.faq-answer {
    padding-left: calc(16px + var(--spacing-md));
    margin-top: var(--spacing-md);
    display: none
}

.faq-item.active .faq-answer {
    display: block
}

.faq-answer p {
    font-size: clamp(1rem, 2.2vw, 1.375rem)
}

footer {
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    margin-top: var(--spacing-xxl)
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-xl)
}

.footer-logo h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md)
}

.footer-links {
    display: flex;
    gap: var(--spacing-xxl)
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
    font-weight: 600
}

.footer-bottom,
.footer-column a {
    font-size: .875rem;
    color: var(--text-light)
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color)
}

.social-links a {
    color: var(--text-light)
}

[data-aos=fade-up] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s, transform .6s
}

.aos-animate[data-aos=fade-up] {
    opacity: 1;
    transform: translateY(0)
}

@media (min-width:800px) {
    .hero-text {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        min-height: 580px;
        padding: 20px;
        box-sizing: border-box
    }

    .nav-items {
        display: flex;
        gap: 20px
    }

    .hero-actions {
        margin-top: 20px
    }

    header {
        display: none
    }
}

.pc-menu {
    width: max-content;
    border-radius: var(--border-radius-xl);
    padding: 10px 20px
}

@media (max-width:800px) {
    .pc-menu {
        display: none !important
    }
}

@media (max-width:992px) {
    .hero-content {
        flex-direction: column
    }

    .hero-text {
        text-align: center
    }

    .hero-actions {
        justify-content: center
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center
    }

    .pricing-card {
        width: 100%;
        max-width: 400px
    }
}

@media (max-width:768px) {
    .features-grid {
        grid-template-columns: 1fr
    }

    .features-grid>* {
        grid-column: auto !important;
        grid-row: auto !important
    }

    .footer-content,
    .footer-links {
        flex-direction: column;
        gap: var(--spacing-xl)
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-lg);
        text-align: center
    }

    .hero h1 {
        font-size: 2rem
    }
}

@media (max-width:576px) {
    .nav-items {
        justify-content: space-between;
        border-radius: var(--border-radius-xl);
        padding: 10px 20px;
        background-color: #f0f0f0
    }

    .nav-item {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: .875rem
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch
    }

    .trust-badge {
        justify-content: center
    }

    .hero h1 {
        font-size: 1.75rem
    }

    .feature-card h2 {
        font-size: 1.25rem
    }
}

@media (max-width:425px) {
    .right-image {
        display: block !important;
        padding-right: var(--spacing-xl) !important
    }

    .about-1-mobile {
        display: block !important;
        width: 100%;
        margin-top: var(--spacing-md)
    }

    .about-1 {
        display: none
    }
}

.right-image {
    display: flex;
    justify-content: space-between;
    gap: var(--border-radius-sm);
    padding-right: 0
}

.right-image .image {
    min-width: 180px
}

.about-1-mobile {
    display: none
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.mt-sm {
    margin-top: var(--spacing-sm)
}

.analysis {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto
}

.category {
    margin-bottom: 50px
}

.category h2 {
    font-size: clamp(2rem, 5.5vw, 3rem);
    margin-bottom: 24px
}

.items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.culture-layout,
.culture-main {
    gap: var(--spacing-md);
    display: flex
}

.item {
    position: relative;
    padding-left: 26px;
    font-size: clamp(1rem, 2.2vw, 1.375rem);
    color: #00000035;
    line-height: 1.5
}

.item strong {
    color: #000;
    font-size: clamp(1.25rem, 4vw, 2rem);
    font-weight: 500
}

.item::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 15px
}

.item.red::before {
    background-color: #ff3b30
}

.item.blue::before {
    background-color: #007aff
}

.item.orange::before {
    background-color: #ff9500
}

.culture .culture-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: var(--spacing-sm)
}

.culture .culture-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: #999;
    line-height: 1.5
}

.culture-layout {
    align-items: stretch;
    margin-top: 30px;
    flex-wrap: wrap
}

.culture-main {
    flex: 1;
    flex-direction: column;
    min-width: 0
}

.culture-sidebar {
    flex: 0 0 295px;
    max-width: 295px;
    width: 100%;
    display: flex;
    flex-direction: column
}

.culture-card,
.team-card {
    border-radius: var(--border-radius-lg);
    flex-direction: column;
    height: 100%
}

.culture-card {
    padding: var(--spacing-lg);
    display: flex;
    justify-content: center;
    transition: .5s
}

.culture-card:hover {
    scale: 1.02
}

.culture-card h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    margin-bottom: var(--spacing-sm)
}

.culture-card p {
    font-size: clamp(.95rem, 2vw, 1.25rem);
    line-height: 1.5
}

.culture-card.blue p {
    color: #ffffff70
}

.culture-card.light {
    background-color: var(--bg-light-gray);
    color: #000
}

.culture-card.light p {
    color: #00000035
}

@media (max-width:768px) {
    .items-grid {
        grid-template-columns: 1fr
    }

    .category h2 {
        font-size: 26px
    }

    .culture-layout {
        flex-direction: column
    }

    .culture-sidebar {
        max-width: 100%;
        flex: 1
    }

    .culture-sidebar .culture-card {
        flex: unset
    }
}

.animated {
    animation: 3.5s ease-in-out infinite floaty
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.team-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: var(--spacing-xl)
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
    justify-items: center
}

.team-card {
    background-color: #f2f2f2;
    overflow: hidden;
    display: flex;
    max-width: 320px;
    width: 100%
}

.team-photo {
    background-color: #eee;
    aspect-ratio: 1/1;
    overflow: hidden
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.team-info {
    background-color: var(--bg-blue);
    color: #fff;
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

.team-info .job-title {
    font-size: clamp(1rem, 2.2vw, 1rem);
    opacity: .6
}

.team-info .name {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600
}