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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0a0a0a;
    color: #e5e5e5;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    padding: 32px 0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.15);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 24px;
    color: #7c3aed;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.02em;
}

/* Hero */
.hero {
    padding: 100px 0 80px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 18px;
    color: #a3a3a3;
    max-width: 560px;
    line-height: 1.7;
}

/* About */
.about {
    padding: 60px 0;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
}

.about h2 {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #7c3aed;
    margin-bottom: 20px;
}

.about p {
    font-size: 17px;
    color: #d4d4d4;
    max-width: 600px;
}

/* Contact */
.contact {
    padding: 60px 0;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
}

.contact h2 {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #7c3aed;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 17px;
}

.contact-info p {
    color: #a3a3a3;
    font-size: 15px;
}

.contact-info a {
    color: #a855f7;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info a:hover {
    color: #c084fc;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
    margin-top: 40px;
}

footer p {
    font-size: 13px;
    color: #525252;
}

/* Responsive */
@media (max-width: 640px) {
    .hero {
        padding: 60px 0 48px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 16px;
    }
}
