:root {
    --bg: #f8f8f6;
    --text: #111111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default cursor everywhere */
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    min-height: 100vh;
    overflow: hidden;
}

/* Organic Blob Cursor */
#blob-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff007f, #7f00ff, #00d4ff);
    background-size: 200% 200%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-radius 0.3s;
    mix-blend-mode: difference;
    animation: gradientShift 5s ease infinite, blobShape 4s ease-in-out infinite alternate;
}

#blob-cursor.hovered {
    width: 150px;
    height: 150px;
    filter: url('#goo'); /* Optional: gives a gooey feel if animated */
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes blobShape {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* Content */
.content-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 4rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-weight: 700;
    letter-spacing: 2px;
}

nav a {
    text-decoration: none;
    color: var(--text);
    margin-left: 2rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-grow: 1;
}

h1 {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 10vw;
    line-height: 0.85;
    letter-spacing: -3px;
    margin-bottom: 2rem;
}

h1 i {
    font-family: 'Bodoni Moda', serif;
    font-weight: 400;
    letter-spacing: 0;
}

p {
    font-size: 1.5rem;
    max-width: 600px;
    line-height: 1.4;
}

footer {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
