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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

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

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

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

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

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

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

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

.logo h1 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #667eea;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

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

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

/* Floating Elements Animation */
.hero-visual {
    position: relative;
    height: 400px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.element-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 30%;
    animation-delay: 2s;
}

.element-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #ffffff;
}

.services h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #333;
}

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

.service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.service-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Domains Section */
.domains {
    padding: 100px 0;
    background: #f8f9fa;
}

.domains h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #333;
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.domain-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease;
}

.domain-card:hover {
    transform: translateX(5px);
}

.domain-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.domain-card p {
    color: #666;
    font-size: 0.9rem;
}
/* Products Section */
.products {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.product-hero h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-tagline {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.mystery-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.mystery-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.mystery-features {
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
}

.mystery-visual {
    position: relative;
    height: 400px;
}

.knowledge-graph {
    position: relative;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.node-1 { top: 20%; left: 30%; animation-delay: 0s; }
.node-2 { top: 60%; left: 20%; animation-delay: 0.5s; }
.node-3 { top: 40%; right: 30%; animation-delay: 1s; }
.node-4 { bottom: 20%; right: 20%; animation-delay: 1.5s; }

.connection {
    position: absolute;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    transform-origin: left center;
}

.connection-1 {
    top: 25%;
    left: 32%;
    width: 120px;
    transform: rotate(45deg);
}

.connection-2 {
    top: 45%;
    left: 25%;
    width: 100px;
    transform: rotate(-30deg);
}

.connection-3 {
    bottom: 25%;
    right: 25%;
    width: 80px;
    transform: rotate(60deg);
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* About Section */
.about {
    padding: 100px 0;
    background: #ffffff;
}

.about h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #333;
}

.leadership {
    display: flex;
    justify-content: center;
}

.leader-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    max-width: 400px;
    text-align: center;
}

.leader-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
}

.linkedin-link {
    display: inline-block;
    margin-top: 1rem;
    color: #0077b5;
    text-decoration: none;
    font-weight: 500;
}

.linkedin-link:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #333;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

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

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

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

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

/* Product Page Specific Styles */
.product-page {
    padding-top: 80px;
}

.product-hero-full {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.product-intro h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.hero-visual-large {
    margin-top: 4rem;
}

.knowledge-graph-large {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.graph-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.central-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: centralPulse 3s ease-in-out infinite;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

.orbit-1 {
    width: 120px;
    height: 120px;
}

.orbit-2 {
    width: 180px;
    height: 180px;
    animation-duration: 30s;
}

.orbit-3 {
    width: 240px;
    height: 240px;
    animation-duration: 40s;
}

.satellite-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: satellitePulse 2s ease-in-out infinite;
}

@keyframes centralPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.9; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes satellitePulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Position satellite nodes */
.orbit-1 .satellite-node:nth-child(1) { top: -6px; left: 50%; transform: translateX(-50%); }
.orbit-1 .satellite-node:nth-child(2) { bottom: -6px; left: 50%; transform: translateX(-50%); }
.orbit-1 .satellite-node:nth-child(3) { top: 50%; right: -6px; transform: translateY(-50%); }

.orbit-2 .satellite-node:nth-child(1) { top: -6px; left: 50%; transform: translateX(-50%); }
.orbit-2 .satellite-node:nth-child(2) { bottom: -6px; left: 50%; transform: translateX(-50%); }
.orbit-2 .satellite-node:nth-child(3) { top: 50%; right: -6px; transform: translateY(-50%); }
.orbit-2 .satellite-node:nth-child(4) { top: 50%; left: -6px; transform: translateY(-50%); }

.orbit-3 .satellite-node:nth-child(1) { top: -6px; left: 50%; transform: translateX(-50%); }
.orbit-3 .satellite-node:nth-child(2) { bottom: -6px; left: 50%; transform: translateX(-50%); }
.orbit-3 .satellite-node:nth-child(3) { top: 50%; right: -6px; transform: translateY(-50%); }
.orbit-3 .satellite-node:nth-child(4) { top: 50%; left: -6px; transform: translateY(-50%); }
.orbit-3 .satellite-node:nth-child(5) { top: 25%; right: 25%; }

.product-mystery {
    padding: 100px 0;
    background: white;
}

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

.mystery-text h2 {
    color: #333;
    margin-bottom: 2rem;
}

.mystery-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mystery-points {
    margin-top: 3rem;
}

.point {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.point-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.point-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.floating-data {
    position: relative;
    height: 300px;
}

.data-stream {
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, #667eea, transparent);
    animation: dataFlow 3s ease-in-out infinite;
}

.stream-1 {
    left: 20%;
    height: 150px;
    animation-delay: 0s;
}

.stream-2 {
    left: 50%;
    height: 200px;
    animation-delay: 1s;
}

.stream-3 {
    right: 20%;
    height: 120px;
    animation-delay: 2s;
}

.convergence-point {
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 30px;
    height: 30px;
    background: #667eea;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: convergePulse 2s ease-in-out infinite;
}

@keyframes dataFlow {
    0% { opacity: 0; transform: translateY(-20px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(20px); }
}

@keyframes convergePulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.3); }
}
/* Capabilities Section */
.capabilities {
    padding: 100px 0;
    background: #f8f9fa;
}

.capabilities h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #333;
}

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

.capability {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.capability:hover {
    transform: translateY(-5px);
}

.capability-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.capability-number {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.capability h3 {
    color: #333;
    margin: 0;
}

.capability p {
    color: #666;
    line-height: 1.6;
}

/* Use Cases Section */
.use-cases {
    padding: 100px 0;
    background: white;
}

.use-cases h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #333;
}

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

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

.use-case h3 {
    color: #333;
    margin-bottom: 1rem;
}

.use-case p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.use-case-visual {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.decision-tree,
.risk-network,
.innovation-spark {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    position: relative;
    animation: useCase 4s ease-in-out infinite;
}

.decision-tree::before,
.decision-tree::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.decision-tree::after {
    top: auto;
    bottom: -30px;
}

.risk-network::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 2px;
    background: rgba(102, 126, 234, 0.5);
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
}

.innovation-spark::before {
    content: '✨';
    position: absolute;
    font-size: 2rem;
    top: -40px;
    right: -20px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes useCase {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Mystery CTA Section */
.mystery-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-visual {
    display: flex;
    justify-content: center;
}

.mystery-box {
    position: relative;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: mysteryFloat 3s ease-in-out infinite;
}

.box-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
    border-radius: 20px;
    opacity: 0.3;
    animation: glowRotate 4s linear infinite;
    z-index: -1;
}

.box-content {
    font-size: 3rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes mysteryFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .product-mystery,
    .mystery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-intro h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid,
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .domains-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .product-intro h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card,
    .capability {
        padding: 1.5rem;
    }
    
    .mystery-points .point {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .point-icon {
        align-self: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for interactive elements */
.btn,
.service-card,
.capability,
.domain-card {
    will-change: transform;
}

/* Focus states for accessibility */
.btn:focus,
.nav-menu a:focus,
input:focus,
textarea:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .hero-visual,
    .mystery-visual,
    .floating-elements {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero,
    .products,
    .mystery-cta {
        background: white !important;
        color: black !important;
    }
}
