:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-color: #3b82f6; /* Subtle blue */
    --accent-gradient: linear-gradient(90deg, #3b82f6, #8b5cf6);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Effect */
.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.15), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.1), transparent 40%);
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Layout */
header {
    padding: 2rem 5%;
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-weight: 600;
    letter-spacing: -0.01em;
    font-size: 1.25rem;
}

.contact-btn {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    background: var(--glass-bg);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    gap: 8rem;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 40vh;
}

.about-content {
    border-left: 1px solid var(--glass-border);
    padding-left: 2rem;
}

.about p {
    margin-bottom: 1rem;
}

footer {
    padding: 2rem 5%;
    border-top: 1px solid var(--glass-border);
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-content a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-content a:hover {
    color: var(--text-primary);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-delay-1 {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.2s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.4s forwards;
}

.fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.6s forwards;
}

/* Responsive */
@media (max-width: 768px) {
    main {
        gap: 4rem;
        padding-top: 2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
}
