/* ==========================================================
   XLMUSD
   Premium Web3 Theme
   Built for Tailwind + Three.js + GSAP
   ========================================================== */

/* ---------- Google Font ---------- */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

/* ---------- Root ---------- */

:root{

--bg:#030712;
--bg2:#07121d;

--cyan:#06b6d4;
--cyan2:#22d3ee;

--blue:#2563eb;

--green:#10b981;

--white:#ffffff;

--glass:rgba(255,255,255,.05);

--border:rgba(255,255,255,.12);

--shadow:0 25px 60px rgba(0,0,0,.35);

--radius:22px;

}

/* ---------- Reset ---------- */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{

scroll-behavior:smooth;

}

body{

font-family:Inter,sans-serif;

background:linear-gradient(180deg,#020617,#061322,#020617);

color:white;

overflow-x:hidden;

}

/* ---------- Scrollbar ---------- */

::-webkit-scrollbar{

width:12px;

}

::-webkit-scrollbar-track{

background:#030712;

}

::-webkit-scrollbar-thumb{

background:linear-gradient(
180deg,
#22d3ee,
#2563eb
);

border-radius:30px;

}

/* ---------- Links ---------- */

a{

text-decoration:none;

color:white;

transition:.35s;

}

a:hover{

color:var(--cyan2);

}

/* ---------- Headings ---------- */

h1{

font-size:clamp(3rem,6vw,5.5rem);

font-weight:900;

}

h2{

font-size:clamp(2rem,4vw,3.3rem);

font-weight:800;

}

h3{

font-size:1.3rem;

font-weight:700;

}

p{

line-height:1.8;

color:#b6c4d3;

}

/* ---------- Sections ---------- */

section{

padding-left:6%;

padding-right:6%;

}

/* ---------- Glass ---------- */

.glass{

background:rgba(255,255,255,.05);

backdrop-filter:blur(18px);

-webkit-backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.08);

border-radius:var(--radius);

box-shadow:var(--shadow);

padding:40px;

transition:.35s;

position:relative;

overflow:hidden;

}

/* animated highlight */

.glass::before{

content:"";

position:absolute;

left:-50%;

top:0;

width:45%;

height:100%;

background:

linear-gradient(

90deg,

transparent,

rgba(255,255,255,.15),

transparent

);

transform:skewX(-25deg);

transition:1.4s;

}

.glass:hover::before{

left:140%;

}

.glass:hover{

transform:translateY(-8px);

border-color:#22d3ee;

}

/* ---------- Hero ---------- */

.hero-title{

background:

linear-gradient(

90deg,

white,

#9beeff,

white

);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.hero-sub{

font-size:1.3rem;

margin-top:25px;

}

/* ---------- Buttons ---------- */

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 34px;

border-radius:16px;

font-weight:700;

transition:.35s;

cursor:pointer;

}

.btn-primary{

background:linear-gradient(

135deg,

#06b6d4,

#2563eb

);

color:white;

box-shadow:

0 0 40px rgba(6,182,212,.3);

}

.btn-primary:hover{

transform:translateY(-4px);

box-shadow:

0 0 70px rgba(6,182,212,.55);

}

.btn-outline{

border:1px solid #22d3ee;

}

.btn-outline:hover{

background:#22d3ee;

color:black;

}

/* ---------- Cards ---------- */

.card{

background:rgba(255,255,255,.04);

border-radius:20px;

padding:30px;

border:1px solid rgba(255,255,255,.08);

transition:.4s;

}

.card:hover{

transform:translateY(-10px);

border-color:#22d3ee;

box-shadow:

0 15px 45px rgba(34,211,238,.15);

}

/* ---------- Asset Card ---------- */

.asset{

display:flex;

flex-direction:column;

align-items:center;

justify-content:center;

padding:25px;

border-radius:18px;

background:rgba(255,255,255,.04);

transition:.35s;

border:1px solid rgba(255,255,255,.08);

min-height:150px;

}

.asset:hover{

background:rgba(34,211,238,.12);

transform:translateY(-6px);

}

.asset .symbol{

font-size:1.4rem;

font-weight:800;

color:#22d3ee;

}

.asset .issuer{

font-size:.72rem;

color:#8fa8bc;

margin-top:10px;

word-break:break-all;

}

/* ---------- Navbar ---------- */

nav{

transition:.35s;

}

nav.scrolled{

background:rgba(3,7,18,.95);

backdrop-filter:blur(20px);

}

/* ---------- Timeline ---------- */

.timeline{

position:relative;

margin:100px auto;

max-width:1100px;

}

.timeline::before{

content:"";

position:absolute;

left:50%;

top:0;

width:4px;

height:100%;

background:#22d3ee;

}

.timeline-item{

width:46%;

padding:30px;

background:rgba(255,255,255,.04);

border-radius:18px;

margin-bottom:60px;

position:relative;

}

.timeline-item:nth-child(even){

margin-left:auto;

}

/* ---------- Statistics ---------- */

.stat{

text-align:center;

padding:35px;

}

.stat h2{

font-size:3rem;

color:#22d3ee;

margin-bottom:12px;

}

.stat p{

font-size:.95rem;

}

/* ---------- Footer ---------- */

footer{

background:#020617;

}

footer h2{

margin-bottom:20px;

}

/* ---------- Floating Animation ---------- */

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0px);

}

}

.float{

animation:float 5s ease-in-out infinite;

}

/* ---------- Glow ---------- */

.glow{

box-shadow:

0 0 25px rgba(34,211,238,.45);

}

/* ---------- Fade ---------- */

.fade{

opacity:0;

transform:translateY(30px);

}

/* ---------- Mobile ---------- */

@media(max-width:1024px){

.timeline::before{

left:20px;

}

.timeline-item{

width:100%;

margin-left:40px!important;

}

section{

padding-left:25px;

padding-right:25px;

}

.glass{

padding:28px;

}

}

@media(max-width:640px){

h1{

font-size:2.8rem;

}

h2{

font-size:2rem;

}

.btn{

width:100%;

margin-bottom:15px;

}

.asset{

min-height:120px;

}

}

/* ---------- Utility ---------- */

.gradient-text{

background:linear-gradient(
90deg,
#22d3ee,
#3b82f6
);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.border-gradient{

border:1px solid transparent;

background:

linear-gradient(#061322,#061322) padding-box,

linear-gradient(135deg,#22d3ee,#2563eb) border-box;

}

.blur-bg{

backdrop-filter:blur(30px);

}

.shadow-cyan{

box-shadow:

0 0 50px rgba(34,211,238,.3);

}

.text-muted{

color:#9fb2c5;

}

.mt-xl{

margin-top:120px;

}

.mb-xl{

margin-bottom:120px;

}