@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Bebas+Neue&family=Archivo+Black&display=swap');

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

:root {
    --black: #0D0D0D;
    --charcoal: #1A1A1A;
    --concrete: #2A2A2A;
    --smoke: #808080;
    --white: #F5F5F5;
    --pure-white: #FFFFFF;
    --neon-green: #BFFF00;
    --safety-orange: #FF6B35;
    --electric: #00E5FF;
}

::selection {
    background: var(--neon-green);
    color: var(--black);
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Grain Texture */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(191, 255, 0, 0.1);
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: var(--white);
    font-weight: 400;
}

.logo span {
    color: var(--neon-green);
}

.nav-menu {
    display: flex;
    gap: 3.5rem;
    list-style: none;
}

.nav-menu a {
    color: var(--smoke);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--neon-green);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    color: var(--neon-green);
}

.nav-menu a:hover::before {
    opacity: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    margin-top: 80px;
}

.hero-content {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
}

.hero-label {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--neon-green);
    font-weight: 700;
    margin-bottom: 3rem;
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--neon-green);
    background: rgba(191, 255, 0, 0.05);
}

.hero h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(4rem, 15vw, 14rem);
    line-height: 0.85;
    margin-bottom: 3rem;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    font-weight: 900;
}

.hero h1 .line {
    display: block;
    position: relative;
}

.hero h1 .line-1 {
    color: var(--white);
}

.hero h1 .line-2 {
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
    text-stroke: 2px var(--white);
    margin-left: 8%;
}

.hero h1 .line-3 {
    color: var(--white);
    margin-left: 16%;
}

.hero h1 .accent {
    color: var(--neon-green);
}

.hero-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 6rem;
    padding-top: 3rem;
    border-top: 1px solid var(--concrete);
}

.hero-description {
    max-width: 420px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--smoke);
    font-weight: 400;
}

.hero-description strong {
    color: var(--white);
    font-weight: 600;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 3rem;
    background: var(--neon-green);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid var(--neon-green);
}

.hero-cta:hover {
    background: transparent;
    color: var(--neon-green);
}

.hero-cta::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-cta:hover::after {
    transform: translateX(5px);
}

.service-hero h1 {
    font-size: clamp(2rem, 7.5vw, 7rem);
}

/* Marquee */
.marquee {
    background: var(--concrete);
    padding: 2rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(191, 255, 0, 0.2);
    border-bottom: 1px solid rgba(191, 255, 0, 0.2);
}

.marquee-content {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.marquee-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--neon-green);
    white-space: nowrap;
    padding: 0 3rem;
    letter-spacing: 2px;
}

.marquee-item span {
    color: var(--white);
    margin: 0 1rem;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Work Section */
.work {
    padding: 12rem 5%;
    background: var(--black);
}

.section-header {
    margin-bottom: 8rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-title-wrapper {
    flex: 1;
}

.section-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--neon-green);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.9;
}

.section-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12rem;
    color: transparent;
    -webkit-text-stroke: 1px var(--concrete);
    line-height: 1;
    font-weight: 400;
}

.work-grid {
    display: grid;
    gap: 0;
}

.work-item {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 6rem;
    padding: 5rem 0;
    border-bottom: 1px solid var(--concrete);
    align-items: center;
    transition: all 0.4s ease;
}

.work-item:hover {
    background: rgba(191, 255, 0, 0.02);
    padding-left: 3rem;
    padding-right: 3rem;
}

.work-image {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--concrete) 100%);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.work-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(191, 255, 0, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.work-item:hover .work-image::before {
    transform: translateX(100%);
}

.work-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.work-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: transparent;
    -webkit-text-stroke: 1px var(--smoke);
    line-height: 1;
}

.work-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-green);
    font-weight: 600;
}

.work-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 1rem 0;
}

.work-description {
    color: var(--smoke);
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 500px;
}

.work-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 1rem;
    transition: gap 0.3s ease;
}

.work-link:hover {
    gap: 1rem;
    color: var(--neon-green);
}

.work-link::after {
    content: '→';
    font-size: 1.2rem;
}

/* Services */
.services {
    padding: 12rem 5%;
    background: var(--charcoal);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--black);
}

.service-card {
    background: var(--charcoal);
    padding: 5rem;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid transparent;
}

.service-card:hover {
    background: var(--black);
    border-color: var(--neon-green);
}

.service-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    color: transparent;
    -webkit-text-stroke: 2px var(--concrete);
    line-height: 1;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-number {
    -webkit-text-stroke-color: var(--neon-green);
}

.service-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.service-description {
    color: var(--smoke);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neon-green);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

.service-link::after {
    content: '→';
    font-size: 1.2rem;
}

/* Manifesto */
.manifesto {
    padding: 12rem 5%;
    background: var(--black);
}

.manifesto-content {
    max-width: 1200px;
    margin: 0 auto;
}

.manifesto-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.3;
    font-weight: 300;
    margin-bottom: 6rem;
    color: var(--white);
}

.manifesto-text strong {
    font-weight: 800;
    color: var(--neon-green);
    font-style: normal;
}

.manifesto-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--neon-green);
}

.stat {
    background: var(--black);
    padding: 4rem 3rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.stat:hover {
    background: var(--charcoal);
    border-color: var(--neon-green);
    transform: translateY(-8px);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--neon-green);
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--smoke);
    font-weight: 600;
}

/* CTA */
.final-cta {
    padding: 15rem 5%;
    background: var(--charcoal);
    text-align: center;
}

.final-cta h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(3.5rem, 10vw, 10rem);
    line-height: 0.85;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.final-cta h2 .outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
}

.final-cta h2 .accent {
    color: var(--neon-green);
}

/* Footer */
footer {
    background: var(--black);
    padding: 8rem 5% 3rem;
    border-top: 1px solid var(--concrete);
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 6rem;
    margin-bottom: 5rem;
}

.footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.footer-brand span {
    color: var(--neon-green);
}

.footer-tagline {
    color: var(--smoke);
    line-height: 1.8;
    max-width: 350px;
    font-size: 0.95rem;
}

.footer-section h3 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--neon-green);
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--smoke);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--neon-green);
}

.footer-bottom {
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid var(--concrete);
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--smoke);
}

/* Responsive */
@media (max-width: 1200px) {
    .work-item {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1.5rem 5%;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        margin-top: 60px;
    }

    .hero-footer {
        flex-direction: column;
        gap: 3rem;
        align-items: flex-start;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .section-number {
        font-size: 6rem;
    }

    .manifesto-stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: flex;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem 5%;
        gap: 2rem;
        border-bottom: 1px solid rgba(191, 255, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 0.5rem 0;
    }
}

/* Contact Section */
.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.9;
    margin: 2rem 0 3rem;
}

.email-link {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--neon-green);
    text-decoration: none;
    display: block;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--white);
}

.contact-meta {
    color: var(--smoke);
    font-size: 1rem;
    line-height: 1.8;
}

.contact-form-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: var(--white);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-input,
.contact-textarea {
    width: 100%;
    padding: 1.2rem;
    background: var(--charcoal);
    border: 1px solid var(--concrete);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.contact-input:focus,
.contact-textarea:focus {
    outline: none;
    border-color: var(--neon-green);
}

.contact-textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-message {
    padding: 1rem;
    background: rgba(191, 255, 0, 0.1);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

