:root {
    --bg-color: #0a0a0c;
    --text-main: #f3f3f3;
    --text-muted: #9ca3af;
    --border-color: #2a2a2a;
    --accent: #ffffff;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 680px;
    width: 100%;
    background-color: transparent;
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

h1 {
    font-size: 2.75rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.tagline {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0.01em;
}

.about {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #d1d5db;
    font-weight: 300;
}

.about p {
    margin-bottom: 1.5rem;
}

.about p:last-child {
    margin-bottom: 0;
}

.status {
    margin-bottom: 4rem;
    padding: 1.25rem;
    background-color: #1f1f23;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    color: #e5e7eb;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.founder-name {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.links {
    display: flex;
    gap: 1.5rem;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

.links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.2s ease;
    position: relative;
    padding-bottom: 2px;
}

.links a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.links a:hover {
    color: var(--accent);
}

.links a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

@media (max-width: 600px) {
    footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}
