:root {
    --primary: #8a2be2;
    --secondary: #ff007f;
    --accent: #ff4d4d;
    --bg: #0b0216;
    --text: #f0f0f0;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.12);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-pink { color: var(--secondary); }

/* Navigation Refinement */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1100px;
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 100px; /* More modern rounded feel */
    z-index: 1000;
    padding: 12px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

.btn-primary {
    background: var(--secondary);
    padding: 10px 20px;
    border-radius: 12px;
}

/* Hero Mobile-First Rework */
.hero {
    height: auto;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    z-index: -1;
}

.hero-content {
    width: 100%;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin: 0 auto 25px;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-direction: column;
    justify-content: center;
}

.btn-glow {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    padding: 16px 40px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
    transition: 0.3s;
}

.btn-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.5);
}

.btn-secondary {
    padding: 16px 40px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.floating-img {
    width: 80%;
    max-width: 500px;
    animation: float 6s ease-in-out infinite;
}

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

/* Sections General */
section {
    padding: 80px 0;
}

h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 30px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}

/* About Section */
.glass {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 30px;
}

.features {
    list-style: none;
    margin-top: 25px;
    text-align: left;
    display: inline-block;
}

.features li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--secondary);
}

/* Aria Chat Preview Mobile */
.aria-chat-preview {
    max-width: 100%;
    margin: 40px 0;
    text-align: left;
    overflow: hidden;
}

/* Developer Section Mobile */
.dev-img {
    display: flex;
    justify-content: center;
}

.dev-placeholder {
    width: 220px;
    height: 220px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: 900;
}

.ambition {
    font-size: 1.15rem;
    text-align: left;
    margin: 0 auto 30px;
    border-left: 4px solid var(--secondary);
    padding-left: 20px;
}

/* Animation Refinement */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Desktop Overrides (Larger Screens) */
@media (min-width: 992px) {
    section { padding: 120px 0; }
    .hero {
        flex-direction: row;
        text-align: left;
        padding-top: 100px;
    }
    .hero-btns {
        flex-direction: row;
        justify-content: flex-start;
    }
    .grid {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: 80px;
    }
    .dev-placeholder {
        width: 300px;
        height: 300px;
        font-size: 5rem;
    }
    .nav-links { display: flex; }
    .nav-content { justify-content: space-between; }
    .hero-visual { flex: 1; }
    .hero-content { width: auto; }
}

@media (max-width: 991px) {
    .nav-links { display: none; }
    .nav-content { justify-content: center; }
}