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

html {
    scroll-behavior: smooth;
}

body {
    background: #05070a;
    color: #f3f7fb;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.hero {
    position: relative;
    min-height: 100svh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    overflow: hidden;
    background:
        radial-gradient(circle at top,
            rgba(80,130,220,0.42),
            transparent 38%
        ),
        radial-gradient(circle at bottom,
            rgba(0,40,90,0.55),
            transparent 55%
        ),
        #030507;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?q=80&w=1600&auto=format&fit=crop');
	background-image: url('/img/martijn-ccr.jpg');
    background-size: cover;
    background-position: center center;
    opacity: 0.22;
    transform: scale(1.03);
    filter: saturate(0.9) contrast(1.05);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(3,5,7,0.45),
        rgba(3,5,7,0.68)
    );
}

.content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    font-size: clamp(3.2rem, 12vw, 11rem);
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 0.9;
    text-align: center;
    width: 100%;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.5s ease forwards;
}

.subtitle {
    margin-top: 36px;
    font-size: 0.85rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.58);
    opacity: 0;
    animation: fade 2s ease forwards;
    animation-delay: 0.8s;
}

.line {
    width: 1px;
    height: 70px;
    margin: 48px auto 36px auto;
    background: linear-gradient(to bottom,
        rgba(255,255,255,0.45),
        rgba(255,255,255,0)
    );
    opacity: 0;
    animation: fade 2s ease forwards;
    animation-delay: 1.2s;
}

.text {
    max-width: 540px;
    margin: auto;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.9;
    color: rgba(255,255,255,0.78);
    font-weight: 300;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 1.5s ease forwards;
    animation-delay: 1.4s;
}

.signature {
    margin-top: 36px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.42);
    opacity: 0;
    animation: fade 2s ease forwards;
    animation-delay: 2s;
}

.contact {
    margin-top: 28px;
    font-size: 0.82rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.78);
    font-weight: 300;
    opacity: 0;
    animation: fade 2s ease forwards;
    animation-delay: 2.6s;
}

.email {
    margin-top: 14px;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
}

.email a{
    color: rgba(255,255,255,0.78);
    text-decoration: none;
}

.mini-contact {
    margin-top: 72px;
    opacity: 0;
    animation: fade 2s ease forwards;
    animation-delay: 1.8s;
}

.mini-contact a {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255,255,255,0.34);
    transition: color 0.3s ease;
}

.mini-contact a:hover {
    color: rgba(255,255,255,0.72);
}

.bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom,
        rgba(5,7,10,0),
        rgba(5,7,10,1)
    );
    z-index: 1;
}

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

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



.fragment {
    margin-top: 40px;
    max-width: 520px;
    font-size: 0.95rem;
    line-height: 1.9;
    font-weight: 300;
    color: rgba(255,255,255,0.42);
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 1.5s ease forwards;
    animation-delay: 1.8s;
}

.fragment-source {

    margin-top: 14px;

    font-size: 0.68rem;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    color: rgba(255,255,255,0.22);
}


/* PAGE LAYOUT */

.page {

    position: relative;

    min-height: 100svh;

    width: 100%;

    overflow: hidden;

    background:
        radial-gradient(circle at top,
            rgba(80,130,220,0.24),
            transparent 42%
        ),
        radial-gradient(circle at bottom,
            rgba(0,40,90,0.38),
            transparent 60%
        ),
        #030507;
}

/* PAGE CONTENT */

.page-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding:
        100px
        22px
        120px
        22px;
}

/* PAGE TITLE */

.page-title {

    font-size: clamp(2.5rem, 7vw, 6rem);

    font-weight: 600;

    letter-spacing: 0.14em;

    line-height: 0.95;

    text-transform: uppercase;

    color: rgba(255,255,255,0.96);

    margin-bottom: 64px;

    opacity: 0;

    transform: translateY(20px);

    animation: fadeUp 1.2s ease forwards;
}

/* PAGE TEXT */

.page-text {

    max-width: 760px;

    font-size: clamp(1rem, 2vw, 1.15rem);

    line-height: 2;

    font-weight: 300;

    color: rgba(255,255,255,0.78);

    opacity: 0;

    transform: translateY(20px);

    animation: fadeUp 1.4s ease forwards;

    animation-delay: 0.2s;
}

/* PAGE NAVIGATION */

.page-nav {

    margin-top: 120px;

    display: flex;

    justify-content: flex-start;

gap: 48px;

    opacity: 0;

    animation: fade 2s ease forwards;

    animation-delay: 1.2s;
}

.page-nav a {

    font-size: 0.74rem;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    text-decoration: none;

    color: rgba(255,255,255,0.34);

    transition: color 0.3s ease;
}

.page-nav a:hover {

    color: rgba(255,255,255,0.82);
}


.pathway {
    margin-top: 140px;
    opacity: 0;
    animation: fade 2s ease forwards;
    animation-delay: 3s;
}

.pathway a {
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;

    color: rgba(255,255,255,0.46);

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.pathway a:hover {

    color: rgba(255,255,255,0.82);

    transform: translateX(4px);
}


.top-link {

    margin-bottom: 72px;
    opacity: 0;
    animation: fade 1.5s ease forwards;
}

.top-link a {

    font-size: 0.72rem;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    text-decoration: none;

    color: rgba(255,255,255,0.28);

    transition: color 0.3s ease;
}

.top-link a:hover {

    color: rgba(255,255,255,0.72);
}

@media (max-width: 700px) {

    .hero {
        padding: 20px 12px;
    }

    .logo {
        width: 100%;
        font-size: 4.4rem;
        letter-spacing: 0.08em;
        text-indent: 0.08em;
        line-height: 0.95;
        text-align: center;
        overflow-wrap: normal;
        white-space: nowrap;
        transform: translateX(0.04em);
    }

    .subtitle {
        margin-top: 24px;
        font-size: 0.7rem;
        letter-spacing: 0.22em;
    }

    .line {
        height: 50px;
        margin: 36px auto 28px auto;
    }

    .text {
        font-size: 1rem;
        line-height: 1.8;
        max-width: 92%;
    }

    .signature {
        margin-top: 40px;
        font-size: 0.68rem;
        letter-spacing: 0.14em;
    }
	
	.page-title {
        font-size: 2.2rem;
        letter-spacing: 0.06em;
        line-height: 1.08;
        word-break: normal;
		
    }
	
	.page-text {
		max-width: 100%;
	}
	
	 .page-nav {
		flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }
	
		.page-nav a {
			line-height: 1.6;
		}
}