body {
    margin: 0;
    min-height: 100vh;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Helvetica, Arial, sans-serif;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 10vh;

    background:
        radial-gradient(
            ellipse 60vw 40vh at 20% 10%,
            rgba(255, 255, 255, 0.10),
            rgba(0, 0, 0, 0) 60%
        ),
        radial-gradient(
            ellipse 50vw 35vh at 85% 30%,
            rgba(255, 255, 255, 0.06),
            rgba(0, 0, 0, 0) 55%
        ),
        linear-gradient(180deg, #070707 0%, #000000 60%);
}

.container {
    text-align: center;
    padding: 48px 28px;
    animation: fade_up 0.9s ease-out forwards;
    opacity: 0;
}

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

.logo_wrap {
    margin-bottom: 3px;
}

.logo_mask {
    width: min(800px, 75vw);
    height: auto;
}

@media (max-width: 768px) {
    .logo_mask {
        width: min(400px, 85vw);
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.2rem;
    }
}

.reveal_path {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: reveal_draw 1.4s ease-out forwards;
}

@keyframes reveal_draw {
    to {
        stroke-dashoffset: 0;
    }
}

h1 {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.02em;
}

h2 {
    font-size: 1.75rem;
    font-weight: 400;
    margin: 10px 0 8px;
    opacity: 0.78;
}


.meta {
    font-size: 0.95rem;
    opacity: 0.70;
    line-height: 1.9;
}

a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 2px;
}

a:hover {
    opacity: 0.86;
}

footer {
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    opacity: 0.45;
    text-align: center;
}
