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

:root {
    /* VERSE Colors - Cyan to Magenta */
    --verse-primary: #00D4FF;
    --verse-secondary: #B026FF;
    --verse-gradient: linear-gradient(135deg, #00D4FF 0%, #7B2CBF 50%, #FF006E 100%);
    
    /* VECTR Colors - Orange to Yellow */
    --vectr-primary: #FF6B00;
    --vectr-secondary: #FFD60A;
    --vectr-gradient: linear-gradient(135deg, #FF6B00 0%, #FF8800 50%, #FFD60A 100%);
    
    /* Base Colors */
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-hover: #252525;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border-color: #333333;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--verse-primary), var(--vectr-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 107, 0, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    padding-top: 80px;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--verse-primary), var(--vectr-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-cta {
    margin-top: 2rem;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--verse-primary), var(--vectr-primary));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-verse {
    background: var(--verse-gradient);
    color: white;
}

.btn-verse:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-vectr {
    background: var(--vectr-gradient);
    color: white;
}

.btn-vectr:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

/* Products Section */
.products {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.product-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--verse-primary);
}

.vectr-card:hover {
    border-color: var(--vectr-primary);
}

.product-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.product-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.icon-gradient {
    width: 100%;
    height: 100%;
}

.verse-gradient {
    background: var(--verse-gradient);
}

.vectr-gradient {
    background: var(--vectr-gradient);
}

.product-name {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.product-tagline {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.product-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--verse-primary);
}

.vectr-card .product-features li::before {
    color: var(--vectr-primary);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--bg-card);
}

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

.feature {
    text-align: center;
    padding: 2rem;
}

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

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-links h4 {
    margin-bottom: 1rem;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Product Detail Pages */
.product-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: var(--bg-card);
}

.product-hero-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-logo-large {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.large-icon {
    width: 100%;
    height: 100%;
}

.product-hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.product-hero-tagline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.product-hero-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.product-features-section {
    padding: 5rem 0;
}

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

.feature-detailed {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.feature-detailed h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-detailed p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Specifications */
.specifications {
    padding: 5rem 0;
    background: var(--bg-card);
}

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

.spec-category {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.spec-category h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--verse-primary);
}

.vectr-hero .spec-category h3 {
    color: var(--vectr-primary);
}

.spec-list {
    list-style: none;
}

.spec-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.spec-list li:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--text-primary);
    font-weight: 600;
    margin-right: 0.5rem;
}

/* Use Cases */
.use-cases {
    padding: 5rem 0;
}

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

.use-case {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.use-case h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.use-case p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Sections */
.cta-section {
    padding: 5rem 0;
    text-align: center;
    background: var(--bg-card);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* About Page */
.about-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: var(--bg-card);
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.3rem;
    color: var(--text-secondary);
}

.about-content {
    padding: 5rem 0;
}

.about-section {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.about-list {
    list-style: none;
    margin-top: 1.5rem;
}

.about-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--verse-primary);
}

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

.family-product {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.family-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.family-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    margin-bottom: 1.5rem;
}

.family-product h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.family-product p {
    line-height: 1.6;
}

/* Contact Page */
.contact-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: var(--bg-card);
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container h2,
.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--verse-primary);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--verse-primary);
    color: var(--verse-primary);
}

.form-message.error {
    display: block;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    color: #ff0000;
}

.status-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.status-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.status-card .status {
    color: var(--verse-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.status-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-details {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-details p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .product-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }
}
