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

body {
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    background: #1a1128;
    color: #f0eaf7;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    overflow: hidden;
    position: relative;
}

/* Floating background blobs */
.bg-shapes {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 12s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: #7c3aed;
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: #f472b6;
    bottom: -10%;
    right: -5%;
    animation-delay: -4s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: #fb923c;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -8s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.shape-3 {
    animation-name: float-center;
}

@keyframes float-center {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    33% { transform: translate(-45%, -55%) scale(1.08); }
    66% { transform: translate(-55%, -45%) scale(0.92); }
}

/* Content */
main {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 560px;
    width: 100%;
}

.greeting {
    font-size: 1.1rem;
    color: #c4b5fd;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.dot {
    color: #f472b6;
}

.tagline {
    font-size: 1.2rem;
    color: #a78bfa;
    font-weight: 400;
    margin-bottom: 3rem;
}

/* Project cards */
.projects {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.card {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    grid-template-rows: auto auto;
    gap: 0 0.8rem;
    align-items: center;
    padding: 1rem 1.4rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    text-decoration: none;
    color: #f0eaf7;
    transition: transform 0.2s, background 0.2s, border-color 0.2s;
    text-align: left;
}

.card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

.card-icon {
    grid-row: 1 / 3;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-label {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
}

.card-desc {
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.3;
}

/* Footer */
footer {
    color: #6b7280;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

/* Mobile */
@media (max-width: 480px) {
    h1 {
        font-size: 2.8rem;
    }

    .tagline {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .card {
        padding: 0.9rem 1.1rem;
    }

    .shape-1 { width: 250px; height: 250px; }
    .shape-2 { width: 220px; height: 220px; }
    .shape-3 { width: 200px; height: 200px; }
}
