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

body {
    font-family: 'Arial', sans-serif;
    background: #0a0e17;
    color: #ffffff;
    overflow-x: hidden;
}

/* NAVIGATION */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(10px);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.crown-icon {
    width: 35px;
    height: 35px;
    color: #d4a574;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d4a574;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: 0.3s;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 50px 50px;
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f35 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(64, 224, 208, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: #8a9ba8;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 40px;
    color: #c5d0db;
    font-weight: 300;
}

.hero-tagline strong {
    color: #d4a574;
    font-weight: 700;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #d4a574 0%, #b8925f 100%);
    color: #0a0e17;
    text-decoration: none;
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
    position: relative;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.5);
}

.cta-button:active {
    transform: translateY(0);
}

.ip-text {
    font-family: 'Courier New', monospace;
    font-size: 18px;
}

.copy-icon {
    display: flex;
    align-items: center;
}

.copy-icon svg {
    width: 20px;
    height: 20px;
}

.copy-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: #d4a574;
    color: #0a0e17;
    padding: 20px 40px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    box-shadow: 0 20px 60px rgba(212, 165, 116, 0.6);
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.copy-notification.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(64, 224, 208, 0.1) 100%);
    border: 2px solid rgba(212, 165, 116, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(212, 165, 116, 0.1) 50%, transparent 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(212, 165, 116, 0.05) 2px, rgba(212, 165, 116, 0.05) 4px);
    pointer-events: none;
    z-index: 2;
}

.city-render {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 1;
}

.render-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(10, 14, 23, 0.3) 0%,
        transparent 50%
    );
    pointer-events: none;
    z-index: 2;
}

.placeholder-text {
    font-size: 14px;
    color: #8a9ba8;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tech-corners {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid #d4a574;
}

.tech-corners.tl { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.tech-corners.tr { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.tech-corners.bl { bottom: -2px; left: -2px; border-right: none; border-top: none; }
.tech-corners.br { bottom: -2px; right: -2px; border-left: none; border-top: none; }

/* MODULES SECTION */
.modules {
    padding: 100px 50px;
    background: #e8dcc8;
    position: relative;
}

.modules::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4a574, transparent);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.module-card {
    background: #ffffff;
    padding: 50px 30px;
    border: 2px solid #d4a574;
    position: relative;
    transition: transform 0.3s;
}

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

.module-icon {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f5f0e8 0%, #e8dcc8 100%);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid rgba(212, 165, 116, 0.3);
}

.module-icon svg {
    width: 120px;
    height: 120px;
    color: #d4a574;
}

.tech-lines {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
}

.tech-lines::before,
.tech-lines::after {
    content: '';
    position: absolute;
    background: #d4a574;
}

.tech-lines::before {
    width: 100%;
    height: 1px;
    top: 0;
}

.tech-lines::after {
    width: 1px;
    height: 100%;
    right: 0;
}

.module-card h3 {
    font-size: 24px;
    font-weight: 900;
    color: #0a0e17;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.module-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #2a2a2a;
    font-weight: 400;
}

/* PROCESS SECTION */
.process {
    padding: 100px 50px;
    background: #1a1f35;
    text-align: center;
}

.process h2 {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 80px;
    letter-spacing: -1px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    position: relative;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #d4a574 0%, #b8925f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.step-icon svg {
    width: 50px;
    height: 50px;
    color: #0a0e17;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: #0a0e17;
    border: 2px solid #d4a574;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
}

.process-step h4 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-step p {
    font-size: 16px;
    color: #8a9ba8;
    line-height: 1.5;
}

/* FOOTER */
footer {
    padding: 60px 50px 40px;
    background: #0a0e17;
    border-top: 2px solid #d4a574;
}

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

.footer-cta {
    position: relative;
}

.footer-cta h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}

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

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(212, 165, 116, 0.1);
    border: 2px solid #d4a574;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #d4a574;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #d4a574;
    color: #0a0e17;
    transform: translateY(-3px);
}

.footer-legal {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    font-size: 12px;
    color: #8a9ba8;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 56px;
    }

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

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

@media (max-width: 768px) {
    nav {
        padding: 20px 30px;
    }

    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero {
        padding: 80px 30px 50px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 14px;
    }

    .ip-text {
        font-size: 16px;
    }

    .modules,
    .process {
        padding: 60px 30px;
    }

    .process h2 {
        font-size: 32px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}