/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #cccccc;
}

/* Header */
.header {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo svg {
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #cccccc;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav a:hover {
    color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #00ffff, #00e5ff);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00e5ff, #00ffff);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #00ffff;
}

.btn-secondary:hover {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    position: relative;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
    border: 2px solid rgba(0, 255, 255, 0.3);
}

/* Placeholder Images */
.placeholder-image {
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    border: 2px dashed rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffff;
    font-weight: 600;
    min-height: 300px;
    width: 100%;
    text-align: center;
}

.section-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.15);
    border: 1px solid rgba(0, 255, 255, 0.2);
}

/* Technology Section */
.technology {
    padding: 6rem 0;
    background: #1a1a1a;
    text-align: center;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-card {
    background: linear-gradient(135deg, #2a2a2a, #1e1e1e);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Orchestration Section */
.orchestration {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    text-align: center;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-content.reverse {
    direction: rtl;
}

.section-content.reverse > * {
    direction: ltr;
}

.content-text ul {
    list-style: none;
    padding: 0;
}

.content-text li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #cccccc;
}

.content-text li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00ffff;
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: #1a1a1a;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: linear-gradient(135deg, #2a2a2a, #1e1e1e);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 0, 255, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff00ff, #00ffff);
}

.product-price {
    font-size: 1.2rem;
    color: #ff00ff;
    margin: 1rem 0;
    font-weight: 600;
}

/* Creator Tools */
.creator-tools {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    text-align: center;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tool-item {
    padding: 2rem;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #00ffff;
}

/* Performance Section */
.performance {
    padding: 6rem 0;
    background: #1a1a1a;
    text-align: center;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.metric-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #2a2a2a, #1e1e1e);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #cccccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Community Section */
.community {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    text-align: center;
}

.community-features {
    margin-top: 2rem;
}

.feature-item {
    padding: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #cccccc;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ffff;
    font-weight: bold;
}

/* Contacts Section */
.contacts {
    padding: 6rem 0;
    background: #1a1a1a;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    padding: 2rem;
    background: rgba(255, 0, 255, 0.05);
    border-radius: 8px;
    border-top: 4px solid #ff00ff;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    margin-top: 1rem;
    color: #888888;
    font-size: 0.9rem;
}

.footer-section h3 {
    color: #00ffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00ffff;
}

.footer-link-btn {
    background: none;
    border: none;
    color: #cccccc;
    cursor: pointer;
    font-size: inherit;
    text-align: left;
    padding: 0;
    transition: color 0.3s ease;
}

.footer-link-btn:hover {
    color: #00ffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    color: #888888;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background: linear-gradient(135deg, #2a2a2a, #1e1e1e);
    margin: 5% auto;
    padding: 20px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    color: #cccccc;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ff00ff;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #00ffff;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(42, 42, 42, 0.8);
    color: #ffffff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-layout,
    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .tech-grid,
    .products-grid,
    .tools-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .placeholder-image {
        min-height: 200px;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }
    
    .technology,
    .orchestration,
    .products,
    .creator-tools,
    .performance,
    .community,
    .contacts {
        padding: 4rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 250px;
    }
    
    .hero-image,
    .section-image {
        border-radius: 8px;
    }
}