:root {
    --primary: #137fec;
    --black: #050505;
    --white: #f5f5f5;
}

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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: sans-serif;
    -webkit-font-smoothing: antialiased;
    background: var(--black);
    color: var(--white);
}

#wrap {
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.7, 0, 0.3, 1);
    will-change: transform;
}

section {
    width: 100%;
    height: 100dvh;
    position: relative;
    overflow: hidden;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
}

.bg-black { background-color: var(--black); }
.bg-white  { background-color: var(--white); }
.text-black { color: var(--black); }
.text-white { color: var(--white); }

.hero-title {
    font-size: clamp(4rem, 22vw, 12rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.8;
    text-transform: uppercase;
}

.hero-subtitle {
    color: var(--primary);
    font-weight: 900;
    font-size: clamp(1.5rem, 5vw, 3rem);
    letter-spacing: -0.02em;
    margin-top: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    height: 15vh;
    width: 4px;
    overflow: hidden;
}

.scroll-line {
    width: 100%;
    height: 100%;
    background: var(--primary);
    animation: scrollMove 2s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}

@keyframes scrollMove {
    0%   { transform: translateY(-100%); }
    50%  { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

.massive-title {
    font-size: clamp(5rem, 25vw, 12rem);
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.body-text {
    font-size: clamp(1.2rem, 6vw, 2rem);
    line-height: 1.3;
    font-weight: 500;
    max-width: 900px;
}

.body-text p { margin-bottom: 1.5rem; }
.body-text strong { font-weight: 900; }

.project { margin-top: 3.5rem; }

.project-name {
    color: var(--primary);
    font-size: clamp(2.8rem, 14vw, 7rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    word-break: break-word;
}

.contact-layout {
    justify-content: space-between;
    padding-top: 12vh;
    padding-bottom: 2rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.link {
    color: var(--white);
    text-decoration: none;
    font-size: clamp(1.5rem, 8vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    width: fit-content;
}

.link--email {
    color: var(--primary);
    font-size: clamp(1.2rem, 6.5vw, 2.5rem);
    word-break: break-all;
}

.footer { width: 100%; margin-top: auto; }

.cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.5rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 900;
    font-size: clamp(1.5rem, 5vw, 2rem);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.copyright {
    font-size: 0.8rem;
    font-weight: 700;
}
