:root {
    --bg: #ffffff;
    --text: #111111;
    --text-light: #666666;
    --accent: #6d28d9;
    /* Deep Purple */
    --accent-light: #ddd6fe;
    --line: #eeeeee;
    --easing: cubic-bezier(0.19, 1, 0.22, 1);
    /* Expo Out */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Layout */
.layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 3rem 4rem;
    position: relative;
    z-index: 2;
}

/* Navigation */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.link-social {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 2px;
}

.link-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--text);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--easing);
}

.link-social:hover .link-underline {
    transform: scaleX(1);
    transform-origin: left;
}

/* Main Grid */
.content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* Tighter split */
    gap: 2rem;
    /* Reduced gap */
    flex: 1;
    max-width: 1400px;
    /* Prevent it from getting too wide on huge screens */
    margin: 0 auto;
    width: 100%;
}

/* Typography & Identity */
.hero-text {
    font-size: clamp(4rem, 9vw, 8rem);
    font-weight: 300;
    line-height: 0.85;
    letter-spacing: -0.04em;
    margin-left: -0.05em;
    /* Optical alignment */
}

.text-accent {
    font-weight: 500;
    color: var(--accent);
}

.overflow-hide {
    overflow: hidden;
}

.role-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.line {
    width: 60px;
    height: 1px;
    background-color: var(--text);
}

.role {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
}

.bio-container {
    max-width: 480px;
}

.bio {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.bio-muted {
    color: var(--text-light);
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.7;
    font-style: italic;
}

/* Menu List */
.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.menu-item {
    border-bottom: 1px solid var(--line);
}

.menu-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text);
    padding: 2rem 0;
    transition: padding 0.4s var(--easing), color 0.3s ease;
}

.index {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 700;
    margin-right: 2rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.label {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.menu-link:hover {
    padding-left: 1.5rem;
    color: var(--accent);
}

.menu-link:hover .index {
    opacity: 1;
}

/* Status Box */
.status-box {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-light);
    border: 1px solid var(--line);
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(109, 40, 217, 0.4);
    animation: pulse-soft 3s infinite;
}

@keyframes pulse-soft {
    0% {
        box-shadow: 0 0 0 0 rgba(109, 40, 217, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(109, 40, 217, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(109, 40, 217, 0);
    }
}

/* Reveal Animations */
.reveal-text {
    transform: translateY(100%);
    animation: slideUp 1s var(--easing) forwards;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s var(--easing) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.4s;
}

.delay-4 {
    animation-delay: 0.5s;
}

.delay-5 {
    animation-delay: 0.6s;
}

.delay-6 {
    animation-delay: 0.7s;
}

.delay-7 {
    animation-delay: 0.8s;
}

.delay-8 {
    animation-delay: 0.9s;
}

.delay-9 {
    animation-delay: 1.0s;
}

@keyframes slideUp {
    from {
        transform: translateY(110%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mouse Follower */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--text);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(17, 17, 17, 0.2);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-follower.hovered {
    width: 60px;
    height: 60px;
    border-color: var(--accent);
    background: rgba(109, 40, 217, 0.03);
}

/* Responsive */
@media (max-width: 900px) {
    .layout {
        padding: 2rem;
    }

    .content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .nav {
        margin-bottom: 2rem;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }

    * {
        cursor: auto;
    }
}