﻿/* HOME PAGE */

.page-shell {
    width: min(1250px, 92%);
    margin: auto;
}

body {
    overflow-x: hidden;
    background:
        radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.25), transparent 35%),
        radial-gradient(circle at 90% 10%, rgba(59, 130, 246, 0.18), transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.18), transparent 30%),
        linear-gradient(135deg, #07111f, #0f172a, #111827);
}

body::before {
    content: "";
    position: fixed;
    width: 500px;
    height: 500px;
    background: #7c3aed;
    opacity: 0.12;
    filter: blur(150px);
    top: -150px;
    right: -120px;
    border-radius: 50%;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    width: 450px;
    height: 450px;
    background: #06b6d4;
    opacity: 0.12;
    filter: blur(140px);
    left: -180px;
    bottom: -180px;
    border-radius: 50%;
    z-index: -2;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(18px);
    background: rgba(5, 10, 20, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1250px;
    margin: auto;
    padding: 18px 30px;
}

.nav-brand h2 {
    color: white;
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-brand h2::after {
    content: ".";
    color: #7c3aed;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu a {
    color: #cbd5e1;
    font-weight: 500;
    position: relative;
    transition: 0.35s;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -8px;
    background: linear-gradient(90deg, #3b82f6, #7c3aed);
    transition: 0.4s;
}

.nav-menu a:hover {
    color: white;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 60px;
    min-height: 90vh;
    padding: 80px 0;
}

.hero-copy {
    animation: fadeLeft 0.9s ease;
    max-width: 750px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.35);
    color: #c4b5fd;
    font-weight: 500;
    margin-bottom: 30px;
}

.hero-copy h1 {
    font-size: 72px;
    line-height: 1.05;
    margin: 0;
    color: white;
    font-weight: 800;
}

.gradient-text {
    display: block;
    background: linear-gradient(90deg, #3b82f6, #06b6d4, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-copy h3 {
    margin-top: 25px;
    color: #dbeafe;
    font-size: 28px;
    font-weight: 600;
}

.hero-text {
    color: #94a3b8;
    font-size: 18px;
    line-height: 1.9;
    margin-top: 20px;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.35s;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #7c3aed);
    color: white;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25);
}

.btn-primary:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(124, 58, 237, 0.35);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: white;
    backdrop-filter: blur(15px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-6px);
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-70px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeRight 1s ease;
}

.hero-card {
    position: relative;
    width: 430px;
    padding: 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(22px);
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    transition: 0.45s;
}

.hero-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 90px rgba(124, 58, 237, 0.25);
}

.hero-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.65), rgba(124, 58, 237, 0.65));
    filter: blur(90px);
    top: -70px;
    right: -80px;
    animation: floatGlow 5s ease-in-out infinite;
    z-index: 0;
}

.hero-avatar {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: block;
    position: relative;
    z-index: 2;
    transition: 0.45s;
}

.hero-avatar:hover {
    transform: scale(1.03);
}

.profile-info {
    margin-top: 25px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.profile-info h2 {
    margin: 0;
    color: white;
    font-size: 28px;
    font-weight: 700;
}

.profile-info p {
    margin-top: 8px;
    color: #94a3b8;
    font-size: 15px;
}

.hero-status {
    margin-top: 30px;
    display: grid;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.hero-status span {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    color: #dbeafe;
    transition: 0.35s;
}

.hero-status span:hover {
    background: rgba(59, 130, 246, 0.12);
    transform: translateX(6px);
}

.hero-status i {
    color: #60a5fa;
    width: 20px;
    font-size: 18px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 28px;
    position: relative;
    z-index: 2;
}

.social-links a {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.35s;
}

.social-links a:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #3b82f6, #7c3aed);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 40px;
}

.tech-stack span {
    padding: 12px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #dbeafe;
    font-size: 14px;
    transition: 0.35s;
}

.tech-stack span:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, #3b82f6, #7c3aed);
}

.hero-stats {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.stat-card {
    padding: 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: 0.4s;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(59, 130, 246, 0.1);
}

.stat-card h2 {
    margin: 0;
    font-size: 38px;
    color: white;
}

.stat-card p {
    margin-top: 8px;
    color: #94a3b8;
    font-size: 15px;
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(70px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatGlow {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
    100% { transform: translateY(0) scale(1); }
}