.main {
    position: relative;
    padding: 72px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #06101a 0%, #422200 100%);
    color: #e6eef8;
}
.main__canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.25;
}

/* Hero Mining Section */
.hero-mining {
    position: relative;
    min-height: 600px;

    border-radius: 18px;
    overflow: hidden;
    padding: 80px 60px;

    max-width: unset !important;

    & .wrapper {
        gap: 64px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        & > div:last-child {
            border-radius: 24px;
            background-color: #06101a2d;
            padding: 12px;
            z-index: 2;
        }

        @media (max-width: 768px) {
            flex-direction: column-reverse;
            gap: 32px;
        }
    }
}

.hero-mining__background {
    position: absolute;
    inset: 0;
    background: url("/assets/homeBg.webp") center/cover no-repeat;
    z-index: 1;
    opacity: 0.3;
}

.hero-mining__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 16, 26, 0.85) 0%,
        rgba(66, 34, 0, 0.75) 50%,
        rgba(2, 8, 23, 0.88) 100%
    );
    z-index: 2;
}

.hero-mining__content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    color: #e6eef8;
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-mining__badge {
    display: inline-block;
    background: rgba(255, 127, 43, 0.15);
    border: 1px solid rgba(255, 127, 43, 0.4);
    color: #ff7f2b;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-mining__title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 20px 0;
    color: #fff;
    letter-spacing: -0.02em;
}

.hero-mining__description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(230, 238, 248, 0.8);
    margin: 0 0 40px 0;
    max-width: 600px;
}

.hero-mining__stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ff7f2b, #f85c5c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: rgba(230, 238, 248, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-mining__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn__primary {
    background: linear-gradient(90deg, #ff7f2b, #f85c5c);
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn__primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 127, 43, 0.3);
}

.btn__secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #dbe9ff;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn__secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Mining Process Section */
.mining-process {
    border-radius: 18px;
    color: #e6eef8;
    & a {
        max-width: max-content;
    }
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-header h2 {
    font-size: 44px;
    font-weight: 800;
    /* color: #fff; */
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
}

.process-header p {
    font-size: 18px;
    /* color: rgba(230, 238, 248, 0.7); */
    margin: 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.process-step {
    /* background: rgba(255, 255, 255, 0.03); */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;

    background: rgba(255, 127, 43, 0.08);
    border-color: rgba(255, 127, 43, 0.2);
}

.process-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff7f2b, #f85c5c);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.process-step:hover {
    transform: translateY(-8px);
}

.process-step:hover::before {
    opacity: 1;
}

.step-number {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff7f2b, #f85c5c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.step-image {
    width: 100%;
    height: 140px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-step h3 {
    font-size: 16px;
    font-weight: 700;
    /* color: #fff; */
    margin: 0;
}

.process-step p {
    font-size: 13px;
    /* color: rgba(230, 238, 248, 0.7); */
    margin: 0;
    line-height: 1.5;
}

.process-features {
    background: rgba(255, 127, 43, 0.08);
    border: 1px solid rgba(255, 127, 43, 0.15);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
}

.process-features h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(230, 238, 248, 0.9);
}

.feature-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.process-cta {
    text-align: center;
}

.process-cta .btn__primary {
    padding: 16px 48px;
    font-size: 16px;
}

@media (max-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mining-process {
        padding: 40px 24px;
    }

    .process-header h2 {
        font-size: 32px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .process-step p {
        font-size: 12px;
    }
}

/* Old studio styles kept for compatibility */
.studio__grid {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 48px;
    align-items: center;
    /* padding: 40px 0; */
}
.studio__panel {
    max-width: 780px;
}
.studio__title {
    font-size: 48px;
    line-height: 1.02;
    margin: 0 0 14px 0;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.studio__tagline {
    color: rgba(230, 238, 248, 0.78);
    font-size: 18px;
    margin-bottom: 24px;
}
.studio__benefits {
    display: flex;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0 0 26px 0;
}
.studio__benefits li {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 12px 16px;
    border-radius: 10px;
    color: rgba(230, 238, 248, 0.9);
    font-size: 14px;
}
.studio__benefits .b {
    color: #dbe9ff;
    font-weight: 600;
}
.studio__actions {
    margin-top: 6px;
    display: flex;
    gap: 12px;
}
.btn__ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #dbe9ff;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
}
.btn__outline {
    background: linear-gradient(90deg, #f85c5c, #ff6f2b);
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
}
.studio__showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.studio__showcase img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(2, 8, 23, 0.6);
    transform: translateY(-6px);
}
.studio__badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(0, 0, 0, 0.45);
    padding: 8px 12px;
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    backdrop-filter: blur(6px);
}

@media (max-width: 1200px) {
    .studio__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .studio__showcase {
        order: -1;
    }
    .studio__benefits {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-mining {
        padding: 12px;
        & h1 {
            font-size: 42px !important;
        }
    }
    .hero-mining__content {
        width: 100%;
    }
    .main {
        padding: 32px;
    }
    .studio__title {
        font-size: 34px;
    }
    .studio__tagline {
        font-size: 15px;
    }
    .studio__benefits li {
        font-size: 13px;
        padding: 10px 12px;
    }
    .studio__actions {
        flex-direction: column;
    }
}
