/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: oklch(1 0 0); /* white */
    --foreground: oklch(0.145 0 0); /* very dark gray/black */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Main container */
main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 1rem;
    text-align: center;
}

/* Company name styling */
h1 {
    font-size: 6rem;
    font-weight: 100;
    color: var(--foreground);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Button styling */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    color: white;
    background-color: var(--foreground);
    border-radius: 9999px;
    text-decoration: none;
    transition: all 200ms ease;
    cursor: pointer;
}

.button:hover {
    background-color: rgba(37, 37, 37, 0.85);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: 3.75rem;
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 8rem;
    }
}
