:root {
    --bg-color: #6d28d9;
    --text-color: #ffffff;
    --font-main: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    transition: background-color 0.8s ease;
}

.top-logo { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); z-index: 100; }

.logo { 
    display: inline-block; 
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: 2px;
}
.side-nav { position: fixed; top: 20px; right: 20px; display: flex; flex-direction: column; gap: 12px; z-index: 100; }
.nav-dot { width: 24px; height: 24px; border-radius: 50%; cursor: pointer; transition: transform 0.3s ease, opacity 0.3s ease; position: relative; border: 2px solid rgba(255,255,255,0.2); }
.nav-dot:hover { transform: scale(1.2); }
.nav-dot.active { box-shadow: 0 0 0 4px rgba(255,255,255,0.5); border-color: #fff; }
.nav-dot::before { content: attr(data-tooltip); position: absolute; right: 35px; top: 50%; transform: translateY(-50%); background: #111; color: #fff; padding: 4px 10px; border-radius: 4px; font-size: 0.8rem; font-weight: 600; opacity: 0; pointer-events: none; transition: opacity 0.3s ease, transform 0.3s ease; white-space: nowrap; }
.nav-dot.active::before, .nav-dot:hover::before { opacity: 1; transform: translateY(-50%) translateX(-5px); }

.section { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; z-index: 10; padding: 0 5%; }
.container { width: 100%; max-width: 1200px; text-align: center; }

.massive-text { font-size: 6vw; font-weight: 900; line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 1rem; text-transform: lowercase; }
.sub-text { font-size: 2vw; font-weight: 700; margin-top: 2rem; text-transform: lowercase; opacity: 0.9; }

/* Buttons */
.cta-outline { display: inline-block; margin-top: 2rem; padding: 15px 40px; font-size: 1.5rem; font-weight: 800; color: #fff; text-decoration: none; border: 3px solid #fff; border-radius: 50px; text-transform: lowercase; transition: all 0.3s ease; }
.cta-outline:hover { background: #fff; color: var(--bg-color); transform: scale(1.05); }

.massive-btn { background: none; border: none; color: #fff; font-family: var(--font-main); font-size: 8vw; font-weight: 900; letter-spacing: -0.04em; text-transform: lowercase; cursor: pointer; transition: all 0.3s ease; line-height: 1.05; text-decoration: underline; text-underline-offset: 1vw; text-decoration-thickness: 0.5vw; }
.massive-btn:hover { color: #ccc; transform: scale(1.02) translateY(-5px); text-decoration-color: rgba(255,255,255,0.5); }

/* Service Grid */
.service-grid { display: flex; justify-content: center; gap: 4rem; margin-top: 4rem; flex-wrap: wrap; }
.service-item { flex: 1; min-width: 200px; max-width: 300px; text-align: center; padding: 2rem; background: rgba(255,255,255,0.05); border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); transition: transform 0.3s ease, background 0.3s ease; }
.service-item:hover { transform: translateY(-10px); background: rgba(255,255,255,0.1); }
.service-item h2 { font-size: 4rem; font-weight: 900; margin-bottom: 1rem; line-height: 1; }
.service-item p { font-size: 1.2rem; font-weight: 700; text-transform: lowercase; opacity: 0.9; }

/* Contact Links */
.contact-links { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 3rem; }
.hover-link { font-size: 3vw; font-weight: 900; color: #fff; text-decoration: none; text-transform: lowercase; letter-spacing: -0.03em; display: inline-block; transition: opacity 0.3s ease, transform 0.3s ease; }
.hover-link:hover { opacity: 0.7; transform: translateX(10px); }

/* Scroll Indicator */
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0.8; animation: softBounce 2.5s infinite ease-in-out; }
.scroll-indicator span { font-size: 0.85rem; font-weight: 600; letter-spacing: 2px; text-transform: lowercase; }
.scroll-line { width: 2px; height: 50px; background-color: rgba(255, 255, 255, 0.2); position: relative; overflow: hidden; border-radius: 2px; }
.scroll-line::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 15px; background-color: #fff; border-radius: 2px; animation: scrollDrop 2s infinite ease-in-out; }

@keyframes softBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollDrop {
    0% { transform: translateY(-15px); }
    100% { transform: translateY(50px); }
}
/* Custom Cursor */
.custom-cursor { position: fixed; top: 0; left: 0; width: 14px; height: 10px; background-color: #fff; border-radius: 6px; pointer-events: none; z-index: 9999; display: flex; align-items: center; justify-content: center; text-align: center; transition: width 0.3s ease, height 0.3s ease, padding 0.3s ease, background-color 0.3s ease; mix-blend-mode: difference; }
.custom-cursor.active { width: auto; min-width: 50px; height: 26px; padding: 0 10px; border-radius: 8px; background-color: #fff; mix-blend-mode: normal; }
.cursor-text { font-size: 0.7rem; font-weight: 900; color: #111; opacity: 0; transition: opacity 0.3s ease; text-transform: lowercase; line-height: 1.1; white-space: nowrap; }
.custom-cursor.active .cursor-text { opacity: 1; }
@media (max-width: 768px) {
    .massive-text { font-size: 10vw; }
    .sub-text { font-size: 5vw; }
    .massive-btn { font-size: 12vw; }
    .hover-link { font-size: 6vw; }
    .service-grid { gap: 2rem; flex-direction: column; align-items: center; }
    .service-item { width: 100%; max-width: 100%; }
}
