.hero{
    min-height:auto;
    padding:110px 4% 80px;
}

.bg-logo{
    position:absolute;
    right:8%;
    top:50%;
    transform:translateY(-50%);
    width:38%;
    opacity:0.08;
    pointer-events:none;
}

.hero-left{
    position:relative;
    z-index:2;
    max-width:760px;
}

.hero-tag{
    display:inline-block;
    border:1px solid rgba(138,102,255,0.4);
    color:#b694ff;
    padding:10px 18px;
    border-radius:999px;
    font-size:14px;
    margin-bottom:28px;
}

.hero h1{
    font-size:72px;
    line-height:1.04;
    margin-bottom:26px;
    font-weight:900;
}

.hero-gradient{
    background:linear-gradient(90deg,#8b5fff,#20bfff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero p{
    color:#b5bdd3;
    font-size:24px;
    line-height:1.8;
    max-width:680px;
    margin-bottom:36px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:40px;
}

.hero-buttons a{
    padding:18px 30px;
    border-radius:16px;
    font-weight:700;
    font-size:18px;
}

.primary-btn{
    background:linear-gradient(90deg,#7d4dff,#22b9ff);
    color:white;
}

.secondary-btn{
    border:1px solid rgba(255,255,255,0.18);
    color:white;
}

.trust-row{
    display:flex;
    gap:50px;
    flex-wrap:wrap;
}

.trust-item h4{
    font-size:20px;
    margin-bottom:8px;
}

.trust-item p{
    font-size:14px;
    margin:0;
}

.market-strip{
    margin:0 5%;
    margin-top:34px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.market-box{
    background:#0e1327;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:20px;
    padding:22px;
    box-shadow:0 0 30px rgba(0,0,0,0.18);
    position:relative;
    overflow:hidden;
    
    transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
    animation:
    marketPulse 4s ease-in-out infinite;
}

.market-box:nth-child(2){
    animation-delay:1s;
}

.market-box:nth-child(3){
    animation-delay:2s;
}

.market-box:nth-child(4){
    animation-delay:3s;
}

.market-box::before{

content:"";

position:absolute;

inset:0;

background:linear-gradient(
135deg,
rgba(34,197,94,0.10),
rgba(59,130,246,0.04)
);

opacity:.65;

pointer-events:none;

}

.market-box:hover{

transform:translateY(-4px);

box-shadow:
0 0 24px rgba(34,197,94,0.18);

border-color:
rgba(34,197,94,0.32);

}

.market-box h5{
    color:#b7bfd4;
    font-size:14px;
    margin-bottom:18px;
    font-weight:500;
}

.market-box h2{
    margin-bottom:14px;
    font-size:38px;
    text-shadow:
    0 0 18px rgba(255,255,255,0.08);
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:38px;
}

.feature-card{
    background:linear-gradient(180deg,#0d1224,#0a0f20);
    border:1px solid rgba(124,91,255,0.32);
    border-radius:24px;
    padding:28px;
    min-height:220px;
    box-shadow:0 0 40px rgba(53,63,120,0.15);
}

.feature-card h3{
    font-size:28px;
    line-height:1.12;
    margin-bottom:14px;
}

.feature-card p{
    color:#b4bbcf;
    line-height:1.72;
    font-size:15px;
    margin-bottom:18px;
}

.feature-card a{
    color:#8d6bff;
    font-weight:700;
}

.powered{
    margin:40px 5% 0;
    background:#0d1224;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:20px;
    padding:28px 40px;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:30px;
}

.powered span{
    color:#cfd5e6;
    font-weight:600;
}

.powered-logos{
    display:flex;
    gap:22px;
    align-items:center;
    overflow-x:auto;
    white-space:nowrap;
}

.powered-logos span{
    font-size:13px;
    opacity:0.7;
    flex-shrink:0;
}

@media(max-width:1200px){

    .feature-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .market-strip{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:900px){

.hero-buttons{
    justify-content:center;
}

.trust-row{
    justify-content:center;
}

.feature-grid{
    grid-template-columns:1fr;
}

.bg-logo{
    width:420px;
    top:240px;
    left:50%;
    transform:translateX(-50%);
}

}

@media(max-width:768px){
    
.hero-buttons a{
    padding:14px 20px;
    font-size:15px;
}

.hero{
    padding:30px 20px 6px;
    min-height:auto;
}

.hero h1{
    font-size:42px;
    line-height:0.98;
    letter-spacing:-1px;
    margin-bottom:18px;
}

.hero p{
    font-size:15px;
    line-height:1.7;
    margin-bottom:20px;
    max-width:100%;
}

.trust-row{
    gap:26px;
    justify-content:center;
    text-align:center;
    flex-wrap:wrap;
}

.trust-item{
    width:auto;
    min-width:120px;
}

.trust-item h4{
    font-size:15px;
    margin-bottom:4px;
}

.trust-item p{
    font-size:11px;
    opacity:0.65;
}

/* MARKET STRIP */

.market-strip{
    display:flex;
    overflow-x:auto;
    gap:14px;
    padding:0 20px 6px;
    margin:12px 0 0;
    scroll-snap-type:x mandatory;
}

.market-strip::-webkit-scrollbar{
    display:none;
}

.market-box{
    min-width:220px;
    flex-shrink:0;
    padding:20px;
    scroll-snap-align:start;
}

.market-box h5{
    font-size:13px;
    margin-bottom:14px;
}

.market-box h2{
    font-size:30px;
    margin-bottom:10px;
}

/* FEAR CARD */

.market-strip .fear-card{
    margin-top:0px;
    width:100%;
    max-width:100%;
    padding:22px;
}

.fear-card h2{
    font-size:18px;
}

.fear-value{
    font-size:30px;
}

.fear-label{
    font-size:15px;
}

/* FEATURE SECTION */

.feature-grid{
    margin-top:30px;
}

.feature-card{
    padding:22px;
    min-height:auto;
}

.feature-card h3{
    font-size:22px;
    line-height:1.15;
    margin-bottom:12px;
}

.feature-card p{
    font-size:14px;
    line-height:1.6;
    margin-bottom:16px;
}

}

/* POWERED BY */

.powered{
    padding:26px 20px;
}

.powered h3{
    font-size:14px;
    opacity:0.7;
    margin-bottom:18px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.powered-logos{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    justify-content:center;
}

.powered-logos span{
    font-size:14px;
    opacity:0.8;
}



/* =========================
   FEAR + FEATURED + LIBRARY
========================= */

.featured-home-card{

display:flex;
justify-content:flex-start;
align-items:center;
gap:34px;

padding:14px;
padding-top:34px;
margin-top:0px;
width:100%;
min-height:auto;

flex:1;

text-decoration:none;

overflow:hidden;

transition:
transform 0.2s ease,
border-color 0.2s ease;

}

.featured-home-card:hover{

transform:translateY(-2px);

border-color:
rgba(124,91,255,0.34);

}

.featured-home-inner{

display:flex;
align-items:center;
gap:34px;

width:100%;

padding:24px;

background:
linear-gradient(
135deg,
rgba(124,58,237,0.18),
rgba(59,130,246,0.12)
);

border:
1px solid rgba(255,255,255,0.06);

border-radius:26px;

text-decoration:none;

}

.featured-home-image{

width:320px;
height:235px;
margin-bottom:18px;

flex-shrink:0;

border-radius:18px;

overflow:hidden;
box-shadow:0 0 30px rgba(124,58,237,0.25);
}

.featured-home-image img{

width:100%;
height:100%;

object-fit:cover;

display:block;

}

.featured-home-content{

flex:1;
width:100%;
display:flex;
flex-direction:column;
justify-content:center;

}

.featured-home-label{

display:inline-flex;
align-items:center;
justify-content:center;

width:fit-content;

font-size:11px;
font-weight:700;

letter-spacing:1px;

padding:8px 14px;

border-radius:999px;

background:
rgba(124,91,255,0.18);

color:#b794ff;

margin-bottom:16px;

}

.featured-home-content h2{

font-size:44px;
line-height:1.1;

letter-spacing:-1.2px;

margin-bottom:14px;

color:white;

}

.featured-home-content p{

font-size:18px;

line-height:1.7;

color:#b7bfd3;

margin-bottom:16px;

max-width:560px;

}

.featured-home-meta{

font-size:14px;
font-weight:600;

color:#8b5fff;
margin-top:18px;
margin-bottom:14px;

}

.featured-home-link{

display:inline-flex;
align-items:center;
justify-content:center;

width:fit-content;

padding:14px 24px;

border-radius:14px;

background:linear-gradient(
135deg,
#7c3aed,
#3b82f6
);

color:#fff;

font-size:15px;
font-weight:700;

margin-top:0px;

transition:.25s ease;

}



.featured-library-wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
    align-items:center;
    margin-top:36px;
}

.featured-library-section{
    padding:0 5%;
}

.library-cta{
    background:linear-gradient(
        135deg,
        rgba(124,58,237,0.18),
        rgba(59,130,246,0.12)
    );
    border:1px solid rgba(255,255,255,0.06);
    border-radius:24px;
    padding:42px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    margin-top:16px;
    
  
}

.library-badge{
    display:inline-block;
    width:fit-content;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(124,58,237,0.18);
    color:#b794ff;
    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;
    margin-bottom:18px;
}

.library-cta h2{
    font-size:44px;
    line-height:1.05;
    margin-bottom:22px;
    max-width:900px;
    font-weight:700;
}

.library-cta p{
    color:rgba(255,255,255,0.72);
    font-size:16px;
    line-height:1.8;
    max-width:760px;
    margin-bottom:32px;
}

.library-cta-btn{
    display:inline-flex;
    width:fit-content;
    align-items:center;
    justify-content:center;
    padding:14px 24px;
    border-radius:14px;
    background:linear-gradient(
        135deg,
        #7c3aed,
        #3b82f6
    );
    color:#fff;
    font-weight:700;
    text-decoration:none;
    transition:.25s ease;
}

.library-cta-btn:hover{
    transform:translateY(-2px);
    opacity:.92;
}

.fear-card{
    background:linear-gradient(
        180deg,
        rgba(44,20,60,0.92),
        rgba(18,12,32,0.96)
    );
    border:1px solid rgba(180,120,255,0.14);
    border-radius:24px;
    padding:24px;
    width:100%;
    height:fit-content;
    margin-top:0px;
    box-shadow:0 0 24px rgba(0,0,0,0.22);
}

.fear-card h2{
    font-size:20px;
    line-height:1.3;
    margin-bottom:16px;
}

.fear-value{
    font-size:34px;
    font-weight:800;
    line-height:1;
    margin-bottom:8px;
}

.fear-label{
    color:#b88cff;
    font-size:18px;
    font-weight:600;
}

@keyframes marketPulse{

0%{
    box-shadow:
    0 0 0 rgba(34,197,94,0);
}

50%{
    box-shadow:
    0 0 22px rgba(34,197,94,0.10);
}

100%{
    box-shadow:
    0 0 0 rgba(34,197,94,0);
}

}

@media(max-width:900px){

.featured-library-wrap{

grid-template-columns:1fr;

gap:24px;

margin-top:24px;

}

.featured-home-inner{

display:flex;
align-items:center;
gap:14px;

padding:16px;

}

.featured-home-image{

width:120px;

flex-shrink:0;

margin:0;

}

.featured-home-image img{

width:100%;
height:auto;

display:block;

}

.featured-home-content{

width:100%;

}

.featured-home-content h2{

font-size:20px;

line-height:1.2;

margin-bottom:8px;

}

.featured-home-content p{

font-size:13px;

line-height:1.5;

margin-bottom:8px;

}

.library-cta{

margin-top:0;

width:100%;

}

.market-strip{

gap:10px;

margin-top:10px;

padding:0 14px 4px;

}

.market-box{

min-width:145px;

padding:10px 12px;

border-radius:16px;

}

.market-box h5{

font-size:11px;

margin-bottom:10px;

}

.market-box h2{

font-size:20px;

margin-bottom:2px;

}

.fear-card{

min-width:145px;

padding:12px;

border-radius:16px;

}

.fear-card h2{

font-size:14px;

margin-bottom:10px;

}

.fear-value{

font-size:22px;

}

.fear-label{

font-size:12px;

}
