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

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    min-height: 100vh;
    color: #1a1a1a;
    background: #fff;
}

nav {
    position: fixed;
    top: 2rem;
    right: 2rem;
    display: flex;
    gap: 2rem;
    z-index: 100;
}

nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
}

nav a:hover {
    opacity: 0.5;
}

main {
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1rem;
    color: #666;
}
