/* =====================================================
   HERO SECTION
===================================================== */

.hero{

min-height:100vh;

display:grid;

grid-template-columns:1.15fr .85fr;

align-items:center;

gap:80px;

padding-top:120px;

}

/* ------------------------
   LEFT
------------------------ */

.hero-content{

max-width:720px;

}

.hero-tag{

display:inline-block;

padding:10px 20px;

margin-bottom:30px;

border-radius:999px;

font-size:14px;

font-weight:700;

letter-spacing:1px;

text-transform:uppercase;

background:rgba(0,194,255,.12);

color:var(--primary);

border:1px solid rgba(0,194,255,.25);

}

.hero h1{

font-size:68px;

font-weight:800;

line-height:1.05;

margin-bottom:28px;

letter-spacing:-2px;

}

.hero-description{

font-size:20px;

line-height:1.8;

max-width:620px;

margin-bottom:45px;

color:var(--muted);

}

.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

/* ------------------------
   RIGHT
------------------------ */

.hero-image{

display:flex;

justify-content:center;

align-items:center;

position:relative;

}

/* Glow */

.hero-image::before{

content:"";

position:absolute;

width:520px;

height:520px;

border-radius:50%;

background:

radial-gradient(circle,

rgba(0,194,255,.25),

transparent 70%);

filter:blur(50px);

animation:pulse 6s infinite ease-in-out;

}

/* Profile */

.hero-image img{

width:390px;

height:390px;

border-radius:50%;

object-fit:cover;

border:4px solid rgba(255,255,255,.08);

box-shadow:

0 0 60px rgba(0,194,255,.20),

0 30px 80px rgba(0,0,0,.55);

transition:

transform .35s ease,

box-shadow .35s ease;

position:relative;

z-index:2;

}

.hero-image img:hover{

transform:

translateY(-8px)

scale(1.02);

box-shadow:

0 0 80px rgba(0,194,255,.30),

0 35px 90px rgba(0,0,0,.6);

}

/* ------------------------
   Floating Ring
------------------------ */

.hero-image::after{

content:"";

position:absolute;

width:430px;

height:430px;

border-radius:50%;

border:1px solid rgba(0,194,255,.18);

animation:rotateRing 18s linear infinite;

}

/* ------------------------
   Buttons
------------------------ */

.hero .primary-btn{

padding:16px 34px;

font-size:17px;

}

.hero .secondary-btn{

padding:16px 34px;

font-size:17px;

}

/* ------------------------
   Scroll Hint
------------------------ */

.scroll-down{

position:absolute;

bottom:40px;

left:50%;

transform:translateX(-50%);

font-size:14px;

color:#7f8a9a;

letter-spacing:2px;

text-transform:uppercase;

}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes pulse{

0%{

transform:scale(.95);

opacity:.55;

}

50%{

transform:scale(1.05);

opacity:1;

}

100%{

transform:scale(.95);

opacity:.55;

}

}

@keyframes rotateRing{

0%{

transform:rotate(0deg);

}

100%{

transform:rotate(360deg);

}

}

/* =====================================================
   HERO STATS
===================================================== */

.stats{

margin-top:-60px;

position:relative;

z-index:5;

}

.stat-card{

text-align:center;

padding:36px 28px;

}

.stat-card h2{

font-size:52px;

font-weight:800;

background:var(--gradient);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

margin-bottom:6px;

}

.stat-card p{

font-size:15px;

letter-spacing:.5px;

text-transform:uppercase;

color:#8fa1b9;

}

/* ==========================================
   Hero Quick Links
========================================== */

.quick-links{

display:flex;

flex-wrap:wrap;

gap:14px;

margin-top:32px;

align-items:center;

}

.quick-links a{

text-decoration:none;

font-size:.92rem;

font-weight:600;

padding:10px 18px;

border-radius:999px;

border:1px solid rgba(255,255,255,.12);

background:rgba(255,255,255,.04);

color:#d8e7ff;

transition:all .25s ease;

backdrop-filter:blur(10px);

}

.quick-links a:hover{

transform:translateY(-2px);

background:linear-gradient(135deg,#3b82f6,#7c3aed);

border-color:transparent;

color:white;

box-shadow:0 10px 25px rgba(59,130,246,.25);

}
