:root {
    --primary: #5d5fef;
    --secondary: #8d5cff;
    --dark: #0f172a;
    --text: #5b6475;
    --light-bg: #f7f9fc;
    --border: #e8edf5;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #5d5fef 0%, #8d5cff 100%);
}

body {
    overflow-x: hidden;
}

.sc-page {
    background: #fff;
}

.sc-section-space {
    padding: 80px 0;
    position: relative;
}

.sc-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 25px;
}

.sc-subtitle {
    font-size: 17px;
    color: var(--text);
    line-height: 1.9;
}

.sc-section-title {
    font-size: 38px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.sc-section-text {
    color: var(--text);
    line-height: 1.9;
    font-size: 16px;
}

.sc-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
    background:
        radial-gradient(
            circle at top right,
            rgba(93, 95, 239, 0.12),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(141, 92, 255, 0.12),
            transparent 35%
        ),
        #fff0f0;
}

.sc-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(93, 95, 239, 0.08);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    filter: blur(80px);
}

.sc-hero::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(141, 92, 255, 0.08);
    border-radius: 50%;
    bottom: -200px;
    left: -100px;
    filter: blur(80px);
}

.sc-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(93, 95, 239, 0.1);
    color: var(--primary);
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 14px;
}

.sc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    background: var(--gradient);
    color: #fff;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(93, 95, 239, 0.25);
}

.sc-btn:hover {
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 20px 45px rgba(93, 95, 239, 0.35);
}

.sc-hero-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.sc-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(93, 95, 239, 0.05),
        rgba(141, 92, 255, 0.05)
    );
}

.sc-floating-box {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
    transition: all 0.4s ease;
}

.sc-floating-box:hover {
    transform: translateY(-10px);
}

.sc-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: var(--gradient);
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 15px 35px rgba(93, 95, 239, 0.2);
}

.sc-card {
    background: #fff;
    border-radius: 28px;
    padding: 35px;
    border: 1px solid var(--border);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.sc-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    top: 0;
    left: 0;
    transform: scaleX(0);
    transition: 0.4s;
}

.sc-card:hover::before {
    transform: scaleX(1);
}

.sc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);
}

.sc-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--dark);
}

.sc-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sc-check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    color: var(--text);
    line-height: 1.8;
}

.sc-check-list li::before {
    content: "\F26E";
    font-family: bootstrap-icons;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-size: 18px;
}

.sc-gradient-section {
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.sc-feature-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.05);
    transition: all 0.4s ease;
    border: 1px solid var(--border);
}

.sc-feature-card:hover {
    transform: translateY(-8px);
}

.sc-platform-box {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    height: 100%;
}

.sc-platform-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.sc-platform-box i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.sc-platform-box h5 {
    margin: 0;
    font-weight: 700;
    color: var(--dark);
}

.sc-faq {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 20px;
}

.accordion-button {
    font-weight: 700;
    color: var(--dark);
    padding: 22px 25px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(93, 95, 239, 0.05);
    color: var(--primary);
}

.accordion-body {
    color: var(--text);
    line-height: 1.9;
    padding: 0 25px 25px;
}

.sc-cta {
    position: relative;
    overflow: hidden;
}

.sc-cta-box {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    background: var(--gradient);
    padding: 80px 60px;
    color: #fff;
    z-index: 1;
}

.sc-cta-box::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -180px;
    right: -150px;
}

.sc-cta-box::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    bottom: -180px;
    left: -100px;
}

.sc-white-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    background: #fff;
    color: var(--primary);
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
}

.sc-white-btn:hover {
    transform: translateY(-5px);
    color: var(--primary);
}

.sc-mini-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 15px;
}

.sc-usecase-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    border: 1px solid var(--border);
    height: 100%;
    transition: 0.4s ease;
}

.sc-usecase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.sc-usecase-card h4 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--dark);
}

.sc-divider {
    width: 90px;
    height: 5px;
    border-radius: 30px;
    background: var(--gradient);
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .sc-title {
        font-size: 36px;
    }

    .sc-section-title {
        font-size: 32px;
    }

    .sc-section-space {
        padding: 70px 0;
    }

    .sc-cta-box {
        padding: 60px 30px;
    }
}

@media (max-width: 767px) {
    .sc-title {
        font-size: 30px;
    }

    .sc-section-title {
        font-size: 28px;
    }

    .sc-hero {
        padding: 120px 0 80px;
    }
}

.sc-dark-section .sc-section-title,
.sc-dark-section .sc-section-text,
.sc-dark-section .sc-mini-title,
.sc-dark-section .sc-check-list li {
    color: #fff !important;
}

.sc-section-space:nth-child(even)::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(93, 95, 239, 0.04);
    border-radius: 50%;
    top: -120px;
    right: -120px;
    filter: blur(50px);
    z-index: 0;
}

.sc-section-space:nth-child(odd)::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(141, 92, 255, 0.05);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    filter: blur(50px);
    z-index: 0;
}

.sc-section-space>* {
    position: relative;
    z-index: 2;
}

.sc-section-space {
    position: relative;
}

.sc-section-space:nth-child(2n) {
    padding-top: 80px;
    padding-bottom: 80px;
}

.sc-section-space:nth-child(3n) {
    padding-top: 80px;
    padding-bottom: 80px;
}

.sc-section-space:nth-child(4n) {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Platforms section design */
/* =========================
   SMART CONTRACT PLATFORM SECTION
========================= */

.scp-platform-flow {
    position: relative;
}

.scp-flow-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    position: relative;
}

.scp-flow-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 38px;
    top: 85px;
    width: 2px;
    height: 45px;
    background: linear-gradient(to bottom,
            rgba(93, 95, 239, 0.4),
            rgba(141, 92, 255, 0.1));
}

.scp-flow-icon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.scp-flow-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.scp-ethereum {
    background: linear-gradient(135deg, #ecf2ff, #dbeafe);
}

.scp-bsc {
    background: linear-gradient(135deg, #fff6db, #ffe89a);
}

.scp-polygon {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
}

.scp-solana {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}

.scp-flow-item h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.scp-flow-item p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 0;
}

/* CENTER CHAIN */

.scp-chain-center {
    position: relative;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.scp-chain-line {
    position: absolute;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom,
            #5d5fef,
            #8d5cff);
    border-radius: 30px;
    opacity: 0.15;
}

.scp-chain-box {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    animation: scpFloatY 4s ease-in-out infinite;
}

.scp-chain-box:nth-child(3) {
    animation-delay: 0.5s;
}

.scp-chain-box:nth-child(4) {
    animation-delay: 1s;
}

.scp-chain-box:nth-child(5) {
    animation-delay: 1.5s;
}

.scp-chain-box:nth-child(6) {
    animation-delay: 2s;
}

.scp-chain-box img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.scp-ethereum-bg {
    background: linear-gradient(135deg, #dbeafe, #ecf2ff);
}

.scp-bsc-bg {
    background: linear-gradient(135deg, #fff2b3, #ffe082);
}

.scp-polygon-bg {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
}

.scp-solana-bg {
    background: linear-gradient(135deg, #d1fae5, #bbf7d0);
}

.scp-avalanche-bg {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
}

/* RIGHT CARDS */

.scp-platform-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 35px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
    transition: all 0.4s ease;
}

.scp-platform-card:hover {
    transform: translateY(-10px);
}

.scp-platform-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 25px;
}

.scp-platform-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.scp-platform-card p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 0;
}

/* FLOATING ANIMATION */

@keyframes scpFloatY {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* RESPONSIVE */

@media(max-width:991px) {

    .scp-chain-center {
        display: none;
    }

    .scp-platform-card {
        padding: 28px;
    }

    .scp-flow-item {
        gap: 15px;
    }

    .scp-flow-icon {
        width: 65px;
        height: 65px;
    }
}
