@import url('https://api.fontshare.com/v2/css?f[]=satoshi@900,700,500,400&display=swap');

:root {
    --bg: #000000;
    --accent: #0070f3;
    /* Electric Blue */
    --accent-glow: rgba(0, 112, 243, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #a1a1a1;
    --border: rgba(255, 255, 255, 0.1);
    --card-bg: #0a0a0a;
    --font-main: 'Satoshi', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    cursor: none;
    /* Custom cursor for that legendary feel */
}

body {
    background-color: var(--bg);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.4;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
}

/* Background Noise */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05;
    pointer-events: none;
    z-index: 9998;
}

/* Navigation - Floating Pill */
nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    padding: 12px 30px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.logo img {
    height: 32px;
    filter: brightness(0) invert(1);
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: 0.3s;
    opacity: 0.5;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent);
}

/* Hero Section - Epic Scale */
.hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 5% 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg-text {
    position: absolute;
    font-size: 25vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    z-index: -1;
    pointer-events: none;
    user-select: none;
}

.hero h1 {
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.8;
    letter-spacing: -0.06em;
    margin-bottom: 30px;
}

.hero h1 span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.btn-epic {
    padding: 24px 60px;
    background: var(--accent);
    color: white;
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-epic:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px var(--accent-glow);
}

/* Service Section - Architectural Grid */
section {
    padding: 100px 8%;
}

.section-label {
    color: var(--accent);
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.section-title {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    margin-bottom: 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    /* Minimal border look */
    background: var(--border);
    border: 1px solid var(--border);
}

.service-card {
    background: var(--bg);
    padding: 80px 40px;
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: #050505;
}

.service-card:hover .service-num {
    color: var(--accent);
    transform: translateY(-10px);
}

.service-num {
    font-size: 14px;
    font-weight: 900;
    color: var(--text-secondary);
    margin-bottom: 40px;
    display: block;
    transition: 0.4s;
}

.service-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

/* Process Section - Dark Industrial */
.process-section {
    background: #050505;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
}

.process-item {
    position: relative;
}

.process-item::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.process-item h4 {
    font-size: 6rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    line-height: 1;
    margin-bottom: 20px;
}

.process-item h5 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 900;
}

.process-item p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Contact Section - Cinematic */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 150px;
}

.contact-visual h2 {
    font-size: 8vw;
    line-height: 0.9;
    margin-bottom: 60px;
}

.contact-link {
    font-size: 40px;
    font-weight: 900;
    color: var(--text-primary);
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
    transition: 0.3s;
}

.contact-link:hover {
    color: var(--accent);
    padding-left: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.input-wrapper {
    position: relative;
}

input,
textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border);
    padding: 20px 0;
    color: white;
    font-size: 18px;
    font-family: inherit;
    outline: none;
    transition: 0.3s;
}

input:focus,
textarea:focus {
    border-color: var(--accent);
}

/* Footer */
footer {
    padding: 100px 8% 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-brand h4 {
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 20px;
}

.copyright {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.footer-socials {
    display: flex;
    gap: 30px;
}

.footer-socials a {
    color: var(--text-primary);
    font-size: 24px;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-socials a:hover {
    color: var(--accent);
    transform: translateY(-5px);
}

/* Reveal Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(60px);
    transition: 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

[data-reveal].active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {

    .services-grid,
    .process-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {

    /* Custom Cursor - Disable on mobile */
    .cursor,
    .cursor-follower {
        display: none !important;
    }

    * {
        cursor: auto !important;
    }

    nav {
        width: 100%;
        top: 0;
        left: 0;
        transform: none;
        border-radius: 0;
        padding: 20px 6%;
        justify-content: space-between;
        background: rgba(0, 0, 0, 0.85);
        border: none;
        border-bottom: 1px solid var(--border);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        z-index: 999;
        transform: translateX(100%);
        transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        padding: 40px;
        border: none;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 32px;
        font-weight: 900;
        opacity: 1 !important;
        text-align: center;
        width: auto;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        margin-left: auto;
    }

    .burger-menu {
        display: flex;
        flex-direction: column;
        gap: 7px;
        width: 32px;
        cursor: pointer;
        z-index: 1001;
    }

    .burger-menu span {
        display: block;
        width: 100%;
        height: 2px;
        background: white;
    }

    .logo img {
        height: 34px;
        z-index: 1001;
    }

    .hero {
        min-height: 70vh;
        padding: 100px 6% 40px;
    }

    .hero h1 {
        font-size: 3rem;
        line-height: 0.9;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    section {
        padding: 60px 6%;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .services-grid {
        gap: 20px;
        background: transparent;
        border: none;
    }

    .service-card {
        border: 1px solid var(--border);
        padding: 30px 20px;
    }

    .process-grid {
        gap: 40px;
    }

    footer {
        padding: 40px 6% 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .section-title {
        font-size: 2rem;
    }
}