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

body {
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
                 sans-serif;

    /* Dégradé radial bleu–teal TAMAJAD */
    background: radial-gradient(
        circle at center,
        #0a7d91 0%,
        #065a69 40%,
        #04363d 100%
    );

    color: #ffffff;
}

/* Centrage global */
.page {
    min-height: 100vh;
    display: flex;
	display: grid;
	place-items: center;
    padding: 24px;
}

.brand {
    text-align: center;
}

/* Logo blanc */
.logo {
    width: 240px;
    max-width: 65vw;
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.logo {
    animation: fadein 0.6s ease-out;
}

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

/* Baseline Etsy */
.baseline-link {
    font-size: 0.9rem;
    opacity: 0.9;
    text-decoration: none;
    color: #b8f8ea;
    letter-spacing: 0.06em;
    text-transform: lowercase;
    transition: opacity 0.2s ease;
}

.baseline-link:hover,
.baseline-link:focus {
    opacity: 0.7;
}