
html, body {
    margin: 0;
    padding: 0;
    background-image: linear-gradient(130deg, #0f1a10, #1c2b1a);
    font-family: 'Cormorant Garamond', serif;
    color: #e9f5e4;
    overflow-x: hidden;
}

.biowrap-fieldzone {
    display: flex;
    flex-direction: column;
    gap: 70px;
    padding: 40px 0 130px 0;
    animation: bioslideAppear 1.4s ease forwards;
    opacity: 0;
}

@keyframes bioslideAppear {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}


.sprout-deck {
    width: 92%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 55px;
}


.sprout-fragment {
    background: rgba(255,255,255,0.07);
    border-radius: 22px;
    padding: 34px 30px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    cursor: default;
    position: relative;
    overflow: visible;
    transition: 0.35s ease;
}


.sprout-fragment:hover {
    border-color: #8fda7a;
    box-shadow: 0 0 28px rgba(143,218,122,0.25);
}


.sprout-fragment::before {
    content: "";
    position: absolute;
    top: -1px;
    bottom: 0;
    right: 0;
    left: 0;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%'><path d='M0 50 Q40 10 80 50 T160 50' stroke='rgba(143,218,122,0.12)' stroke-width='1' fill='none'/></svg>");
    opacity: 0.25;
    pointer-events: none;
}


.sprout-name {
    font-size: 1.7rem;
    margin-bottom: 14px;
    letter-spacing: 0.4px;
    font-weight: 700;
}


.sprout-desc {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.65;
    white-space: normal;
}


.sprout-desc h3 {
    margin-top: 20px;
    font-size: 1.25rem;
    color: #c5f2b9;
}

.sprout-desc ul {
    margin: 14px 0;
    padding-left: 20px;
}

.sprout-desc li {
    margin-bottom: 8px;
}


.rootsNavBar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 78px;
    background: rgba(20,35,22,0.85);
    border-top: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    animation: riseBar 0.9s ease forwards;
    transform: translateY(100%);
}

@keyframes riseBar {
    to { transform: translateY(0); }
}

.navBud {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    cursor: pointer;
    color: #d8f5d1;
    transition: 0.25s ease;
}

.navBud:hover {
    color: #8fda7a;
    transform: translateY(-4px);
}

.navBud svg {
    width: 26px;
    height: 26px;
    margin-bottom: 4px;
    transition: 0.3s ease;
}

.navBud:hover svg {
    filter: drop-shadow(0 0 6px rgba(143,218,122,0.45));
}

.biopulse-interlink {
    position: relative;
    width: 100%;
    height: 140px;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0 40px 0;
}


.biopulse-stem {
    width: 72%;
    height: 6px;
    background: linear-gradient(90deg, 
        rgba(143,218,122,0.15), 
        rgba(143,218,122,0.35), 
        rgba(143,218,122,0.15)
    );
    border-radius: 50px;
    filter: blur(0.7px);
    position: relative;
    opacity: 0.9;
}


.biopulse-pulse {
    position: absolute;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, #bafaa1 0%, #8fda7a 60%, transparent 75%);
    border-radius: 50%;
    animation: pulseTravel 4.8s infinite ease-in-out;
    filter: drop-shadow(0 0 8px #8fda7a);
    opacity: 0.85;
}

@keyframes pulseTravel {
    0% { transform: translateX(-36%) scale(0.9); opacity: 0.8; }
    50% { transform: translateX(36%) scale(1); opacity: 1; }
    100% { transform: translateX(-36%) scale(0.9); opacity: 0.8; }
}


.biopulse-leaf {
    position: absolute;
    width: 26px;
    height: 26px;
    background: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<path fill='rgba(143,218,122,0.45)' d='M12 2C8 5 5 9 5 13s3 8 7 8 7-4 7-8-3-8-7-11z'/>\
</svg>") no-repeat center;
    background-size: contain;
    animation: leafFloat 4s infinite ease-in-out;
}

.leafA {
    left: 22%;
    top: 25px;
    animation-delay: -1s;
}

.leafB {
    right: 22%;
    top: -10px;
    animation-delay: -2.5s;
}

@keyframes leafFloat {
    0% { transform: translateY(0px) rotate(0deg); opacity: 0.85; }
    50% { transform: translateY(-8px) rotate(3deg); opacity: 1; }
    100% { transform: translateY(0px) rotate(0deg); opacity: 0.85; }
}

.branch-parallax-unit {
    position: relative;
    width: 100%;
    height: 160px;
    margin: 30px 0 50px 0;
    overflow: visible;
}

.branch-layer {
    position: absolute;
    top: 0;
    height: 100%;
    width: 120%;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.12;
    pointer-events: none;
    transform: translateX(0px);
    transition: transform 0.15s linear;
}


.bl-1 {
    background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 300 100\">\
<path d='M0 80 Q80 40 150 60 T300 20' stroke=\"rgba(180,255,180,0.35)\" stroke-width=\"6\" fill=\"none\"/>\
</svg>");
    left: -10%;
}


.bl-2 {
    background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 300 100\">\
<path d='M0 20 Q130 40 200 10 T300 80' stroke=\"rgba(160,240,160,0.32)\" stroke-width=\"5\" fill=\"none\"/>\
</svg>");
    right: -10%;
    opacity: 0.10;
}


.grow-light {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle, #c8ffb8 0%, #8fda7a 60%, transparent 70%);
    filter: drop-shadow(0 0 12px #b2ff9f);
    opacity: 0;
    transform: scale(0.6);
}


.gl-1 { left: 28%; top: 55px; }
.gl-2 { right: 30%; top: 20px; }


@keyframes growFlash {
    0%   { opacity: 0; transform: scale(0.6); }
    40%  { opacity: 1; transform: scale(1.15); }
    100% { opacity: 0; transform: scale(0.6); }
}


#plantenMenu {
    position: fixed;
    bottom: 70px;
    right: 20px;
    background: rgba(18, 30, 18, 0.95);
    border: 2px solid #3e7a3e;
    backdrop-filter: blur(6px);
    padding: 20px;
    border-radius: 14px;
    width: 240px;
    max-height: 70vh;
    overflow-y: auto;
    transform: translateY(30px);
    opacity: 0;
    pointer-events: none;
    transition: all .35s ease;
    box-shadow: 0 0 15px rgba(0,255,100,0.15);
}

.plantenMenuVisible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

#plantenMenu h3 {
    margin: 0 0 12px 0;
    color: #d8f5d1;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}

#plantenMenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#plantenMenu li {
    padding: 6px 0;
    color: #cfeccc;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    transition: color 0.2s ease, transform 0.2s ease;
}

#plantenMenu li:hover {
    color: #9fffb3;
    transform: translateX(4px);
}

#infoModal {
    position: fixed;
    inset: 0;
    background: rgba(8, 20, 12, 0.55);
    backdrop-filter: blur(12px) saturate(130%);
    -webkit-backdrop-filter: blur(12px) saturate(130%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0 ;
    pointer-events: none;
    transition: opacity .45s ease;
    z-index: 99999;
}

.infoModalVisible {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.infoModalBox {
    background: rgba(18, 40, 24, 0.65);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(120, 200, 140, 0.25);
    padding: 32px;
    border-radius: 20px;
    width: 88%;
    max-width: 500px;
    transform: translateY(25px) scale(0.96);
    box-shadow:
        0 0 45px rgba(0, 255, 140, 0.10),
        inset 0 0 25px rgba(60, 120, 70, 0.15);
    transition: transform .45s ease, opacity .45s ease;
    opacity: 0;
}

.infoModalVisible .infoModalBox {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.infoModalBox h2 {
    font-size: 26px;
    color: #dfffe9;
    margin-top: 0;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.infoModalBox p {
    color: #e6fbe2;
    line-height: 1.55;
    font-size: 17px;
    margin-bottom: 16px;
}

.infoCloseBtn {
    width: 100%;
    padding: 14px 0;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #4fae68, #3c7f45);
    color: #f1fff4;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
    letter-spacing: 0.5px;
}

.infoCloseBtn:hover {
    background: linear-gradient(135deg, #5fd67d, #4fae68);
    box-shadow: 0 0 14px rgba(90, 240, 140, 0.35);
}

#siteTitleBanner {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-80px);
    background: rgba(20, 40, 25, 0.65);
    padding: 16px 32px;
    border-radius: 14px;
    border: 1px solid rgba(140, 220, 150, 0.25);
    backdrop-filter: blur(10px) saturate(130%);
    -webkit-backdrop-filter: blur(10px) saturate(130%);
    box-shadow:
        0 0 25px rgba(60, 255, 120, 0.15),
        inset 0 0 15px rgba(40, 100, 50, 0.25);
    z-index: 999999;
    opacity: 0;
    animation: bannerSlide 4s ease-out forwards;
}

#siteTitleBanner span {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 600;
    color: #e8ffe8;
    letter-spacing: 1.4px;
    text-shadow: 0 0 12px rgba(140, 255, 160, 0.35);
}

@keyframes bannerSlide {
    0% {
        transform: translateX(-50%) translateY(-80px);
        opacity: 0;
    }
    20% {
        transform: translateX(-50%) translateY(20px);
        opacity: 1;
    }
    70% {
        transform: translateX(-50%) translateY(20px);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-80px);
        opacity: 0;
    }
}

