:root {
    --primary: #111111;
    --secondary: #444444;
    --accent: #f0db4f;
    /* Vibrant Yellow from image */
    --accent-hover: #e5c619;
    --bg: #ffffff;
    --glass: rgba(0, 0, 0, 0.08);
    --glass-navbar: rgba(0, 0, 0, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

body {
    background: var(--bg);
    color: var(--primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none; /* Hide default cursor */
}

/* CUSTOM CURSOR */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: transform 0.1s ease-out, width 0.2s ease, height 0.2s ease;
}

/* Add a hover state for custom cursor */
.custom-cursor.hover {
    width: 50px;
    height: 50px;
    background-color: #fff;
}

/* NAVBAR - Floating Pill Style */
.navbar-container {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    padding: 0 20px;
}

.navbar {
    width: 100%;
    max-width: 1000px;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px 0 24px;
    border-radius: 100px;
    backdrop-filter: blur(30px) saturate(150%);
    background: rgba(20, 20, 20, 0.6);
    /* Darker glass for Nexora look */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.nav-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo::before {
    content: '';
    width: 20px;
    height: 18px;
    background: #fff;
    display: inline-block;
    /* Box/Parcel Shape */
    clip-path: polygon(0% 20%, 50% 0%, 100% 20%, 100% 80%, 50% 100%, 0% 80%);
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-cta {
    display: flex;
    align-items: center;
}

/* BUTTONS */
.btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: var(--accent);
    color: #000;
}

.btn-primary:hover {
    transform: scale(1.02);
    background: #fff;
}

/* HERO */
.hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    /* Removed dark overlay as requested for more brightness/contrast */
    z-index: 1;
    pointer-events: none;
}

canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.scroll-height {
    height: 800vh;
}

.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.step {
    position: absolute;
    max-width: 900px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    padding: 60px;
    border-radius: 40px;
    /* Localized glass effect to separate text from busy background */
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 80%);
    backdrop-filter: blur(4px);
    /* Subtle blur to soften background clutter */
}

.eyebrow {
    font-size: 0.85rem;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 100px;
    color: #000;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 30px;
    text-shadow: none;
}

.step h1 {
    font-size: 6rem;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -3px;
    color: #000;
    text-shadow: 0 0 40px rgba(255, 255, 255, 1), 0 0 20px rgba(255, 255, 255, 0.8);
    /* Text white-out for clarity */
}

.highlight {
    color: #d1b800;
    /* Darker yellow for better visibility on light scrim */
    font-style: italic;
    font-family: serif;
    font-weight: 400;
    letter-spacing: 0;
}

.description {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    text-shadow: 0 0 20px rgba(255, 255, 255, 1);
}

.search-bar-sim {
    background: #fff;
    border-radius: 100px;
    padding: 8px;
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-bar-sim input {
    border: none;
    outline: none;
    padding: 0 24px;
    font-size: 1rem;
    width: 250px;
    color: #666;
}

.search-bar-sim button:hover {
    background: #000;
    color: #fff;
}

/* SCROLL PROGRESS */
.scroll-progress-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring__circle {
    stroke-dasharray: 163.36;
    /* 2 * PI * r (r=26) */
    stroke-dashoffset: 163.36;
    transition: stroke-dashoffset 0.1s linear;
    stroke-linecap: round;
}

.progress-text {
    position: absolute;
    font-size: 0.8rem;
    font-weight: 700;
    color: #000;
}

@media (max-width: 768px) {
    .step h1 {
        font-size: 3.5rem;
    }

    .nav-links {
        display: none;
    }

    .description {
        font-size: 1.1rem;
    }
}