/* Import a clean font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap');

/* Background Pattern */
body {
    background-color: #fafafa;
    /* This creates the subtle dot/grid pattern */
    background-image: radial-gradient(#e5e5e5 1px, transparent 1px);
    background-size: 30px 30px;
    
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Fade-in animation for page load */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 2rem 10%;
    align-items: center;
}

.logo { 
    font-weight: 700; 
    font-size: 1.2rem; 
    letter-spacing: -0.5px;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
    animation: fadeIn 0.8s ease-out;
}

h1 { 
    font-size: 4rem; 
    letter-spacing: -3px; 
    margin-bottom: 1rem;
    line-height: 1;
}

p { 
    color: #666; 
    font-size: 1.2rem; 
    margin-bottom: 2.5rem;
}

.btn {
    padding: 15px 40px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 400;
    transition: transform 0.2s, background 0.2s;
}

.btn:hover { 
    background: #333;
    transform: scale(1.02);
}

/* Subtle background accent */
.accent-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,0,0,0.03) 0%, transparent 70%);
    z-index: -1;
    top: 10%;
    right: 10%;
}