
/* ===========================
   PONNIE V2
   Robinhood Theme
=========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{

font-family:'Inter',sans-serif;
background:#090b0f;
color:white;
overflow-x:hidden;

}

/* Glow Background */

body::before{

content:"";
position:fixed;
width:700px;
height:700px;
left:50%;
top:-220px;
transform:translateX(-50%);
background:#00C805;
filter:blur(170px);
opacity:.18;
pointer-events:none;
z-index:-1;

}

/* Navigation */

nav{

display:flex;
justify-content:space-between;
align-items:center;
padding:26px 8%;
position:sticky;
top:0;
backdrop-filter:blur(18px);
background:rgba(9,11,15,.75);
z-index:999;

}

.logo{

font-size:30px;
font-weight:800;
color:#00C805;

}

.menu{

display:flex;
gap:30px;

}

.menu a{

text-decoration:none;
color:white;
font-weight:600;
transition:.3s;

}

.menu a:hover{

color:#00C805;

}

/* Hero */

.hero{

display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:70px;
padding:90px 8%;
min-height:95vh;

}

.hero h1{

font-size:90px;
font-weight:800;
line-height:1;

}

.hero h2{

margin-top:20px;
font-size:30px;
color:#00C805;

}

.hero p{

margin-top:30px;
font-size:21px;
line-height:1.8;
color:#c7c7c7;

}

.hero-buttons{

display:flex;
flex-wrap:wrap;
gap:18px;
margin-top:45px;

}

.primary{

background:#00C805;
color:#111;
padding:18px 34px;
border-radius:18px;
text-decoration:none;
font-weight:800;
transition:.3s;

}

.primary:hover{

transform:translateY(-4px);
box-shadow:0 0 35px #00C805;

}

.secondary{

padding:18px 34px;
border:2px solid #00C805;
border-radius:18px;
text-decoration:none;
font-weight:700;
color:#00C805;
transition:.3s;

}

.secondary:hover{

background:#00C805;
color:#111;

}

/* Hero Image */

.hero-image{

width:100%;
max-width:520px;
display:block;
margin:auto;
animation:float 5s ease-in-out infinite;
filter:drop-shadow(0 0 40px rgba(0,200,5,.45));

}

@keyframes float{

50%{

transform:translateY(-18px);

}

}

/* Sections */

section{

padding:90px 8%;

}

.title{

font-size:52px;
text-align:center;
margin-bottom:50px;

}

/* Glass */

.glass{

background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
border-radius:30px;
padding:45px;
backdrop-filter:blur(16px);

}

.glass h2{

font-size:38px;
margin-bottom:20px;

}

.glass p{

font-size:20px;
line-height:1.9;
color:#d2d2d2;

}

/* Roadmap */

.roadmap-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:28px;

}

.card{

background:#12161f;
padding:35px;
border-radius:22px;
transition:.35s;
border:1px solid rgba(255,255,255,.05);

}

.card:hover{

transform:translateY(-10px);
border-color:#00C805;

}

.card h3{

font-size:28px;
margin-bottom:18px;

}

.card p{

color:#c9c9c9;
line-height:1.7;

}

/* Features */

.features{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;

}

.feature{

background:#12161f;
padding:35px;
border-radius:22px;
font-size:52px;
text-align:center;
transition:.35s;

}

.feature:hover{

transform:translateY(-8px);

}

.feature h3{

font-size:24px;
margin:18px 0;

}

.feature p{

font-size:17px;
color:#bdbdbd;

}

/* Contract */

.contract{

margin-top:25px;
background:#090b0f;
padding:20px;
border-radius:16px;
word-break:break-all;
font-size:18px;
color:#00C805;

}

button{

margin-top:25px;
background:#00C805;
border:none;
padding:18px 32px;
border-radius:15px;
font-size:18px;
font-weight:800;
cursor:pointer;

}

/* Community */

.community{

display:flex;
justify-content:center;
gap:22px;
flex-wrap:wrap;

}

.community a{

padding:18px 28px;
background:#12161f;
border-radius:16px;
text-decoration:none;
color:white;
font-weight:700;
transition:.3s;

}

.community a:hover{

background:#00C805;
color:#111;

}

/* Footer */

footer{

padding:70px;
text-align:center;
color:#8c8c8c;
font-size:18px;

}

/* Mobile */

@media(max-width:900px){

.hero{

grid-template-columns:1fr;
text-align:center;

}

.hero h1{

font-size:62px;

}

.hero-buttons{

justify-content:center;

}

.menu{

display:none;

}

.title{

font-size:40px;

}

}
