:root {
    --green: #00ff66;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: #eaeaea;
    cursor: url("images/cursor.png") 16 16, auto !important;
    background:
        linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.65)),
        url("images/tlo.png");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}


.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 900px;
}

.photo-wrap {
    border-left: 3px solid var(--green);
    padding-left: 14px;
}

.profile-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
}

.hero-title {
    font-family: 'UnifrakturCook', serif;
    font-size: clamp(56px, 8vw, 80px);
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.hero-title .white {
    color: #ffffff;
}

.hero-title .green {
    color: var(--green);
}

.hero-claim {
    font-size: 24px;
    line-height: 1.7;
    max-width: 420px;
    opacity: 1;
}

.scroll {
    display: inline-block;
    font-size: 14px;
    margin-top: 30px;
    letter-spacing: 3px;
    color: var(--green);
    text-decoration: none;
}

.scroll:hover {
    text-shadow: 0 0 10px rgba(0,255,102,0.6);
}

section {
    max-width: 1100px;
    margin: 0 auto 70px;
}

.section-box {
    background: rgba(0,0,0,0.55);
    padding: 45px 50px;
    border-left: 3px solid var(--green);
    margin-top: 100px;
}

h3 {
    font-family: 'UnifrakturCook', serif;
    font-size: 28px;
    margin-bottom: 30px;
}

.project {
    margin-bottom: 30px;
    padding: 20px 0;
}

.project h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.project p {
    margin: 12px 0;
    color: #d6d6d6;
}

.project span {
    font-size: 13px;
    color: #9a9a9a;
}

.links a,
section a {
    color: var(--green);
    text-decoration: none;
    margin-right: 15px;
}

.links a:hover,
section a:hover {
    text-shadow: 0 0 8px rgba(0,255,102,0.6);
}
@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }
    .hero {
        padding: 60px 20px;
        min-height: auto;
    }

.hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.photo-wrap {
    border-left: none;
    border-top: 3px solid var(--green);
    padding-left: 0;
    padding-top: 14px;
}

.profile-img {
    width: 130px;
    height: 130px;
}

.hero-title {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero-claim {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.scroll {
    font-size: 12px;
}

section {
    margin-bottom: 40px;
    padding: 0 15px;
}

.section-box {
    padding: 30px 22px;
}

h3 {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
}

.project h4 {
    font-size: 18px;
}

.project p {
    font-size: 15px;
    line-height: 1.5;
}

.project span {
    display: block;
    margin-top: 8px;
}

.links {
    margin-top: 15px;
}

.links a {
    display: inline-block;
    margin-right: 12px;
    font-size: 14px;
    }
}

a,
a:hover,
button,
button:hover {
    cursor: url("images/cursor.png") 24 24, pointer;
}

#cursor-trail {
    position: fixed;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(0, 255, 102, 0.6);
    box-shadow: 0 0 20px rgba(0,255,102,0.8);
    transform: translate(-50%, -50%);
    transition: transform 0.08s linear;
    z-index: 9999;
}

body.focus-active .section-box {
    opacity: 0.35;
    transition: opacity 0.3s ease;
}

body.focus-active .section-box.focus {
    opacity: 1;
    box-shadow: 0 0 40px rgba(0,255,102,0.25);
    transform: translateY(-2px);
}

#scroll-sigil {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'UnifrakturCook', serif;
    font-size: 32px;
    color: #00ff66;
    opacity: 0;
    pointer-events: none;
    text-shadow: 0 0 20px rgba(0,255,102,0.6);
    transition: opacity 0.4s ease;
    z-index: 9999;
}

.section-box {
    position: relative;
}

.section-box.intent::after {
    content: "";
    position: absolute;
    inset: -2px;
    border: 2px solid rgba(0, 255, 102, 0.8);
    box-shadow: 0 0 25px rgba(0, 255, 102, 0.6);
    pointer-events: none;
    opacity: 1;
    animation: pulse 1.2s infinite alternate;
}

@keyframes pulse {
    from {
        box-shadow: 0 0 18px rgba(0, 255, 102, 0.4);
    }
    to {
        box-shadow: 0 0 36px rgba(0, 255, 102, 0.85);
    }
}
#projects {
    scroll-margin-top: 80px;
}




