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

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    font-weight: 200;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #ffffff;
    transition: opacity 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    box-shadow: none;
    display: inline-block;
    line-height: 1;
}

.logo:hover {
    opacity: 0.8;
}

.logo:focus {
    outline: none;
}

.logo:active {
    border: none;
    outline: none;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.hero-content {
    text-align: center;
}

.hero h1 {
    font-size: 6rem;
    font-weight: 200;
    letter-spacing: 8px;
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 2rem;
    font-weight: 200;
    letter-spacing: 6px;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.hero-line {
    width: 1px;
    height: 60px;
    background-color: #ffffff;
    margin: 0 auto;
    opacity: 0.5;
}

.about {
    padding: 8rem 2rem;
    background: linear-gradient(0deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0) 100%);
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 200;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    max-width: 600px;
    opacity: 0.8;
    line-height: 1.8;
}

.about-accent {
    font-size: 1.2rem;
    letter-spacing: 4px;
    opacity: 0.5;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    padding: 2rem 0;
    border-right: 1px solid rgba(255,255,255,0.2);
}

footer {
    padding: 4rem 2rem;
    background: rgba(255,255,255,0.02);
}

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

.footer-text {
    font-size: 0.9rem;
    opacity: 0.6;
    letter-spacing: 2px;
    font-weight: 300;
}

.footer-logo {
    font-size: 1rem;
    letter-spacing: 4px;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-text {
        font-size: 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-accent {
        writing-mode: horizontal-tb;
        transform: none;
        text-align: right;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding: 1rem 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
} 