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

:root {
    --noir-black: #0a0a0a;
    --noir-dark: #1a1a1a;
    --noir-gray: #2a2a2a;
    --noir-light-gray: #8a8a8a;
    --noir-white: #f5f5f0;
    --noir-cream: #e8e8e0;
    --accent-gold: #c9a961;
    --accent-red: #8b0000;
    --shadow-dark: rgba(0, 0, 0, 0.8);
    --shadow-light: rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--noir-black);
    color: var(--noir-white);
    overflow-x: hidden;
    cursor: none;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
    animation: noise 8s steps(10) infinite;
}

@keyframes noise {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-2%, -1%); }
    20% { transform: translate(2%, 1%); }
    30% { transform: translate(-1%, 2%); }
    40% { transform: translate(1%, -2%); }
    50% { transform: translate(-1%, 1%); }
    60% { transform: translate(2%, -1%); }
    70% { transform: translate(-2%, 2%); }
    80% { transform: translate(1%, 1%); }
    90% { transform: translate(-1%, -1%); }
}

.vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--noir-cream);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transition: transform 0.1s ease;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    opacity: 0.3;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transition: transform 0.3s ease;
    z-index: 9998;
    mix-blend-mode: screen;
}

.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(to bottom, var(--noir-black), transparent);
    backdrop-filter: blur(10px);
    padding: 20px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--noir-cream);
    text-shadow: 2px 2px 4px var(--shadow-dark);
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--noir-cream);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--noir-black) 0%, var(--noir-dark) 100%);
    overflow: hidden;
}

.smoke-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.02" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,133.3C672,139,768,181,864,186.7C960,192,1056,160,1152,149.3C1248,139,1344,149,1392,154.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center;
    animation: smoke 20s ease-in-out infinite;
}

@keyframes smoke {
    0%, 100% { transform: translateX(0) translateY(0); opacity: 0.5; }
    50% { transform: translateX(30px) translateY(-30px); opacity: 0.8; }
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    animation: fadeInUp 1.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    margin-bottom: 30px;
}

.title-line {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 900;
    letter-spacing: 3px;
    text-shadow: 3px 3px 6px var(--shadow-dark);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--noir-cream) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    display: block;
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--noir-light-gray);
}

.hero-tagline {
    font-size: 16px;
    line-height: 1.8;
    color: var(--noir-light-gray);
    max-width: 600px;
    margin: 0 auto 40px;
    font-style: italic;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-button {
    padding: 15px 40px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--accent-gold);
    color: var(--noir-black);
    font-weight: 600;
}

.cta-button.secondary {
    background: transparent;
    color: var(--noir-cream);
    border: 1px solid var(--noir-cream);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.hero-silhouettes {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    pointer-events: none;
}

.silhouette {
    width: 80px;
    height: 200px;
    background: var(--noir-dark);
    opacity: 0.6;
    clip-path: polygon(35% 0%, 65% 0%, 80% 30%, 75% 50%, 85% 100%, 15% 100%, 25% 50%, 20% 30%);
    animation: float 6s ease-in-out infinite;
}

.silhouette:nth-child(1) { animation-delay: 0s; height: 180px; }
.silhouette:nth-child(2) { animation-delay: 1s; height: 220px; }
.silhouette:nth-child(3) { animation-delay: 2s; height: 200px; }
.silhouette:nth-child(4) { animation-delay: 3s; height: 190px; }
.silhouette:nth-child(5) { animation-delay: 4s; height: 210px; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.chapter {
    padding: 100px 0;
    position: relative;
}

.chapter-header {
    text-align: center;
    margin-bottom: 80px;
}

.chapter-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.chapter-title::before,
.chapter-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 1px;
    background: var(--accent-gold);
}

.chapter-title::before {
    left: -120px;
}

.chapter-title::after {
    right: -120px;
}

.chapter-subtitle {
    font-size: 18px;
    color: var(--noir-light-gray);
    font-style: italic;
}

.intro-section {
    margin-bottom: 60px;
}

.intro-card {
    background: var(--noir-dark);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    animation: scan 3s linear infinite;
}

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

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.intro-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--noir-cream);
}

.intro-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--noir-light-gray);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--noir-cream);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pain-card {
    background: linear-gradient(135deg, var(--noir-dark), var(--noir-gray));
    padding: 30px;
    border-radius: 10px;
    position: relative;
    transition: transform 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
}

.pain-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--accent-gold);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 20px;
}

.pain-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--noir-cream);
}

.pain-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--noir-light-gray);
    margin-bottom: 20px;
}

.pain-solution {
    border-top: 1px solid var(--noir-gray);
    padding-top: 15px;
}

.solution-label {
    font-weight: 600;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 5px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-icon {
    font-size: 32px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--noir-cream);
}

.benefit-content p {
    font-size: 14px;
    color: var(--noir-light-gray);
}

.chapter-two {
    background: var(--noir-dark);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.case-card {
    background: var(--noir-black);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.case-card:hover {
    transform: scale(1.02);
}

.case-brand {
    padding: 40px;
    background: linear-gradient(135deg, var(--noir-gray), var(--noir-dark));
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 3px;
    padding: 20px 40px;
    border: 2px solid;
}

.brand-logo.tech {
    color: #4a90e2;
    border-color: #4a90e2;
}

.brand-logo.retail {
    color: #e2c44a;
    border-color: #e2c44a;
}

.brand-logo.production {
    color: #e24a4a;
    border-color: #e24a4a;
}

.brand-logo.finance {
    color: #4ae290;
    border-color: #4ae290;
}

.case-content {
    padding: 30px;
}

.case-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--noir-cream);
}

.case-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: var(--noir-light-gray);
    text-transform: uppercase;
}

.case-description h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-top: 20px;
    margin-bottom: 10px;
}

.case-description p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--noir-light-gray);
}

.chapter-three {
    background: linear-gradient(135deg, var(--noir-black), var(--noir-dark));
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--noir-cream);
    text-align: center;
}

.about-role {
    text-align: center;
    font-size: 18px;
    color: var(--accent-gold);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.about-bio {
    margin-bottom: 40px;
}

.about-bio p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--noir-light-gray);
    margin-bottom: 20px;
    text-align: center;
}

.expertise-areas h4 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--noir-cream);
    text-align: center;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.expertise-item {
    background: var(--noir-gray);
    padding: 15px 20px;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    color: var(--noir-cream);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    background: var(--accent-gold);
    color: var(--noir-black);
}

.achievements h4 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--noir-cream);
    text-align: center;
}

.achievement-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.achievement {
    text-align: center;
}

.achievement-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.achievement-text {
    font-size: 14px;
    color: var(--noir-light-gray);
}

.client-brands h4 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--noir-cream);
    text-align: center;
}

.brands-marquee {
    overflow: hidden;
    margin-bottom: 60px;
}

.brands-track {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
}

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

.brand-item {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--noir-light-gray);
    white-space: nowrap;
    letter-spacing: 2px;
}

.testimonials h4 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--noir-cream);
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: var(--noir-gray);
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 60px;
    color: var(--accent-gold);
    opacity: 0.3;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--noir-cream);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--noir-cream);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--noir-light-gray);
}

.footer {
    background: var(--noir-black);
    padding: 60px 0 30px;
    border-top: 1px solid var(--noir-gray);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--noir-cream);
}

.footer-brand p {
    font-size: 14px;
    color: var(--noir-light-gray);
}

.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--noir-cream);
}

.contact-link {
    display: block;
    color: var(--noir-light-gray);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-gold);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    color: var(--noir-light-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--noir-gray);
}

.footer-bottom p {
    font-size: 12px;
    color: var(--noir-light-gray);
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
    }
}