.soil-about-hero {
    position: relative;
    background-size: cover;
    background-position: top;
    padding: 10% 0;
    color: #fff;
    overflow: hidden
}

.soil-about-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.4
}

.soil-about-inner {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: block
}

.soil-about-content {
    max-width: 640px
}

.soil-kicker {
    font-family: "Aldrich", Sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    color: #00E5A3;
    margin: 0 0 16px 0;
    font-weight: 400;
    letter-spacing: 0.40em;
}

.soil-heading {
    font-family: "Aldrich", Sans-serif;
    font-size: 68px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff !important;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.soil-desc {
    font-family: "Aldrich", Sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #cccccc;
    margin: 0 0 32px 0;
    letter-spacing: 0.10em;
    font-weight: 400;
}

.soil-meta {
    font-family: "Aldrich", Sans-serif;
    font-size: 14px;
    color: #6bd4b5;
    margin-bottom: 22px
}

.soil-buttons {
    display: flex;
    gap: 14px
}

.soil-btn {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700
}

.soil-btn-primary,
.soil-btn-outline {
    position: relative;
    font-family: "Aldrich", Sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none !important;

    border-radius: 999px;
    background: rgba(0, 229, 163, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

/* 
.soil-btn-primary::before,
.soil-btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
    transform: translateX(-140%);
    transition: transform 0.7s ease;
    pointer-events: none;
} */

.soil-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none !important;
    color: #00E5A3;
    border-radius: 999px;
    background: #29252e4f;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.soil-btn-primary:hover,
.soil-btn-outline:hover {
    background-color: rgba(0, 229, 163, 0.1) !important;
    box-shadow: 0 0 0px #00e5a333, 0 0 2px #00e5a354, inset 0 0 5px rgba(0, 229, 163, 0.2) !important;
    backdrop-filter: blur(1px);
    color: #fff;
}

/* .soil-btn-primary:hover::before,
.soil-btn-outline:hover::before {
    transform: translateX(140%);
} */

.soil-btn-outline {
    color: #00E5A3;
}

/* watermark */
.soil-watermark {
    position: absolute;
    right: 6%;
    top: 30%;
    font-size: 220px;
    color: rgba(0, 0, 0, 0.06);
    font-weight: 900;
    letter-spacing: 20px;
    pointer-events: none
}

/* right-side graphic (globe) */
.soil-hero-graphic {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 620px;
    height: 620px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 30px 80px rgba(0, 200, 140, 0.08));
    opacity: 1;
    pointer-events: none
}

/* neon rim around graphic */
.soil-hero-graphic:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 80px 18px rgba(0, 247, 165, 0.06), 0 0 30px 6px rgba(0, 200, 140, 0.06);
    pointer-events: none
}

/* simple animation classes 
.soil-anim-fade.soil-animate {
    opacity: 0;
    transform: translateY(10px)
}*/

.soil-anim-fade.soil-animate.soil-animated {
    animation: soilFade .8s forwards
}

@keyframes soilFade {
    to {
        opacity: 1;
        transform: none
    }
}

.soil-anim-slide-left.soil-animate {
    opacity: 0;
    transform: translateX(-30px)
}

.soil-anim-slide-left.soil-animate.soil-animated {
    animation: soilSlideLeft .8s forwards
}

@keyframes soilSlideLeft {
    to {
        opacity: 1;
        transform: none
    }
}

.soil-anim-slide-right.soil-animate {
    opacity: 0;
    transform: translateX(30px)
}

.oil-anim-slide-right.soil-animate.soil-animated {
    animation: soilSlideRight .8s forwards
}

@keyframes soilSlideRight {
    to {
        opacity: 1;
        transform: none
    }
}

.soil-anim-zoom.soil-animate {
    opacity: 0;
    transform: scale(.96)
}

.soil-anim-zoom.soil-animate.soil-animated {
    animation: soilZoom .8s forwards
}

@keyframes soilZoom {
    to {
        opacity: 1;
        transform: none
    }
}

/* responsive */
@media (max-width:900px) {
    .soil-heading {
        font-size: 36px
    }

    .soil-hero-graphic {
        display: none
    }

    .soil-watermark {
        font-size: 120px;
        right: 4%;
        top: 20%
    }

    .soil-about-hero {
        padding: 60px 18px
    }

    .soil-about-inner {
        padding: 0 12px;
        box-sizing: border-box
    }

    .soil-about-content {
        max-width: 100%;
        width: 100%;
        margin: 0 auto
    }

    .soil-buttons {
        flex-direction: column;
        gap: 12px
    }

    .soil-btn {
        width: 100%;
        text-align: center;
        padding: 12px 18px;
        border-radius: 8px
    }

    .soil-btn-primary,
    .soil-btn-outline {
        padding: 12px 18px;
        font-size: 14px;
        letter-spacing: 1.6px
    }
}

@media (max-width:600px) {
    .soil-heading {
        font-size: 28px;
        line-height: 1.05
    }

    .soil-watermark {
        display: none
    }

    .soil-about-hero {
        padding: 40px 14px
    }

    .soil-hero-graphic {
        display: none
    }
}