/* Base Styles */
:root {
    --primary-bg: #0B0C22;
    --secondary-bg: #121330;
    --accent-color: #8A2BE2;
    --highlight-color: #00CED1;
    --text-color: #ffffff;
    --text-secondary: #B0B0C0;
    --card-bg: rgba(20, 22, 50, 0.7);
    --gradient-start: #0B0C22;
    --gradient-end: #1A1B3A;
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--highlight-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

section {
    padding: 5rem 0;
    position: relative;
}

section:nth-child(even) {
    background-color: var(--secondary-bg);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    border: none;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(138, 43, 226, 0.6);
    color: white;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background-color: rgba(11, 12, 34, 0.9);
    backdrop-filter: blur(10px);
    transition: all var(--transition-speed) ease;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

.logo-text {
    color: var(--text-color);
}

.logo-dot {
    color: var(--highlight-color);
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--highlight-color);
    transition: width var(--transition-speed) ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all var(--transition-speed) ease;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 206, 209, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 3rem;
}

.headline {
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, var(--highlight-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero-visual {
    width: 100%;
    height: 400px;
    position: relative;
}

.network-visualization {
    width: 100%;
    height: 100%;
    position: relative;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/></svg>');
}

/* Introduction Section */
.introduction-section {
    position: relative;
    overflow: hidden;
}

.introduction-section .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
}

.comparison-visual {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.before, .after {
    flex: 1;
    max-width: 450px;
    text-align: center;
}

.before h3, .after h3 {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.visual-content {
    height: 300px;
    border-radius: 10px;
    background-color: var(--card-bg);
    position: relative;
    overflow: hidden;
}

.before-visual {
    background: linear-gradient(rgba(20, 22, 50, 0.9), rgba(20, 22, 50, 0.9)), 
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/></svg>');
}

.after-visual {
    background: linear-gradient(rgba(20, 22, 50, 0.7), rgba(20, 22, 50, 0.7)), 
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/></svg>');
}

/* Value Proposition Section */
.value-proposition-section {
    position: relative;
    overflow: hidden;
}

.value-cards {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.value-group {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-group h3 {
    text-align: center;
    color: var(--highlight-color);
    font-size: 1.8rem;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.flip-card {
    width: 250px;
    height: 200px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.flip-card-front {
    background-color: var(--card-bg);
    color: white;
}

.flip-card-back {
    background-color: var(--accent-color);
    color: white;
    transform: rotateY(180deg);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--highlight-color);
}

/* How It Works Section */
.how-it-works-section {
    position: relative;
    overflow: hidden;
}

.content-wrapper {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.text-content {
    flex: 1;
}

.visual-content {
    flex: 1;
}

.feature-list {
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-text h4 {
    margin-bottom: 0.5rem;
    color: var(--highlight-color);
}

.flowchart-visual {
    height: 400px;
    background-color: var(--card-bg);
    border-radius: 10px;
    position: relative;
}

/* Use Cases Section */
.use-cases-section {
    position: relative;
    overflow: hidden;
}

.use-case-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.use-case-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.use-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.use-case-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.use-case-card h3 {
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.expanded-content {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.agents-involved h4 {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.agents-involved ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.agents-involved li {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.agent-icon {
    margin-right: 0.5rem;
    color: var(--highlight-color);
}

.workflow-visual {
    height: 150px;
    margin-top: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

/* Newsletter Section */
.newsletter-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

.newsletter-section .content-wrapper {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.benefits-list {
    margin: 1.5rem 0;
}

.benefits-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
}

.form-content {
    flex: 1;
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.countdown-timer {
    margin-bottom: 2rem;
    text-align: center;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.count {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    color: var(--highlight-color);
}

.label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.countdown-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-group input {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: var(--highlight-color);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--highlight-color);
}

/* About Section */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.team-visual {
    flex: 1;
    height: 300px;
    background-color: var(--card-bg);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.team-silhouettes {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/></svg>');
}

/* FAQ Section */
.faq-section {
    position: relative;
    overflow: hidden;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--card-bg);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.toggle-icon {
    font-size: 1.2rem;
    color: var(--highlight-color);
    transition: transform var(--transition-speed) ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Demo Section */
.demo-section {
    position: relative;
    overflow: hidden;
}

.demo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.demo-text {
    max-width: 600px;
    margin-bottom: 2rem;
}

.demo-placeholder {
    width: 100%;
    max-width: 800px;
    height: 400px;
    background-color: var(--card-bg);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.placeholder-icon {
    font-size: 4rem;
    color: var(--highlight-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--secondary-bg);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.tagline {
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.footer-nav {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.nav-column h4 {
    color: var(--highlight-color);
    margin-bottom: 1.2rem;
}

.nav-column ul li {
    margin-bottom: 0.8rem;
}

.nav-column a {
    color: var(--text-secondary);
    transition: color var(--transition-speed) ease;
}

.nav-column a:hover {
    color: var(--text-color);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-color);
    transition: all var(--transition-speed) ease;
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

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

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .content-wrapper {
        flex-direction: column;
    }
    
    .about-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-section .container {
        padding-top: 2rem;
    }
    
    .comparison-visual {
        flex-direction: column;
    }
    
    .before, .after {
        max-width: 100%;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-nav {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 2rem;
    }
    
    .countdown-display {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 70px;
    }
}
