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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #121418;
    color: #F2EDE9;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

.section-title {
    text-align: center;
    margin-bottom: 16px;
    color: #F2EDE9;
}

.section-subtitle {
    text-align: center;
    color: #A0A0A0;
    margin-bottom: 48px;
}

/* Header */
.header {
    background-color: rgba(18, 20, 24, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(122, 58, 255, 0.1);
}

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

.header-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F2EDE9;
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, #7A3AFF, #5D2ACC);
    color: #F2EDE9;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    border-color: #22E6A8;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #7A3AFF;
    color: #7A3AFF;
}

.cta-button.secondary:hover {
    background: #7A3AFF;
    color: #F2EDE9;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: 
        radial-gradient(circle at 20% 50%, rgba(122, 58, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 230, 168, 0.1) 0%, transparent 50%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 60px;
}

.hero-text {
    max-width: 800px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #F2EDE9, #22E6A8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #A0A0A0;
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.hero-visual {
    position: relative;
    max-width: 600px;
    width: 100%;
}

.hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.hero-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
}

.dashboard-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 200px;
    background: rgba(18, 20, 24, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(122, 58, 255, 0.2);
}

.dashboard-mockup {
    width: 100%;
}

.mockup-header {
    height: 40px;
    background: linear-gradient(90deg, #7A3AFF, #22E6A8);
    border-radius: 8px;
    margin-bottom: 16px;
}

.mockup-content {
    space-y: 16px;
}

.chart-placeholder {
    height: 120px;
    background: rgba(122, 58, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 16px;
    position: relative;
}

.chart-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #22E6A8;
    border-radius: 1px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.metric-card {
    height: 60px;
    background: rgba(34, 230, 168, 0.1);
    border-radius: 6px;
}

/* Platform Overview */
.platform-overview {
    padding: 80px 0;
    background: rgba(122, 58, 255, 0.02);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background: rgba(242, 237, 233, 0.03);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(122, 58, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #22E6A8;
    background: rgba(242, 237, 233, 0.05);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 12px;
    color: #F2EDE9;
}

.feature-card p {
    color: #A0A0A0;
}

/* Products Section */
.products {
    padding: 80px 0;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.product-card {
    background: rgba(242, 237, 233, 0.03);
    border: 1px solid rgba(122, 58, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: #22E6A8;
}

.product-card.featured {
    border-color: #7A3AFF;
    background: rgba(122, 58, 255, 0.05);
}

.product-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #7A3AFF;
    color: #F2EDE9;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-header {
    text-align: center;
    margin-bottom: 24px;
}

.product-header h3 {
    margin-bottom: 12px;
    color: #F2EDE9;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #22E6A8;
}

.price span {
    font-size: 1rem;
    color: #A0A0A0;
}

.product-features {
    margin-bottom: 32px;
}

.product-features ul {
    list-style: none;
}

.product-features li {
    padding: 8px 0;
    color: #A0A0A0;
    position: relative;
    padding-left: 24px;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22E6A8;
}

.product-cta {
    width: 100%;
    background: linear-gradient(135deg, #7A3AFF, #5D2ACC);
    color: #F2EDE9;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(122, 58, 255, 0.3);
}

/* Dashboard Preview */
.dashboard-preview {
    padding: 80px 0;
    background: rgba(34, 230, 168, 0.02);
    text-align: center;
}

.preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.preview-text h2 {
    margin-bottom: 24px;
    color: #F2EDE9;
}

.preview-text p {
    color: #A0A0A0;
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #22E6A8;
}

.stat-label {
    color: #A0A0A0;
    font-size: 0.875rem;
}

.dashboard-frame {
    position: relative;
}

.preview-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.dashboard-frame {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 250px;
    background: rgba(18, 20, 24, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(122, 58, 255, 0.2);
}

.dashboard-frame-standalone {
    background: rgba(242, 237, 233, 0.05);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(122, 58, 255, 0.2);
}

.frame-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.frame-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #A0A0A0;
}

.chart-container {
    height: 160px;
    position: relative;
    background: rgba(122, 58, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 16px;
    padding: 16px;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    top: 30%;
    left: 16px;
    right: 16px;
    height: 2px;
    background: linear-gradient(90deg, #7A3AFF, #22E6A8);
    border-radius: 1px;
}

.chart-bars {
    display: flex;
    align-items: end;
    height: 80px;
    gap: 8px;
    margin-top: 40px;
    justify-content: center;
}

.bar {
    width: 20px;
    background: #22E6A8;
    border-radius: 2px;
    opacity: 0.7;
}

.metrics-row {
    display: flex;
    gap: 12px;
}

.metric-box {
    flex: 1;
    background: rgba(34, 230, 168, 0.1);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.metric-icon {
    width: 24px;
    height: 24px;
    background: #22E6A8;
    border-radius: 4px;
    opacity: 0.8;
}

.metric-data {
    flex: 1;
    height: 12px;
    background: rgba(242, 237, 233, 0.3);
    border-radius: 6px;
}

/* Prototyping Lab */
.prototyping-lab {
    padding: 80px 0;
    background: rgba(122, 58, 255, 0.02);
    text-align: center;
}

.lab-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.device-mockup {
    background: #1a1a1a;
    border-radius: 24px;
    padding: 20px;
    max-width: 300px;
    margin: 0 auto;
    border: 2px solid rgba(122, 58, 255, 0.2);
}

.device-screen {
    background: #000;
    border-radius: 16px;
    padding: 16px;
    aspect-ratio: 9/16;
}

.prototype-interface {
    background: rgba(122, 58, 255, 0.1);
    height: 100%;
    border-radius: 8px;
    padding: 12px;
}

.interface-header {
    height: 32px;
    background: linear-gradient(90deg, #7A3AFF, #22E6A8);
    border-radius: 6px;
    margin-bottom: 12px;
}

.interface-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: calc(100% - 44px);
}

.game-element {
    height: 60px;
    background: rgba(34, 230, 168, 0.2);
    border-radius: 8px;
}

.game-controls {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.control-button {
    flex: 1;
    height: 40px;
    background: rgba(122, 58, 255, 0.3);
    border-radius: 6px;
}

.lab-text h2 {
    margin-bottom: 24px;
    color: #F2EDE9;
}

.lab-text p {
    color: #A0A0A0;
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.lab-features {
    margin-bottom: 32px;
}

.lab-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: #22E6A8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #121418;
    font-weight: bold;
    font-size: 0.875rem;
}

/* Vendor Directory */
.vendor-directory {
    padding: 80px 0;
    text-align: center;
}

.vendors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.vendor-category {
    background: rgba(242, 237, 233, 0.03);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(122, 58, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.vendor-category:hover {
    transform: translateY(-8px);
    border-color: #22E6A8;
}

.category-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.vendor-category h3 {
    margin-bottom: 12px;
    color: #F2EDE9;
}

.vendor-category p {
    color: #A0A0A0;
    margin-bottom: 16px;
}

.vendor-count {
    color: #22E6A8;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Benefits */
.benefits {
    padding: 80px 0;
    background: rgba(34, 230, 168, 0.02);
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.benefit-card {
    text-align: center;
    padding: 40px 24px;
}

.benefit-number {
    font-size: 4rem;
    font-weight: 700;
    color: #22E6A8;
    margin-bottom: 16px;
}

.benefit-card h3 {
    margin-bottom: 16px;
    color: #F2EDE9;
}

.benefit-card p {
    color: #A0A0A0;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    background: rgba(242, 237, 233, 0.03);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(122, 58, 255, 0.1);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    color: #A0A0A0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-name {
    color: #F2EDE9;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-title {
    color: #A0A0A0;
    font-size: 0.875rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: rgba(122, 58, 255, 0.02);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 24px;
    color: #F2EDE9;
}

.contact-info p {
    color: #A0A0A0;
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.contact-details {
    space-y: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(122, 58, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    background: rgba(242, 237, 233, 0.03);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(122, 58, 255, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(242, 237, 233, 0.05);
    border: 1px solid rgba(122, 58, 255, 0.2);
    border-radius: 8px;
    color: #F2EDE9;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #A0A0A0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #22E6A8;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, #7A3AFF, #5D2ACC);
    color: #F2EDE9;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(122, 58, 255, 0.3);
}

/* Footer */
.footer {
    background: rgba(18, 20, 24, 0.8);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(122, 58, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 80px;
    }
}

.footer-brand {
    flex: 1;
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #F2EDE9;
}

.footer-brand p {
    color: #A0A0A0;
    line-height: 1.6;
}

.footer-navigation {
    flex: 1;
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
}

.footer-section h4 {
    color: #F2EDE9;
    margin-bottom: 16px;
    font-size: 1rem;
    font-weight: 600;
}

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

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #A0A0A0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #22E6A8;
}

.footer-bottom {
    border-top: 1px solid rgba(122, 58, 255, 0.1);
    padding-top: 32px;
    text-align: center;
}

.footer-copyright p {
    color: #A0A0A0;
    font-size: 0.875rem;
}

/* Contact Link Button */
.contact-link {
    background: transparent;
    border: 1px solid #22E6A8;
    color: #22E6A8;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #22E6A8;
    color: #121418;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 20, 24, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #1a1a1a;
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    border: 1px solid rgba(122, 58, 255, 0.2);
}

.modal-header {
    padding: 24px 32px;
    border-bottom: 1px solid rgba(122, 58, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: #F2EDE9;
    margin: 0;
}

.modal-close {
    color: #A0A0A0;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #22E6A8;
}

.modal form {
    padding: 32px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(18, 20, 24, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(122, 58, 255, 0.2);
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-content {
    flex: 1;
}

.cookie-content p {
    color: #A0A0A0;
    margin: 0;
    font-size: 0.9rem;
}

.cookie-content a {
    color: #22E6A8;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #22E6A8;
    color: #121418;
}

.cookie-btn.accept:hover {
    background: #1bc997;
}

.cookie-btn.decline {
    background: transparent;
    color: #A0A0A0;
    border: 1px solid rgba(160, 160, 160, 0.3);
}

.cookie-btn.decline:hover {
    color: #F2EDE9;
    border-color: rgba(242, 237, 233, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }
    
    .hero-visual {
        max-width: 500px;
    }
    
    .dashboard-overlay {
        position: static;
        width: 100%;
        margin-top: 20px;
    }
    
    .preview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .preview-image {
        height: 250px;
    }
    
    .dashboard-frame {
        position: static;
        width: 100%;
        margin-top: 20px;
    }
    
    .lab-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        gap: 12px;
    }
    
    .hero-main-image {
        height: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .vendors-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .preview-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .footer-nav-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .cookie-actions {
        width: 100%;
    }
}