:root {
    --primary: #00d2ff;
    --bg: #050505;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
}
body { 
    background-color: var(--bg); 
    color: #fff; 
    font-family: 'Segoe UI', sans-serif;
}
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    z-index: -1;
}
.main-content {
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.hero { text-align: center; }
.main-logo {
    width: 160px;
    filter: drop-shadow(0 0 20px var(--primary));
    margin-bottom: 20px;
}
.glitch {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 8px;
    text-transform: uppercase;
}
.typewriter {
    color: #888;
    margin: 15px 0 30px;
    font-size: 1.1rem;
}
.cta-group { display: flex; gap: 20px; justify-content: center; }
.btn-primary {
    background: var(--primary);
    color: #000;
    padding: 12px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
}
.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}
.btn-primary:hover { box-shadow: 0 0 25px var(--primary); }
.white-section {
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
}
.brand-intro {
    max-width: 1000px;
    margin: 0 auto 80px;
    text-align: center;
}
.brand-intro h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #050505;
}
.intro-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
}
.detailed-vision {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
}
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.vision-item {
    display: flex;
    width: 100%;
    margin-bottom: 40px;
    justify-content: flex-start;
}
.vision-item:nth-child(even) {
    justify-content: flex-end;
}
.vision-content {
    max-width: 550px;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.07);
    border-left: 6px solid var(--primary);
    animation: floating 4s ease-in-out infinite;
    transition: all 0.3s ease;
}
.vision-item:nth-child(even) .vision-content {
    border-left: none;
    border-right: 6px solid var(--primary);
    text-align: right;
}
.vision-content strong {
    font-size: 1.5rem;
    color: #050505;
    display: block;
    margin-bottom: 12px;
}
.vision-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
}
.vision-content:hover {
    box-shadow: 0 20px 45px rgba(0, 210, 255, 0.15);
    animation-play-state: paused;
}
.separator {
    border: none;
    border-top: 1px solid #eee;
    margin: 80px 0;
}
.founder-section {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 40px;
    background: #fdfdfd;
    border-radius: 30px;
}
.founder-image img {
    width: 280px;
    height: 280px;
    border-radius: 25px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.founder-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #000;
}
.founder-info p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}
.social-links {
    font-weight: 600;
    color: #00d2ff;
    padding: 10px 0;
    border-top: 1px solid #eee;
    display: inline-block;
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.main-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 20px 30px;
    font-family: 'Segoe UI', sans-serif;
}
.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}
.footer-brand {
    max-width: 400px;
}
.footer-logo {
    width: 140px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px var(--primary));
}
.footer-brand p {
    color: #888;
    font-size: 1rem;
}
.footer-right {
    text-align: right;
}
.expertise-tag {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.portfolio-btn {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}
.portfolio-btn:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}
.footer-divider {
    border: none;
    border-top: 1px solid #1a1a1a;
    margin-bottom: 25px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
}
.designer-link {
    color: var(--primary);
    text-decoration: none;
}
@media (max-width: 992px) {
    .vision-item, .vision-item:nth-child(even) {
        justify-content: center;
    }
    .vision-content {
        text-align: center !important;
        border: none !important;
        border-top: 5px solid var(--primary) !important;
    }
    
    .brand-intro h2 { font-size: 2.2rem; }
    
    .founder-image img {
        width: 200px;
        height: 200px;
    }
    .founder-section {
        flex-direction: column;
        text-align: center;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-right {
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}