@font-face {
    font-family: 'CIBFont';
    src: url('CIBFontSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'CIBFont';
    src: url('CIBFontSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'CIBFont', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    font-weight: 300;
}

#matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 0, 0.3);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #0f0;
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: color 0.3s;
    position: relative;
    font-family: 'CIBFont', sans-serif;
}

.nav-links a:hover {
    color: #0f0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0f0;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 50px;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
    font-family: 'CIBFont', sans-serif;
}

.subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #0f0;
    margin-bottom: 40px;
    font-weight: 300;
    font-family: 'CIBFont', sans-serif;
}

.cta-button {
    background: transparent;
    border: 2px solid #0f0;
    color: #0f0;
    padding: 15px 50px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'CIBFont', sans-serif;
}

.cta-button:hover {
    background: #0f0;
    color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.8);
    transform: translateY(-2px);
}

.content-section {
    position: relative;
    z-index: 10;
    padding: 60px 20px;
}

.content-section.dark {
    background: rgba(0, 0, 0, 0.5);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.container h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 40px;
    color: #0f0;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    font-weight: 700;
    font-family: 'CIBFont', sans-serif;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 0, 0.3);
    padding: 30px 25px;
    border-radius: 10px;
    transition: all 0.3s;
    text-align: center;
}

.card:hover {
    border-color: #0f0;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
    transform: translateY(-5px);
}

.card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #0f0;
    font-weight: 700;
    font-family: 'CIBFont', sans-serif;
}

.card p {
    line-height: 1.5;
    color: #ccc;
    font-size: 15px;
}

.icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: #0f0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.founders {
    text-align: center;
    margin-bottom: 40px;
}

.founders h3 {
    font-size: 24px;
    color: #0f0;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'CIBFont', sans-serif;
}

.founder-list {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.founder {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 0, 0.3);
    padding: 15px 35px;
    border-radius: 10px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.founder:hover {
    border-color: #0f0;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    transform: translateY(-3px);
}

.founder p {
    font-size: 18px;
    color: #0f0;
    font-weight: 700;
    font-family: 'CIBFont', sans-serif;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #fff;
    padding: 15px;
    font-size: 16px;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0f0;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.submit-button {
    background: transparent;
    border: 2px solid #0f0;
    color: #0f0;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'CIBFont', sans-serif;
}

.submit-button:hover {
    background: #0f0;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

footer {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid rgba(0, 255, 0, 0.3);
    color: #888;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .logo {
        height: 38px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        max-width: 320px;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        border-left: 2px solid rgba(0, 255, 0, 0.5);
        box-shadow: -5px 0 30px rgba(0, 255, 0, 0.2);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 20px;
        padding: 15px 40px;
        width: 80%;
        text-align: center;
        border: 1px solid rgba(0, 255, 0, 0.3);
        border-radius: 8px;
        background: rgba(0, 255, 0, 0.05);
        transition: all 0.3s;
    }
    
    .nav-links a:hover {
        background: rgba(0, 255, 0, 0.15);
        border-color: #0f0;
        transform: scale(1.05);
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .hero {
        padding: 100px 15px 40px;
        min-height: 80vh;
    }
    
    .hero-content h1 {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }
    
    .subtitle {
        font-size: clamp(1rem, 4vw, 1.4rem);
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 11px 28px;
        font-size: 13px;
    }
    
    .content-section {
        padding: 40px 15px;
    }
    
    .container h2 {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
        margin-bottom: 30px;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .card {
        padding: 25px 18px;
    }
    
    .card h3 {
        font-size: 19px;
    }
    
    .card p {
        font-size: 14px;
    }
    
    .icon {
        font-size: 38px;
        margin-bottom: 12px;
    }
    
    .founders {
        margin-bottom: 30px;
    }
    
    .founders h3 {
        font-size: 20px;
        margin-bottom: 18px;
    }
    
    .founder-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .founder {
        padding: 12px 25px;
    }
    
    .founder p {
        font-size: 16px;
    }
    
    .contact-form {
        gap: 15px;
    }
    
    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
        padding: 11px;
    }
    
    .submit-button {
        padding: 11px;
        font-size: 13px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 30px;
    }
    
    .product-card {
        padding: 22px 15px;
    }
    
    .product-icon {
        font-size: 46px;
    }
    
    .product-card h3 {
        font-size: 21px;
    }
    
    .product-description {
        font-size: 13px;
    }
    
    .price-options {
        gap: 12px;
    }
    
    .price-option {
        padding: 13px;
    }
    
    .product-price {
        font-size: 22px;
    }
    
    .price-detail {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .buy-button {
        padding: 9px 18px;
        font-size: 12px;
    }
    
    footer {
        font-size: 12px;
        padding: 18px 15px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 8px 0;
    }
    
    .logo {
        height: 32px;
    }
    
    .nav-links a {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    .hero {
        padding: 90px 12px 30px;
        min-height: 70vh;
    }
    
    .hero-content h1 {
        font-size: clamp(1.5rem, 12vw, 2.8rem);
    }
    
    .subtitle {
        font-size: clamp(0.85rem, 5vw, 1.1rem);
        margin-bottom: 20px;
    }
    
    .cta-button {
        padding: 9px 22px;
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .content-section {
        padding: 35px 10px;
    }
    
    .container h2 {
        font-size: clamp(1.4rem, 10vw, 2.2rem);
        margin-bottom: 25px;
    }
    
    .card {
        padding: 20px 14px;
    }
    
    .card h3 {
        font-size: 17px;
    }
    
    .card p {
        font-size: 13px;
    }
    
    .icon {
        font-size: 34px;
        margin-bottom: 10px;
    }
    
    .product-icon {
        font-size: 40px;
    }
    
    .product-card h3 {
        font-size: 19px;
    }
    
    .product-price {
        font-size: 20px;
    }
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.product-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 0, 0.3);
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-card:hover {
    border-color: #0f0;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
    transform: translateY(-5px);
}

.product-icon {
    font-size: 56px;
    color: #0f0;
    margin-bottom: 8px;
}

.product-card h3 {
    font-size: 26px;
    color: #0f0;
    margin-bottom: 8px;
    font-weight: 700;
    font-family: 'CIBFont', sans-serif;
}

.product-description {
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 14px;
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-option {
    background: rgba(0, 255, 0, 0.05);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.product-price {
    font-size: 24px;
    color: #0f0;
    font-weight: 700;
    margin: 3px 0;
    font-family: 'CIBFont', sans-serif;
}

.price-detail {
    color: #888;
    font-size: 13px;
    margin-bottom: 12px;
}

.buy-button {
    background: transparent;
    border: 2px solid #0f0;
    color: #0f0;
    padding: 12px 30px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 5px;
    font-family: 'CIBFont', sans-serif;
}

.buy-button:hover {
    background: #0f0;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    transform: scale(1.05);
}

.members-section {
    margin-bottom: 50px;
}

.role-title {
    font-size: 28px;
    color: #0f0;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-weight: 700;
    font-family: 'CIBFont', sans-serif;
}

.role-title .material-icons {
    font-size: 32px;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.member-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 0, 0.3);
    padding: 25px 20px;
    border-radius: 10px;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.member-card:hover {
    border-color: #0f0;
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.4);
    transform: translateY(-5px);
}

.member-card.owner {
    border-color: rgba(255, 215, 0, 0.5);
}

.member-card.owner:hover {
    border-color: #ffd700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.member-icon {
    font-size: 48px;
    color: #0f0;
}

.member-card.owner .member-icon {
    color: #ffd700;
}

.member-card p {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    font-family: 'CIBFont', sans-serif;
}

.badge {
    background: #ffd700;
    color: #000;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'CIBFont', sans-serif;
}

.join-section {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(0, 255, 0, 0.3);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
}

.join-section h3 {
    font-size: 28px;
    color: #0f0;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'CIBFont', sans-serif;
}

.join-section p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .members-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .member-card {
        padding: 20px 15px;
    }
    
    .member-icon {
        font-size: 40px;
    }
    
    .member-card p {
        font-size: 14px;
    }
    
    .role-title {
        font-size: 22px;
    }
    
    .join-section {
        padding: 30px 20px;
    }
    
    .join-section h3 {
        font-size: 22px;
    }
    
    .join-section p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .members-grid {
        grid-template-columns: 1fr;
    }
    
    .role-title {
        font-size: 20px;
    }
    
    .role-title .material-icons {
        font-size: 26px;
    }
}
